Compare commits
100 Commits
5c48afd8b0
...
Release_2.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
eeb2ced141 | ||
|
|
6f9c0e1bde | ||
|
|
716774391c | ||
|
|
e72cfcb632 | ||
|
|
f0f96e45fd | ||
|
|
a2a568480c | ||
|
|
23f67029bd | ||
|
|
d29abf53e7 | ||
|
|
967fd2ba04 | ||
|
|
f8ce9a03ec | ||
|
|
4335a500f1 | ||
|
|
0e2c653784 | ||
|
|
92d88812e8 | ||
|
|
af60dfe338 | ||
|
|
a7fff24f80 | ||
|
|
9b70ca8ce6 | ||
|
|
66c1fb3698 | ||
|
|
8766b9e386 | ||
|
|
9419cb69ad | ||
|
|
3250f36c1f | ||
|
|
887d76e2fc | ||
|
|
f303ba042b | ||
|
|
ae33254743 | ||
|
|
341713d4cb | ||
|
|
f1b34dfa42 | ||
|
|
676598450d | ||
|
|
c0b2ad0d9b | ||
|
|
2b7d797c3e | ||
|
|
1e2e018f7f | ||
|
|
69afea012b | ||
|
|
85e0bc3400 | ||
| b8c00884a9 | |||
| 51d49d68ba | |||
| 4d5ee2b461 | |||
| 8a79ee4126 | |||
| cde9896c01 | |||
| c7d26a87b0 | |||
| 17ceb1f72a | |||
| b2c396c3b2 | |||
|
|
286e17a900 | ||
|
|
a21db6d6c5 | ||
|
|
fe7030b9d7 | ||
|
|
888c04b5c9 | ||
| de2cc62f95 | |||
| 0cfa732d87 | |||
|
|
b14d9169f2 | ||
| be51ca31dd | |||
| bb8d7cd208 | |||
| b6588db615 | |||
| 9a9aa2608b | |||
| 349d65d050 | |||
| 93593226e2 | |||
| 351cead423 | |||
| 07cab88e0d | |||
| faa019355a | |||
| df9bcf3221 | |||
| cda19e2b83 | |||
| 1586009a72 | |||
| 408b1e9f0d | |||
| 9158933333 | |||
| 902848958d | |||
| f5418499a7 | |||
| 47d190d9ea | |||
| 35f46d3182 | |||
| 425d21084b | |||
| 6aeba4d1e7 | |||
| 6930d7a431 | |||
| c453a1650a | |||
| b9f5ae826a | |||
| 532dc41004 | |||
| 13899cf70a | |||
| 9756303d6e | |||
| 1c51fafb69 | |||
| 94d43bce24 | |||
| f5733228bf | |||
| e3cb2ec219 | |||
|
|
260c1c174d | ||
| 1c90e693da | |||
| e4c6714677 | |||
| 812b49cfcb | |||
| f039437f4c | |||
| 6f73ba929c | |||
| fcbe956095 | |||
| e628309734 | |||
| d6cbd0597e | |||
| 9d45082bfc | |||
| 3304b01d7b | |||
| f5d33846d5 | |||
| 231140505e | |||
| 62a73e4967 | |||
| dedfb924d8 | |||
| 08601adc49 | |||
| 2a4255e5a3 | |||
| 0800e4d13e | |||
| 07381e78b4 | |||
| 5d29ad889d | |||
| 5ee9efbcd9 | |||
| 452077e86a | |||
|
|
a1688608ab | ||
|
|
f1920e16fa |
@@ -3,6 +3,6 @@
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class DbTriggerParams : Dictionary<string, IEnumerable<string>>
|
public class DbTriggerParams : Dictionary<string, ICollection<string>>
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
@@ -7,7 +7,7 @@ namespace EnvelopeGenerator.Application.Contracts.Repositories;
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Obsolete("Use Read-method returning IReadQuery<TEntity> instead.")]
|
[Obsolete("Use IRepository")]
|
||||||
public interface IEmailTemplateRepository : ICRUDRepository<EmailTemplate, int>
|
public interface IEmailTemplateRepository : ICRUDRepository<EmailTemplate, int>
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
using DigitalData.Core.Abstraction.Application.Repository;
|
using DigitalData.Core.Abstraction.Application.Repository;
|
||||||
|
using EnvelopeGenerator.Domain;
|
||||||
using EnvelopeGenerator.Domain.Entities;
|
using EnvelopeGenerator.Domain.Entities;
|
||||||
|
|
||||||
namespace EnvelopeGenerator.Application.Contracts.Repositories;
|
namespace EnvelopeGenerator.Application.Contracts.Repositories;
|
||||||
@@ -16,7 +17,7 @@ public interface IEnvelopeHistoryRepository : ICRUDRepository<EnvelopeHistory, l
|
|||||||
/// <param name="userReference"></param>
|
/// <param name="userReference"></param>
|
||||||
/// <param name="status"></param>
|
/// <param name="status"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<int> CountAsync(int? envelopeId = null, string? userReference = null, int? status = null);
|
Task<int> CountAsync(int? envelopeId = null, string? userReference = null, Constants.EnvelopeStatus? status = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
@@ -27,5 +28,5 @@ public interface IEnvelopeHistoryRepository : ICRUDRepository<EnvelopeHistory, l
|
|||||||
/// <param name="withSender"></param>
|
/// <param name="withSender"></param>
|
||||||
/// <param name="withReceiver"></param>
|
/// <param name="withReceiver"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<IEnumerable<EnvelopeHistory>> ReadAsync(int? envelopeId = null, string? userReference = null, int? status = null, bool withSender = false, bool withReceiver = false);
|
Task<IEnumerable<EnvelopeHistory>> ReadAsync(int? envelopeId = null, string? userReference = null, Constants.EnvelopeStatus? status = null, bool withSender = false, bool withReceiver = false);
|
||||||
}
|
}
|
||||||
@@ -6,6 +6,7 @@ namespace EnvelopeGenerator.Application.Contracts.Repositories;
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[Obsolete("Use IRepository")]
|
||||||
public interface IEnvelopeReceiverRepository : ICRUDRepository<EnvelopeReceiver, (int Envelope, int Receiver)>
|
public interface IEnvelopeReceiverRepository : ICRUDRepository<EnvelopeReceiver, (int Envelope, int Receiver)>
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
using DigitalData.Core.Abstraction.Application.Repository;
|
|
||||||
using EnvelopeGenerator.Domain.Entities;
|
|
||||||
|
|
||||||
namespace EnvelopeGenerator.Application.Contracts.Repositories;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
///
|
|
||||||
/// </summary>
|
|
||||||
[Obsolete("Use IRepository")]
|
|
||||||
public interface IUserReceiverRepository : ICRUDRepository<UserReceiver, int>
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -20,7 +20,7 @@ public interface IEnvelopeHistoryService : ICRUDService<EnvelopeHistoryCreateDto
|
|||||||
/// <param name="userReference"></param>
|
/// <param name="userReference"></param>
|
||||||
/// <param name="status"></param>
|
/// <param name="status"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<int> CountAsync(int? envelopeId = null, string? userReference = null, int? status = null);
|
Task<int> CountAsync(int? envelopeId = null, string? userReference = null, EnvelopeStatus? status = null);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
@@ -56,7 +56,7 @@ public interface IEnvelopeHistoryService : ICRUDService<EnvelopeHistoryCreateDto
|
|||||||
/// <param name="withSender"></param>
|
/// <param name="withSender"></param>
|
||||||
/// <param name="withReceiver"></param>
|
/// <param name="withReceiver"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<IEnumerable<EnvelopeHistoryDto>> ReadAsync(int? envelopeId = null, string? userReference = null, ReferenceType? referenceType = null, int? status = null, bool withSender = false, bool withReceiver = false);
|
Task<IEnumerable<EnvelopeHistoryDto>> ReadAsync(int? envelopeId = null, string? userReference = null, ReferenceType? referenceType = null, EnvelopeStatus? status = null, bool withSender = false, bool withReceiver = false);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
using DigitalData.Core.Abstractions;
|
using DigitalData.Core.Abstraction.Application;
|
||||||
using DigitalData.Core.Abstraction.Application;
|
|
||||||
using DigitalData.Core.Abstraction.Application.DTO;
|
using DigitalData.Core.Abstraction.Application.DTO;
|
||||||
using EnvelopeGenerator.Application.DTOs.Receiver;
|
using EnvelopeGenerator.Application.DTOs.Receiver;
|
||||||
using EnvelopeGenerator.Domain.Entities;
|
using EnvelopeGenerator.Domain.Entities;
|
||||||
@@ -27,12 +26,4 @@ public interface IReceiverService : ICRUDService<ReceiverCreateDto, ReceiverRead
|
|||||||
/// <param name="signature"></param>
|
/// <param name="signature"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
Task<Result> DeleteByAsync(string? emailAddress = null, string? signature = null);
|
Task<Result> DeleteByAsync(string? emailAddress = null, string? signature = null);
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
///
|
|
||||||
/// </summary>
|
|
||||||
/// <typeparam name="TUpdateDto"></typeparam>
|
|
||||||
/// <param name="updateDto"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
Task<Result> UpdateAsync<TUpdateDto>(TUpdateDto updateDto);
|
|
||||||
}
|
}
|
||||||
@@ -3,9 +3,21 @@
|
|||||||
namespace EnvelopeGenerator.Application.Contracts.Services;
|
namespace EnvelopeGenerator.Application.Contracts.Services;
|
||||||
|
|
||||||
//TODO: move to DigitalData.Core
|
//TODO: move to DigitalData.Core
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
public interface ISmsSender
|
public interface ISmsSender
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
string ServiceProvider { get; }
|
string ServiceProvider { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="recipient"></param>
|
||||||
|
/// <param name="message"></param>
|
||||||
|
/// <returns></returns>
|
||||||
Task<SmsResponse> SendSmsAsync(string recipient, string message);
|
Task<SmsResponse> SendSmsAsync(string recipient, string message);
|
||||||
}
|
}
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
using DigitalData.Core.Abstraction.Application;
|
|
||||||
using EnvelopeGenerator.Application.DTOs;
|
|
||||||
using EnvelopeGenerator.Domain.Entities;
|
|
||||||
|
|
||||||
namespace EnvelopeGenerator.Application.Contracts.Services;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
///
|
|
||||||
/// </summary>
|
|
||||||
[Obsolete("Use MediatR")]
|
|
||||||
public interface IUserReceiverService : IBasicCRUDService<UserReceiverDto, UserReceiver, int>
|
|
||||||
{
|
|
||||||
}
|
|
||||||
@@ -8,11 +8,6 @@ namespace EnvelopeGenerator.Application.DTOs;
|
|||||||
[ApiExplorerSettings(IgnoreApi = true)]
|
[ApiExplorerSettings(IgnoreApi = true)]
|
||||||
public class ConfigDto
|
public class ConfigDto
|
||||||
{
|
{
|
||||||
/// <summary>
|
|
||||||
/// Gets or sets the path to the document.
|
|
||||||
/// </summary>
|
|
||||||
public string? DocumentPath { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the sending profile identifier.
|
/// Gets or sets the sending profile identifier.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -21,7 +16,7 @@ public class ConfigDto
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the signature host URL or name.
|
/// Gets or sets the signature host URL or name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? SignatureHost { get; set; }
|
public required string SignatureHost { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the name of the external program.
|
/// Gets or sets the name of the external program.
|
||||||
|
|||||||
@@ -37,7 +37,6 @@ public class MappingProfile : Profile
|
|||||||
CreateMap<Domain.Entities.Receiver, ReceiverReadDto>();
|
CreateMap<Domain.Entities.Receiver, ReceiverReadDto>();
|
||||||
CreateMap<Domain.Entities.Receiver, ReceiverCreateDto>();
|
CreateMap<Domain.Entities.Receiver, ReceiverCreateDto>();
|
||||||
CreateMap<Domain.Entities.Receiver, ReceiverUpdateDto>();
|
CreateMap<Domain.Entities.Receiver, ReceiverUpdateDto>();
|
||||||
CreateMap<UserReceiver, UserReceiverDto>();
|
|
||||||
CreateMap<Domain.Entities.EnvelopeReceiverReadOnly, EnvelopeReceiverReadOnlyDto>();
|
CreateMap<Domain.Entities.EnvelopeReceiverReadOnly, EnvelopeReceiverReadOnlyDto>();
|
||||||
|
|
||||||
// DTO to Entity mappings
|
// DTO to Entity mappings
|
||||||
@@ -55,8 +54,7 @@ public class MappingProfile : Profile
|
|||||||
CreateMap<ReceiverReadDto, Domain.Entities.Receiver>().ForMember(rcv => rcv.EnvelopeReceivers, rcvReadDto => rcvReadDto.Ignore());
|
CreateMap<ReceiverReadDto, Domain.Entities.Receiver>().ForMember(rcv => rcv.EnvelopeReceivers, rcvReadDto => rcvReadDto.Ignore());
|
||||||
CreateMap<ReceiverCreateDto, Domain.Entities.Receiver>();
|
CreateMap<ReceiverCreateDto, Domain.Entities.Receiver>();
|
||||||
CreateMap<ReceiverUpdateDto, Domain.Entities.Receiver>();
|
CreateMap<ReceiverUpdateDto, Domain.Entities.Receiver>();
|
||||||
CreateMap<UserReceiverDto, UserReceiver>();
|
CreateMap<Domain.Entities.EnvelopeReceiver, EnvelopeReceiverBasicDto>();
|
||||||
CreateMap<EnvelopeReceiverBase, EnvelopeReceiverBasicDto>();
|
|
||||||
CreateMap<EnvelopeReceiverReadOnlyCreateDto, Domain.Entities.EnvelopeReceiverReadOnly>();
|
CreateMap<EnvelopeReceiverReadOnlyCreateDto, Domain.Entities.EnvelopeReceiverReadOnly>();
|
||||||
CreateMap<EnvelopeReceiverReadOnlyUpdateDto, Domain.Entities.EnvelopeReceiverReadOnly>();
|
CreateMap<EnvelopeReceiverReadOnlyUpdateDto, Domain.Entities.EnvelopeReceiverReadOnly>();
|
||||||
|
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ public record ReceiverCreateDto
|
|||||||
{
|
{
|
||||||
_sha256HexOfMail = new(() =>
|
_sha256HexOfMail = new(() =>
|
||||||
{
|
{
|
||||||
var bytes_arr = Encoding.UTF8.GetBytes(EmailAddress.ToUpper());
|
var bytes_arr = Encoding.UTF8.GetBytes(EmailAddress!.ToUpper());
|
||||||
var hash_arr = SHA256.HashData(bytes_arr);
|
var hash_arr = SHA256.HashData(bytes_arr);
|
||||||
var hexa_str = BitConverter.ToString(hash_arr);
|
var hexa_str = BitConverter.ToString(hash_arr);
|
||||||
return hexa_str.Replace("-", string.Empty);
|
return hexa_str.Replace("-", string.Empty);
|
||||||
@@ -37,7 +37,7 @@ public record ReceiverCreateDto
|
|||||||
public string? TotpSecretkey { get; init; }
|
public string? TotpSecretkey { get; init; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// var bytes_arr = Encoding.UTF8.GetBytes(EmailAddress.ToUpper());<br>
|
/// var bytes_arr = Encoding.UTF8.GetBytes(EmailAddress.ToUpper());<br/>
|
||||||
/// var hash_arr = SHA256.HashData(bytes_arr);
|
/// var hash_arr = SHA256.HashData(bytes_arr);
|
||||||
/// var hexa_str = BitConverter.ToString(hash_arr);
|
/// var hexa_str = BitConverter.ToString(hash_arr);
|
||||||
/// return hexa_str.Replace("-", string.Empty);
|
/// return hexa_str.Replace("-", string.Empty);
|
||||||
|
|||||||
@@ -4,26 +4,57 @@ using System.Text.Json.Serialization;
|
|||||||
|
|
||||||
namespace EnvelopeGenerator.Application.DTOs.Receiver;
|
namespace EnvelopeGenerator.Application.DTOs.Receiver;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
[ApiExplorerSettings(IgnoreApi = true)]
|
[ApiExplorerSettings(IgnoreApi = true)]
|
||||||
public class ReceiverReadDto
|
public class ReceiverReadDto
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
public int Id { get; set; }
|
public int Id { get; set; }
|
||||||
|
|
||||||
public string EmailAddress { get; set; }
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
public required string EmailAddress { get; set; }
|
||||||
|
|
||||||
public string Signature { get; set; }
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
public required string Signature { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
public DateTime AddedWhen { get; set; }
|
public DateTime AddedWhen { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
public IEnumerable<EnvelopeReceiverBasicDto>? EnvelopeReceivers { get; set; }
|
public IEnumerable<EnvelopeReceiverBasicDto>? EnvelopeReceivers { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
public string? LastUsedName => EnvelopeReceivers?.LastOrDefault()?.Name;
|
public string? LastUsedName => EnvelopeReceivers?.LastOrDefault()?.Name;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
public string? TotpSecretkey { get; set; } = null;
|
public string? TotpSecretkey { get; set; } = null;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
public DateTime? TfaRegDeadline { get; set; }
|
public DateTime? TfaRegDeadline { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
public override int GetHashCode()
|
public override int GetHashCode()
|
||||||
{
|
{
|
||||||
return Id.GetHashCode();
|
return Id.GetHashCode();
|
||||||
|
|||||||
@@ -1,45 +0,0 @@
|
|||||||
using Microsoft.AspNetCore.Mvc;
|
|
||||||
|
|
||||||
namespace EnvelopeGenerator.Application.DTOs;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Data Transfer Object representing a user receiver with associated details.
|
|
||||||
/// </summary>
|
|
||||||
[ApiExplorerSettings(IgnoreApi = true)]
|
|
||||||
public class UserReceiverDto
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Gets or sets the unique identifier of the user receiver.
|
|
||||||
/// </summary>
|
|
||||||
public int Id { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets or sets the identifier of the user associated with the receiver.
|
|
||||||
/// </summary>
|
|
||||||
public int UserId { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets or sets the identifier of the receiver.
|
|
||||||
/// </summary>
|
|
||||||
public int ReceiverId { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets or sets the name of the receiver.
|
|
||||||
/// </summary>
|
|
||||||
public string Name { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets or sets the company name of the receiver.
|
|
||||||
/// </summary>
|
|
||||||
public string CompanyName { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets or sets the job title of the receiver.
|
|
||||||
/// </summary>
|
|
||||||
public string JobTitle { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets or sets the timestamp when the user receiver was added.
|
|
||||||
/// </summary>
|
|
||||||
public DateTime AddedWhen { get; set; }
|
|
||||||
}
|
|
||||||
@@ -38,7 +38,6 @@ public static class DependencyInjection
|
|||||||
services.TryAddScoped<IEnvelopeReceiverService, EnvelopeReceiverService>();
|
services.TryAddScoped<IEnvelopeReceiverService, EnvelopeReceiverService>();
|
||||||
services.TryAddScoped<IEnvelopeTypeService, EnvelopeTypeService>();
|
services.TryAddScoped<IEnvelopeTypeService, EnvelopeTypeService>();
|
||||||
services.TryAddScoped<IReceiverService, ReceiverService>();
|
services.TryAddScoped<IReceiverService, ReceiverService>();
|
||||||
services.TryAddScoped<IUserReceiverService, UserReceiverService>();
|
|
||||||
services.TryAddScoped<IEnvelopeReceiverReadOnlyService, EnvelopeReceiverReadOnlyService>();
|
services.TryAddScoped<IEnvelopeReceiverReadOnlyService, EnvelopeReceiverReadOnlyService>();
|
||||||
|
|
||||||
//Auto mapping profiles
|
//Auto mapping profiles
|
||||||
|
|||||||
@@ -5,20 +5,19 @@ namespace EnvelopeGenerator.Application.EmailTemplates.Commands.Reset;
|
|||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Ein Befehl zum Zurücksetzen einer E-Mail-Vorlage auf die Standardwerte.
|
/// Ein Befehl zum Zurücksetzen einer E-Mail-Vorlage auf die Standardwerte.
|
||||||
/// Erbt von <see cref="EmailTemplateQuery"/> und ermöglicht die Angabe einer optionalen ID und eines Typs der E-Mail-Vorlage.
|
/// Erbt von <see cref="EmailTemplateQuery"/> und ermöglicht die Angabe einer optionalen ID und eines Typs der E-Mail-Vorlage.<br/><br/>
|
||||||
|
/// Beispiele:<br/>
|
||||||
|
/// 0 - DocumentReceived: Benachrichtigung über den Empfang eines Dokuments.<br/>
|
||||||
|
/// 1 - DocumentSigned: Benachrichtigung über die Unterzeichnung eines Dokuments.<br/>
|
||||||
|
/// 2 - DocumentDeleted: Benachrichtigung über das Löschen eines Dokuments.<br/>
|
||||||
|
/// 3 - DocumentCompleted: Benachrichtigung über den Abschluss eines Dokuments.<br/>
|
||||||
|
/// 4 - DocumentAccessCodeReceived: Benachrichtigung über den Erhalt eines Zugangscodes.<br/>
|
||||||
|
/// 5 - DocumentShared: Benachrichtigung über das Teilen eines Dokuments.<br/>
|
||||||
|
/// 6 - TotpSecret: Benachrichtigung über ein TOTP-Geheimnis.<br/>
|
||||||
|
/// 7 - DocumentRejected_ADM (Für den Absender): Mail an den Absender, wenn das Dokument abgelehnt wird.<br/>
|
||||||
|
/// 8 - DocumentRejected_REC (Für den ablehnenden Empfänger): Mail an den ablehnenden Empfänger, wenn das Dokument abgelehnt wird.<br/>
|
||||||
|
/// 9 - DocumentRejected_REC_2 (Für sonstige Empfänger): Mail an andere Empfänger (Brief), wenn das Dokument abgelehnt wird.<br/>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// Beispiele:
|
|
||||||
/// 0 - DocumentReceived: Benachrichtigung über den Empfang eines Dokuments.
|
|
||||||
/// 1 - DocumentSigned: Benachrichtigung über die Unterzeichnung eines Dokuments.
|
|
||||||
/// 2 - DocumentDeleted: Benachrichtigung über das Löschen eines Dokuments.
|
|
||||||
/// 3 - DocumentCompleted: Benachrichtigung über den Abschluss eines Dokuments.
|
|
||||||
/// 4 - DocumentAccessCodeReceived: Benachrichtigung über den Erhalt eines Zugangscodes.
|
|
||||||
/// 5 - DocumentShared: Benachrichtigung über das Teilen eines Dokuments.
|
|
||||||
/// 6 - TotpSecret: Benachrichtigung über ein TOTP-Geheimnis.
|
|
||||||
/// 7 - DocumentRejected_ADM (Für den Absender): Mail an den Absender, wenn das Dokument abgelehnt wird.
|
|
||||||
/// 8 - DocumentRejected_REC (Für den ablehnenden Empfänger): Mail an den ablehnenden Empfänger, wenn das Dokument abgelehnt wird.
|
|
||||||
/// 9 - DocumentRejected_REC_2 (Für sonstige Empfänger): Mail an andere Empfänger (Brief), wenn das Dokument abgelehnt wird.
|
|
||||||
/// </param>
|
|
||||||
public record ResetEmailTemplateCommand : EmailTemplateQuery, IRequest
|
public record ResetEmailTemplateCommand : EmailTemplateQuery, IRequest
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -34,7 +33,7 @@ public record ResetEmailTemplateCommand : EmailTemplateQuery, IRequest
|
|||||||
///
|
///
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="Id">Die optionale ID der E-Mail-Vorlage, die zurückgesetzt werden soll.</param>
|
/// <param name="Id">Die optionale ID der E-Mail-Vorlage, die zurückgesetzt werden soll.</param>
|
||||||
/// <param name="Type">Der Typ der E-Mail-Vorlage, z. B. <see cref="Constants.EmailTemplateType"/> (optional).
|
/// <param name="Type">Der Typ der E-Mail-Vorlage, z. B. <see cref="Constants.EmailTemplateType"/> (optional).</param>
|
||||||
public ResetEmailTemplateCommand(int? Id = null, Constants.EmailTemplateType? Type = null) : base(Id, Type)
|
public ResetEmailTemplateCommand(int? Id = null, Constants.EmailTemplateType? Type = null) : base(Id, Type)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ public class ReadEmailTemplateQueryHandler : IRequestHandler<ReadEmailTemplateQu
|
|||||||
{
|
{
|
||||||
private readonly IMapper _mapper;
|
private readonly IMapper _mapper;
|
||||||
|
|
||||||
|
[Obsolete("Use Read-method returning IReadQuery<TEntity> instead.")]
|
||||||
private readonly IEmailTemplateRepository _repository;
|
private readonly IEmailTemplateRepository _repository;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -21,6 +22,7 @@ public class ReadEmailTemplateQueryHandler : IRequestHandler<ReadEmailTemplateQu
|
|||||||
/// <param name="repository">
|
/// <param name="repository">
|
||||||
/// Die AutoMapper-Instanz, die zum Zuordnen von Objekten verwendet wird.
|
/// Die AutoMapper-Instanz, die zum Zuordnen von Objekten verwendet wird.
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use Read-method returning IReadQuery<TEntity> instead.")]
|
||||||
public ReadEmailTemplateQueryHandler(IMapper mapper, IEmailTemplateRepository repository)
|
public ReadEmailTemplateQueryHandler(IMapper mapper, IEmailTemplateRepository repository)
|
||||||
{
|
{
|
||||||
_mapper = mapper;
|
_mapper = mapper;
|
||||||
@@ -34,6 +36,7 @@ public class ReadEmailTemplateQueryHandler : IRequestHandler<ReadEmailTemplateQu
|
|||||||
/// <param name="cancellationToken"></param>
|
/// <param name="cancellationToken"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
/// <exception cref="InvalidOperationException"></exception>
|
/// <exception cref="InvalidOperationException"></exception>
|
||||||
|
[Obsolete("Use IRepository")]
|
||||||
public async Task<ReadEmailTemplateResponse?> Handle(ReadEmailTemplateQuery request, CancellationToken cancellationToken)
|
public async Task<ReadEmailTemplateResponse?> Handle(ReadEmailTemplateQuery request, CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
var temp = request.Id is int id
|
var temp = request.Id is int id
|
||||||
|
|||||||
@@ -18,4 +18,4 @@ public record CreateEnvelopeReceiverCommand(
|
|||||||
[Required] DocumentCreateCommand Document,
|
[Required] DocumentCreateCommand Document,
|
||||||
[Required] IEnumerable<ReceiverGetOrCreateCommand> Receivers,
|
[Required] IEnumerable<ReceiverGetOrCreateCommand> Receivers,
|
||||||
bool TFAEnabled = false
|
bool TFAEnabled = false
|
||||||
) : CreateEnvelopeCommand(Title, Message, TFAEnabled), IRequest<CreateEnvelopeReceiverResponse?>;
|
) : CreateEnvelopeCommand(Title, Message, TFAEnabled), IRequest<CreateEnvelopeReceiverResponse>;
|
||||||
@@ -1,131 +1,222 @@
|
|||||||
using Microsoft.Extensions.Caching.Distributed;
|
using Microsoft.Extensions.Caching.Distributed;
|
||||||
|
|
||||||
namespace EnvelopeGenerator.Application.Extensions
|
namespace EnvelopeGenerator.Application.Extensions;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
public static class CacheExtensions
|
||||||
{
|
{
|
||||||
public static class CacheExtensions
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="cache"></param>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="value"></param>
|
||||||
|
/// <param name="options"></param>
|
||||||
|
/// <param name="cToken"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static Task SetLongAsync(this IDistributedCache cache, string key, long value, DistributedCacheEntryOptions? options = null, CancellationToken cToken = default)
|
||||||
|
=> options is null
|
||||||
|
? cache.SetAsync(key, BitConverter.GetBytes(value), token: cToken)
|
||||||
|
: cache.SetAsync(key, BitConverter.GetBytes(value), options: options, token: cToken);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="cache"></param>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="cToken"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static async Task<long?> GetLongAsync(this IDistributedCache cache, string key, CancellationToken cToken = default)
|
||||||
{
|
{
|
||||||
public static Task SetLongAsync(this IDistributedCache cache, string key, long value, DistributedCacheEntryOptions? options = null, CancellationToken cToken = default)
|
var value = await cache.GetAsync(key, cToken);
|
||||||
=> options is null
|
return value is null ? null : BitConverter.ToInt64(value, 0);
|
||||||
? cache.SetAsync(key, BitConverter.GetBytes(value), token: cToken)
|
|
||||||
: cache.SetAsync(key, BitConverter.GetBytes(value), options: options, token: cToken);
|
|
||||||
|
|
||||||
public static async Task<long?> GetLongAsync(this IDistributedCache cache, string key, CancellationToken cToken = default)
|
|
||||||
{
|
|
||||||
var value = await cache.GetAsync(key, cToken);
|
|
||||||
return value is null ? null : BitConverter.ToInt64(value, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Task SetDateTimeAsync(this IDistributedCache cache, string key, DateTime value, DistributedCacheEntryOptions? options = null, CancellationToken cToken = default)
|
|
||||||
=> cache.SetLongAsync(key: key, value: value.Ticks, options: options, cToken: cToken);
|
|
||||||
|
|
||||||
public static async Task<DateTime?> GetDateTimeAsync(this IDistributedCache cache, string key, CancellationToken cToken = default)
|
|
||||||
{
|
|
||||||
var value = await cache.GetAsync(key, cToken);
|
|
||||||
return value is null ? null : new(BitConverter.ToInt64(value, 0));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Task SetTimeSpanAsync(this IDistributedCache cache, string key, TimeSpan value, DistributedCacheEntryOptions? options = null, CancellationToken cToken = default)
|
|
||||||
=> cache.SetLongAsync(key: key, value: value.Ticks, options: options, cToken);
|
|
||||||
|
|
||||||
public static async Task<TimeSpan?> GetTimeSpanAsync(this IDistributedCache cache, string key, CancellationToken cToken = default)
|
|
||||||
{
|
|
||||||
var value = await cache.GetAsync(key, cToken);
|
|
||||||
return value is null ? null : new(BitConverter.ToInt64(value, 0));
|
|
||||||
}
|
|
||||||
|
|
||||||
//TODO: use code generator
|
|
||||||
#region GetOrSetAsync
|
|
||||||
|
|
||||||
#region string
|
|
||||||
public static async Task<string> GetOrSetAsync(this IDistributedCache cache, string key, Func<string> factory, DistributedCacheEntryOptions? options = null, bool cacheInBackground = false, CancellationToken cToken = default)
|
|
||||||
{
|
|
||||||
var value = await cache.GetStringAsync(key, cToken);
|
|
||||||
if (value is null)
|
|
||||||
{
|
|
||||||
// create new and save
|
|
||||||
value = factory();
|
|
||||||
|
|
||||||
Task CacheAsync() => options is null
|
|
||||||
? cache.SetStringAsync(key, value, cToken)
|
|
||||||
: cache.SetStringAsync(key, value, options, cToken);
|
|
||||||
|
|
||||||
if (cacheInBackground)
|
|
||||||
_ = Task.Run(async () => await CacheAsync(), cToken);
|
|
||||||
else
|
|
||||||
await CacheAsync();
|
|
||||||
}
|
|
||||||
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static async Task<string> GetOrSetAsync(this IDistributedCache cache, string key, Func<Task<string>> factoryAsync, DistributedCacheEntryOptions? options = null, bool cacheInBackground = false, CancellationToken cToken = default)
|
|
||||||
{
|
|
||||||
var value = await cache.GetStringAsync(key, cToken);
|
|
||||||
if(value is null)
|
|
||||||
{
|
|
||||||
// create new and save
|
|
||||||
value = await factoryAsync();
|
|
||||||
|
|
||||||
Task CacheAsync() => options is null
|
|
||||||
? cache.SetStringAsync(key: key, value: value, token: cToken)
|
|
||||||
: cache.SetStringAsync(key: key, value: value, options: options, token: cToken);
|
|
||||||
|
|
||||||
if (cacheInBackground)
|
|
||||||
_ = Task.Run(async () => await CacheAsync(), cToken);
|
|
||||||
else
|
|
||||||
await CacheAsync();
|
|
||||||
}
|
|
||||||
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#region DateTime
|
|
||||||
public static async Task<DateTime> GetOrSetAsync(this IDistributedCache cache, string key, Func<DateTime> factory, DistributedCacheEntryOptions? options = null, bool cacheInBackground = false, CancellationToken cToken = default)
|
|
||||||
{
|
|
||||||
if (await cache.GetDateTimeAsync(key, cToken) is DateTime dateTimeValue)
|
|
||||||
return dateTimeValue;
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// create new and save
|
|
||||||
var newValue = factory();
|
|
||||||
|
|
||||||
Task CacheAsync() => options is null
|
|
||||||
? cache.SetDateTimeAsync(key, newValue, cToken: cToken)
|
|
||||||
: cache.SetDateTimeAsync(key, newValue, options, cToken);
|
|
||||||
|
|
||||||
if (cacheInBackground)
|
|
||||||
_ = Task.Run(async () => await CacheAsync(), cToken);
|
|
||||||
else
|
|
||||||
await CacheAsync();
|
|
||||||
|
|
||||||
return newValue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static async Task<DateTime> GetOrSetAsync(this IDistributedCache cache, string key, Func<Task<DateTime>> factory, DistributedCacheEntryOptions? options = null, bool cacheInBackground = false, CancellationToken cToken = default)
|
|
||||||
{
|
|
||||||
if (await cache.GetDateTimeAsync(key, cToken) is DateTime dateTimeValue)
|
|
||||||
return dateTimeValue;
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// create new and save
|
|
||||||
var newValue = await factory();
|
|
||||||
|
|
||||||
Task CacheAsync() => options is null
|
|
||||||
? cache.SetDateTimeAsync(key, newValue, cToken: cToken)
|
|
||||||
: cache.SetDateTimeAsync(key, newValue, options, cToken);
|
|
||||||
|
|
||||||
if (cacheInBackground)
|
|
||||||
_ = Task.Run(async () => await CacheAsync(), cToken);
|
|
||||||
else
|
|
||||||
await CacheAsync();
|
|
||||||
|
|
||||||
return newValue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="cache"></param>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="value"></param>
|
||||||
|
/// <param name="options"></param>
|
||||||
|
/// <param name="cToken"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static Task SetDateTimeAsync(this IDistributedCache cache, string key, DateTime value, DistributedCacheEntryOptions? options = null, CancellationToken cToken = default)
|
||||||
|
=> cache.SetLongAsync(key: key, value: value.Ticks, options: options, cToken: cToken);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="cache"></param>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="cToken"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static async Task<DateTime?> GetDateTimeAsync(this IDistributedCache cache, string key, CancellationToken cToken = default)
|
||||||
|
{
|
||||||
|
var value = await cache.GetAsync(key, cToken);
|
||||||
|
return value is null ? null : new(BitConverter.ToInt64(value, 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="cache"></param>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="value"></param>
|
||||||
|
/// <param name="options"></param>
|
||||||
|
/// <param name="cToken"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static Task SetTimeSpanAsync(this IDistributedCache cache, string key, TimeSpan value, DistributedCacheEntryOptions? options = null, CancellationToken cToken = default)
|
||||||
|
=> cache.SetLongAsync(key: key, value: value.Ticks, options: options, cToken);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="cache"></param>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="cToken"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static async Task<TimeSpan?> GetTimeSpanAsync(this IDistributedCache cache, string key, CancellationToken cToken = default)
|
||||||
|
{
|
||||||
|
var value = await cache.GetAsync(key, cToken);
|
||||||
|
return value is null ? null : new(BitConverter.ToInt64(value, 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
//TODO: use code generator
|
||||||
|
#region GetOrSetAsync
|
||||||
|
|
||||||
|
#region string
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="cache"></param>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="factory"></param>
|
||||||
|
/// <param name="options"></param>
|
||||||
|
/// <param name="cacheInBackground"></param>
|
||||||
|
/// <param name="cToken"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static async Task<string> GetOrSetAsync(this IDistributedCache cache, string key, Func<string> factory, DistributedCacheEntryOptions? options = null, bool cacheInBackground = false, CancellationToken cToken = default)
|
||||||
|
{
|
||||||
|
var value = await cache.GetStringAsync(key, cToken);
|
||||||
|
if (value is null)
|
||||||
|
{
|
||||||
|
// create new and save
|
||||||
|
value = factory();
|
||||||
|
|
||||||
|
Task CacheAsync() => options is null
|
||||||
|
? cache.SetStringAsync(key, value, cToken)
|
||||||
|
: cache.SetStringAsync(key, value, options, cToken);
|
||||||
|
|
||||||
|
if (cacheInBackground)
|
||||||
|
_ = Task.Run(async () => await CacheAsync(), cToken);
|
||||||
|
else
|
||||||
|
await CacheAsync();
|
||||||
|
}
|
||||||
|
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="cache"></param>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="factoryAsync"></param>
|
||||||
|
/// <param name="options"></param>
|
||||||
|
/// <param name="cacheInBackground"></param>
|
||||||
|
/// <param name="cToken"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static async Task<string> GetOrSetAsync(this IDistributedCache cache, string key, Func<Task<string>> factoryAsync, DistributedCacheEntryOptions? options = null, bool cacheInBackground = false, CancellationToken cToken = default)
|
||||||
|
{
|
||||||
|
var value = await cache.GetStringAsync(key, cToken);
|
||||||
|
if(value is null)
|
||||||
|
{
|
||||||
|
// create new and save
|
||||||
|
value = await factoryAsync();
|
||||||
|
|
||||||
|
Task CacheAsync() => options is null
|
||||||
|
? cache.SetStringAsync(key: key, value: value, token: cToken)
|
||||||
|
: cache.SetStringAsync(key: key, value: value, options: options, token: cToken);
|
||||||
|
|
||||||
|
if (cacheInBackground)
|
||||||
|
_ = Task.Run(async () => await CacheAsync(), cToken);
|
||||||
|
else
|
||||||
|
await CacheAsync();
|
||||||
|
}
|
||||||
|
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region DateTime
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="cache"></param>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="factory"></param>
|
||||||
|
/// <param name="options"></param>
|
||||||
|
/// <param name="cacheInBackground"></param>
|
||||||
|
/// <param name="cToken"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static async Task<DateTime> GetOrSetAsync(this IDistributedCache cache, string key, Func<DateTime> factory, DistributedCacheEntryOptions? options = null, bool cacheInBackground = false, CancellationToken cToken = default)
|
||||||
|
{
|
||||||
|
if (await cache.GetDateTimeAsync(key, cToken) is DateTime dateTimeValue)
|
||||||
|
return dateTimeValue;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// create new and save
|
||||||
|
var newValue = factory();
|
||||||
|
|
||||||
|
Task CacheAsync() => options is null
|
||||||
|
? cache.SetDateTimeAsync(key, newValue, cToken: cToken)
|
||||||
|
: cache.SetDateTimeAsync(key, newValue, options, cToken);
|
||||||
|
|
||||||
|
if (cacheInBackground)
|
||||||
|
_ = Task.Run(async () => await CacheAsync(), cToken);
|
||||||
|
else
|
||||||
|
await CacheAsync();
|
||||||
|
|
||||||
|
return newValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="cache"></param>
|
||||||
|
/// <param name="key"></param>
|
||||||
|
/// <param name="factory"></param>
|
||||||
|
/// <param name="options"></param>
|
||||||
|
/// <param name="cacheInBackground"></param>
|
||||||
|
/// <param name="cToken"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static async Task<DateTime> GetOrSetAsync(this IDistributedCache cache, string key, Func<Task<DateTime>> factory, DistributedCacheEntryOptions? options = null, bool cacheInBackground = false, CancellationToken cToken = default)
|
||||||
|
{
|
||||||
|
if (await cache.GetDateTimeAsync(key, cToken) is DateTime dateTimeValue)
|
||||||
|
return dateTimeValue;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// create new and save
|
||||||
|
var newValue = await factory();
|
||||||
|
|
||||||
|
Task CacheAsync() => options is null
|
||||||
|
? cache.SetDateTimeAsync(key, newValue, cToken: cToken)
|
||||||
|
: cache.SetDateTimeAsync(key, newValue, options, cToken);
|
||||||
|
|
||||||
|
if (cacheInBackground)
|
||||||
|
_ = Task.Run(async () => await CacheAsync(), cToken);
|
||||||
|
else
|
||||||
|
await CacheAsync();
|
||||||
|
|
||||||
|
return newValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
@@ -1,14 +1,27 @@
|
|||||||
using EnvelopeGenerator.Application.DTOs.Messaging;
|
using EnvelopeGenerator.Application.DTOs.Messaging;
|
||||||
|
|
||||||
namespace EnvelopeGenerator.Application.Extensions
|
namespace EnvelopeGenerator.Application.Extensions;
|
||||||
{
|
|
||||||
public static class MappingExtensions
|
|
||||||
{
|
|
||||||
public static bool Ok(this GtxMessagingResponse gtxMessagingResponse)
|
|
||||||
=> gtxMessagingResponse.TryGetValue("message-status", out var status)
|
|
||||||
&& status?.ToString()?.ToLower() == "ok";
|
|
||||||
|
|
||||||
public static string ToBase64String(this byte[] bytes)
|
/// <summary>
|
||||||
=> Convert.ToBase64String(bytes);
|
/// Provides extension methods for common mapping and conversion operations.
|
||||||
}
|
/// </summary>
|
||||||
|
public static class MappingExtensions
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Determines whether the response indicates a successful "OK" message status.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="gtxMessagingResponse">The response object to evaluate.</param>
|
||||||
|
/// <returns><see langword="true"/> if the response contains a "message-status" key with a value of "ok" (case-insensitive);
|
||||||
|
/// otherwise, <see langword="false"/>.</returns>
|
||||||
|
public static bool Ok(this GtxMessagingResponse gtxMessagingResponse)
|
||||||
|
=> gtxMessagingResponse.TryGetValue("message-status", out var status)
|
||||||
|
&& status?.ToString()?.ToLower() == "ok";
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Converts the specified byte array to its equivalent string representation encoded in base-64.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="bytes">The byte array to encode.</param>
|
||||||
|
/// <returns>A base-64 encoded string representation of the input byte array.</returns>
|
||||||
|
public static string ToBase64String(this byte[] bytes)
|
||||||
|
=> Convert.ToBase64String(bytes);
|
||||||
}
|
}
|
||||||
@@ -10,6 +10,7 @@ namespace EnvelopeGenerator.Application.Histories.Queries.Read;
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public class ReadHistoryQueryHandler : IRequestHandler<ReadHistoryQuery, IEnumerable<ReadHistoryResponse>>
|
public class ReadHistoryQueryHandler : IRequestHandler<ReadHistoryQuery, IEnumerable<ReadHistoryResponse>>
|
||||||
{
|
{
|
||||||
|
[Obsolete("Use IRepository")]
|
||||||
private readonly IEnvelopeHistoryRepository _repository;
|
private readonly IEnvelopeHistoryRepository _repository;
|
||||||
|
|
||||||
private readonly IMapper _mapper;
|
private readonly IMapper _mapper;
|
||||||
@@ -19,6 +20,7 @@ public class ReadHistoryQueryHandler : IRequestHandler<ReadHistoryQuery, IEnumer
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repository"></param>
|
/// <param name="repository"></param>
|
||||||
/// <param name="mapper"></param>
|
/// <param name="mapper"></param>
|
||||||
|
[Obsolete("Use IRepository")]
|
||||||
public ReadHistoryQueryHandler(IEnvelopeHistoryRepository repository, IMapper mapper)
|
public ReadHistoryQueryHandler(IEnvelopeHistoryRepository repository, IMapper mapper)
|
||||||
{
|
{
|
||||||
_repository = repository;
|
_repository = repository;
|
||||||
@@ -34,7 +36,7 @@ public class ReadHistoryQueryHandler : IRequestHandler<ReadHistoryQuery, IEnumer
|
|||||||
/// <exception cref="NotFoundException"></exception>
|
/// <exception cref="NotFoundException"></exception>
|
||||||
public async Task<IEnumerable<ReadHistoryResponse>> Handle(ReadHistoryQuery request, CancellationToken cancellationToken)
|
public async Task<IEnumerable<ReadHistoryResponse>> Handle(ReadHistoryQuery request, CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
var hists = await _repository.ReadAsync(request.EnvelopeId, status: request.Status is null ? null : (int) request.Status);
|
var hists = await _repository.ReadAsync(request.EnvelopeId, status: request.Status is null ? null : request.Status);
|
||||||
|
|
||||||
if (!hists.Any())
|
if (!hists.Any())
|
||||||
throw new NotFoundException();
|
throw new NotFoundException();
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ public class ReadHistoryResponse
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the reference identifier of the user who performed the action.
|
/// Gets or sets the reference identifier of the user who performed the action.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string UserReference { get; set; }
|
public required string UserReference { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the status code of the envelope.
|
/// Gets or sets the status code of the envelope.
|
||||||
|
|||||||
@@ -74,4 +74,9 @@ public static class Key
|
|||||||
///
|
///
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static readonly string Default = nameof(Default);
|
public static readonly string Default = nameof(Default);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
public static readonly string DbMigrationTest = nameof(DbMigrationTest);
|
||||||
}
|
}
|
||||||
@@ -33,7 +33,7 @@ public class EnvelopeHistoryService : CRUDService<IEnvelopeHistoryRepository, En
|
|||||||
/// <param name="userReference"></param>
|
/// <param name="userReference"></param>
|
||||||
/// <param name="status"></param>
|
/// <param name="status"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public async Task<int> CountAsync(int? envelopeId = null, string? userReference = null, int? status = null) => await _repository.CountAsync(envelopeId: envelopeId, userReference: userReference, status: status);
|
public async Task<int> CountAsync(int? envelopeId = null, string? userReference = null, EnvelopeStatus? status = null) => await _repository.CountAsync(envelopeId: envelopeId, userReference: userReference, status: status);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
@@ -45,7 +45,7 @@ public class EnvelopeHistoryService : CRUDService<IEnvelopeHistoryRepository, En
|
|||||||
public async Task<bool> HasStatus(EnvelopeStatus status, int envelopeId, string userReference) => await _repository.CountAsync(
|
public async Task<bool> HasStatus(EnvelopeStatus status, int envelopeId, string userReference) => await _repository.CountAsync(
|
||||||
envelopeId: envelopeId,
|
envelopeId: envelopeId,
|
||||||
userReference: userReference,
|
userReference: userReference,
|
||||||
status: (int) status) > 0;
|
status: status) > 0;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
@@ -56,7 +56,7 @@ public class EnvelopeHistoryService : CRUDService<IEnvelopeHistoryRepository, En
|
|||||||
public async Task<bool> AccessCodeAlreadyRequested(int envelopeId, string userReference) => await _repository.CountAsync(
|
public async Task<bool> AccessCodeAlreadyRequested(int envelopeId, string userReference) => await _repository.CountAsync(
|
||||||
envelopeId: envelopeId,
|
envelopeId: envelopeId,
|
||||||
userReference:userReference,
|
userReference:userReference,
|
||||||
status: (int) EnvelopeStatus.AccessCodeRequested) > 0;
|
status: EnvelopeStatus.AccessCodeRequested) > 0;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
@@ -67,7 +67,7 @@ public class EnvelopeHistoryService : CRUDService<IEnvelopeHistoryRepository, En
|
|||||||
public async Task<bool> IsSigned(int envelopeId, string userReference) => await _repository.CountAsync(
|
public async Task<bool> IsSigned(int envelopeId, string userReference) => await _repository.CountAsync(
|
||||||
envelopeId: envelopeId,
|
envelopeId: envelopeId,
|
||||||
userReference: userReference,
|
userReference: userReference,
|
||||||
status: (int) EnvelopeStatus.DocumentSigned) > 0;
|
status: EnvelopeStatus.DocumentSigned) > 0;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Checks if the specified envelope has been rejected.
|
/// Checks if the specified envelope has been rejected.
|
||||||
@@ -81,7 +81,7 @@ public class EnvelopeHistoryService : CRUDService<IEnvelopeHistoryRepository, En
|
|||||||
return await _repository.CountAsync(
|
return await _repository.CountAsync(
|
||||||
envelopeId: envelopeId,
|
envelopeId: envelopeId,
|
||||||
userReference: userReference,
|
userReference: userReference,
|
||||||
status: (int)EnvelopeStatus.DocumentRejected) > 0;
|
status: EnvelopeStatus.DocumentRejected) > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -94,7 +94,7 @@ public class EnvelopeHistoryService : CRUDService<IEnvelopeHistoryRepository, En
|
|||||||
/// <param name="withSender"></param>
|
/// <param name="withSender"></param>
|
||||||
/// <param name="withReceiver"></param>
|
/// <param name="withReceiver"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public async Task<IEnumerable<EnvelopeHistoryDto>> ReadAsync(int? envelopeId = null, string? userReference = null, ReferenceType? referenceType = null, int? status = null, bool withSender = false, bool withReceiver = false)
|
public async Task<IEnumerable<EnvelopeHistoryDto>> ReadAsync(int? envelopeId = null, string? userReference = null, ReferenceType? referenceType = null, EnvelopeStatus? status = null, bool withSender = false, bool withReceiver = false)
|
||||||
{
|
{
|
||||||
var histDTOs = _mapper.Map<IEnumerable<EnvelopeHistoryDto>>(
|
var histDTOs = _mapper.Map<IEnumerable<EnvelopeHistoryDto>>(
|
||||||
await _repository.ReadAsync(
|
await _repository.ReadAsync(
|
||||||
@@ -113,7 +113,7 @@ public class EnvelopeHistoryService : CRUDService<IEnvelopeHistoryRepository, En
|
|||||||
/// <param name="userReference"></param>
|
/// <param name="userReference"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public async Task<IEnumerable<EnvelopeHistoryDto>> ReadRejectedAsync(int envelopeId, string? userReference = null) =>
|
public async Task<IEnumerable<EnvelopeHistoryDto>> ReadRejectedAsync(int envelopeId, string? userReference = null) =>
|
||||||
await ReadAsync(envelopeId: envelopeId, userReference: userReference, status: (int)EnvelopeStatus.DocumentRejected, withReceiver:true);
|
await ReadAsync(envelopeId: envelopeId, userReference: userReference, status: EnvelopeStatus.DocumentRejected, withReceiver:true);
|
||||||
|
|
||||||
//TODO: use IQueryable in repository to incerease the performance
|
//TODO: use IQueryable in repository to incerease the performance
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -44,11 +44,11 @@ private readonly IAuthenticator _authenticator;
|
|||||||
public EnvelopeMailService(IEmailOutRepository repository, IMapper mapper, IEmailTemplateService tempService, IEnvelopeReceiverService envelopeReceiverService, IOptions<DispatcherParams> dispatcherConfigOptions, IConfigService configService, IOptions<MailParams> mailConfig, IAuthenticator authenticator) : base(repository, mapper)
|
public EnvelopeMailService(IEmailOutRepository repository, IMapper mapper, IEmailTemplateService tempService, IEnvelopeReceiverService envelopeReceiverService, IOptions<DispatcherParams> dispatcherConfigOptions, IConfigService configService, IOptions<MailParams> mailConfig, IAuthenticator authenticator) : base(repository, mapper)
|
||||||
{
|
{
|
||||||
_tempService = tempService;
|
_tempService = tempService;
|
||||||
_envRcvService = envelopeReceiverService;
|
_envRcvService = envelopeReceiverService;
|
||||||
_dConfig = dispatcherConfigOptions.Value;
|
_dConfig = dispatcherConfigOptions.Value;
|
||||||
_configService = configService;
|
_configService = configService;
|
||||||
_placeholders = mailConfig.Value.Placeholders;
|
_placeholders = new Dictionary<string, string>(mailConfig.Value.Placeholders);
|
||||||
_authenticator = authenticator;
|
_authenticator = authenticator;
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task<Dictionary<string, string>> CreatePlaceholders(string? accessCode = null, EnvelopeReceiverDto? envelopeReceiverDto = null)
|
private async Task<Dictionary<string, string>> CreatePlaceholders(string? accessCode = null, EnvelopeReceiverDto? envelopeReceiverDto = null)
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
using AutoMapper;
|
|
||||||
using DigitalData.Core.Application;
|
|
||||||
using EnvelopeGenerator.Application.Contracts.Services;
|
|
||||||
using EnvelopeGenerator.Application.DTOs;
|
|
||||||
using EnvelopeGenerator.Domain.Entities;
|
|
||||||
using EnvelopeGenerator.Application.Contracts.Repositories;
|
|
||||||
|
|
||||||
namespace EnvelopeGenerator.Application.Services;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
///
|
|
||||||
/// </summary>
|
|
||||||
[Obsolete("Use MediatR")]
|
|
||||||
public class UserReceiverService : BasicCRUDService<IUserReceiverRepository, UserReceiverDto, UserReceiver, int>, IUserReceiverService
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
///
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="repository"></param>
|
|
||||||
/// <param name="mapper"></param>
|
|
||||||
public UserReceiverService(IUserReceiverRepository repository, IMapper mapper)
|
|
||||||
: base(repository, mapper)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,10 +1,11 @@
|
|||||||
Imports DigitalData.Modules.Database
|
Imports System.IO
|
||||||
|
Imports System.Security.Cryptography
|
||||||
|
Imports DigitalData.Modules.Database
|
||||||
Imports DigitalData.Modules.Logging
|
Imports DigitalData.Modules.Logging
|
||||||
|
Imports EnvelopeGenerator.CommonServices.Jobs
|
||||||
|
Imports EnvelopeGenerator.CommonServices.Jobs.FinalizeDocument
|
||||||
Imports GdPicture14
|
Imports GdPicture14
|
||||||
Imports Newtonsoft.Json.Linq
|
Imports Newtonsoft.Json.Linq
|
||||||
Imports EnvelopeGenerator.CommonServices.Jobs
|
|
||||||
Imports System.IO
|
|
||||||
Imports EnvelopeGenerator.CommonServices.Jobs.FinalizeDocument
|
|
||||||
|
|
||||||
Public Class frmFinalizePDF
|
Public Class frmFinalizePDF
|
||||||
Private Const CONNECTIONSTRING = "Server=sDD-VMP04-SQL17\DD_DEVELOP01;Database=DD_ECM;User Id=sa;Password=+bk8oAbbQP1AzoHtvZUbd+Mbok2f8Fl4miEx1qssJ5yEaEWoQJ9prg4L14fURpPnqi1WMNs9fE4=;"
|
Private Const CONNECTIONSTRING = "Server=sDD-VMP04-SQL17\DD_DEVELOP01;Database=DD_ECM;User Id=sa;Password=+bk8oAbbQP1AzoHtvZUbd+Mbok2f8Fl4miEx1qssJ5yEaEWoQJ9prg4L14fURpPnqi1WMNs9fE4=;"
|
||||||
@@ -65,6 +66,22 @@ Public Class frmFinalizePDF
|
|||||||
|
|
||||||
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
|
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
|
||||||
Try
|
Try
|
||||||
|
'Dim oEnvelopeData = GetEnvelopeData(oId)
|
||||||
|
|
||||||
|
'If oEnvelopeData Is Nothing Then
|
||||||
|
' Logger.Warn("EnvelopeData could not be loaded for Id [{0}]!", oId)
|
||||||
|
' Throw New ArgumentNullException("EnvelopeData")
|
||||||
|
'End If
|
||||||
|
'Logger.Debug("Burning Annotations to pdf ...")
|
||||||
|
'sd
|
||||||
|
'Dim oBurnedDocument As Byte() = BurnAnnotationsToPdf(oEnvelopeData)
|
||||||
|
'If oBurnedDocument Is Nothing Then
|
||||||
|
' Logger.Warn("Document could not be finalized!")
|
||||||
|
' Throw New ApplicationException("Document could not be finalized")
|
||||||
|
'End If
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Dim oTable = LoadAnnotationDataForEnvelope()
|
Dim oTable = LoadAnnotationDataForEnvelope()
|
||||||
Dim oJsonList = oTable.Rows.
|
Dim oJsonList = oTable.Rows.
|
||||||
|
|||||||
@@ -340,11 +340,21 @@
|
|||||||
<Compile Include="Services\BaseService.vb" />
|
<Compile Include="Services\BaseService.vb" />
|
||||||
<Compile Include="Services\EmailService.vb" />
|
<Compile Include="Services\EmailService.vb" />
|
||||||
<Compile Include="Services\HistoryService.vb" />
|
<Compile Include="Services\HistoryService.vb" />
|
||||||
|
<Compile Include="Strings\Email.fr.Designer.vb">
|
||||||
|
<DependentUpon>Email.fr.resx</DependentUpon>
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DesignTime>True</DesignTime>
|
||||||
|
</Compile>
|
||||||
<Compile Include="Strings\Email.en.Designer.vb">
|
<Compile Include="Strings\Email.en.Designer.vb">
|
||||||
<DependentUpon>Email.en.resx</DependentUpon>
|
<DependentUpon>Email.en.resx</DependentUpon>
|
||||||
<AutoGen>True</AutoGen>
|
<AutoGen>True</AutoGen>
|
||||||
<DesignTime>True</DesignTime>
|
<DesignTime>True</DesignTime>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="Strings\Envelope.fr.Designer.vb">
|
||||||
|
<DependentUpon>Envelope.fr.resx</DependentUpon>
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DesignTime>True</DesignTime>
|
||||||
|
</Compile>
|
||||||
<Compile Include="Strings\Envelope.en.Designer.vb">
|
<Compile Include="Strings\Envelope.en.Designer.vb">
|
||||||
<DependentUpon>Envelope.en.resx</DependentUpon>
|
<DependentUpon>Envelope.en.resx</DependentUpon>
|
||||||
<AutoGen>True</AutoGen>
|
<AutoGen>True</AutoGen>
|
||||||
@@ -360,6 +370,11 @@
|
|||||||
<AutoGen>True</AutoGen>
|
<AutoGen>True</AutoGen>
|
||||||
<DesignTime>True</DesignTime>
|
<DesignTime>True</DesignTime>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="Strings\Model.fr.Designer.vb">
|
||||||
|
<DependentUpon>Model.fr.resx</DependentUpon>
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DesignTime>True</DesignTime>
|
||||||
|
</Compile>
|
||||||
<Compile Include="Strings\Model.en.Designer.vb">
|
<Compile Include="Strings\Model.en.Designer.vb">
|
||||||
<DependentUpon>Model.en.resx</DependentUpon>
|
<DependentUpon>Model.en.resx</DependentUpon>
|
||||||
<AutoGen>True</AutoGen>
|
<AutoGen>True</AutoGen>
|
||||||
@@ -384,11 +399,22 @@
|
|||||||
<EmbeddedResource Include="Reports\rptEnvelopeHistory.resx">
|
<EmbeddedResource Include="Reports\rptEnvelopeHistory.resx">
|
||||||
<DependentUpon>rptEnvelopeHistory.vb</DependentUpon>
|
<DependentUpon>rptEnvelopeHistory.vb</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Strings\Email.fr.resx">
|
||||||
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||||
|
<LastGenOutput>Email.fr.Designer.vb</LastGenOutput>
|
||||||
|
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Strings\Email.en.resx">
|
<EmbeddedResource Include="Strings\Email.en.resx">
|
||||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||||
<LastGenOutput>Email.en.Designer.vb</LastGenOutput>
|
<LastGenOutput>Email.en.Designer.vb</LastGenOutput>
|
||||||
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Strings\Envelope.fr.resx">
|
||||||
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||||
|
<LastGenOutput>Envelope.fr.Designer.vb</LastGenOutput>
|
||||||
|
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Strings\Envelope.en.resx">
|
<EmbeddedResource Include="Strings\Envelope.en.resx">
|
||||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||||
<LastGenOutput>Envelope.en.Designer.vb</LastGenOutput>
|
<LastGenOutput>Envelope.en.Designer.vb</LastGenOutput>
|
||||||
@@ -406,6 +432,12 @@
|
|||||||
<LastGenOutput>Email.Designer.vb</LastGenOutput>
|
<LastGenOutput>Email.Designer.vb</LastGenOutput>
|
||||||
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Strings\Model.fr.resx">
|
||||||
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||||
|
<LastGenOutput>Model.fr.Designer.vb</LastGenOutput>
|
||||||
|
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Strings\Model.en.resx">
|
<EmbeddedResource Include="Strings\Model.en.resx">
|
||||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||||
<LastGenOutput>Model.en.Designer.vb</LastGenOutput>
|
<LastGenOutput>Model.en.Designer.vb</LastGenOutput>
|
||||||
|
|||||||
@@ -123,6 +123,7 @@ Namespace Jobs
|
|||||||
Throw New ArgumentNullException("EnvelopeData")
|
Throw New ArgumentNullException("EnvelopeData")
|
||||||
End If
|
End If
|
||||||
Logger.Debug("Burning Annotations to pdf ...")
|
Logger.Debug("Burning Annotations to pdf ...")
|
||||||
|
|
||||||
Dim oBurnedDocument As Byte() = BurnAnnotationsToPdf(oEnvelopeData)
|
Dim oBurnedDocument As Byte() = BurnAnnotationsToPdf(oEnvelopeData)
|
||||||
If oBurnedDocument Is Nothing Then
|
If oBurnedDocument Is Nothing Then
|
||||||
Logger.Warn("Document could not be finalized!")
|
Logger.Warn("Document could not be finalized!")
|
||||||
@@ -143,7 +144,9 @@ Namespace Jobs
|
|||||||
Logger.Debug("Documents merged!")
|
Logger.Debug("Documents merged!")
|
||||||
|
|
||||||
Dim oOutputDirectoryPath = Path.Combine(Config.ExportPath, ParentFolderUID)
|
Dim oOutputDirectoryPath = Path.Combine(Config.ExportPath, ParentFolderUID)
|
||||||
|
Logger.Debug($"oOutputDirectoryPath is {oOutputDirectoryPath}")
|
||||||
If Not Directory.Exists(oOutputDirectoryPath) Then
|
If Not Directory.Exists(oOutputDirectoryPath) Then
|
||||||
|
Logger.Debug($"Directory not existing. Creating ... ")
|
||||||
Directory.CreateDirectory(oOutputDirectoryPath)
|
Directory.CreateDirectory(oOutputDirectoryPath)
|
||||||
End If
|
End If
|
||||||
Dim oOutputFilePath = Path.Combine(oOutputDirectoryPath, $"{oEnvelope.Uuid}.pdf")
|
Dim oOutputFilePath = Path.Combine(oOutputDirectoryPath, $"{oEnvelope.Uuid}.pdf")
|
||||||
@@ -172,6 +175,7 @@ Namespace Jobs
|
|||||||
Throw New ApplicationException("Envelope could not be finalized")
|
Throw New ApplicationException("Envelope could not be finalized")
|
||||||
End If
|
End If
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
|
Logger.Error(ex)
|
||||||
Logger.Warn(ex, $"Unhandled exception while working envelope [{oId}]")
|
Logger.Warn(ex, $"Unhandled exception while working envelope [{oId}]")
|
||||||
End Try
|
End Try
|
||||||
|
|
||||||
|
|||||||
@@ -16,6 +16,8 @@ Namespace Jobs.FinalizeDocument
|
|||||||
Private Const ANNOTATION_TYPE_IMAGE = "pspdfkit/image"
|
Private Const ANNOTATION_TYPE_IMAGE = "pspdfkit/image"
|
||||||
Private Const ANNOTATION_TYPE_INK = "pspdfkit/ink"
|
Private Const ANNOTATION_TYPE_INK = "pspdfkit/ink"
|
||||||
Private Const ANNOTATION_TYPE_WIDGET = "pspdfkit/widget"
|
Private Const ANNOTATION_TYPE_WIDGET = "pspdfkit/widget"
|
||||||
|
Private Annotationheight_min As Double = 0
|
||||||
|
Private Annotationheight_max As Double = 0
|
||||||
Private Property _pdfBurnerParams As PDFBurnerParams
|
Private Property _pdfBurnerParams As PDFBurnerParams
|
||||||
|
|
||||||
Public Sub New(pLogConfig As LogConfig, pGDPictureLicenseKey As String, pdfBurnerParams As PDFBurnerParams)
|
Public Sub New(pLogConfig As LogConfig, pGDPictureLicenseKey As String, pdfBurnerParams As PDFBurnerParams)
|
||||||
@@ -69,12 +71,14 @@ Namespace Jobs.FinalizeDocument
|
|||||||
Try
|
Try
|
||||||
Dim oAnnotationData = JsonConvert.DeserializeObject(Of AnnotationData)(pInstantJSON)
|
Dim oAnnotationData = JsonConvert.DeserializeObject(Of AnnotationData)(pInstantJSON)
|
||||||
oAnnotationData.annotations.Reverse()
|
oAnnotationData.annotations.Reverse()
|
||||||
Dim formFieldIndex = 0
|
Dim formFieldIndex = 0, AnnotationIndex = 0, AnnotationImageIndex = 0
|
||||||
For Each oAnnotation In oAnnotationData.annotations
|
For Each oAnnotation In oAnnotationData.annotations
|
||||||
Logger.Debug("Adding AnnotationID: " + oAnnotation.id)
|
AnnotationIndex += 1
|
||||||
|
Logger.Debug("Adding AnnotationID: " + oAnnotation.id + " -Index: " + AnnotationIndex.ToString)
|
||||||
Select Case oAnnotation.type
|
Select Case oAnnotation.type
|
||||||
Case ANNOTATION_TYPE_IMAGE
|
Case ANNOTATION_TYPE_IMAGE
|
||||||
AddImageAnnotation(oAnnotation, oAnnotationData.attachments)
|
AnnotationImageIndex += 1
|
||||||
|
AddImageAnnotation(AnnotationImageIndex, oAnnotation, oAnnotationData.attachments)
|
||||||
|
|
||||||
Case ANNOTATION_TYPE_INK
|
Case ANNOTATION_TYPE_INK
|
||||||
AddInkAnnotation(oAnnotation)
|
AddInkAnnotation(oAnnotation)
|
||||||
@@ -98,19 +102,26 @@ Namespace Jobs.FinalizeDocument
|
|||||||
End Try
|
End Try
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Private Function AddImageAnnotation(pAnnotation As Annotation, pAttachments As Dictionary(Of String, Attachment)) As Boolean
|
Private Function AddImageAnnotation(pidX As Integer, pAnnotation As Annotation, pAttachments As Dictionary(Of String, Attachment)) As Boolean
|
||||||
Try
|
Try
|
||||||
Dim oAttachment = pAttachments.Where(Function(a) a.Key = pAnnotation.imageAttachmentId).
|
Dim oAttachment = pAttachments.Where(Function(a) a.Key = pAnnotation.imageAttachmentId).
|
||||||
SingleOrDefault()
|
SingleOrDefault()
|
||||||
|
|
||||||
' Convert pixels to Inches
|
' Convert pixels to Inches
|
||||||
Dim oBounds = pAnnotation.bbox.Select(AddressOf ToInches).ToList()
|
Dim oBounds = pAnnotation.bbox.Select(AddressOf ToInches).ToList()
|
||||||
|
|
||||||
Dim oX = oBounds.Item(0)
|
Dim oX = oBounds.Item(0)
|
||||||
Dim oY = oBounds.Item(1)
|
Dim oY = oBounds.Item(1)
|
||||||
|
|
||||||
|
|
||||||
Dim oWidth = oBounds.Item(2)
|
Dim oWidth = oBounds.Item(2)
|
||||||
Dim oHeight = oBounds.Item(3)
|
Dim oHeight = oBounds.Item(3)
|
||||||
|
If pidX = 1 Then
|
||||||
|
If Annotationheight_min = 0 Then
|
||||||
|
Annotationheight_min = oHeight
|
||||||
|
Annotationheight_min = oHeight
|
||||||
|
End If
|
||||||
|
|
||||||
|
End If
|
||||||
Manager.SelectPage(pAnnotation.pageIndex + 1)
|
Manager.SelectPage(pAnnotation.pageIndex + 1)
|
||||||
Manager.AddEmbeddedImageAnnotFromBase64(oAttachment.Value.binary, oX, oY, oWidth, oHeight)
|
Manager.AddEmbeddedImageAnnotFromBase64(oAttachment.Value.binary, oX, oY, oWidth, oHeight)
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ Public Class CertificateModel
|
|||||||
oCommand.Parameters.Add("ENVELOPE_UUID", SqlDbType.NVarChar).Value = pEnvelope.Uuid
|
oCommand.Parameters.Add("ENVELOPE_UUID", SqlDbType.NVarChar).Value = pEnvelope.Uuid
|
||||||
oCommand.Parameters.Add("ENVELOPE_SUBJECT", SqlDbType.NVarChar).Value = String.Empty
|
oCommand.Parameters.Add("ENVELOPE_SUBJECT", SqlDbType.NVarChar).Value = String.Empty
|
||||||
oCommand.Parameters.Add("CREATOR_ID", SqlDbType.Int).Value = pEnvelope.UserId
|
oCommand.Parameters.Add("CREATOR_ID", SqlDbType.Int).Value = pEnvelope.UserId
|
||||||
oCommand.Parameters.Add("CREATOR_NAME", SqlDbType.NVarChar).Value = pEnvelope.User.FullName
|
oCommand.Parameters.Add("CREATOR_NAME", SqlDbType.NVarChar).Value = pEnvelope.User.GetFullName()
|
||||||
oCommand.Parameters.Add("CREATOR_EMAIL", SqlDbType.NVarChar).Value = pEnvelope.User.Email
|
oCommand.Parameters.Add("CREATOR_EMAIL", SqlDbType.NVarChar).Value = pEnvelope.User.Email
|
||||||
oCommand.Parameters.Add("ENVELOPE_STATUS", SqlDbType.Int).Value = pEnvelope.Status
|
oCommand.Parameters.Add("ENVELOPE_STATUS", SqlDbType.Int).Value = pEnvelope.Status
|
||||||
|
|
||||||
|
|||||||
@@ -152,6 +152,9 @@ Public Class ElementModel
|
|||||||
pElement.Id = GetElementId(pElement)
|
pElement.Id = GetElementId(pElement)
|
||||||
Return True
|
Return True
|
||||||
Else
|
Else
|
||||||
|
|
||||||
|
Dim filledSql As String = GetFilledSql(oCommand)
|
||||||
|
Logger.Warn(filledSql)
|
||||||
Return False
|
Return False
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@@ -161,6 +164,26 @@ Public Class ElementModel
|
|||||||
End Try
|
End Try
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
|
Function GetFilledSql(command As SqlCommand) As String
|
||||||
|
Dim oSql As String = command.CommandText
|
||||||
|
For Each oParam As SqlParameter In command.Parameters
|
||||||
|
Dim oValue As String
|
||||||
|
If oParam.Value Is Nothing OrElse oParam.Value Is DBNull.Value Then
|
||||||
|
oValue = "NULL"
|
||||||
|
ElseIf TypeOf oParam.Value Is String OrElse TypeOf oParam.Value Is Date Then
|
||||||
|
oValue = $"'{oParam.Value.ToString().Replace("'", "''")}'"
|
||||||
|
|
||||||
|
ElseIf TypeOf oParam.Value Is Boolean Then
|
||||||
|
oValue = If(CBool(oParam.Value), "1", "0")
|
||||||
|
Else
|
||||||
|
oValue = oParam.Value.ToString()
|
||||||
|
End If
|
||||||
|
oSql = oSql.Replace("@" & oParam.ParameterName, oValue)
|
||||||
|
Next
|
||||||
|
Return oSql
|
||||||
|
End Function
|
||||||
|
|
||||||
|
|
||||||
Public Function Update(pElement As DocumentReceiverElement) As Boolean
|
Public Function Update(pElement As DocumentReceiverElement) As Boolean
|
||||||
Try
|
Try
|
||||||
Dim oSql = "UPDATE [dbo].[TBSIG_DOCUMENT_RECEIVER_ELEMENT]
|
Dim oSql = "UPDATE [dbo].[TBSIG_DOCUMENT_RECEIVER_ELEMENT]
|
||||||
|
|||||||
@@ -22,6 +22,23 @@ Public Class EmailData
|
|||||||
Public Property ATT1_REL_TYPE As String = ""
|
Public Property ATT1_REL_TYPE As String = ""
|
||||||
Public Property ADDED_WHO_PROCESS As String = "DDEnvelopGenerator"
|
Public Property ADDED_WHO_PROCESS As String = "DDEnvelopGenerator"
|
||||||
|
|
||||||
|
Public ReadOnly Property EnvelopeTypeId As Integer = 0
|
||||||
|
Public Property SignatureType As String = ""
|
||||||
|
Public Property DocumentProcess As String = ""
|
||||||
|
|
||||||
|
Public Sub DynamicStringsForEmails(pEnvelope As Entities.Envelope)
|
||||||
|
|
||||||
|
If pEnvelope.EnvelopeTypeId = 1 Then
|
||||||
|
SignatureType = "Signieren"
|
||||||
|
Message = "Bitte lesen und unterzeichnen Sie dieses Dokument."
|
||||||
|
DocumentProcess = " und elektronisch unterschreiben"
|
||||||
|
ElseIf pEnvelope.EnvelopeTypeId = 2 Then
|
||||||
|
SignatureType = "Lesen und bestätigen"
|
||||||
|
Message = "Bitte bestätigen Sie, dieses Dokument gelesen zu haben."
|
||||||
|
DocumentProcess = ""
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
''' <summary>
|
''' <summary>
|
||||||
''' Constructor for sending email to receiver
|
''' Constructor for sending email to receiver
|
||||||
''' </summary>
|
''' </summary>
|
||||||
@@ -29,18 +46,24 @@ Public Class EmailData
|
|||||||
''' <param name="pReceiver"></param>
|
''' <param name="pReceiver"></param>
|
||||||
''' <param name="pStatus"></param>
|
''' <param name="pStatus"></param>
|
||||||
Public Sub New(pEnvelope As Entities.Envelope, pReceiver As Receiver, pStatus As Constants.EnvelopeStatus)
|
Public Sub New(pEnvelope As Entities.Envelope, pReceiver As Receiver, pStatus As Constants.EnvelopeStatus)
|
||||||
|
|
||||||
|
DynamicStringsForEmails(pEnvelope)
|
||||||
|
|
||||||
EmailAdress = pReceiver.EmailAddress
|
EmailAdress = pReceiver.EmailAddress
|
||||||
EmailSubject = String.Empty
|
EmailSubject = String.Empty
|
||||||
EmailType = pStatus
|
EmailType = pStatus
|
||||||
|
|
||||||
Message = TextToHtml(pEnvelope.Message)
|
Message = TextToHtml(Message)
|
||||||
ReferenceID = pEnvelope.Id
|
ReferenceID = pEnvelope.Id
|
||||||
ReferenceString = pEnvelope.Uuid
|
ReferenceString = pEnvelope.Uuid
|
||||||
ReceiverName = pReceiver.Name
|
ReceiverName = pReceiver.Name
|
||||||
ReceiverAccessCode = pReceiver.AccessCode
|
ReceiverAccessCode = pReceiver.AccessCode
|
||||||
SenderAdress = pEnvelope.User.Email
|
SenderAdress = pEnvelope.User.Email
|
||||||
SenderName = pEnvelope.User.FullName
|
SenderName = pEnvelope.User.GetFullName()
|
||||||
EnvelopeTitle = pEnvelope.Title
|
EnvelopeTitle = pEnvelope.Title
|
||||||
|
EnvelopeTypeId = pEnvelope.EnvelopeTypeId
|
||||||
|
SignatureType = TextToHtml(SignatureType)
|
||||||
|
DocumentProcess = TextToHtml(DocumentProcess)
|
||||||
End Sub
|
End Sub
|
||||||
Public Function TextToHtml(input As String) As String
|
Public Function TextToHtml(input As String) As String
|
||||||
If String.IsNullOrEmpty(input) Then Return ""
|
If String.IsNullOrEmpty(input) Then Return ""
|
||||||
@@ -65,18 +88,24 @@ Public Class EmailData
|
|||||||
''' <param name="pEnvelope"></param>
|
''' <param name="pEnvelope"></param>
|
||||||
''' <param name="pStatus"></param>
|
''' <param name="pStatus"></param>
|
||||||
Public Sub New(pEnvelope As Entities.Envelope, pStatus As Constants.EnvelopeStatus)
|
Public Sub New(pEnvelope As Entities.Envelope, pStatus As Constants.EnvelopeStatus)
|
||||||
|
|
||||||
|
DynamicStringsForEmails(pEnvelope)
|
||||||
|
|
||||||
EmailAdress = pEnvelope.User.Email
|
EmailAdress = pEnvelope.User.Email
|
||||||
EmailSubject = String.Empty
|
EmailSubject = String.Empty
|
||||||
EmailType = pStatus
|
EmailType = pStatus
|
||||||
|
|
||||||
Message = pEnvelope.Message
|
Message = TextToHtml(Message)
|
||||||
ReferenceID = pEnvelope.Id
|
ReferenceID = pEnvelope.Id
|
||||||
ReferenceString = pEnvelope.Uuid
|
ReferenceString = pEnvelope.Uuid
|
||||||
ReceiverName = pEnvelope.User.FullName
|
ReceiverName = pEnvelope.User.GetFullName()
|
||||||
ReceiverAccessCode = String.Empty
|
ReceiverAccessCode = String.Empty
|
||||||
SenderAdress = pEnvelope.User.Email
|
SenderAdress = pEnvelope.User.Email
|
||||||
SenderName = pEnvelope.User.FullName
|
SenderName = pEnvelope.User.GetFullName()
|
||||||
EnvelopeTitle = pEnvelope.Title
|
EnvelopeTitle = pEnvelope.Title
|
||||||
|
EnvelopeTypeId = pEnvelope.EnvelopeTypeId
|
||||||
|
SignatureType = TextToHtml(SignatureType)
|
||||||
|
DocumentProcess = TextToHtml(DocumentProcess)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ Public Class EnvelopeModel
|
|||||||
Dim oEnvelope = New Envelope() With {
|
Dim oEnvelope = New Envelope() With {
|
||||||
.Id = pRow.ItemEx("GUID", 0),
|
.Id = pRow.ItemEx("GUID", 0),
|
||||||
.Title = pRow.ItemEx("TITLE", ""),
|
.Title = pRow.ItemEx("TITLE", ""),
|
||||||
|
.Comment = pRow.ItemEx("COMMENT", ""),
|
||||||
.EnvelopeTypeId = pRow.ItemEx("ENVELOPE_TYPE", 0),
|
.EnvelopeTypeId = pRow.ItemEx("ENVELOPE_TYPE", 0),
|
||||||
.ContractType = pRow.ItemEx("CONTRACT_TYPE", 0),
|
.ContractType = pRow.ItemEx("CONTRACT_TYPE", 0),
|
||||||
.Uuid = pRow.ItemEx("ENVELOPE_UUID", ""),
|
.Uuid = pRow.ItemEx("ENVELOPE_UUID", ""),
|
||||||
@@ -37,7 +38,7 @@ Public Class EnvelopeModel
|
|||||||
.AddedWhen = pRow.Item("ADDED_WHEN"),
|
.AddedWhen = pRow.Item("ADDED_WHEN"),
|
||||||
.ChangedWhen = pRow.ItemEx(Of Date)("CHANGED_WHEN", Nothing),
|
.ChangedWhen = pRow.ItemEx(Of Date)("CHANGED_WHEN", Nothing),
|
||||||
.CertificationType = ObjectEx.ToEnum(Of CertificationType)(pRow.ItemEx("CERTIFICATION_TYPE", CertificationType.AdvancedElectronicSignature.ToString())),
|
.CertificationType = ObjectEx.ToEnum(Of CertificationType)(pRow.ItemEx("CERTIFICATION_TYPE", CertificationType.AdvancedElectronicSignature.ToString())),
|
||||||
.User = New EGUser(),
|
.User = New FormUser(),
|
||||||
.ExpiresWhen = pRow.ItemEx(Of Date)("EXPIRES_WHEN", Nothing),
|
.ExpiresWhen = pRow.ItemEx(Of Date)("EXPIRES_WHEN", Nothing),
|
||||||
.ExpiresWarningWhen = pRow.ItemEx(Of Date)("EXPIRES_WARNING_WHEN", Nothing),
|
.ExpiresWarningWhen = pRow.ItemEx(Of Date)("EXPIRES_WARNING_WHEN", Nothing),
|
||||||
.ExpiresWhenDays = pRow.ItemEx("EXPIRES_WHEN_DAYS", 0),
|
.ExpiresWhenDays = pRow.ItemEx("EXPIRES_WHEN_DAYS", 0),
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ Imports EnvelopeGenerator.Domain.Entities
|
|||||||
|
|
||||||
Public Class State
|
Public Class State
|
||||||
Public Property UserId As Integer
|
Public Property UserId As Integer
|
||||||
Public Property User As EGUser
|
Public Property User As FormUser
|
||||||
Public Property Config As Config
|
Public Property Config As Config
|
||||||
Public Property DbConfig As DbConfig
|
Public Property DbConfig As DbConfig
|
||||||
Public Property LogConfig As LogConfig
|
Public Property LogConfig As LogConfig
|
||||||
|
|||||||
@@ -9,8 +9,8 @@ Public Class UserModel
|
|||||||
MyBase.New(pState)
|
MyBase.New(pState)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Function ToUser(pRow As DataRow) As EGUser
|
Private Function ToUser(pRow As DataRow) As FormUser
|
||||||
Dim oUser = New EGUser() With {
|
Dim oUser = New FormUser() With {
|
||||||
.Id = pRow.ItemEx("GUID", 0),
|
.Id = pRow.ItemEx("GUID", 0),
|
||||||
.Prename = pRow.ItemEx("PRENAME", ""),
|
.Prename = pRow.ItemEx("PRENAME", ""),
|
||||||
.Name = pRow.ItemEx("NAME", ""),
|
.Name = pRow.ItemEx("NAME", ""),
|
||||||
@@ -22,7 +22,7 @@ Public Class UserModel
|
|||||||
Return oUser
|
Return oUser
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Function CheckUserLogin(pUser As EGUser) As EGUser
|
Public Function CheckUserLogin(pUser As FormUser) As FormUser
|
||||||
Try
|
Try
|
||||||
Dim oSql = $"SELECT * FROM [dbo].[FNDD_LOGIN_USER_MODULE] ('{pUser.Username}', 'SIG_ENV_CR', 1)"
|
Dim oSql = $"SELECT * FROM [dbo].[FNDD_LOGIN_USER_MODULE] ('{pUser.Username}', 'SIG_ENV_CR', 1)"
|
||||||
Dim oTable As DataTable = Database.GetDatatable(oSql)
|
Dim oTable As DataTable = Database.GetDatatable(oSql)
|
||||||
@@ -45,7 +45,7 @@ Public Class UserModel
|
|||||||
End Try
|
End Try
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Function SelectUser() As EGUser
|
Public Function SelectUser() As FormUser
|
||||||
Try
|
Try
|
||||||
Dim oSql = $"SELECT * FROM [dbo].[TBDD_USER] WHERE GUID = {State.UserId}"
|
Dim oSql = $"SELECT * FROM [dbo].[TBDD_USER] WHERE GUID = {State.UserId}"
|
||||||
Dim oTable = Database.GetDatatable(oSql)
|
Dim oTable = Database.GetDatatable(oSql)
|
||||||
@@ -58,7 +58,7 @@ Public Class UserModel
|
|||||||
End Try
|
End Try
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Function SelectUser(pUserID As Integer) As EGUser
|
Public Function SelectUser(pUserID As Integer) As FormUser
|
||||||
Try
|
Try
|
||||||
Dim oSql = $"SELECT * FROM [dbo].[TBDD_USER] WHERE GUID = {pUserID}"
|
Dim oSql = $"SELECT * FROM [dbo].[TBDD_USER] WHERE GUID = {pUserID}"
|
||||||
Dim oTable = Database.GetDatatable(oSql)
|
Dim oTable = Database.GetDatatable(oSql)
|
||||||
|
|||||||
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
|||||||
' indem Sie "*" wie unten gezeigt eingeben:
|
' indem Sie "*" wie unten gezeigt eingeben:
|
||||||
' <Assembly: AssemblyVersion("1.0.*")>
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
<Assembly: AssemblyVersion("2.7.0.0")>
|
<Assembly: AssemblyVersion("2.7.1.0")>
|
||||||
<Assembly: AssemblyFileVersion("2.7.0.0")>
|
<Assembly: AssemblyFileVersion("2.7.1.0")>
|
||||||
|
|||||||
@@ -57,7 +57,9 @@ Public Class ActionService
|
|||||||
Public Function ResendReceiver(pEnvelope As Domain.Entities.Envelope, pReceiver As Receiver) As Boolean
|
Public Function ResendReceiver(pEnvelope As Domain.Entities.Envelope, pReceiver As Receiver) As Boolean
|
||||||
Return EmailService.SendDocumentReceivedEmail(pEnvelope, pReceiver)
|
Return EmailService.SendDocumentReceivedEmail(pEnvelope, pReceiver)
|
||||||
End Function
|
End Function
|
||||||
|
Public Function ManuallySendAccessCode(pEnvelope As Domain.Entities.Envelope, pReceiver As Receiver) As Boolean
|
||||||
|
Return EmailService.SendDocumentAccessCodeReceivedEmail(pEnvelope, pReceiver)
|
||||||
|
End Function
|
||||||
|
|
||||||
Public Function DeleteEnvelope(pEnvelope As Domain.Entities.Envelope, pReason As String) As Boolean
|
Public Function DeleteEnvelope(pEnvelope As Domain.Entities.Envelope, pReason As String) As Boolean
|
||||||
Dim oStatus As EnvelopeStatus
|
Dim oStatus As EnvelopeStatus
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
Imports DigitalData.Modules.Base
|
Imports DigitalData.Modules.Base
|
||||||
Imports DigitalData.Modules.Logging
|
Imports DigitalData.Modules.Logging
|
||||||
|
Imports EnvelopeGenerator.CommonServices.My.Resources
|
||||||
Imports EnvelopeGenerator.Domain.Constants
|
Imports EnvelopeGenerator.Domain.Constants
|
||||||
|
Imports EnvelopeGenerator.Domain.Entities
|
||||||
|
|
||||||
Public Class TemplateService
|
Public Class TemplateService
|
||||||
Inherits BaseService
|
Inherits BaseService
|
||||||
@@ -24,13 +26,14 @@ Public Class TemplateService
|
|||||||
{"[NAME_RECEIVER]", pEmailData.ReceiverName},
|
{"[NAME_RECEIVER]", pEmailData.ReceiverName},
|
||||||
{"[NAME_SENDER]", pEmailData.SenderName},
|
{"[NAME_SENDER]", pEmailData.SenderName},
|
||||||
{"[NAME_PORTAL]", DbConfig.ExternalProgramName},
|
{"[NAME_PORTAL]", DbConfig.ExternalProgramName},
|
||||||
{"[SIGNATURE_TYPE]", "signieren"},
|
{"[SIGNATURE_TYPE]", pEmailData.SignatureType},
|
||||||
{"[LINK_TO_DOCUMENT]", pEmailData.SignatureLink},
|
{"[LINK_TO_DOCUMENT]", pEmailData.SignatureLink},
|
||||||
{"[LINK_TO_DOCUMENT_TEXT]", $"{pEmailData.SignatureLink.Truncate(40)}.."},
|
{"[LINK_TO_DOCUMENT_TEXT]", $"{pEmailData.SignatureLink.Truncate(40)}.."},
|
||||||
{"[DOCUMENT_TITLE]", pEmailData.EnvelopeTitle},
|
{"[DOCUMENT_TITLE]", pEmailData.EnvelopeTitle},
|
||||||
{"[MESSAGE]", pEmailData.Message},
|
{"[MESSAGE]", pEmailData.Message},
|
||||||
{"[DOCUMENT_ACCESS_CODE]", pEmailData.ReceiverAccessCode},
|
{"[DOCUMENT_ACCESS_CODE]", pEmailData.ReceiverAccessCode},
|
||||||
{"[REASON]", pReason}
|
{"[REASON]", pReason},
|
||||||
|
{"[DOCUMENT_PROCESS]", pEmailData.DocumentProcess}
|
||||||
}
|
}
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -79,7 +82,7 @@ Public Class TemplateService
|
|||||||
|
|
||||||
For Each dictItem As KeyValuePair(Of String, String) In _replaceDictionary
|
For Each dictItem As KeyValuePair(Of String, String) In _replaceDictionary
|
||||||
If oText.Contains(dictItem.Key) Then
|
If oText.Contains(dictItem.Key) Then
|
||||||
|
Logger.Debug($"Replacing {dictItem.Key} with {dictItem.Value}")
|
||||||
oText = oText.Replace(dictItem.Key, dictItem.Value)
|
oText = oText.Replace(dictItem.Key, dictItem.Value)
|
||||||
|
|
||||||
End If
|
End If
|
||||||
|
|||||||
0
EnvelopeGenerator.CommonServices/Strings/Email.fr.Designer.vb
generated
Normal file
0
EnvelopeGenerator.CommonServices/Strings/Email.fr.Designer.vb
generated
Normal file
123
EnvelopeGenerator.CommonServices/Strings/Email.fr.resx
Normal file
123
EnvelopeGenerator.CommonServices/Strings/Email.fr.resx
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="Sie haben ein Dokument zur Unterschrift erhalten: {0}" xml:space="preserve">
|
||||||
|
<value>Vous avez reçu un document à signer : {0}</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -133,7 +133,7 @@
|
|||||||
<value>Do you want to delete the signature?</value>
|
<value>Do you want to delete the signature?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Do you want to start the signature process now" xml:space="preserve">
|
<data name="Do you want to start the signature process now" xml:space="preserve">
|
||||||
<value>Do you want to start the signature process now?</value>
|
<value>Do you want to start the process now?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Document could not be opened" xml:space="preserve">
|
<data name="Document could not be opened" xml:space="preserve">
|
||||||
<value>The Document could not be opened!</value>
|
<value>The Document could not be opened!</value>
|
||||||
@@ -147,9 +147,6 @@
|
|||||||
<data name="Drop only one file" xml:space="preserve">
|
<data name="Drop only one file" xml:space="preserve">
|
||||||
<value>Currently, only one PDF file is permitted via drag and drop.</value>
|
<value>Currently, only one PDF file is permitted via drag and drop.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Drop only pdf" xml:space="preserve">
|
|
||||||
<value />
|
|
||||||
</data>
|
|
||||||
<data name="Edit Envelope" xml:space="preserve">
|
<data name="Edit Envelope" xml:space="preserve">
|
||||||
<value>Edit Envelope</value>
|
<value>Edit Envelope</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -166,7 +163,7 @@
|
|||||||
<value>Envelope could not be sent!</value>
|
<value>Envelope could not be sent!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Envelope Invitations Sent" xml:space="preserve">
|
<data name="Envelope Invitations Sent" xml:space="preserve">
|
||||||
<value>The invitations have been scheduled for dispatch.s</value>
|
<value>The envelope have been scheduled for dispatch.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Envelope Overview" xml:space="preserve">
|
<data name="Envelope Overview" xml:space="preserve">
|
||||||
<value>Overview</value>
|
<value>Overview</value>
|
||||||
@@ -181,7 +178,8 @@
|
|||||||
<value>The email [ @Mail ] could not be varified!</value>
|
<value>The email [ @Mail ] could not be varified!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Error phone Validation" xml:space="preserve">
|
<data name="Error phone Validation" xml:space="preserve">
|
||||||
<value />
|
<value>The mobile phone number [@PhoneNr] could not be validated.
|
||||||
|
Pattern: +491234567890</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Error sending the envelope" xml:space="preserve">
|
<data name="Error sending the envelope" xml:space="preserve">
|
||||||
<value>Error sending the envelope:</value>
|
<value>Error sending the envelope:</value>
|
||||||
@@ -195,6 +193,9 @@
|
|||||||
<data name="Error when validating the envelope" xml:space="preserve">
|
<data name="Error when validating the envelope" xml:space="preserve">
|
||||||
<value>Error when validating the envelope:</value>
|
<value>Error when validating the envelope:</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Error while opening file" xml:space="preserve">
|
||||||
|
<value>The file cannot be accessed because it is currently in use by another program.</value>
|
||||||
|
</data>
|
||||||
<data name="Errors when saving the envelope" xml:space="preserve">
|
<data name="Errors when saving the envelope" xml:space="preserve">
|
||||||
<value>Errors when saving the envelope</value>
|
<value>Errors when saving the envelope</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -222,6 +223,9 @@
|
|||||||
<data name="Missing Receivers" xml:space="preserve">
|
<data name="Missing Receivers" xml:space="preserve">
|
||||||
<value>Missing Receivers</value>
|
<value>Missing Receivers</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ModificationOriginFile_FormFields" xml:space="preserve">
|
||||||
|
<value>ModificationOriginFile_FormFields</value>
|
||||||
|
</data>
|
||||||
<data name="New Envelope" xml:space="preserve">
|
<data name="New Envelope" xml:space="preserve">
|
||||||
<value>New Envelope</value>
|
<value>New Envelope</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -255,10 +259,137 @@
|
|||||||
<data name="There are already elements for this recipient" xml:space="preserve">
|
<data name="There are already elements for this recipient" xml:space="preserve">
|
||||||
<value>There are already elements for this recipient. Do you still want to delete the recipient?</value>
|
<value>There are already elements for this recipient. Do you still want to delete the recipient?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="There are unsaved changes." xml:space="preserve">
|
<data name="There are unsaved changes" xml:space="preserve">
|
||||||
<value>There are unsaved changes. Do you want to save them?</value>
|
<value>There are unsaved changes. Do you want to save them?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="You received a document to sign" xml:space="preserve">
|
<data name="You received a document to sign" xml:space="preserve">
|
||||||
<value>You received a document to sign:</value>
|
<value>You received a document to sign:</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="AccessCode successfully sent" xml:space="preserve">
|
||||||
|
<value>Access code successfully sent to @Mail</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error downloading file" xml:space="preserve">
|
||||||
|
<value>Document could not be downloaded.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error Pdf Status" xml:space="preserve">
|
||||||
|
<value>PDF status of file {0} is not OK. Please check PDF conformity!</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error concat documents" xml:space="preserve">
|
||||||
|
<value>Merging the documents has failed.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error while resetting" xml:space="preserve">
|
||||||
|
<value>Reset failed.</value>
|
||||||
|
</data>
|
||||||
|
<data name="No template" xml:space="preserve">
|
||||||
|
<value>No templates are available.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Unexpected Error" xml:space="preserve">
|
||||||
|
<value>An unexpected error has occurred.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Viewer could not be initialized" xml:space="preserve">
|
||||||
|
<value>Viewer could not be initialized.</value>
|
||||||
|
</data>
|
||||||
|
<data name="GdViewer ActionError" xml:space="preserve">
|
||||||
|
<value>GDViewer returned error [{0}] on action [{1}]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error LoadUsers" xml:space="preserve">
|
||||||
|
<value>Could not load user {0}{1}</value>
|
||||||
|
</data>
|
||||||
|
<data name="Activate ghost mode" xml:space="preserve">
|
||||||
|
<value>Do you want to activate the ghost mode?</value>
|
||||||
|
</data>
|
||||||
|
<data name="Select user for ghost mode" xml:space="preserve">
|
||||||
|
<value>Please select an user for ghost mode.</value>
|
||||||
|
</data>
|
||||||
|
<data name="No envelope selected" xml:space="preserve">
|
||||||
|
<value>No envelope selected.</value>
|
||||||
|
</data>
|
||||||
|
<data name="No row selected" xml:space="preserve">
|
||||||
|
<value>No row selected.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error while loading result report" xml:space="preserve">
|
||||||
|
<value>Error while loading result report</value>
|
||||||
|
</data>
|
||||||
|
<data name="No result report available" xml:space="preserve">
|
||||||
|
<value>Es ist kein Ergebnisbericht vorhanden.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Could not load result report" xml:space="preserve">
|
||||||
|
<value>Could not load result report.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Debug log is active" xml:space="preserve">
|
||||||
|
<value>Debug log is active</value>
|
||||||
|
</data>
|
||||||
|
<data name="Ghost mode is active" xml:space="preserve">
|
||||||
|
<value>GhostMode active: {0} – End signFLOW to quit ghost mode</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error while creating mail" xml:space="preserve">
|
||||||
|
<value>An error occurred while creating the email.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Export log file was succesful" xml:space="preserve">
|
||||||
|
<value>The export of the log files was successful. Please make the log files available in a ticket or send them to your admin team.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error while saving log file" xml:space="preserve">
|
||||||
|
<value>Error occured while saving the log file.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail to creator will be sent" xml:space="preserve">
|
||||||
|
<value>Final email to the creator would be sent.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail to receivers will be sent" xml:space="preserve">
|
||||||
|
<value>Final email to the receivers would be sent.Final email to the signers would be sent.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail to creator will not be sent" xml:space="preserve">
|
||||||
|
<value>Final email to the creator would not be generated.{0}</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail to receivers will not be sent" xml:space="preserve">
|
||||||
|
<value>Final email to the signers would not be generated.{0}</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail debug creator" xml:space="preserve">
|
||||||
|
<value>SendFinalEmailToCreator is disabled – oMailToCreator [{0}] <> [{1}]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail debug receiver" xml:space="preserve">
|
||||||
|
<value>SendFinalEmailToReceivers is disabled – oMailToReceivers [{0}] <> [{1}]
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="No access code defined so far" xml:space="preserve">
|
||||||
|
<value>No access code has been defined for this envelope so far.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Grid layout completed envelopes saved" xml:space="preserve">
|
||||||
|
<value>Grid layout for completed envelopes saved.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Grid Layout Envelopes Saved" xml:space="preserve">
|
||||||
|
<value>Grid layout for envelopes saved.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Reason for aborting" xml:space="preserve">
|
||||||
|
<value>Please provide a reason for the cancellation. - </value>
|
||||||
|
</data>
|
||||||
|
<data name="Database configured" xml:space="preserve">
|
||||||
|
<value>Database configured. The application will restart.</value>
|
||||||
|
</data>
|
||||||
|
<data name="No database configured" xml:space="preserve">
|
||||||
|
<value>No database configured. The application will close.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error during initialization" xml:space="preserve">
|
||||||
|
<value>Error during initialization: </value>
|
||||||
|
</data>
|
||||||
|
<data name="Initializing database" xml:space="preserve">
|
||||||
|
<value>Initializing Database</value>
|
||||||
|
</data>
|
||||||
|
<data name="Could not connect to database" xml:space="preserve">
|
||||||
|
<value>Could not connect to the database. Application will close!</value>
|
||||||
|
</data>
|
||||||
|
<data name="Initializing Configuration" xml:space="preserve">
|
||||||
|
<value>Initializing Configuration</value>
|
||||||
|
</data>
|
||||||
|
<data name="Initializing User" xml:space="preserve">
|
||||||
|
<value>Initializing User</value>
|
||||||
|
</data>
|
||||||
|
<data name="Initializing Rights" xml:space="preserve">
|
||||||
|
<value>Initializing Rights</value>
|
||||||
|
</data>
|
||||||
|
<data name="Starting Application" xml:space="preserve">
|
||||||
|
<value>Starting Application</value>
|
||||||
|
</data>
|
||||||
|
<data name="User unknown" xml:space="preserve">
|
||||||
|
<value>User {0} is unknown. Please contact your administrator. Application will close!</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
0
EnvelopeGenerator.CommonServices/Strings/Envelope.fr.Designer.vb
generated
Normal file
0
EnvelopeGenerator.CommonServices/Strings/Envelope.fr.Designer.vb
generated
Normal file
395
EnvelopeGenerator.CommonServices/Strings/Envelope.fr.resx
Normal file
395
EnvelopeGenerator.CommonServices/Strings/Envelope.fr.resx
Normal file
@@ -0,0 +1,395 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="Dialog Concat PDF" xml:space="preserve">
|
||||||
|
<value>Veuillez sélectionner les documents PDF que vous souhaitez fusionner :</value>
|
||||||
|
</data>
|
||||||
|
<data name="Do you really want to delete this envelope" xml:space="preserve">
|
||||||
|
<value>Voulez-vous vraiment rappeler/supprimer cette enveloppe ?</value>
|
||||||
|
</data>
|
||||||
|
<data name="Do you really want to remove this document" xml:space="preserve">
|
||||||
|
<value>Voulez-vous vraiment supprimer ce document ?</value>
|
||||||
|
</data>
|
||||||
|
<data name="Do you want to delete the selected recipient" xml:space="preserve">
|
||||||
|
<value>Voulez-vous supprimer le destinataire sélectionné ?</value>
|
||||||
|
</data>
|
||||||
|
<data name="Do you want to delete the signature" xml:space="preserve">
|
||||||
|
<value>Voulez-vous supprimer la signature ?</value>
|
||||||
|
</data>
|
||||||
|
<data name="Do you want to start the signature process now" xml:space="preserve">
|
||||||
|
<value>Voulez-vous démarrer le processus maintenant ?</value>
|
||||||
|
</data>
|
||||||
|
<data name="Document could not be opened" xml:space="preserve">
|
||||||
|
<value>Le document n’a pas pu être ouvert !</value>
|
||||||
|
</data>
|
||||||
|
<data name="Document Could Not Be Saved" xml:space="preserve">
|
||||||
|
<value>Le document n’a pas pu être enregistré !</value>
|
||||||
|
</data>
|
||||||
|
<data name="Document forwarded" xml:space="preserve">
|
||||||
|
<value>Enveloppe transférée au destinataire {0}.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Drop only one file" xml:space="preserve">
|
||||||
|
<value>Actuellement, une seule pièce PDF est autorisée par glisser-déposer.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Edit Envelope" xml:space="preserve">
|
||||||
|
<value>Modifier l’enveloppe</value>
|
||||||
|
</data>
|
||||||
|
<data name="Elements could not be loaded" xml:space="preserve">
|
||||||
|
<value>Les éléments de signature n’ont pas pu être chargés !</value>
|
||||||
|
</data>
|
||||||
|
<data name="Elements could not be saved" xml:space="preserve">
|
||||||
|
<value>Les éléments de signature n’ont pas pu être enregistrés !</value>
|
||||||
|
</data>
|
||||||
|
<data name="Envelope already sent" xml:space="preserve">
|
||||||
|
<value>L’enveloppe a déjà été envoyée !</value>
|
||||||
|
</data>
|
||||||
|
<data name="Envelope could not be sent" xml:space="preserve">
|
||||||
|
<value>L’enveloppe n’a pas pu être envoyée !</value>
|
||||||
|
</data>
|
||||||
|
<data name="Envelope Invitations Sent" xml:space="preserve">
|
||||||
|
<value>L'enveloppe a été mises à la poste.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Envelope Overview" xml:space="preserve">
|
||||||
|
<value>Vue d’ensemble</value>
|
||||||
|
</data>
|
||||||
|
<data name="Envelope successfully sent" xml:space="preserve">
|
||||||
|
<value>Les invitations ont été envoyées avec succès.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Envelope-Editor" xml:space="preserve">
|
||||||
|
<value>Éditeur d’enveloppe</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error email Validation" xml:space="preserve">
|
||||||
|
<value>L’adresse e-mail [ @Mail ] n’a pas pu être validée !</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error phone Validation" xml:space="preserve">
|
||||||
|
<value>Le numéro de téléphone mobile [@PhoneNr] n’a pas pu être validé.
|
||||||
|
Format attendu : +491234567890</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error sending the envelope" xml:space="preserve">
|
||||||
|
<value>Erreur lors de l’envoi de l’enveloppe :</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error when saving the envelope" xml:space="preserve">
|
||||||
|
<value>Erreur lors de l’enregistrement de l’enveloppe !</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error when saving the recipients" xml:space="preserve">
|
||||||
|
<value>Erreur lors de l’enregistrement des destinataires !</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error when validating the envelope" xml:space="preserve">
|
||||||
|
<value>Erreur lors de la validation de l’enveloppe :</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error while opening file" xml:space="preserve">
|
||||||
|
<value>Le fichier ne peut pas être ouvert car il est actuellement utilisé par une autre application.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Errors when saving the envelope" xml:space="preserve">
|
||||||
|
<value>Erreurs lors de l’enregistrement de l’enveloppe :</value>
|
||||||
|
</data>
|
||||||
|
<data name="Incomplete Receivers" xml:space="preserve">
|
||||||
|
<value>Au moins un destinataire ne possède pas de civilité ou d’adresse e-mail.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Invalid Email Address" xml:space="preserve">
|
||||||
|
<value>Le destinataire {0} ne possède pas d’adresse e-mail valide.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Invitation successfully resend" xml:space="preserve">
|
||||||
|
<value>L’invitation à [@Mail] a été renvoyée avec succès !</value>
|
||||||
|
</data>
|
||||||
|
<data name="Missing Documents" xml:space="preserve">
|
||||||
|
<value>Document manquant</value>
|
||||||
|
</data>
|
||||||
|
<data name="Missing Elements" xml:space="preserve">
|
||||||
|
<value>Au moins un champ de signature doit être défini.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Missing Elements for Receiver" xml:space="preserve">
|
||||||
|
<value>Aucun champ de signature n’est défini pour le destinataire {0}.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Missing Message" xml:space="preserve">
|
||||||
|
<value>Message manquant</value>
|
||||||
|
</data>
|
||||||
|
<data name="Missing Receivers" xml:space="preserve">
|
||||||
|
<value>Destinataires manquants</value>
|
||||||
|
</data>
|
||||||
|
<data name="ModificationOriginFile_FormFields" xml:space="preserve">
|
||||||
|
<value>ModificationOriginFile_FormFields</value>
|
||||||
|
</data>
|
||||||
|
<data name="New Envelope" xml:space="preserve">
|
||||||
|
<value>Nouvelle enveloppe</value>
|
||||||
|
</data>
|
||||||
|
<data name="Only one file is allowed" xml:space="preserve">
|
||||||
|
<value>Une seule pièce est autorisée !</value>
|
||||||
|
</data>
|
||||||
|
<data name="Please read and sign this document" xml:space="preserve">
|
||||||
|
<value>Veuillez lire et signer ce document.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Please select a recipient from the Recipients tab" xml:space="preserve">
|
||||||
|
<value>Veuillez sélectionner un destinataire dans l’onglet Destinataires.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Recipient could not be deleted" xml:space="preserve">
|
||||||
|
<value>Le destinataire n’a pas pu être supprimé !</value>
|
||||||
|
</data>
|
||||||
|
<data name="Should The Envelope Be Saved" xml:space="preserve">
|
||||||
|
<value>L’enveloppe doit-elle être enregistrée ?</value>
|
||||||
|
</data>
|
||||||
|
<data name="Signature" xml:space="preserve">
|
||||||
|
<value>Champ de signature</value>
|
||||||
|
</data>
|
||||||
|
<data name="Signature Editor" xml:space="preserve">
|
||||||
|
<value>Éditeur de signature</value>
|
||||||
|
</data>
|
||||||
|
<data name="The envelope could not be deleted" xml:space="preserve">
|
||||||
|
<value>L’enveloppe n’a pas pu être supprimée !</value>
|
||||||
|
</data>
|
||||||
|
<data name="The envelope does not contain any documents" xml:space="preserve">
|
||||||
|
<value>L’enveloppe ne contient aucun document.</value>
|
||||||
|
</data>
|
||||||
|
<data name="There are already elements for this recipient" xml:space="preserve">
|
||||||
|
<value>Des éléments existent déjà pour ce destinataire. Voulez-vous tout de même le supprimer ?</value>
|
||||||
|
</data>
|
||||||
|
<data name="There are unsaved changes" xml:space="preserve">
|
||||||
|
<value>Des modifications non enregistrées existent. Voulez-vous les enregistrer ?</value>
|
||||||
|
</data>
|
||||||
|
<data name="You received a document to sign" xml:space="preserve">
|
||||||
|
<value>Vous avez reçu un document à signer :</value>
|
||||||
|
</data>
|
||||||
|
<data name="AccessCode successfully sent" xml:space="preserve">
|
||||||
|
<value>Le code d'accès a été envoyé avec succès à @Mail</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error downloading file" xml:space="preserve">
|
||||||
|
<value>Le document n’a pas pu être téléchargé.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error Pdf Status" xml:space="preserve">
|
||||||
|
<value>Le statut PDF du fichier {0} n’est pas correct. Veuillez vérifier la conformité PDF !</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error concat documents" xml:space="preserve">
|
||||||
|
<value>La fusion des documents a échoué.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error while resetting" xml:space="preserve">
|
||||||
|
<value>Échec de la réinitialisation.</value>
|
||||||
|
</data>
|
||||||
|
<data name="No template" xml:space="preserve">
|
||||||
|
<value>Aucun modèle n’est disponible.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Unexpected Error" xml:space="preserve">
|
||||||
|
<value>Une erreur inattendue est survenue.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Viewer could not be initialized" xml:space="preserve">
|
||||||
|
<value>L’affichage n’a pas pu être initialisé.</value>
|
||||||
|
</data>
|
||||||
|
<data name="GdViewer ActionError" xml:space="preserve">
|
||||||
|
<value>GDViewer a retourné l’erreur [{0}] lors de l’action [{1}].</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error LoadUsers" xml:space="preserve">
|
||||||
|
<value>Impossible de charger l’utilisateur {0}{1}</value>
|
||||||
|
</data>
|
||||||
|
<data name="Activate ghost mode" xml:space="preserve">
|
||||||
|
<value>Voulez-vous activer le mode fantôme ?</value>
|
||||||
|
</data>
|
||||||
|
<data name="Select user for ghost mode" xml:space="preserve">
|
||||||
|
<value>Veuillez sélectionner un utilisateur pour le mode fantôme.</value>
|
||||||
|
</data>
|
||||||
|
<data name="No envelope selected" xml:space="preserve">
|
||||||
|
<value>Aucune enveloppe sélectionnée.</value>
|
||||||
|
</data>
|
||||||
|
<data name="No row selected" xml:space="preserve">
|
||||||
|
<value>Aucune ligne sélectionnée.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error while loading result report" xml:space="preserve">
|
||||||
|
<value>Erreur lors du chargement du document de résultat.</value>
|
||||||
|
</data>
|
||||||
|
<data name="No result report available" xml:space="preserve">
|
||||||
|
<value>Aucun document de résultat n’est disponible pour cette enveloppe.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Could not load result report" xml:space="preserve">
|
||||||
|
<value>Le document de résultat n’a pas pu être chargé.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Debug log is active" xml:space="preserve">
|
||||||
|
<value>Le journal de débogage est actif.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Ghost mode is active" xml:space="preserve">
|
||||||
|
<value>Mode fantôme actif : {0} – Fermez signFLOW pour quitter le mode fantôme</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error while creating mail" xml:space="preserve">
|
||||||
|
<value>Une erreur s’est produite lors de la création de l’e-mail.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Export log file was succesful" xml:space="preserve">
|
||||||
|
<value>L’export des fichiers journaux a réussi. Veuillez mettre les fichiers journaux à disposition dans un ticket ou les envoyer à votre équipe d’administrateurs.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error while saving log file" xml:space="preserve">
|
||||||
|
<value>Erreur lors de l’enregistrement du fichier journal.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail to creator will be sent" xml:space="preserve">
|
||||||
|
<value>L’e-mail final serait envoyé au créateur.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail to receivers will be sent" xml:space="preserve">
|
||||||
|
<value>L’e-mail final serait envoyé aux signataires.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail to creator will not be sent" xml:space="preserve">
|
||||||
|
<value>L’e-mail final ne serait pas généré.{0}</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail to receivers will not be sent" xml:space="preserve">
|
||||||
|
<value>L’e-mail final ne serait pas généré pour les signataires.{0}</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail debug creator" xml:space="preserve">
|
||||||
|
<value>SendFinalEmailToCreator est désactivé – oMailToCreator [{0}] <> [{1}]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail debug receiver" xml:space="preserve">
|
||||||
|
<value>SendFinalEmailToReceivers est désactivé – oMailToReceivers [{0}] <> [{1}]
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="No access code defined so far" xml:space="preserve">
|
||||||
|
<value>Aucun code d’accès n’a encore été défini pour cette enveloppe.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Grid layout completed envelopes saved" xml:space="preserve">
|
||||||
|
<value>Disposition de la grille pour les enveloppes terminées enregistrée.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Grid Layout Envelopes Saved" xml:space="preserve">
|
||||||
|
<value>Disposition de la grille pour les enveloppes enregistrée.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Reason for aborting" xml:space="preserve">
|
||||||
|
<value>Veuillez indiquer un motif d’annulation. - </value>
|
||||||
|
</data>
|
||||||
|
<data name="Database configured" xml:space="preserve">
|
||||||
|
<value>Base de données configurée. L’application va redémarrer.</value>
|
||||||
|
</data>
|
||||||
|
<data name="No database configured" xml:space="preserve">
|
||||||
|
<value>Aucune base de données configurée. L’application va se fermer.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error during initialization" xml:space="preserve">
|
||||||
|
<value>Erreur lors de l’initialisation : </value>
|
||||||
|
</data>
|
||||||
|
<data name="Initializing database" xml:space="preserve">
|
||||||
|
<value>Initialisation de la base de données</value>
|
||||||
|
</data>
|
||||||
|
<data name="Could not connect to database" xml:space="preserve">
|
||||||
|
<value>Impossible de se connecter à la base de données. L’application va se fermer !</value>
|
||||||
|
</data>
|
||||||
|
<data name="Initializing Configuration" xml:space="preserve">
|
||||||
|
<value>Initialisation de la configuration</value>
|
||||||
|
</data>
|
||||||
|
<data name="Initializing User" xml:space="preserve">
|
||||||
|
<value>Initialisation de l’utilisateur</value>
|
||||||
|
</data>
|
||||||
|
<data name="Initializing Rights" xml:space="preserve">
|
||||||
|
<value>Initialisation des droits</value>
|
||||||
|
</data>
|
||||||
|
<data name="Starting Application" xml:space="preserve">
|
||||||
|
<value>Démarrage de l’application</value>
|
||||||
|
</data>
|
||||||
|
<data name="User unknown" xml:space="preserve">
|
||||||
|
<value>L’utilisateur {0} est inconnu. Veuillez contacter votre administrateur. L’application va se fermer.</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -133,7 +133,7 @@
|
|||||||
<value>Wollen Sie die Signatur löschen?</value>
|
<value>Wollen Sie die Signatur löschen?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Do you want to start the signature process now" xml:space="preserve">
|
<data name="Do you want to start the signature process now" xml:space="preserve">
|
||||||
<value>Wollen Sie den Signaturprozess nun starten?</value>
|
<value>Wollen Sie den Prozess nun starten?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Document could not be opened" xml:space="preserve">
|
<data name="Document could not be opened" xml:space="preserve">
|
||||||
<value>Das Dokument konnte nicht geöffnet werden!</value>
|
<value>Das Dokument konnte nicht geöffnet werden!</value>
|
||||||
@@ -163,7 +163,7 @@
|
|||||||
<value>Umschlag konnte nicht gesendet werden!</value>
|
<value>Umschlag konnte nicht gesendet werden!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Envelope Invitations Sent" xml:space="preserve">
|
<data name="Envelope Invitations Sent" xml:space="preserve">
|
||||||
<value>Die Einladungen zum Signieren wurden zum Versand eingereiht.</value>
|
<value>Der Umschlag wurde zum Versand eingereiht.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Envelope Overview" xml:space="preserve">
|
<data name="Envelope Overview" xml:space="preserve">
|
||||||
<value>Übersicht</value>
|
<value>Übersicht</value>
|
||||||
@@ -178,8 +178,8 @@
|
|||||||
<value>Die Email-Adresse [ @Mail ] konnte nicht validiert werden!</value>
|
<value>Die Email-Adresse [ @Mail ] konnte nicht validiert werden!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Error phone Validation" xml:space="preserve">
|
<data name="Error phone Validation" xml:space="preserve">
|
||||||
<value>The mobile phone number [@PhoneNr] could not be validated.
|
<value>Die Mobiltelefonnummer [@PhoneNr] konnte nicht validiert werden.
|
||||||
Pattern: +491234567890</value>
|
Format: +491234567890</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Error sending the envelope" xml:space="preserve">
|
<data name="Error sending the envelope" xml:space="preserve">
|
||||||
<value>Fehler beim Senden des Umschlags:</value>
|
<value>Fehler beim Senden des Umschlags:</value>
|
||||||
@@ -193,6 +193,9 @@ Pattern: +491234567890</value>
|
|||||||
<data name="Error when validating the envelope" xml:space="preserve">
|
<data name="Error when validating the envelope" xml:space="preserve">
|
||||||
<value>Fehler bei der Validierung des Umschlags:</value>
|
<value>Fehler bei der Validierung des Umschlags:</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Error while opening file" xml:space="preserve">
|
||||||
|
<value>Die Datei kann nicht geöffnet werden, da sie derzeit von einem anderen Programm verwendet wird.</value>
|
||||||
|
</data>
|
||||||
<data name="Errors when saving the envelope" xml:space="preserve">
|
<data name="Errors when saving the envelope" xml:space="preserve">
|
||||||
<value>Fehler beim Speichern des Umschlags: </value>
|
<value>Fehler beim Speichern des Umschlags: </value>
|
||||||
</data>
|
</data>
|
||||||
@@ -221,7 +224,7 @@ Pattern: +491234567890</value>
|
|||||||
<value>Fehlende Empfänger</value>
|
<value>Fehlende Empfänger</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ModificationOriginFile_FormFields" xml:space="preserve">
|
<data name="ModificationOriginFile_FormFields" xml:space="preserve">
|
||||||
<value />
|
<value>ModificationOriginFile_FormFields</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="New Envelope" xml:space="preserve">
|
<data name="New Envelope" xml:space="preserve">
|
||||||
<value>Neuer Umschlag</value>
|
<value>Neuer Umschlag</value>
|
||||||
@@ -262,4 +265,130 @@ Pattern: +491234567890</value>
|
|||||||
<data name="You received a document to sign" xml:space="preserve">
|
<data name="You received a document to sign" xml:space="preserve">
|
||||||
<value>Sie haben ein Dokument zum signieren erhalten:</value>
|
<value>Sie haben ein Dokument zum signieren erhalten:</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="AccessCode successfully sent" xml:space="preserve">
|
||||||
|
<value>Zugriffscode wurde an @Mail gesendet.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error downloading file" xml:space="preserve">
|
||||||
|
<value>Dokument konnte nicht heruntergeladen werden.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error Pdf Status" xml:space="preserve">
|
||||||
|
<value>PDF-Status der Datei {0} ist nicht OK. Bitte prüfen Sie die PDF-Konformität!</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error concat documents" xml:space="preserve">
|
||||||
|
<value>Das Verketten der Dokumente ist fehlgeschlagen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error while resetting" xml:space="preserve">
|
||||||
|
<value>Zurücksetzen ist fehlgeschlagen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="No template" xml:space="preserve">
|
||||||
|
<value>Es sind keine Vorlagen vorhanden.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Unexpected Error" xml:space="preserve">
|
||||||
|
<value>Ein unerwarter Fehler ist aufgetreten.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Viewer could not be initialized" xml:space="preserve">
|
||||||
|
<value>Anzeige konnte nicht initialisiert werden.</value>
|
||||||
|
</data>
|
||||||
|
<data name="GdViewer ActionError" xml:space="preserve">
|
||||||
|
<value>GDViewer hat den Fehler [{0}] bei der Aktion [{1}] zurückgegeben.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error LoadUsers" xml:space="preserve">
|
||||||
|
<value>Nutzer {0}{1} konnte nicht geladen werden.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Activate ghost mode" xml:space="preserve">
|
||||||
|
<value>Möchten Sie den Ghost Mode aktivieren?</value>
|
||||||
|
</data>
|
||||||
|
<data name="Select user for ghost mode" xml:space="preserve">
|
||||||
|
<value>Bitte wählen Sie einen Nutzer für den Ghost Mode.</value>
|
||||||
|
</data>
|
||||||
|
<data name="No envelope selected" xml:space="preserve">
|
||||||
|
<value>Kein Umschlag ausgewählt.</value>
|
||||||
|
</data>
|
||||||
|
<data name="No row selected" xml:space="preserve">
|
||||||
|
<value>Keine Zeile ausgewählt.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error while loading result report" xml:space="preserve">
|
||||||
|
<value>Fehler beim Laden des Ergebnisberichts</value>
|
||||||
|
</data>
|
||||||
|
<data name="No result report available" xml:space="preserve">
|
||||||
|
<value>Es ist kein Ergebnisbericht vorhanden.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Could not load result report" xml:space="preserve">
|
||||||
|
<value>Ergebnisbericht konnte nicht geladen werden</value>
|
||||||
|
</data>
|
||||||
|
<data name="Debug log is active" xml:space="preserve">
|
||||||
|
<value>Debug-Log ist aktiv</value>
|
||||||
|
</data>
|
||||||
|
<data name="Ghost mode is active" xml:space="preserve">
|
||||||
|
<value>GhostMode aktiv: {0} – Beenden Sie signFLOW, um den Ghost-Modus zu verlassen</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error while creating mail" xml:space="preserve">
|
||||||
|
<value>Es ist ein Fehler beim Erstellen der E-Mail aufgetreten.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Export log file was succesful" xml:space="preserve">
|
||||||
|
<value>Der Export der Logdateien war erfolgreich. Bitte stellen Sie die Logdateien in einem Ticket bereit oder senden Sie sie an Ihr Administratorenteam.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error while saving log file" xml:space="preserve">
|
||||||
|
<value>Es ist ein Fehler beim Speichern der Logdatei aufgetreten.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail to creator will be sent" xml:space="preserve">
|
||||||
|
<value>Finale E-Mail an den Ersteller würde gesendet werden.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail to receivers will be sent" xml:space="preserve">
|
||||||
|
<value>Finale E-Mail an die Unterzeichner würde gesendet werden.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail to creator will not be sent" xml:space="preserve">
|
||||||
|
<value>Finale E-Mail an den Ersteller würde nicht erzeugt werden.{0}</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail to receivers will not be sent" xml:space="preserve">
|
||||||
|
<value>Finale E-Mail an die Unterzeichner würde nicht erzeugt werden.{0}</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail debug creator" xml:space="preserve">
|
||||||
|
<value>SendFinalEmailToCreator ist deaktiviert – oMailToCreator [{0}] <> [{1}]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Final mail debug receiver" xml:space="preserve">
|
||||||
|
<value>SendFinalEmailToReceivers ist deaktiviert – oMailToCreator [{0}] <> [{1}]</value>
|
||||||
|
</data>
|
||||||
|
<data name="No access code defined so far" xml:space="preserve">
|
||||||
|
<value>Für diesen Umschlag ist bisher kein Zugangscode definiert.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Grid layout completed envelopes saved" xml:space="preserve">
|
||||||
|
<value>Grid-Layout für abgeschlossene Umschläge gespeichert.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Grid Layout Envelopes Saved" xml:space="preserve">
|
||||||
|
<value>Grid-Layout für Umschläge gespeichert.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Reason for aborting" xml:space="preserve">
|
||||||
|
<value>Bitte geben Sie einen Grund für den Abbruch an. - </value>
|
||||||
|
</data>
|
||||||
|
<data name="Database configured" xml:space="preserve">
|
||||||
|
<value>Datenbank konfiguriert. Die Anwendung wird neu gestartet.</value>
|
||||||
|
</data>
|
||||||
|
<data name="No database configured" xml:space="preserve">
|
||||||
|
<value>Keine Datenbank konfiguriert. Die Anwendung wird geschlossen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Error during initialization" xml:space="preserve">
|
||||||
|
<value>Fehler beim Initialisieren: </value>
|
||||||
|
</data>
|
||||||
|
<data name="Initializing database" xml:space="preserve">
|
||||||
|
<value>Initialisierung der Datenbank</value>
|
||||||
|
</data>
|
||||||
|
<data name="Could not connect to database" xml:space="preserve">
|
||||||
|
<value>Verbindung zur Datenbank konnte nicht hergestellt werden. Die Anwendung wird geschlossen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Initializing Configuration" xml:space="preserve">
|
||||||
|
<value>Konfiguration wird initialisiert</value>
|
||||||
|
</data>
|
||||||
|
<data name="Initializing User" xml:space="preserve">
|
||||||
|
<value>Benutzer wird initialiserit.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Initializing Rights" xml:space="preserve">
|
||||||
|
<value>Rechte werden initialisiert.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Starting Application" xml:space="preserve">
|
||||||
|
<value>Anwendung wird gestartet.</value>
|
||||||
|
</data>
|
||||||
|
<data name="User unknown" xml:space="preserve">
|
||||||
|
<value>Benutzer {0} ist unbekannt. Bitte wenden Sie sich an Ihren Administrator. Die Anwendung wird geschlossen.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
'------------------------------------------------------------------------------
|
'------------------------------------------------------------------------------
|
||||||
' <auto-generated>
|
' <auto-generated>
|
||||||
' Dieser Code wurde von einem Tool generiert.
|
' This code was generated by a tool.
|
||||||
' Laufzeitversion:4.0.30319.42000
|
' Runtime Version:4.0.30319.42000
|
||||||
'
|
'
|
||||||
' Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
' Changes to this file may cause incorrect behavior and will be lost if
|
||||||
' der Code erneut generiert wird.
|
' the code is regenerated.
|
||||||
' </auto-generated>
|
' </auto-generated>
|
||||||
'------------------------------------------------------------------------------
|
'------------------------------------------------------------------------------
|
||||||
|
|
||||||
@@ -15,12 +15,12 @@ Imports System
|
|||||||
|
|
||||||
Namespace My.Resources
|
Namespace My.Resources
|
||||||
|
|
||||||
'Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert
|
'This class was auto-generated by the StronglyTypedResourceBuilder
|
||||||
'-Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert.
|
'class via a tool like ResGen or Visual Studio.
|
||||||
'Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen
|
'To add or remove a member, edit your .ResX file then rerun ResGen
|
||||||
'mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu.
|
'with the /str option, or rebuild your VS project.
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
''' A strongly-typed resource class, for looking up localized strings, etc.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0"), _
|
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0"), _
|
||||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||||
@@ -37,7 +37,7 @@ Namespace My.Resources
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
''' Returns the cached ResourceManager instance used by this class.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||||
Public Shared ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
|
Public Shared ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
|
||||||
@@ -51,8 +51,8 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
''' Overrides the current thread's CurrentUICulture property for all
|
||||||
''' Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
''' resource lookups using this strongly typed resource class.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||||
Public Shared Property Culture() As Global.System.Globalization.CultureInfo
|
Public Shared Property Culture() As Global.System.Globalization.CultureInfo
|
||||||
@@ -65,7 +65,61 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Bitte wählen Sie die PDF-Dokumente die Sie verketten möchten: ähnelt.
|
''' Looks up a localized string similar to Zugriffscode wurde an @Mail gesendet..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property AccessCode_successfully_sent() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("AccessCode successfully sent", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Möchten Sie den Ghost Mode aktivieren?.
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Activate_ghost_mode() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Activate ghost mode", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Verbindung zur Datenbank konnte nicht hergestellt werden. Die Anwendung wird geschlossen..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Could_not_connect_to_database() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Could not connect to database", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Ergebnisbericht konnte nicht geladen werden.
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Could_not_load_result_report() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Could not load result report", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Datenbank konfiguriert. Die Anwendung wird neu gestartet..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Database_configured() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Database configured", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Debug-Log ist aktiv.
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Debug_log_is_active() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Debug log is active", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Bitte wählen Sie die PDF-Dokumente die Sie verketten möchten:.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Dialog_Concat_PDF() As String
|
Public Shared ReadOnly Property Dialog_Concat_PDF() As String
|
||||||
Get
|
Get
|
||||||
@@ -74,7 +128,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Wollen Sie diesen Umschlag wirklich zurückrufen/löschen? ähnelt.
|
''' Looks up a localized string similar to Wollen Sie diesen Umschlag wirklich zurückrufen/löschen?.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Do_you_really_want_to_delete_this_envelope() As String
|
Public Shared ReadOnly Property Do_you_really_want_to_delete_this_envelope() As String
|
||||||
Get
|
Get
|
||||||
@@ -83,7 +137,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Wollen Sie dieses Dokument wirklich entfernen? ähnelt.
|
''' Looks up a localized string similar to Wollen Sie dieses Dokument wirklich entfernen?.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Do_you_really_want_to_remove_this_document() As String
|
Public Shared ReadOnly Property Do_you_really_want_to_remove_this_document() As String
|
||||||
Get
|
Get
|
||||||
@@ -92,7 +146,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Wollen Sie den ausgewählten Empfänger löschen? ähnelt.
|
''' Looks up a localized string similar to Wollen Sie den ausgewählten Empfänger löschen?.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Do_you_want_to_delete_the_selected_recipient() As String
|
Public Shared ReadOnly Property Do_you_want_to_delete_the_selected_recipient() As String
|
||||||
Get
|
Get
|
||||||
@@ -101,7 +155,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Wollen Sie die Signatur löschen? ähnelt.
|
''' Looks up a localized string similar to Wollen Sie die Signatur löschen?.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Do_you_want_to_delete_the_signature() As String
|
Public Shared ReadOnly Property Do_you_want_to_delete_the_signature() As String
|
||||||
Get
|
Get
|
||||||
@@ -110,7 +164,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Wollen Sie den Signaturprozess nun starten? ähnelt.
|
''' Looks up a localized string similar to Wollen Sie den Prozess nun starten?.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Do_you_want_to_start_the_signature_process_now() As String
|
Public Shared ReadOnly Property Do_you_want_to_start_the_signature_process_now() As String
|
||||||
Get
|
Get
|
||||||
@@ -119,7 +173,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Das Dokument konnte nicht geöffnet werden! ähnelt.
|
''' Looks up a localized string similar to Das Dokument konnte nicht geöffnet werden!.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Document_could_not_be_opened() As String
|
Public Shared ReadOnly Property Document_could_not_be_opened() As String
|
||||||
Get
|
Get
|
||||||
@@ -128,7 +182,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Dokument konnte nicht gespeichert werden! ähnelt.
|
''' Looks up a localized string similar to Dokument konnte nicht gespeichert werden!.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Document_Could_Not_Be_Saved() As String
|
Public Shared ReadOnly Property Document_Could_Not_Be_Saved() As String
|
||||||
Get
|
Get
|
||||||
@@ -137,7 +191,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Umschlag an Empfänger {0} weitergeleitet. ähnelt.
|
''' Looks up a localized string similar to Umschlag an Empfänger {0} weitergeleitet..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Document_forwarded() As String
|
Public Shared ReadOnly Property Document_forwarded() As String
|
||||||
Get
|
Get
|
||||||
@@ -146,7 +200,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Aktuell ist per Drag and Drop nur eine PDF-Datei erlaubt. ähnelt.
|
''' Looks up a localized string similar to Aktuell ist per Drag and Drop nur eine PDF-Datei erlaubt..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Drop_only_one_file() As String
|
Public Shared ReadOnly Property Drop_only_one_file() As String
|
||||||
Get
|
Get
|
||||||
@@ -155,7 +209,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Bearbeite Umschlag ähnelt.
|
''' Looks up a localized string similar to Bearbeite Umschlag.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Edit_Envelope() As String
|
Public Shared ReadOnly Property Edit_Envelope() As String
|
||||||
Get
|
Get
|
||||||
@@ -164,7 +218,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Signatur-Elemente konnten nicht geladen werden! ähnelt.
|
''' Looks up a localized string similar to Signatur-Elemente konnten nicht geladen werden!.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Elements_could_not_be_loaded() As String
|
Public Shared ReadOnly Property Elements_could_not_be_loaded() As String
|
||||||
Get
|
Get
|
||||||
@@ -173,7 +227,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Signatur-Elemente konnten nicht gespeichert werden! ähnelt.
|
''' Looks up a localized string similar to Signatur-Elemente konnten nicht gespeichert werden!.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Elements_could_not_be_saved() As String
|
Public Shared ReadOnly Property Elements_could_not_be_saved() As String
|
||||||
Get
|
Get
|
||||||
@@ -182,7 +236,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Der Umschlag wurde bereits versendet! ähnelt.
|
''' Looks up a localized string similar to Der Umschlag wurde bereits versendet!.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Envelope_already_sent() As String
|
Public Shared ReadOnly Property Envelope_already_sent() As String
|
||||||
Get
|
Get
|
||||||
@@ -191,7 +245,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Umschlag konnte nicht gesendet werden! ähnelt.
|
''' Looks up a localized string similar to Umschlag konnte nicht gesendet werden!.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Envelope_could_not_be_sent() As String
|
Public Shared ReadOnly Property Envelope_could_not_be_sent() As String
|
||||||
Get
|
Get
|
||||||
@@ -200,7 +254,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Umschlag-Editor ähnelt.
|
''' Looks up a localized string similar to Umschlag-Editor.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Envelope_Editor() As String
|
Public Shared ReadOnly Property Envelope_Editor() As String
|
||||||
Get
|
Get
|
||||||
@@ -209,7 +263,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Die Einladungen zum Signieren wurden zum Versand eingereiht. ähnelt.
|
''' Looks up a localized string similar to Der Umschlag wurde zum Versand eingereiht..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Envelope_Invitations_Sent() As String
|
Public Shared ReadOnly Property Envelope_Invitations_Sent() As String
|
||||||
Get
|
Get
|
||||||
@@ -218,7 +272,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Übersicht ähnelt.
|
''' Looks up a localized string similar to Übersicht.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Envelope_Overview() As String
|
Public Shared ReadOnly Property Envelope_Overview() As String
|
||||||
Get
|
Get
|
||||||
@@ -227,7 +281,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Die Einladungen wurden erfolgreich zum Versand bereitgestellt. ähnelt.
|
''' Looks up a localized string similar to Die Einladungen wurden erfolgreich zum Versand bereitgestellt..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Envelope_successfully_sent() As String
|
Public Shared ReadOnly Property Envelope_successfully_sent() As String
|
||||||
Get
|
Get
|
||||||
@@ -236,7 +290,34 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Die EmailAddress-Adresse [ @Mail ] konnte nicht validiert werden! ähnelt.
|
''' Looks up a localized string similar to Das Verketten der Dokumente ist fehlgeschlagen..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Error_concat_documents() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Error concat documents", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Dokument konnte nicht heruntergeladen werden..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Error_downloading_file() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Error downloading file", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Fehler beim Initialisieren: .
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Error_during_initialization() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Error during initialization", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Die Email-Adresse [ @Mail ] konnte nicht validiert werden!.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Error_email_Validation() As String
|
Public Shared ReadOnly Property Error_email_Validation() As String
|
||||||
Get
|
Get
|
||||||
@@ -245,8 +326,26 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die The mobile phone number [@PhoneNr] could not be validated.
|
''' Looks up a localized string similar to Nutzer {0}{1} konnte nicht geladen werden..
|
||||||
'''Pattern: +491234567890 ähnelt.
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Error_LoadUsers() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Error LoadUsers", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to PDF-Status der Datei {0} ist nicht OK. Bitte prüfen Sie die PDF-Konformität!.
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Error_Pdf_Status() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Error Pdf Status", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Die Mobiltelefonnummer [@PhoneNr] konnte nicht validiert werden.
|
||||||
|
'''Format: +491234567890.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Error_phone_Validation() As String
|
Public Shared ReadOnly Property Error_phone_Validation() As String
|
||||||
Get
|
Get
|
||||||
@@ -255,7 +354,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Fehler beim Senden des Umschlags: ähnelt.
|
''' Looks up a localized string similar to Fehler beim Senden des Umschlags:.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Error_sending_the_envelope() As String
|
Public Shared ReadOnly Property Error_sending_the_envelope() As String
|
||||||
Get
|
Get
|
||||||
@@ -264,7 +363,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Fehler beim Speichern des Umschlags! ähnelt.
|
''' Looks up a localized string similar to Fehler beim Speichern des Umschlags!.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Error_when_saving_the_envelope() As String
|
Public Shared ReadOnly Property Error_when_saving_the_envelope() As String
|
||||||
Get
|
Get
|
||||||
@@ -273,7 +372,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Fehler beim Speichern der Empfänger! ähnelt.
|
''' Looks up a localized string similar to Fehler beim Speichern der Empfänger!.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Error_when_saving_the_recipients() As String
|
Public Shared ReadOnly Property Error_when_saving_the_recipients() As String
|
||||||
Get
|
Get
|
||||||
@@ -282,7 +381,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Fehler bei der Validierung des Umschlags: ähnelt.
|
''' Looks up a localized string similar to Fehler bei der Validierung des Umschlags:.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Error_when_validating_the_envelope() As String
|
Public Shared ReadOnly Property Error_when_validating_the_envelope() As String
|
||||||
Get
|
Get
|
||||||
@@ -291,7 +390,52 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Fehler beim Speichern des Umschlags: ähnelt.
|
''' Looks up a localized string similar to Es ist ein Fehler beim Erstellen der E-Mail aufgetreten..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Error_while_creating_mail() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Error while creating mail", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Fehler beim Laden des Ergebnisberichts.
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Error_while_loading_result_report() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Error while loading result report", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Die Datei kann nicht geöffnet werden, da sie derzeit von einem anderen Programm verwendet wird..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Error_while_opening_file() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Error while opening file", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Zurücksetzen ist fehlgeschlagen..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Error_while_resetting() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Error while resetting", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Es ist ein Fehler beim Speichern der Logdatei aufgetreten..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Error_while_saving_log_file() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Error while saving log file", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Fehler beim Speichern des Umschlags: .
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Errors_when_saving_the_envelope() As String
|
Public Shared ReadOnly Property Errors_when_saving_the_envelope() As String
|
||||||
Get
|
Get
|
||||||
@@ -300,7 +444,106 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Mindestens ein Empfänger hat keine Anrede oder keine EmailAddress Adresse. ähnelt.
|
''' Looks up a localized string similar to Der Export der Logdateien war erfolgreich. Bitte stellen Sie die Logdateien in einem Ticket bereit oder senden Sie sie an Ihr Administratorenteam..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Export_log_file_was_succesful() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Export log file was succesful", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to SendFinalEmailToCreator ist deaktiviert – oMailToCreator [{0}] <> [{1}].
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Final_mail_debug_creator() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Final mail debug creator", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to SendFinalEmailToReceivers ist deaktiviert – oMailToCreator [{0}] <> [{1}].
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Final_mail_debug_receiver() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Final mail debug receiver", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Finale E-Mail an den Ersteller würde gesendet werden..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Final_mail_to_creator_will_be_sent() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Final mail to creator will be sent", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Finale E-Mail an den Ersteller würde nicht erzeugt werden.{0}.
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Final_mail_to_creator_will_not_be_sent() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Final mail to creator will not be sent", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Finale E-Mail an die Unterzeichner würde gesendet werden..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Final_mail_to_receivers_will_be_sent() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Final mail to receivers will be sent", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Finale E-Mail an die Unterzeichner würde nicht erzeugt werden.{0}.
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Final_mail_to_receivers_will_not_be_sent() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Final mail to receivers will not be sent", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to GDViewer hat den Fehler [{0}] bei der Aktion [{1}] zurückgegeben..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property GdViewer_ActionError() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("GdViewer ActionError", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to GhostMode aktiv: {0} – Beenden Sie signFLOW, um den Ghost-Modus zu verlassen.
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Ghost_mode_is_active() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Ghost mode is active", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Grid-Layout für abgeschlossene Umschläge gespeichert..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Grid_layout_completed_envelopes_saved() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Grid layout completed envelopes saved", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Grid-Layout für Umschläge gespeichert..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Grid_Layout_Envelopes_Saved() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Grid Layout Envelopes Saved", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Mindestens ein Empfänger hat keine Anrede oder keine Email Adresse..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Incomplete_Receivers() As String
|
Public Shared ReadOnly Property Incomplete_Receivers() As String
|
||||||
Get
|
Get
|
||||||
@@ -309,16 +552,52 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Empfänger {0} hat keine gültige EmailAddress Addresse. ähnelt.
|
''' Looks up a localized string similar to Konfiguration wird initialisiert.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Invalid_Email_Address() As String
|
Public Shared ReadOnly Property Initializing_Configuration() As String
|
||||||
Get
|
Get
|
||||||
Return ResourceManager.GetString("Invalid EmailAddress Address", resourceCulture)
|
Return ResourceManager.GetString("Initializing Configuration", resourceCulture)
|
||||||
End Get
|
End Get
|
||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Die Einladung an [@Mail] wurde nochmal versendet! ähnelt.
|
''' Looks up a localized string similar to Initialisierung der Datenbank.
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Initializing_database() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Initializing database", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Rechte werden initialisiert..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Initializing_Rights() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Initializing Rights", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Benutzer wird initialiserit..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Initializing_User() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Initializing User", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Empfänger {0} hat keine gültige Email Addresse..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Invalid_Email_Address() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Invalid Email Address", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Die Einladung an [@Mail] wurde nochmal versendet!.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Invitation_successfully_resend() As String
|
Public Shared ReadOnly Property Invitation_successfully_resend() As String
|
||||||
Get
|
Get
|
||||||
@@ -327,7 +606,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Fehlendes Dokument ähnelt.
|
''' Looks up a localized string similar to Fehlendes Dokument.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Missing_Documents() As String
|
Public Shared ReadOnly Property Missing_Documents() As String
|
||||||
Get
|
Get
|
||||||
@@ -336,7 +615,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Es muss mindestens ein Signaturfeld gesetzt werden. ähnelt.
|
''' Looks up a localized string similar to Es muss mindestens ein Signaturfeld gesetzt werden..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Missing_Elements() As String
|
Public Shared ReadOnly Property Missing_Elements() As String
|
||||||
Get
|
Get
|
||||||
@@ -345,7 +624,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Für den Empfänger {0} gibt es noch kein Signaturfeld. ähnelt.
|
''' Looks up a localized string similar to Für den Empfänger {0} gibt es noch kein Signaturfeld..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Missing_Elements_for_Receiver() As String
|
Public Shared ReadOnly Property Missing_Elements_for_Receiver() As String
|
||||||
Get
|
Get
|
||||||
@@ -354,7 +633,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Fehlende Nachricht ähnelt.
|
''' Looks up a localized string similar to Fehlende Nachricht.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Missing_Message() As String
|
Public Shared ReadOnly Property Missing_Message() As String
|
||||||
Get
|
Get
|
||||||
@@ -363,7 +642,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Fehlende Empfänger ähnelt.
|
''' Looks up a localized string similar to Fehlende Empfänger.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Missing_Receivers() As String
|
Public Shared ReadOnly Property Missing_Receivers() As String
|
||||||
Get
|
Get
|
||||||
@@ -372,7 +651,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die ähnelt.
|
''' Looks up a localized string similar to ModificationOriginFile_FormFields.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property ModificationOriginFile_FormFields() As String
|
Public Shared ReadOnly Property ModificationOriginFile_FormFields() As String
|
||||||
Get
|
Get
|
||||||
@@ -381,7 +660,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Neuer Umschlag ähnelt.
|
''' Looks up a localized string similar to Neuer Umschlag.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property New_Envelope() As String
|
Public Shared ReadOnly Property New_Envelope() As String
|
||||||
Get
|
Get
|
||||||
@@ -390,7 +669,61 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Es ist nur eine Datei zulässig! ähnelt.
|
''' Looks up a localized string similar to Für diesen Umschlag ist bisher kein Zugangscode definiert..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property No_access_code_defined_so_far() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("No access code defined so far", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Keine Datenbank konfiguriert. Die Anwendung wird geschlossen..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property No_database_configured() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("No database configured", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Kein Umschlag ausgewählt..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property No_envelope_selected() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("No envelope selected", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Es ist kein Ergebnisbericht vorhanden..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property No_result_report_available() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("No result report available", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Keine Zeile ausgewählt..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property No_row_selected() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("No row selected", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Es sind keine Vorlagen vorhanden..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property No_template() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("No template", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Es ist nur eine Datei zulässig!.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Only_one_file_is_allowed() As String
|
Public Shared ReadOnly Property Only_one_file_is_allowed() As String
|
||||||
Get
|
Get
|
||||||
@@ -399,7 +732,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Bitte lesen und unterzeichnen Sie dieses Dokument. ähnelt.
|
''' Looks up a localized string similar to Bitte lesen und unterzeichnen Sie dieses Dokument..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Please_read_and_sign_this_document() As String
|
Public Shared ReadOnly Property Please_read_and_sign_this_document() As String
|
||||||
Get
|
Get
|
||||||
@@ -408,7 +741,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Bitte wählen Sie einen Empfänger aus dem Reiter Empfänger aus. ähnelt.
|
''' Looks up a localized string similar to Bitte wählen Sie einen Empfänger aus dem Reiter Empfänger aus..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Please_select_a_recipient_from_the_Recipients_tab() As String
|
Public Shared ReadOnly Property Please_select_a_recipient_from_the_Recipients_tab() As String
|
||||||
Get
|
Get
|
||||||
@@ -417,7 +750,16 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Empfänger konnte nicht gelöscht werden! ähnelt.
|
''' Looks up a localized string similar to Bitte geben Sie einen Grund für den Abbruch an. - .
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Reason_for_aborting() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Reason for aborting", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Empfänger konnte nicht gelöscht werden!.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Recipient_could_not_be_deleted() As String
|
Public Shared ReadOnly Property Recipient_could_not_be_deleted() As String
|
||||||
Get
|
Get
|
||||||
@@ -426,7 +768,16 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Soll der Umschlag gespeichert werden? ähnelt.
|
''' Looks up a localized string similar to Bitte wählen Sie einen Nutzer für den Ghost Mode..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Select_user_for_ghost_mode() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Select user for ghost mode", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Soll der Umschlag gespeichert werden?.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Should_The_Envelope_Be_Saved() As String
|
Public Shared ReadOnly Property Should_The_Envelope_Be_Saved() As String
|
||||||
Get
|
Get
|
||||||
@@ -435,7 +786,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Platzhalter Signatur ähnelt.
|
''' Looks up a localized string similar to Platzhalter Signatur.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Signature() As String
|
Public Shared ReadOnly Property Signature() As String
|
||||||
Get
|
Get
|
||||||
@@ -444,7 +795,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Signatur-Editor ähnelt.
|
''' Looks up a localized string similar to Signatur-Editor.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Signature_Editor() As String
|
Public Shared ReadOnly Property Signature_Editor() As String
|
||||||
Get
|
Get
|
||||||
@@ -453,7 +804,16 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Der Umschlag konnte nicht gelöscht werden! ähnelt.
|
''' Looks up a localized string similar to Anwendung wird gestartet..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Starting_Application() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Starting Application", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Der Umschlag konnte nicht gelöscht werden!.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property The_envelope_could_not_be_deleted() As String
|
Public Shared ReadOnly Property The_envelope_could_not_be_deleted() As String
|
||||||
Get
|
Get
|
||||||
@@ -462,7 +822,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Der Umschlag enthält keine Dokumente ähnelt.
|
''' Looks up a localized string similar to Der Umschlag enthält keine Dokumente.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property The_envelope_does_not_contain_any_documents() As String
|
Public Shared ReadOnly Property The_envelope_does_not_contain_any_documents() As String
|
||||||
Get
|
Get
|
||||||
@@ -471,7 +831,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Es gibt für diesen Empfänger bereits Elemente. Wollen Sie den Empfänger trotzdem löschen? ähnelt.
|
''' Looks up a localized string similar to Es gibt für diesen Empfänger bereits Elemente. Wollen Sie den Empfänger trotzdem löschen?.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property There_are_already_elements_for_this_recipient() As String
|
Public Shared ReadOnly Property There_are_already_elements_for_this_recipient() As String
|
||||||
Get
|
Get
|
||||||
@@ -480,7 +840,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Es sind ungespeicherte Änderungen vorhanden. Wollen Sie diese Speichern? ähnelt.
|
''' Looks up a localized string similar to Es sind ungespeicherte Änderungen vorhanden. Wollen Sie diese Speichern?.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property There_are_unsaved_changes() As String
|
Public Shared ReadOnly Property There_are_unsaved_changes() As String
|
||||||
Get
|
Get
|
||||||
@@ -489,7 +849,34 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Sie haben ein Dokument zum signieren erhalten: ähnelt.
|
''' Looks up a localized string similar to Ein unerwarter Fehler ist aufgetreten..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Unexpected_Error() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Unexpected Error", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Benutzer {0} ist unbekannt. Bitte wenden Sie sich an Ihren Administrator. Die Anwendung wird geschlossen..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property User_unknown() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("User unknown", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Anzeige konnte nicht initialisiert werden..
|
||||||
|
'''</summary>
|
||||||
|
Public Shared ReadOnly Property Viewer_could_not_be_initialized() As String
|
||||||
|
Get
|
||||||
|
Return ResourceManager.GetString("Viewer could not be initialized", resourceCulture)
|
||||||
|
End Get
|
||||||
|
End Property
|
||||||
|
|
||||||
|
'''<summary>
|
||||||
|
''' Looks up a localized string similar to Sie haben ein Dokument zum signieren erhalten:.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property You_received_a_document_to_sign() As String
|
Public Shared ReadOnly Property You_received_a_document_to_sign() As String
|
||||||
Get
|
Get
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
'------------------------------------------------------------------------------
|
'------------------------------------------------------------------------------
|
||||||
' <auto-generated>
|
' <auto-generated>
|
||||||
' Dieser Code wurde von einem Tool generiert.
|
' This code was generated by a tool.
|
||||||
' Laufzeitversion:4.0.30319.42000
|
' Runtime Version:4.0.30319.42000
|
||||||
'
|
'
|
||||||
' Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
' Changes to this file may cause incorrect behavior and will be lost if
|
||||||
' der Code erneut generiert wird.
|
' the code is regenerated.
|
||||||
' </auto-generated>
|
' </auto-generated>
|
||||||
'------------------------------------------------------------------------------
|
'------------------------------------------------------------------------------
|
||||||
|
|
||||||
@@ -15,12 +15,12 @@ Imports System
|
|||||||
|
|
||||||
Namespace My.Resources
|
Namespace My.Resources
|
||||||
|
|
||||||
'Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert
|
'This class was auto-generated by the StronglyTypedResourceBuilder
|
||||||
'-Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert.
|
'class via a tool like ResGen or Visual Studio.
|
||||||
'Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen
|
'To add or remove a member, edit your .ResX file then rerun ResGen
|
||||||
'mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu.
|
'with the /str option, or rebuild your VS project.
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
''' A strongly-typed resource class, for looking up localized strings, etc.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0"), _
|
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0"), _
|
||||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||||
@@ -37,7 +37,7 @@ Namespace My.Resources
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
''' Returns the cached ResourceManager instance used by this class.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||||
Public Shared ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
|
Public Shared ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
|
||||||
@@ -51,8 +51,8 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
''' Overrides the current thread's CurrentUICulture property for all
|
||||||
''' Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
''' resource lookups using this strongly typed resource class.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||||
Public Shared Property Culture() As Global.System.Globalization.CultureInfo
|
Public Shared Property Culture() As Global.System.Globalization.CultureInfo
|
||||||
@@ -65,7 +65,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Zugriffscode korrekt eingegeben ähnelt.
|
''' Looks up a localized string similar to Zugriffscode korrekt eingegeben.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property AccessCodeCorrect() As String
|
Public Shared ReadOnly Property AccessCodeCorrect() As String
|
||||||
Get
|
Get
|
||||||
@@ -74,7 +74,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Zugriffscode falsch eingegeben ähnelt.
|
''' Looks up a localized string similar to Zugriffscode falsch eingegeben.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property AccessCodeIncorrect() As String
|
Public Shared ReadOnly Property AccessCodeIncorrect() As String
|
||||||
Get
|
Get
|
||||||
@@ -83,7 +83,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Zugriffscode angefordert ähnelt.
|
''' Looks up a localized string similar to Zugriffscode angefordert.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property AccessCodeRequested() As String
|
Public Shared ReadOnly Property AccessCodeRequested() As String
|
||||||
Get
|
Get
|
||||||
@@ -92,7 +92,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Fortgeschrittene Elektronische Signatur ähnelt.
|
''' Looks up a localized string similar to Fortgeschrittene Elektronische Signatur.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property AdvancedElectronicSignature() As String
|
Public Shared ReadOnly Property AdvancedElectronicSignature() As String
|
||||||
Get
|
Get
|
||||||
@@ -101,7 +101,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Abgeschlossen ähnelt.
|
''' Looks up a localized string similar to Abgeschlossen.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Completed() As String
|
Public Shared ReadOnly Property Completed() As String
|
||||||
Get
|
Get
|
||||||
@@ -110,7 +110,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Vollständig Signiert ähnelt.
|
''' Looks up a localized string similar to Vollständig Signiert.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property CompletelySigned() As String
|
Public Shared ReadOnly Property CompletelySigned() As String
|
||||||
Get
|
Get
|
||||||
@@ -119,7 +119,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Vertrag ähnelt.
|
''' Looks up a localized string similar to Vertrag.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Contract() As String
|
Public Shared ReadOnly Property Contract() As String
|
||||||
Get
|
Get
|
||||||
@@ -128,7 +128,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Erstellt ähnelt.
|
''' Looks up a localized string similar to Erstellt.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Created() As String
|
Public Shared ReadOnly Property Created() As String
|
||||||
Get
|
Get
|
||||||
@@ -137,7 +137,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Dokument Rotation geändert ähnelt.
|
''' Looks up a localized string similar to Dokument Rotation geändert.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property DocumentMod_Rotation() As String
|
Public Shared ReadOnly Property DocumentMod_Rotation() As String
|
||||||
Get
|
Get
|
||||||
@@ -146,7 +146,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Dokument geöffnet ähnelt.
|
''' Looks up a localized string similar to Dokument geöffnet.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property DocumentOpened() As String
|
Public Shared ReadOnly Property DocumentOpened() As String
|
||||||
Get
|
Get
|
||||||
@@ -155,7 +155,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Unterzeichnung abgelehnt ähnelt.
|
''' Looks up a localized string similar to Unterzeichnung abgelehnt.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property DocumentRejected() As String
|
Public Shared ReadOnly Property DocumentRejected() As String
|
||||||
Get
|
Get
|
||||||
@@ -164,7 +164,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Dokument unterzeichnet ähnelt.
|
''' Looks up a localized string similar to Dokument unterzeichnet.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property DocumentSigned() As String
|
Public Shared ReadOnly Property DocumentSigned() As String
|
||||||
Get
|
Get
|
||||||
@@ -173,7 +173,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Entwurf ähnelt.
|
''' Looks up a localized string similar to Entwurf.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Draft() As String
|
Public Shared ReadOnly Property Draft() As String
|
||||||
Get
|
Get
|
||||||
@@ -182,7 +182,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Archiviert ähnelt.
|
''' Looks up a localized string similar to Archiviert.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property EnvelopeArchived() As String
|
Public Shared ReadOnly Property EnvelopeArchived() As String
|
||||||
Get
|
Get
|
||||||
@@ -191,7 +191,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Vollständig signiert ähnelt.
|
''' Looks up a localized string similar to Vollständig signiert.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property EnvelopeCompletelySigned() As String
|
Public Shared ReadOnly Property EnvelopeCompletelySigned() As String
|
||||||
Get
|
Get
|
||||||
@@ -200,7 +200,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Umschlag Erstellt ähnelt.
|
''' Looks up a localized string similar to Umschlag Erstellt.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property EnvelopeCreated() As String
|
Public Shared ReadOnly Property EnvelopeCreated() As String
|
||||||
Get
|
Get
|
||||||
@@ -209,7 +209,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Umschlag Gelöscht ähnelt.
|
''' Looks up a localized string similar to Umschlag Gelöscht.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property EnvelopeDeleted() As String
|
Public Shared ReadOnly Property EnvelopeDeleted() As String
|
||||||
Get
|
Get
|
||||||
@@ -218,7 +218,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Teil-Signiert ähnelt.
|
''' Looks up a localized string similar to Teil-Signiert.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property EnvelopePartlySigned() As String
|
Public Shared ReadOnly Property EnvelopePartlySigned() As String
|
||||||
Get
|
Get
|
||||||
@@ -227,7 +227,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Umschlag in Queue ähnelt.
|
''' Looks up a localized string similar to Umschlag in Queue.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property EnvelopeQueued() As String
|
Public Shared ReadOnly Property EnvelopeQueued() As String
|
||||||
Get
|
Get
|
||||||
@@ -236,7 +236,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Umschlag abgelehnt ähnelt.
|
''' Looks up a localized string similar to Umschlag abgelehnt.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property EnvelopeRejected() As String
|
Public Shared ReadOnly Property EnvelopeRejected() As String
|
||||||
Get
|
Get
|
||||||
@@ -245,7 +245,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Signierungszertifikat erstellt ähnelt.
|
''' Looks up a localized string similar to Signierungszertifikat erstellt.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property EnvelopeReportCreated() As String
|
Public Shared ReadOnly Property EnvelopeReportCreated() As String
|
||||||
Get
|
Get
|
||||||
@@ -254,7 +254,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Gespeichert ähnelt.
|
''' Looks up a localized string similar to Gespeichert.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property EnvelopeSaved() As String
|
Public Shared ReadOnly Property EnvelopeSaved() As String
|
||||||
Get
|
Get
|
||||||
@@ -263,7 +263,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Gesendet ähnelt.
|
''' Looks up a localized string similar to Gesendet.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property EnvelopeSent() As String
|
Public Shared ReadOnly Property EnvelopeSent() As String
|
||||||
Get
|
Get
|
||||||
@@ -272,7 +272,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Umschlag zurückgezogen ähnelt.
|
''' Looks up a localized string similar to Umschlag zurückgezogen.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property EnvelopeWithdrawn() As String
|
Public Shared ReadOnly Property EnvelopeWithdrawn() As String
|
||||||
Get
|
Get
|
||||||
@@ -281,7 +281,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Zugriffscode versendet ähnelt.
|
''' Looks up a localized string similar to Zugriffscode versendet.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property MessageAccessCodeSent() As String
|
Public Shared ReadOnly Property MessageAccessCodeSent() As String
|
||||||
Get
|
Get
|
||||||
@@ -290,7 +290,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Abschlussemail versendet ähnelt.
|
''' Looks up a localized string similar to Abschlussemail versendet.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property MessageCompletionSent() As String
|
Public Shared ReadOnly Property MessageCompletionSent() As String
|
||||||
Get
|
Get
|
||||||
@@ -299,7 +299,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Signaturbestätigung versendet ähnelt.
|
''' Looks up a localized string similar to Signaturbestätigung versendet.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property MessageConfirmationSent() As String
|
Public Shared ReadOnly Property MessageConfirmationSent() As String
|
||||||
Get
|
Get
|
||||||
@@ -308,7 +308,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Löschinformation versendet ähnelt.
|
''' Looks up a localized string similar to Löschinformation versendet.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property MessageDeletionSent() As String
|
Public Shared ReadOnly Property MessageDeletionSent() As String
|
||||||
Get
|
Get
|
||||||
@@ -317,7 +317,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Dokumentenlink versendet ähnelt.
|
''' Looks up a localized string similar to Dokumentenlink versendet.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property MessageInvitationSent() As String
|
Public Shared ReadOnly Property MessageInvitationSent() As String
|
||||||
Get
|
Get
|
||||||
@@ -326,7 +326,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Nein ähnelt.
|
''' Looks up a localized string similar to Nein.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property No() As String
|
Public Shared ReadOnly Property No() As String
|
||||||
Get
|
Get
|
||||||
@@ -335,7 +335,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Teil-Signiert ähnelt.
|
''' Looks up a localized string similar to Teil-Signiert.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property PartlySigned() As String
|
Public Shared ReadOnly Property PartlySigned() As String
|
||||||
Get
|
Get
|
||||||
@@ -344,7 +344,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Qualifizierte Signatur ähnelt.
|
''' Looks up a localized string similar to Qualifizierte Signatur.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property QualifiedSignature() As String
|
Public Shared ReadOnly Property QualifiedSignature() As String
|
||||||
Get
|
Get
|
||||||
@@ -353,7 +353,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Arbeitsanweisung ähnelt.
|
''' Looks up a localized string similar to Arbeitsanweisung.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property ReadAndSign() As String
|
Public Shared ReadOnly Property ReadAndSign() As String
|
||||||
Get
|
Get
|
||||||
@@ -362,7 +362,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Wollen Sie die 2-Faktor Definition für diesen Empfänger zurücksetzen. Der Empfänger muss sich dann neu identifizieren! ähnelt.
|
''' Looks up a localized string similar to Wollen Sie die 2-Faktor Definition für diesen Empfänger zurücksetzen. Der Empfänger muss sich dann neu identifizieren!.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property ResetTOTPUser() As String
|
Public Shared ReadOnly Property ResetTOTPUser() As String
|
||||||
Get
|
Get
|
||||||
@@ -371,7 +371,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Gespeichert ähnelt.
|
''' Looks up a localized string similar to Erfolgreich gespeichert.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Saved() As String
|
Public Shared ReadOnly Property Saved() As String
|
||||||
Get
|
Get
|
||||||
@@ -380,7 +380,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Gesendet ähnelt.
|
''' Looks up a localized string similar to Gesendet.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Sent() As String
|
Public Shared ReadOnly Property Sent() As String
|
||||||
Get
|
Get
|
||||||
@@ -389,7 +389,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Signatur ähnelt.
|
''' Looks up a localized string similar to Signatur.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Signature() As String
|
Public Shared ReadOnly Property Signature() As String
|
||||||
Get
|
Get
|
||||||
@@ -398,7 +398,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Signatur bestätigt ähnelt.
|
''' Looks up a localized string similar to Signatur bestätigt.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property SignatureConfirmed() As String
|
Public Shared ReadOnly Property SignatureConfirmed() As String
|
||||||
Get
|
Get
|
||||||
@@ -407,7 +407,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Signiert ähnelt.
|
''' Looks up a localized string similar to Signiert.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Signed() As String
|
Public Shared ReadOnly Property Signed() As String
|
||||||
Get
|
Get
|
||||||
@@ -416,7 +416,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Erfolgreich! Dialog wird geschlossen. ähnelt.
|
''' Looks up a localized string similar to Erfolgreich! Dialog wird geschlossen..
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Success_FormClose() As String
|
Public Shared ReadOnly Property Success_FormClose() As String
|
||||||
Get
|
Get
|
||||||
@@ -425,7 +425,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Unsigniert ähnelt.
|
''' Looks up a localized string similar to Unsigniert.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Unsigned() As String
|
Public Shared ReadOnly Property Unsigned() As String
|
||||||
Get
|
Get
|
||||||
@@ -434,7 +434,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Ja ähnelt.
|
''' Looks up a localized string similar to Ja.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property Yes() As String
|
Public Shared ReadOnly Property Yes() As String
|
||||||
Get
|
Get
|
||||||
@@ -443,7 +443,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die Ja, mit Anhang ähnelt.
|
''' Looks up a localized string similar to Ja, mit Anhang.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Public Shared ReadOnly Property YesWithAttachment() As String
|
Public Shared ReadOnly Property YesWithAttachment() As String
|
||||||
Get
|
Get
|
||||||
|
|||||||
@@ -132,6 +132,9 @@
|
|||||||
<data name="Completed" xml:space="preserve">
|
<data name="Completed" xml:space="preserve">
|
||||||
<value>Completed</value>
|
<value>Completed</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CompletelySigned" xml:space="preserve">
|
||||||
|
<value>Completely Signed</value>
|
||||||
|
</data>
|
||||||
<data name="Contract" xml:space="preserve">
|
<data name="Contract" xml:space="preserve">
|
||||||
<value>Contract</value>
|
<value>Contract</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -204,6 +207,9 @@
|
|||||||
<data name="No" xml:space="preserve">
|
<data name="No" xml:space="preserve">
|
||||||
<value>No</value>
|
<value>No</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="PartlySigned" xml:space="preserve">
|
||||||
|
<value>Partially Signed</value>
|
||||||
|
</data>
|
||||||
<data name="QualifiedSignature" xml:space="preserve">
|
<data name="QualifiedSignature" xml:space="preserve">
|
||||||
<value>Qualified Signature</value>
|
<value>Qualified Signature</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -214,7 +220,7 @@
|
|||||||
<value>Do you want to reset the 2-factor definition for this receiver? The receiver must then identify itself again!</value>
|
<value>Do you want to reset the 2-factor definition for this receiver? The receiver must then identify itself again!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Saved" xml:space="preserve">
|
<data name="Saved" xml:space="preserve">
|
||||||
<value>Saved</value>
|
<value>Saved successfully</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Sent" xml:space="preserve">
|
<data name="Sent" xml:space="preserve">
|
||||||
<value>Sent</value>
|
<value>Sent</value>
|
||||||
|
|||||||
0
EnvelopeGenerator.CommonServices/Strings/Model.fr.Designer.vb
generated
Normal file
0
EnvelopeGenerator.CommonServices/Strings/Model.fr.Designer.vb
generated
Normal file
249
EnvelopeGenerator.CommonServices/Strings/Model.fr.resx
Normal file
249
EnvelopeGenerator.CommonServices/Strings/Model.fr.resx
Normal file
@@ -0,0 +1,249 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="AccessCodeCorrect" xml:space="preserve">
|
||||||
|
<value>Code d’accès saisi correctement</value>
|
||||||
|
</data>
|
||||||
|
<data name="AccessCodeIncorrect" xml:space="preserve">
|
||||||
|
<value>Code d’accès incorrect</value>
|
||||||
|
</data>
|
||||||
|
<data name="AccessCodeRequested" xml:space="preserve">
|
||||||
|
<value>Code d’accès demandé</value>
|
||||||
|
</data>
|
||||||
|
<data name="AdvancedElectronicSignature" xml:space="preserve">
|
||||||
|
<value>Signature électronique avancée</value>
|
||||||
|
</data>
|
||||||
|
<data name="Completed" xml:space="preserve">
|
||||||
|
<value>Terminé</value>
|
||||||
|
</data>
|
||||||
|
<data name="CompletelySigned" xml:space="preserve">
|
||||||
|
<value>Entièrement signé</value>
|
||||||
|
</data>
|
||||||
|
<data name="Contract" xml:space="preserve">
|
||||||
|
<value>Contrat</value>
|
||||||
|
</data>
|
||||||
|
<data name="Created" xml:space="preserve">
|
||||||
|
<value>Créé</value>
|
||||||
|
</data>
|
||||||
|
<data name="DocumentMod_Rotation" xml:space="preserve">
|
||||||
|
<value>Rotation du document modifiée</value>
|
||||||
|
</data>
|
||||||
|
<data name="DocumentOpened" xml:space="preserve">
|
||||||
|
<value>Document ouvert</value>
|
||||||
|
</data>
|
||||||
|
<data name="DocumentRejected" xml:space="preserve">
|
||||||
|
<value>Signature refusée</value>
|
||||||
|
</data>
|
||||||
|
<data name="DocumentSigned" xml:space="preserve">
|
||||||
|
<value>Document signé</value>
|
||||||
|
</data>
|
||||||
|
<data name="Draft" xml:space="preserve">
|
||||||
|
<value>Brouillon</value>
|
||||||
|
</data>
|
||||||
|
<data name="EnvelopeArchived" xml:space="preserve">
|
||||||
|
<value>Archivée</value>
|
||||||
|
</data>
|
||||||
|
<data name="EnvelopeCompletelySigned" xml:space="preserve">
|
||||||
|
<value>Entièrement signée</value>
|
||||||
|
</data>
|
||||||
|
<data name="EnvelopeCreated" xml:space="preserve">
|
||||||
|
<value>Enveloppe créée</value>
|
||||||
|
</data>
|
||||||
|
<data name="EnvelopeDeleted" xml:space="preserve">
|
||||||
|
<value>Enveloppe supprimée</value>
|
||||||
|
</data>
|
||||||
|
<data name="EnvelopePartlySigned" xml:space="preserve">
|
||||||
|
<value>Partiellement signée</value>
|
||||||
|
</data>
|
||||||
|
<data name="EnvelopeQueued" xml:space="preserve">
|
||||||
|
<value>Enveloppe en file d’attente</value>
|
||||||
|
</data>
|
||||||
|
<data name="EnvelopeRejected" xml:space="preserve">
|
||||||
|
<value>Enveloppe refusée</value>
|
||||||
|
</data>
|
||||||
|
<data name="EnvelopeReportCreated" xml:space="preserve">
|
||||||
|
<value>Certificat de signature créé</value>
|
||||||
|
</data>
|
||||||
|
<data name="EnvelopeSaved" xml:space="preserve">
|
||||||
|
<value>Enregistrée</value>
|
||||||
|
</data>
|
||||||
|
<data name="EnvelopeSent" xml:space="preserve">
|
||||||
|
<value>Envoyée</value>
|
||||||
|
</data>
|
||||||
|
<data name="EnvelopeWithdrawn" xml:space="preserve">
|
||||||
|
<value>Enveloppe retirée</value>
|
||||||
|
</data>
|
||||||
|
<data name="MessageAccessCodeSent" xml:space="preserve">
|
||||||
|
<value>Code d’accès envoyé</value>
|
||||||
|
</data>
|
||||||
|
<data name="MessageCompletionSent" xml:space="preserve">
|
||||||
|
<value>E-mail de finalisation envoyé</value>
|
||||||
|
</data>
|
||||||
|
<data name="MessageConfirmationSent" xml:space="preserve">
|
||||||
|
<value>Confirmation de signature envoyée</value>
|
||||||
|
</data>
|
||||||
|
<data name="MessageDeletionSent" xml:space="preserve">
|
||||||
|
<value>Notification de suppression envoyée</value>
|
||||||
|
</data>
|
||||||
|
<data name="MessageInvitationSent" xml:space="preserve">
|
||||||
|
<value>Lien du document envoyé</value>
|
||||||
|
</data>
|
||||||
|
<data name="No" xml:space="preserve">
|
||||||
|
<value>Non</value>
|
||||||
|
</data>
|
||||||
|
<data name="PartlySigned" xml:space="preserve">
|
||||||
|
<value>Partiellement signé</value>
|
||||||
|
</data>
|
||||||
|
<data name="QualifiedSignature" xml:space="preserve">
|
||||||
|
<value>Signature qualifiée</value>
|
||||||
|
</data>
|
||||||
|
<data name="ReadAndSign" xml:space="preserve">
|
||||||
|
<value>Instruction de signature</value>
|
||||||
|
</data>
|
||||||
|
<data name="ResetTOTPUser" xml:space="preserve">
|
||||||
|
<value>Voulez-vous réinitialiser l’authentification à deux facteurs pour ce destinataire ? Il devra alors s’identifier à nouveau.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Saved" xml:space="preserve">
|
||||||
|
<value>Enregistré avec succès</value>
|
||||||
|
</data>
|
||||||
|
<data name="Sent" xml:space="preserve">
|
||||||
|
<value>Envoyé</value>
|
||||||
|
</data>
|
||||||
|
<data name="Signature" xml:space="preserve">
|
||||||
|
<value>Signature</value>
|
||||||
|
</data>
|
||||||
|
<data name="SignatureConfirmed" xml:space="preserve">
|
||||||
|
<value>Signature confirmée</value>
|
||||||
|
</data>
|
||||||
|
<data name="Signed" xml:space="preserve">
|
||||||
|
<value>Signé</value>
|
||||||
|
</data>
|
||||||
|
<data name="Success_FormClose" xml:space="preserve">
|
||||||
|
<value>Succès ! La fenêtre va se fermer.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Unsigned" xml:space="preserve">
|
||||||
|
<value>Non signé</value>
|
||||||
|
</data>
|
||||||
|
<data name="Yes" xml:space="preserve">
|
||||||
|
<value>Oui</value>
|
||||||
|
</data>
|
||||||
|
<data name="YesWithAttachment" xml:space="preserve">
|
||||||
|
<value>Oui, avec pièce jointe</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -220,7 +220,7 @@
|
|||||||
<value>Wollen Sie die 2-Faktor Definition für diesen Empfänger zurücksetzen. Der Empfänger muss sich dann neu identifizieren!</value>
|
<value>Wollen Sie die 2-Faktor Definition für diesen Empfänger zurücksetzen. Der Empfänger muss sich dann neu identifizieren!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Saved" xml:space="preserve">
|
<data name="Saved" xml:space="preserve">
|
||||||
<value>Gespeichert</value>
|
<value>Erfolgreich gespeichert</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Sent" xml:space="preserve">
|
<data name="Sent" xml:space="preserve">
|
||||||
<value>Gesendet</value>
|
<value>Gesendet</value>
|
||||||
|
|||||||
@@ -6,14 +6,12 @@ namespace EnvelopeGenerator.Domain.Entities
|
|||||||
[Table("TBSIG_CONFIG", Schema = "dbo")]
|
[Table("TBSIG_CONFIG", Schema = "dbo")]
|
||||||
public class Config
|
public class Config
|
||||||
{
|
{
|
||||||
[Column("DOCUMENT_PATH", TypeName = "nvarchar(256)")]
|
|
||||||
public string DocumentPath { get; set; }
|
|
||||||
|
|
||||||
[Column("SENDING_PROFILE", TypeName = "int")]
|
[Column("SENDING_PROFILE", TypeName = "int")]
|
||||||
[Required]
|
[Required]
|
||||||
public int SendingProfile { get; set; }
|
public int SendingProfile { get; set; }
|
||||||
|
|
||||||
[Column("SIGNATURE_HOST", TypeName = "nvarchar(128)")]
|
[Column("SIGNATURE_HOST", TypeName = "nvarchar(128)")]
|
||||||
|
[Required]
|
||||||
public string SignatureHost { get; set; }
|
public string SignatureHost { get; set; }
|
||||||
|
|
||||||
[Column("EXTERNAL_PROGRAM_NAME", TypeName = "nvarchar(30)")]
|
[Column("EXTERNAL_PROGRAM_NAME", TypeName = "nvarchar(30)")]
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
using System.ComponentModel.DataAnnotations;
|
using DigitalData.UserManager.Domain.Entities;
|
||||||
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
using EnvelopeGenerator.Domain;
|
||||||
|
|
||||||
#if NETFRAMEWORK
|
#if NETFRAMEWORK
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
@@ -11,6 +14,8 @@ namespace EnvelopeGenerator.Domain.Entities
|
|||||||
[Table("TBSIG_ENVELOPE", Schema = "dbo")]
|
[Table("TBSIG_ENVELOPE", Schema = "dbo")]
|
||||||
public class Envelope
|
public class Envelope
|
||||||
{
|
{
|
||||||
|
// removed: WithDefaultMessage()
|
||||||
|
|
||||||
// TODO: * Check the Form App and remove the default value
|
// TODO: * Check the Form App and remove the default value
|
||||||
[Key]
|
[Key]
|
||||||
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||||
@@ -36,7 +41,7 @@ namespace EnvelopeGenerator.Domain.Entities
|
|||||||
|
|
||||||
// TODO: * Check the Form App and remove the default value
|
// TODO: * Check the Form App and remove the default value
|
||||||
[Column("MESSAGE", TypeName = "nvarchar(max)")]
|
[Column("MESSAGE", TypeName = "nvarchar(max)")]
|
||||||
public string Message { get; set; } = My.Resources.Envelope.Please_read_and_sign_this_document;
|
public string Message { get; set; }
|
||||||
|
|
||||||
[Column("EXPIRES_WHEN", TypeName = "datetime")]
|
[Column("EXPIRES_WHEN", TypeName = "datetime")]
|
||||||
public DateTime ExpiresWhen { get; set; }
|
public DateTime ExpiresWhen { get; set; }
|
||||||
@@ -55,6 +60,9 @@ namespace EnvelopeGenerator.Domain.Entities
|
|||||||
[Column("TITLE", TypeName = "nvarchar(128)")]
|
[Column("TITLE", TypeName = "nvarchar(128)")]
|
||||||
public string Title { get; set; } = string.Empty;
|
public string Title { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
[Column("COMMENT", TypeName = "nvarchar(128)")]
|
||||||
|
public string Comment { get; set; } = string.Empty;
|
||||||
|
|
||||||
[Column("CONTRACT_TYPE")]
|
[Column("CONTRACT_TYPE")]
|
||||||
public int ContractType { get; set; }
|
public int ContractType { get; set; }
|
||||||
|
|
||||||
@@ -113,7 +121,7 @@ namespace EnvelopeGenerator.Domain.Entities
|
|||||||
|
|
||||||
// TODO: * Check the Form App and remove the default value
|
// TODO: * Check the Form App and remove the default value
|
||||||
[ForeignKey("UserId")]
|
[ForeignKey("UserId")]
|
||||||
public EGUser User { get; set; } = new EGUser();
|
public User User { get; set; }
|
||||||
|
|
||||||
[ForeignKey("EnvelopeTypeId")]
|
[ForeignKey("EnvelopeTypeId")]
|
||||||
public EnvelopeType EnvelopeType { get; set; }
|
public EnvelopeType EnvelopeType { get; set; }
|
||||||
@@ -125,7 +133,19 @@ namespace EnvelopeGenerator.Domain.Entities
|
|||||||
public bool IsAlreadySent => Status > (int)Constants.EnvelopeStatus.EnvelopeSaved;
|
public bool IsAlreadySent => Status > (int)Constants.EnvelopeStatus.EnvelopeSaved;
|
||||||
|
|
||||||
[NotMapped]
|
[NotMapped]
|
||||||
public string StatusTranslated => My.Resources.Model.ResourceManager.GetString(Status.ToString());
|
public string StatusTranslated
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
var statusName = ((Constants.EnvelopeStatus)Status).ToString();
|
||||||
|
var rescourceManager = My.Resources.Model.ResourceManager;
|
||||||
|
|
||||||
|
if (this.IsReadAndSign() && rescourceManager.GetString(statusName + "4RaC") is string translationRaC)
|
||||||
|
return translationRaC;
|
||||||
|
|
||||||
|
return rescourceManager.GetString(statusName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
[NotMapped]
|
[NotMapped]
|
||||||
public bool TFA_Enabled { get; set; } = false;
|
public bool TFA_Enabled { get; set; } = false;
|
||||||
@@ -134,12 +154,15 @@ namespace EnvelopeGenerator.Domain.Entities
|
|||||||
public byte[] DOC_RESULT { get; set; }
|
public byte[] DOC_RESULT { get; set; }
|
||||||
|
|
||||||
// TODO: * Check the Form App and remove the default value
|
// TODO: * Check the Form App and remove the default value
|
||||||
|
[NotMapped]
|
||||||
public List<EnvelopeDocument> Documents { get; set; } = new List<EnvelopeDocument>();
|
public List<EnvelopeDocument> Documents { get; set; } = new List<EnvelopeDocument>();
|
||||||
|
|
||||||
// TODO: * Check the Form App and remove the default value
|
// TODO: * Check the Form App and remove the default value
|
||||||
|
[NotMapped]
|
||||||
public List<EnvelopeHistory> History { get; set; } = new List<EnvelopeHistory>();
|
public List<EnvelopeHistory> History { get; set; } = new List<EnvelopeHistory>();
|
||||||
|
|
||||||
// TODO: * Check the Form App and remove the default value
|
// TODO: * Check the Form App and remove the default value
|
||||||
|
[NotMapped]
|
||||||
public List<Receiver> Receivers { get; set; } = new List<Receiver>();
|
public List<Receiver> Receivers { get; set; } = new List<Receiver>();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -161,4 +184,12 @@ namespace EnvelopeGenerator.Domain.Entities
|
|||||||
return errors;
|
return errors;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static class Extensions
|
||||||
|
{
|
||||||
|
public static bool IsReadAndSign(this Envelope envelope)
|
||||||
|
{
|
||||||
|
return envelope.EnvelopeTypeId == 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
using System.ComponentModel.DataAnnotations;
|
using DigitalData.UserManager.Domain.Entities;
|
||||||
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
#if NETFRAMEWORK
|
#if NETFRAMEWORK
|
||||||
using System;
|
using System;
|
||||||
@@ -12,6 +13,7 @@ namespace EnvelopeGenerator.Domain.Entities
|
|||||||
[Key]
|
[Key]
|
||||||
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||||||
[Column("GUID")]
|
[Column("GUID")]
|
||||||
|
|
||||||
public long Id { get; set; }
|
public long Id { get; set; }
|
||||||
|
|
||||||
[Required]
|
[Required]
|
||||||
@@ -37,13 +39,12 @@ namespace EnvelopeGenerator.Domain.Entities
|
|||||||
[Column("COMMENT", TypeName = "nvarchar(max)")]
|
[Column("COMMENT", TypeName = "nvarchar(max)")]
|
||||||
public string Comment { get; set; }
|
public string Comment { get; set; }
|
||||||
|
|
||||||
[ForeignKey("UserReference")]
|
public virtual User Sender { get; set; }
|
||||||
public virtual EGUser Sender { get; set; }
|
|
||||||
|
|
||||||
[ForeignKey("UserReference")]
|
|
||||||
public virtual Receiver Receiver { get; set; }
|
public virtual Receiver Receiver { get; set; }
|
||||||
|
|
||||||
[NotMapped]
|
[NotMapped]
|
||||||
public string StatusTranslated => My.Resources.Model.ResourceManager.GetString(Status.ToString());
|
public string StatusTranslated => My.Resources.Model.ResourceManager.GetString(Status.ToString());
|
||||||
|
// here i have to do it like in envelope
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,10 +1,59 @@
|
|||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
#if NETFRAMEWORK
|
||||||
|
using System;
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace EnvelopeGenerator.Domain.Entities
|
namespace EnvelopeGenerator.Domain.Entities
|
||||||
{
|
{
|
||||||
[Table("TBSIG_ENVELOPE_RECEIVER", Schema = "dbo")]
|
[Table("TBSIG_ENVELOPE_RECEIVER", Schema = "dbo")]
|
||||||
public class EnvelopeReceiver : EnvelopeReceiverBase
|
public class EnvelopeReceiver
|
||||||
{
|
{
|
||||||
|
[Key]
|
||||||
|
[Column("ENVELOPE_ID")]
|
||||||
|
public int EnvelopeId { get; set; }
|
||||||
|
|
||||||
|
[Key]
|
||||||
|
[Column("RECEIVER_ID")]
|
||||||
|
public int ReceiverId { get; set; }
|
||||||
|
|
||||||
|
[Required]
|
||||||
|
[Column("SEQUENCE")]
|
||||||
|
public int Sequence { get; set; }
|
||||||
|
|
||||||
|
[Column("NAME", TypeName = "nvarchar(128)")]
|
||||||
|
public string Name { get; set; }
|
||||||
|
|
||||||
|
[Column("JOB_TITLE", TypeName = "nvarchar(128)")]
|
||||||
|
public string JobTitle { get; set; }
|
||||||
|
|
||||||
|
[Column("COMPANY_NAME", TypeName = "nvarchar(128)")]
|
||||||
|
public string CompanyName { get; set; }
|
||||||
|
|
||||||
|
[Column("PRIVATE_MESSAGE", TypeName = "nvarchar(max)")]
|
||||||
|
public string PrivateMessage { get; set; }
|
||||||
|
|
||||||
|
[Column("ACCESS_CODE", TypeName = "nvarchar(64)")]
|
||||||
|
public string AccessCode { get; set; }
|
||||||
|
|
||||||
|
[Required]
|
||||||
|
[Column("ADDED_WHEN", TypeName = "datetime")]
|
||||||
|
public DateTime AddedWhen { get; set; }
|
||||||
|
|
||||||
|
[Column("CHANGED_WHEN", TypeName = "datetime")]
|
||||||
|
public DateTime ChangedWhen { get; set; }
|
||||||
|
|
||||||
|
[Column("PHONE_NUMBER")]
|
||||||
|
[StringLength(20)]
|
||||||
|
[RegularExpression(@"^\+[0-9]+$", ErrorMessage = "Phone number must start with '+' followed by digits.")]
|
||||||
|
public string PhoneNumber { get; set; }
|
||||||
|
|
||||||
|
[NotMapped]
|
||||||
|
public Tuple<int, int> Id => Tuple.Create(EnvelopeId, ReceiverId);
|
||||||
|
|
||||||
|
[NotMapped]
|
||||||
|
public bool HasPhoneNumber => !string.IsNullOrWhiteSpace(PhoneNumber);
|
||||||
|
|
||||||
[ForeignKey("EnvelopeId")]
|
[ForeignKey("EnvelopeId")]
|
||||||
public Envelope Envelope { get; set; }
|
public Envelope Envelope { get; set; }
|
||||||
|
|
||||||
|
|||||||
@@ -1,57 +0,0 @@
|
|||||||
using System.ComponentModel.DataAnnotations;
|
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
|
||||||
#if NETFRAMEWORK
|
|
||||||
using System;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace EnvelopeGenerator.Domain.Entities
|
|
||||||
{
|
|
||||||
[Table("TBSIG_ENVELOPE_RECEIVER", Schema = "dbo")]
|
|
||||||
public class EnvelopeReceiverBase
|
|
||||||
{
|
|
||||||
[Key]
|
|
||||||
[Column("ENVELOPE_ID")]
|
|
||||||
public int EnvelopeId { get; set; }
|
|
||||||
|
|
||||||
[Key]
|
|
||||||
[Column("RECEIVER_ID")]
|
|
||||||
public int ReceiverId { get; set; }
|
|
||||||
|
|
||||||
[Required]
|
|
||||||
[Column("SEQUENCE")]
|
|
||||||
public int Sequence { get; set; }
|
|
||||||
|
|
||||||
[Column("NAME", TypeName = "nvarchar(128)")]
|
|
||||||
public string Name { get; set; }
|
|
||||||
|
|
||||||
[Column("JOB_TITLE", TypeName = "nvarchar(128)")]
|
|
||||||
public string JobTitle { get; set; }
|
|
||||||
|
|
||||||
[Column("COMPANY_NAME", TypeName = "nvarchar(128)")]
|
|
||||||
public string CompanyName { get; set; }
|
|
||||||
|
|
||||||
[Column("PRIVATE_MESSAGE", TypeName = "nvarchar(max)")]
|
|
||||||
public string PrivateMessage { get; set; }
|
|
||||||
|
|
||||||
[Column("ACCESS_CODE", TypeName = "nvarchar(64)")]
|
|
||||||
public string AccessCode { get; set; }
|
|
||||||
|
|
||||||
[Required]
|
|
||||||
[Column("ADDED_WHEN", TypeName = "datetime")]
|
|
||||||
public DateTime AddedWhen { get; set; }
|
|
||||||
|
|
||||||
[Column("CHANGED_WHEN", TypeName = "datetime")]
|
|
||||||
public DateTime ChangedWhen { get; set; }
|
|
||||||
|
|
||||||
[Column("PHONE_NUMBER")]
|
|
||||||
[StringLength(20)]
|
|
||||||
[RegularExpression(@"^\+[0-9]+$", ErrorMessage = "Phone number must start with '+' followed by digits.")]
|
|
||||||
public string PhoneNumber { get; set; }
|
|
||||||
|
|
||||||
[NotMapped]
|
|
||||||
public Tuple<int, int> Id => Tuple.Create(EnvelopeId, ReceiverId);
|
|
||||||
|
|
||||||
[NotMapped]
|
|
||||||
public bool HasPhoneNumber => !string.IsNullOrWhiteSpace(PhoneNumber);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -23,7 +23,7 @@ namespace EnvelopeGenerator.Domain.Entities
|
|||||||
[NotMapped]
|
[NotMapped]
|
||||||
public Envelope Envelope { get; set; }
|
public Envelope Envelope { get; set; }
|
||||||
|
|
||||||
[Column("RECEIVER_MAIL")]
|
[Column("RECEIVER_MAIL", TypeName = "nvarchar(250)")]
|
||||||
[Required]
|
[Required]
|
||||||
[StringLength(250)]
|
[StringLength(250)]
|
||||||
[TemplatePlaceholder("NAME_RECEIVER")]
|
[TemplatePlaceholder("NAME_RECEIVER")]
|
||||||
@@ -33,9 +33,9 @@ namespace EnvelopeGenerator.Domain.Entities
|
|||||||
[Required]
|
[Required]
|
||||||
public DateTime DateValid { get; set; }
|
public DateTime DateValid { get; set; }
|
||||||
|
|
||||||
[Column("ADDED_WHO")]
|
[Column("ADDED_WHO", TypeName = "nvarchar(250)")]
|
||||||
[Required]
|
[Required]
|
||||||
[StringLength(100)]
|
[StringLength(250)]
|
||||||
public string AddedWho { get; set; }
|
public string AddedWho { get; set; }
|
||||||
|
|
||||||
public Receiver Receiver { get; set; }
|
public Receiver Receiver { get; set; }
|
||||||
|
|||||||
32
EnvelopeGenerator.Domain/Entities/FormExtensions.cs
Normal file
32
EnvelopeGenerator.Domain/Entities/FormExtensions.cs
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
using DigitalData.UserManager.Domain.Entities;
|
||||||
|
|
||||||
|
namespace EnvelopeGenerator.Domain.Entities
|
||||||
|
{
|
||||||
|
public static class FormExtensions
|
||||||
|
{
|
||||||
|
public static FormUser ToEGUser(this User user)
|
||||||
|
{
|
||||||
|
return new FormUser()
|
||||||
|
{
|
||||||
|
Id = user.Id,
|
||||||
|
Prename = user.Prename,
|
||||||
|
Name = user.Name,
|
||||||
|
Username = user.Username,
|
||||||
|
Shortname = user.Shortname,
|
||||||
|
Email = user.Email,
|
||||||
|
Language = user.Language,
|
||||||
|
Comment = user.Comment,
|
||||||
|
Deleted = user.Deleted,
|
||||||
|
DateFormat = user.DateFormat,
|
||||||
|
Active = user.Active,
|
||||||
|
GeneralViewer = user.GeneralViewer,
|
||||||
|
WanEnvironment = user.WanEnvironment,
|
||||||
|
UserIdFkIntEcm = user.UserIdFkIntEcm,
|
||||||
|
DeletedWhen = user.DeletedWhen,
|
||||||
|
DeletedWho = user.DeletedWho
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
public static string GetFullName(this User user) => $"{user.Prename} {user.Name}";
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,18 +1,11 @@
|
|||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.ComponentModel.DataAnnotations;
|
|
||||||
using System.ComponentModel;
|
|
||||||
using DigitalData.UserManager.Domain.Entities;
|
using DigitalData.UserManager.Domain.Entities;
|
||||||
|
|
||||||
#if NETFRAMEWORK
|
|
||||||
using System;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace EnvelopeGenerator.Domain.Entities
|
namespace EnvelopeGenerator.Domain.Entities
|
||||||
{
|
{
|
||||||
[Table("TBDD_USER", Schema = "dbo")]
|
[Table("TBDD_USER", Schema = "dbo")]
|
||||||
public class EGUser : User
|
public class FormUser : User
|
||||||
{
|
{
|
||||||
#region FORM_APP
|
|
||||||
[NotMapped]
|
[NotMapped]
|
||||||
public bool HasAccess { get; set; }
|
public bool HasAccess { get; set; }
|
||||||
|
|
||||||
@@ -24,6 +17,5 @@ namespace EnvelopeGenerator.Domain.Entities
|
|||||||
|
|
||||||
[NotMapped]
|
[NotMapped]
|
||||||
public string FullName => $"{Prename} {Name}";
|
public string FullName => $"{Prename} {Name}";
|
||||||
#endregion
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -17,7 +17,8 @@ namespace EnvelopeGenerator.Domain.Entities
|
|||||||
public int Id { get; set; }
|
public int Id { get; set; }
|
||||||
|
|
||||||
[Required, EmailAddress]
|
[Required, EmailAddress]
|
||||||
[Column("EMAIL_ADDRESS", TypeName = "nvarchar(128)")]
|
[Column("EMAIL_ADDRESS", TypeName = "nvarchar(250)")]
|
||||||
|
[StringLength(250)]
|
||||||
public string EmailAddress { get; set; }
|
public string EmailAddress { get; set; }
|
||||||
|
|
||||||
[Required]
|
[Required]
|
||||||
|
|||||||
@@ -1,39 +0,0 @@
|
|||||||
using System.ComponentModel.DataAnnotations;
|
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
|
||||||
#if NETFRAMEWORK
|
|
||||||
using System;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace EnvelopeGenerator.Domain.Entities
|
|
||||||
{
|
|
||||||
[Table("TBSIG_USER_RECEIVER", Schema = "dbo")]
|
|
||||||
public class UserReceiver
|
|
||||||
{
|
|
||||||
[Key]
|
|
||||||
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
||||||
[Column("GUID")]
|
|
||||||
public int Id { get; set; }
|
|
||||||
|
|
||||||
[Required]
|
|
||||||
[Column("USER_ID")]
|
|
||||||
public int UserId { get; set; }
|
|
||||||
|
|
||||||
[Required]
|
|
||||||
[Column("RECEIVER_ID")]
|
|
||||||
public int ReceiverId { get; set; }
|
|
||||||
|
|
||||||
[Required]
|
|
||||||
[Column("NAME", TypeName = "nvarchar(128)")]
|
|
||||||
public string Name { get; set; }
|
|
||||||
|
|
||||||
[Column("COMPANY_NAME", TypeName = "nvarchar(128)")]
|
|
||||||
public string CompanyName { get; set; }
|
|
||||||
|
|
||||||
[Column("JOB_TITLE", TypeName = "nvarchar(128)")]
|
|
||||||
public string JobTitle { get; set; }
|
|
||||||
|
|
||||||
[Required]
|
|
||||||
[Column("ADDED_WHEN", TypeName = "datetime")]
|
|
||||||
public DateTime AddedWhen { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net462;net7.0;net8.0;net9.0</TargetFrameworks>
|
<TargetFrameworks>net462;net7.0;net8.0;net9.0</TargetFrameworks>
|
||||||
|
<AssemblyVersion>1.4.0</AssemblyVersion>
|
||||||
|
<FileVersion>1.4.0</FileVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(TargetFramework)' == 'net462'">
|
<PropertyGroup Condition="'$(TargetFramework)' == 'net462'">
|
||||||
|
|||||||
26
EnvelopeGenerator.Domain/Resources/Email.Designer.cs
generated
26
EnvelopeGenerator.Domain/Resources/Email.Designer.cs
generated
@@ -1,10 +1,10 @@
|
|||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// This code was generated by a tool.
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
// Runtime Version:4.0.30319.42000
|
// Laufzeitversion:4.0.30319.42000
|
||||||
//
|
//
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
// the code is regenerated.
|
// der Code erneut generiert wird.
|
||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
@@ -13,12 +13,12 @@ namespace My.Resources {
|
|||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A strongly-typed resource class, for looking up localized strings, etc.
|
/// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
// This class was auto-generated by the StronglyTypedResourceBuilder
|
// Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert
|
||||||
// class via a tool like ResGen or Visual Studio.
|
// -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert.
|
||||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
// Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen
|
||||||
// with the /str option, or rebuild your VS project.
|
// mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu.
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
@@ -33,7 +33,7 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the cached ResourceManager instance used by this class.
|
/// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
public static global::System.Resources.ResourceManager ResourceManager {
|
public static global::System.Resources.ResourceManager ResourceManager {
|
||||||
@@ -47,8 +47,8 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Overrides the current thread's CurrentUICulture property for all
|
/// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
||||||
/// resource lookups using this strongly typed resource class.
|
/// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
public static global::System.Globalization.CultureInfo Culture {
|
public static global::System.Globalization.CultureInfo Culture {
|
||||||
@@ -61,7 +61,7 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Sie haben ein Dokument zur Unterschrift erhalten: {0}.
|
/// Sucht eine lokalisierte Zeichenfolge, die Sie haben ein Dokument zur Unterschrift erhalten: {0} ähnelt.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string Sie_haben_ein_Dokument_zur_Unterschrift_erhalten___0_ {
|
public static string Sie_haben_ein_Dokument_zur_Unterschrift_erhalten___0_ {
|
||||||
get {
|
get {
|
||||||
|
|||||||
@@ -60,6 +60,15 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Der Zugangs Code wurde erfolgreich an [@Mail] versendet!.
|
||||||
|
/// </summary>
|
||||||
|
public static string AccessCode_manually_send {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("AccessCode manually send", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Bitte wählen Sie die PDF-Dokumente die Sie verketten möchten:.
|
/// Looks up a localized string similar to Bitte wählen Sie die PDF-Dokumente die Sie verketten möchten:.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -150,6 +159,15 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Aktuell sind per Drag and Drop nur PDF-Dateien erlaubt..
|
||||||
|
/// </summary>
|
||||||
|
public static string Drop_only_pdf {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("Drop only pdf", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Bearbeite Umschlag.
|
/// Looks up a localized string similar to Bearbeite Umschlag.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -241,8 +259,8 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to The mobile phone number [@PhoneNr] could not be validated.
|
/// Looks up a localized string similar to Die Mobiltelefonnummer [@PhoneNr] konnte nicht validiert werden.
|
||||||
///Pattern: +491234567890.
|
///Muster: +491234567890.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string Error_phone_Validation {
|
public static string Error_phone_Validation {
|
||||||
get {
|
get {
|
||||||
@@ -368,7 +386,7 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to .
|
/// Looks up a localized string similar to Not translated.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string ModificationOriginFile_FormFields {
|
public static string ModificationOriginFile_FormFields {
|
||||||
get {
|
get {
|
||||||
@@ -394,6 +412,15 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Bitte bestätigen Sie, dieses Dokument gelesen zu haben..
|
||||||
|
/// </summary>
|
||||||
|
public static string Please_read_and_confirm_this_document {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("Please read and confirm this document", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Bitte lesen und unterzeichnen Sie dieses Dokument..
|
/// Looks up a localized string similar to Bitte lesen und unterzeichnen Sie dieses Dokument..
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -476,7 +503,7 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Es sind ungespeicherte Änderungen vorhanden. Wollen Sie diese Speichern?.
|
/// Looks up a localized string similar to Es sind ungespeicherte Änderungen vorhanden. Wollen Sie diese speichern?.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string There_are_unsaved_changes {
|
public static string There_are_unsaved_changes {
|
||||||
get {
|
get {
|
||||||
|
|||||||
@@ -147,9 +147,6 @@
|
|||||||
<data name="Drop only one file" xml:space="preserve">
|
<data name="Drop only one file" xml:space="preserve">
|
||||||
<value>Currently, only one PDF file is permitted via drag and drop.</value>
|
<value>Currently, only one PDF file is permitted via drag and drop.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Drop only pdf" xml:space="preserve">
|
|
||||||
<value />
|
|
||||||
</data>
|
|
||||||
<data name="Edit Envelope" xml:space="preserve">
|
<data name="Edit Envelope" xml:space="preserve">
|
||||||
<value>Edit Envelope</value>
|
<value>Edit Envelope</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -181,7 +178,8 @@
|
|||||||
<value>The email [ @Mail ] could not be varified!</value>
|
<value>The email [ @Mail ] could not be varified!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Error phone Validation" xml:space="preserve">
|
<data name="Error phone Validation" xml:space="preserve">
|
||||||
<value />
|
<value>The mobile phone number [@PhoneNr] could not be validated.
|
||||||
|
Pattern: +491234567890</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Error sending the envelope" xml:space="preserve">
|
<data name="Error sending the envelope" xml:space="preserve">
|
||||||
<value>Error sending the envelope:</value>
|
<value>Error sending the envelope:</value>
|
||||||
@@ -222,6 +220,9 @@
|
|||||||
<data name="Missing Receivers" xml:space="preserve">
|
<data name="Missing Receivers" xml:space="preserve">
|
||||||
<value>Missing Receivers</value>
|
<value>Missing Receivers</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ModificationOriginFile_FormFields" xml:space="preserve">
|
||||||
|
<value>Not translated</value>
|
||||||
|
</data>
|
||||||
<data name="New Envelope" xml:space="preserve">
|
<data name="New Envelope" xml:space="preserve">
|
||||||
<value>New Envelope</value>
|
<value>New Envelope</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -255,10 +256,19 @@
|
|||||||
<data name="There are already elements for this recipient" xml:space="preserve">
|
<data name="There are already elements for this recipient" xml:space="preserve">
|
||||||
<value>There are already elements for this recipient. Do you still want to delete the recipient?</value>
|
<value>There are already elements for this recipient. Do you still want to delete the recipient?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="There are unsaved changes." xml:space="preserve">
|
<data name="There are unsaved changes" xml:space="preserve">
|
||||||
<value>There are unsaved changes. Do you want to save them?</value>
|
<value>There are unsaved changes. Do you want to save them?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="You received a document to sign" xml:space="preserve">
|
<data name="You received a document to sign" xml:space="preserve">
|
||||||
<value>You received a document to sign:</value>
|
<value>You received a document to sign:</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Drop only pdf" xml:space="preserve">
|
||||||
|
<value>Currently, only PDF files are allowed via drag and drop.</value>
|
||||||
|
</data>
|
||||||
|
<data name="AccessCode manually send" xml:space="preserve">
|
||||||
|
<value>The access code was successfully sent to [@Mail]!</value>
|
||||||
|
</data>
|
||||||
|
<data name="Please read and confirm this document" xml:space="preserve">
|
||||||
|
<value>Please confirm that you have read this document.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -178,8 +178,8 @@
|
|||||||
<value>Die Email-Adresse [ @Mail ] konnte nicht validiert werden!</value>
|
<value>Die Email-Adresse [ @Mail ] konnte nicht validiert werden!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Error phone Validation" xml:space="preserve">
|
<data name="Error phone Validation" xml:space="preserve">
|
||||||
<value>The mobile phone number [@PhoneNr] could not be validated.
|
<value>Die Mobiltelefonnummer [@PhoneNr] konnte nicht validiert werden.
|
||||||
Pattern: +491234567890</value>
|
Muster: +491234567890</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Error sending the envelope" xml:space="preserve">
|
<data name="Error sending the envelope" xml:space="preserve">
|
||||||
<value>Fehler beim Senden des Umschlags:</value>
|
<value>Fehler beim Senden des Umschlags:</value>
|
||||||
@@ -221,7 +221,7 @@ Pattern: +491234567890</value>
|
|||||||
<value>Fehlende Empfänger</value>
|
<value>Fehlende Empfänger</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ModificationOriginFile_FormFields" xml:space="preserve">
|
<data name="ModificationOriginFile_FormFields" xml:space="preserve">
|
||||||
<value />
|
<value>Not translated</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="New Envelope" xml:space="preserve">
|
<data name="New Envelope" xml:space="preserve">
|
||||||
<value>Neuer Umschlag</value>
|
<value>Neuer Umschlag</value>
|
||||||
@@ -257,9 +257,18 @@ Pattern: +491234567890</value>
|
|||||||
<value>Es gibt für diesen Empfänger bereits Elemente. Wollen Sie den Empfänger trotzdem löschen?</value>
|
<value>Es gibt für diesen Empfänger bereits Elemente. Wollen Sie den Empfänger trotzdem löschen?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="There are unsaved changes" xml:space="preserve">
|
<data name="There are unsaved changes" xml:space="preserve">
|
||||||
<value>Es sind ungespeicherte Änderungen vorhanden. Wollen Sie diese Speichern?</value>
|
<value>Es sind ungespeicherte Änderungen vorhanden. Wollen Sie diese speichern?</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="You received a document to sign" xml:space="preserve">
|
<data name="You received a document to sign" xml:space="preserve">
|
||||||
<value>Sie haben ein Dokument zum signieren erhalten:</value>
|
<value>Sie haben ein Dokument zum signieren erhalten:</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Drop only pdf" xml:space="preserve">
|
||||||
|
<value>Aktuell sind per Drag and Drop nur PDF-Dateien erlaubt.</value>
|
||||||
|
</data>
|
||||||
|
<data name="AccessCode manually send" xml:space="preserve">
|
||||||
|
<value>Der Zugangs Code wurde erfolgreich an [@Mail] versendet!</value>
|
||||||
|
</data>
|
||||||
|
<data name="Please read and confirm this document" xml:space="preserve">
|
||||||
|
<value>Bitte bestätigen Sie, dieses Dokument gelesen zu haben.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
74
EnvelopeGenerator.Domain/Resources/Model.Designer.cs
generated
74
EnvelopeGenerator.Domain/Resources/Model.Designer.cs
generated
@@ -114,6 +114,15 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Vollständig gelesen und bestätigt.
|
||||||
|
/// </summary>
|
||||||
|
public static string CompletelySigned4RaC {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("CompletelySigned4RaC", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Vertrag.
|
/// Looks up a localized string similar to Vertrag.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -168,6 +177,15 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Dokument gelesen und bestätigt.
|
||||||
|
/// </summary>
|
||||||
|
public static string DocumentSigned4RaC {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("DocumentSigned4RaC", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Entwurf.
|
/// Looks up a localized string similar to Entwurf.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -195,6 +213,15 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Vollständig gelesen und bestätigt.
|
||||||
|
/// </summary>
|
||||||
|
public static string EnvelopeCompletelySigned4RaC {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("EnvelopeCompletelySigned4RaC", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Umschlag Erstellt.
|
/// Looks up a localized string similar to Umschlag Erstellt.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -222,6 +249,15 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Teil-Bestätigt.
|
||||||
|
/// </summary>
|
||||||
|
public static string EnvelopePartlySigned4RaC {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("EnvelopePartlySigned4RaC", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Umschlag in Queue.
|
/// Looks up a localized string similar to Umschlag in Queue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -339,6 +375,15 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Teil-Bestätigt.
|
||||||
|
/// </summary>
|
||||||
|
public static string PartlySigned4RaC {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("PartlySigned4RaC", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Qualifizierte Signatur.
|
/// Looks up a localized string similar to Qualifizierte Signatur.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -349,7 +394,7 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Arbeitsanweisung.
|
/// Looks up a localized string similar to Lesen und Bestätigen.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string ReadAndSign {
|
public static string ReadAndSign {
|
||||||
get {
|
get {
|
||||||
@@ -393,6 +438,15 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Bestätigung.
|
||||||
|
/// </summary>
|
||||||
|
public static string Signature4RaC {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("Signature4RaC", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Signatur bestätigt.
|
/// Looks up a localized string similar to Signatur bestätigt.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -411,6 +465,15 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Gelesen und bestätigt.
|
||||||
|
/// </summary>
|
||||||
|
public static string Signed4RaC {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("Signed4RaC", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Erfolgreich! Dialog wird geschlossen..
|
/// Looks up a localized string similar to Erfolgreich! Dialog wird geschlossen..
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -429,6 +492,15 @@ namespace My.Resources {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Nicht bestätigt.
|
||||||
|
/// </summary>
|
||||||
|
public static string Unsigned4RaC {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("Unsigned4RaC", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Ja.
|
/// Looks up a localized string similar to Ja.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -132,6 +132,12 @@
|
|||||||
<data name="Completed" xml:space="preserve">
|
<data name="Completed" xml:space="preserve">
|
||||||
<value>Completed</value>
|
<value>Completed</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CompletelySigned" xml:space="preserve">
|
||||||
|
<value>Completely signed</value>
|
||||||
|
</data>
|
||||||
|
<data name="CompletelySigned4RaC" xml:space="preserve">
|
||||||
|
<value>Completely red and confirmed</value>
|
||||||
|
</data>
|
||||||
<data name="Contract" xml:space="preserve">
|
<data name="Contract" xml:space="preserve">
|
||||||
<value>Contract</value>
|
<value>Contract</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -150,6 +156,9 @@
|
|||||||
<data name="DocumentSigned" xml:space="preserve">
|
<data name="DocumentSigned" xml:space="preserve">
|
||||||
<value>Document signed</value>
|
<value>Document signed</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="DocumentSigned4RaC" xml:space="preserve">
|
||||||
|
<value>Document read and confirmed</value>
|
||||||
|
</data>
|
||||||
<data name="Draft" xml:space="preserve">
|
<data name="Draft" xml:space="preserve">
|
||||||
<value>Draft</value>
|
<value>Draft</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -159,15 +168,15 @@
|
|||||||
<data name="EnvelopeCompletelySigned" xml:space="preserve">
|
<data name="EnvelopeCompletelySigned" xml:space="preserve">
|
||||||
<value>Completely signed</value>
|
<value>Completely signed</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="EnvelopeCompletelySigned4RaC" xml:space="preserve">
|
||||||
|
<value>Completely red and confirmed</value>
|
||||||
|
</data>
|
||||||
<data name="EnvelopeCreated" xml:space="preserve">
|
<data name="EnvelopeCreated" xml:space="preserve">
|
||||||
<value>Envelope Created</value>
|
<value>Envelope Created</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnvelopeDeleted" xml:space="preserve">
|
<data name="EnvelopeDeleted" xml:space="preserve">
|
||||||
<value>Envelope Deleted</value>
|
<value>Envelope Deleted</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnvelopePartlySigned" xml:space="preserve">
|
|
||||||
<value>Partly signed</value>
|
|
||||||
</data>
|
|
||||||
<data name="EnvelopeQueued" xml:space="preserve">
|
<data name="EnvelopeQueued" xml:space="preserve">
|
||||||
<value>Envelope Queued</value>
|
<value>Envelope Queued</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -204,6 +213,12 @@
|
|||||||
<data name="No" xml:space="preserve">
|
<data name="No" xml:space="preserve">
|
||||||
<value>No</value>
|
<value>No</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="PartlySigned" xml:space="preserve">
|
||||||
|
<value>Partially signed</value>
|
||||||
|
</data>
|
||||||
|
<data name="PartlySigned4RaC" xml:space="preserve">
|
||||||
|
<value>Partially confirmed</value>
|
||||||
|
</data>
|
||||||
<data name="QualifiedSignature" xml:space="preserve">
|
<data name="QualifiedSignature" xml:space="preserve">
|
||||||
<value>Qualified Signature</value>
|
<value>Qualified Signature</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -219,15 +234,15 @@
|
|||||||
<data name="Sent" xml:space="preserve">
|
<data name="Sent" xml:space="preserve">
|
||||||
<value>Sent</value>
|
<value>Sent</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Signature" xml:space="preserve">
|
|
||||||
<value>Signature</value>
|
|
||||||
</data>
|
|
||||||
<data name="SignatureConfirmed" xml:space="preserve">
|
<data name="SignatureConfirmed" xml:space="preserve">
|
||||||
<value>Signature confirmed</value>
|
<value>Signature confirmed</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Signed" xml:space="preserve">
|
<data name="Signed" xml:space="preserve">
|
||||||
<value>Signed</value>
|
<value>Signed</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Signed4RaC" xml:space="preserve">
|
||||||
|
<value>Red and confirmed</value>
|
||||||
|
</data>
|
||||||
<data name="Success_FormClose" xml:space="preserve">
|
<data name="Success_FormClose" xml:space="preserve">
|
||||||
<value>Successful! Dialog is closed.successful! Dialog is closed.</value>
|
<value>Successful! Dialog is closed.successful! Dialog is closed.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -240,4 +255,19 @@
|
|||||||
<data name="YesWithAttachment" xml:space="preserve">
|
<data name="YesWithAttachment" xml:space="preserve">
|
||||||
<value>Yes, with Attachment</value>
|
<value>Yes, with Attachment</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="EnvelopePartlySigned" xml:space="preserve">
|
||||||
|
<value>Partly signed</value>
|
||||||
|
</data>
|
||||||
|
<data name="EnvelopePartlySigned4RaC" xml:space="preserve">
|
||||||
|
<value>Partly confirmed</value>
|
||||||
|
</data>
|
||||||
|
<data name="Signature" xml:space="preserve">
|
||||||
|
<value>Signature</value>
|
||||||
|
</data>
|
||||||
|
<data name="Signature4RaC" xml:space="preserve">
|
||||||
|
<value>Confirmation</value>
|
||||||
|
</data>
|
||||||
|
<data name="Unsigned4RaC" xml:space="preserve">
|
||||||
|
<value>Not confirmed</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -135,6 +135,9 @@
|
|||||||
<data name="CompletelySigned" xml:space="preserve">
|
<data name="CompletelySigned" xml:space="preserve">
|
||||||
<value>Vollständig Signiert</value>
|
<value>Vollständig Signiert</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="CompletelySigned4RaC" xml:space="preserve">
|
||||||
|
<value>Vollständig gelesen und bestätigt</value>
|
||||||
|
</data>
|
||||||
<data name="Contract" xml:space="preserve">
|
<data name="Contract" xml:space="preserve">
|
||||||
<value>Vertrag</value>
|
<value>Vertrag</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -153,6 +156,9 @@
|
|||||||
<data name="DocumentSigned" xml:space="preserve">
|
<data name="DocumentSigned" xml:space="preserve">
|
||||||
<value>Dokument unterzeichnet</value>
|
<value>Dokument unterzeichnet</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="DocumentSigned4RaC" xml:space="preserve">
|
||||||
|
<value>Dokument gelesen und bestätigt</value>
|
||||||
|
</data>
|
||||||
<data name="Draft" xml:space="preserve">
|
<data name="Draft" xml:space="preserve">
|
||||||
<value>Entwurf</value>
|
<value>Entwurf</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -162,15 +168,15 @@
|
|||||||
<data name="EnvelopeCompletelySigned" xml:space="preserve">
|
<data name="EnvelopeCompletelySigned" xml:space="preserve">
|
||||||
<value>Vollständig signiert</value>
|
<value>Vollständig signiert</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="EnvelopeCompletelySigned4RaC" xml:space="preserve">
|
||||||
|
<value>Vollständig gelesen und bestätigt</value>
|
||||||
|
</data>
|
||||||
<data name="EnvelopeCreated" xml:space="preserve">
|
<data name="EnvelopeCreated" xml:space="preserve">
|
||||||
<value>Umschlag Erstellt</value>
|
<value>Umschlag Erstellt</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnvelopeDeleted" xml:space="preserve">
|
<data name="EnvelopeDeleted" xml:space="preserve">
|
||||||
<value>Umschlag Gelöscht</value>
|
<value>Umschlag Gelöscht</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="EnvelopePartlySigned" xml:space="preserve">
|
|
||||||
<value>Teil-Signiert</value>
|
|
||||||
</data>
|
|
||||||
<data name="EnvelopeQueued" xml:space="preserve">
|
<data name="EnvelopeQueued" xml:space="preserve">
|
||||||
<value>Umschlag in Queue</value>
|
<value>Umschlag in Queue</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -210,11 +216,14 @@
|
|||||||
<data name="PartlySigned" xml:space="preserve">
|
<data name="PartlySigned" xml:space="preserve">
|
||||||
<value>Teil-Signiert</value>
|
<value>Teil-Signiert</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="PartlySigned4RaC" xml:space="preserve">
|
||||||
|
<value>Teil-Bestätigt</value>
|
||||||
|
</data>
|
||||||
<data name="QualifiedSignature" xml:space="preserve">
|
<data name="QualifiedSignature" xml:space="preserve">
|
||||||
<value>Qualifizierte Signatur</value>
|
<value>Qualifizierte Signatur</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ReadAndSign" xml:space="preserve">
|
<data name="ReadAndSign" xml:space="preserve">
|
||||||
<value>Arbeitsanweisung</value>
|
<value>Lesen und Bestätigen</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ResetTOTPUser" xml:space="preserve">
|
<data name="ResetTOTPUser" xml:space="preserve">
|
||||||
<value>Wollen Sie die 2-Faktor Definition für diesen Empfänger zurücksetzen. Der Empfänger muss sich dann neu identifizieren!</value>
|
<value>Wollen Sie die 2-Faktor Definition für diesen Empfänger zurücksetzen. Der Empfänger muss sich dann neu identifizieren!</value>
|
||||||
@@ -225,15 +234,15 @@
|
|||||||
<data name="Sent" xml:space="preserve">
|
<data name="Sent" xml:space="preserve">
|
||||||
<value>Gesendet</value>
|
<value>Gesendet</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Signature" xml:space="preserve">
|
|
||||||
<value>Signatur</value>
|
|
||||||
</data>
|
|
||||||
<data name="SignatureConfirmed" xml:space="preserve">
|
<data name="SignatureConfirmed" xml:space="preserve">
|
||||||
<value>Signatur bestätigt</value>
|
<value>Signatur bestätigt</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Signed" xml:space="preserve">
|
<data name="Signed" xml:space="preserve">
|
||||||
<value>Signiert</value>
|
<value>Signiert</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="Signed4RaC" xml:space="preserve">
|
||||||
|
<value>Gelesen und bestätigt</value>
|
||||||
|
</data>
|
||||||
<data name="Success_FormClose" xml:space="preserve">
|
<data name="Success_FormClose" xml:space="preserve">
|
||||||
<value>Erfolgreich! Dialog wird geschlossen.</value>
|
<value>Erfolgreich! Dialog wird geschlossen.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -246,4 +255,19 @@
|
|||||||
<data name="YesWithAttachment" xml:space="preserve">
|
<data name="YesWithAttachment" xml:space="preserve">
|
||||||
<value>Ja, mit Anhang</value>
|
<value>Ja, mit Anhang</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="EnvelopePartlySigned" xml:space="preserve">
|
||||||
|
<value>Teil-Signiert</value>
|
||||||
|
</data>
|
||||||
|
<data name="EnvelopePartlySigned4RaC" xml:space="preserve">
|
||||||
|
<value>Teil-Bestätigt</value>
|
||||||
|
</data>
|
||||||
|
<data name="Signature" xml:space="preserve">
|
||||||
|
<value>Signatur</value>
|
||||||
|
</data>
|
||||||
|
<data name="Signature4RaC" xml:space="preserve">
|
||||||
|
<value>Bestätigung</value>
|
||||||
|
</data>
|
||||||
|
<data name="Unsigned4RaC" xml:space="preserve">
|
||||||
|
<value>Nicht bestätigt</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -28,7 +28,7 @@ Public Class EnvelopeEditorController
|
|||||||
Public Sub New(pState As State, pEnvelope As Envelope)
|
Public Sub New(pState As State, pEnvelope As Envelope)
|
||||||
MyBase.New(pState)
|
MyBase.New(pState)
|
||||||
|
|
||||||
Envelope = pEnvelope
|
Envelope = pEnvelope.WithDefaultMessage()
|
||||||
Envelope.Documents = DocumentModel.List(pEnvelope.Id).ToList()
|
Envelope.Documents = DocumentModel.List(pEnvelope.Id).ToList()
|
||||||
Envelope.Receivers = ReceiverModel.ListEnvelopeReceivers(pEnvelope.Id).ToList()
|
Envelope.Receivers = ReceiverModel.ListEnvelopeReceivers(pEnvelope.Id).ToList()
|
||||||
|
|
||||||
@@ -50,17 +50,21 @@ Public Class EnvelopeEditorController
|
|||||||
Public Function ValidateEnvelopeForSending(pErrors As List(Of String)) As List(Of String)
|
Public Function ValidateEnvelopeForSending(pErrors As List(Of String)) As List(Of String)
|
||||||
Dim oEnvelopeErrors = pErrors
|
Dim oEnvelopeErrors = pErrors
|
||||||
|
|
||||||
If ElementModel.ElementsExist(Envelope.Id) = False Then
|
If Envelope.EnvelopeTypeId <> 2 Then
|
||||||
oEnvelopeErrors.Add(Resources.Envelope.Missing_Elements)
|
|
||||||
End If
|
|
||||||
|
|
||||||
If ElementModel.OneElementPerReceiverExist(Envelope.Id) = False Then
|
If ElementModel.ElementsExist(Envelope.Id) = False Then
|
||||||
|
oEnvelopeErrors.Add(Resources.Envelope.Missing_Elements)
|
||||||
|
End If
|
||||||
|
|
||||||
For Each receiverItem As Receiver In Envelope.Receivers
|
If ElementModel.OneElementPerReceiverExist(Envelope.Id) = False Then
|
||||||
If ElementModel.ElementsExist(Envelope.Id, receiverItem.Id) = False Then
|
|
||||||
oEnvelopeErrors.Add(String.Format(Resources.Envelope.Missing_Elements_for_Receiver, receiverItem.Name))
|
For Each receiverItem As Receiver In Envelope.Receivers
|
||||||
End If
|
If ElementModel.ElementsExist(Envelope.Id, receiverItem.Id) = False Then
|
||||||
Next
|
oEnvelopeErrors.Add(String.Format(Resources.Envelope.Missing_Elements_for_Receiver, receiverItem.Name))
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
|
||||||
|
End If
|
||||||
|
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
|||||||
@@ -101,6 +101,9 @@
|
|||||||
<Reference Include="DigitalData.Modules.Messaging, Version=1.9.8.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="DigitalData.Modules.Messaging, Version=1.9.8.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\DigitalData.Modules.Messaging.1.9.8\lib\net462\DigitalData.Modules.Messaging.dll</HintPath>
|
<HintPath>..\packages\DigitalData.Modules.Messaging.1.9.8\lib\net462\DigitalData.Modules.Messaging.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
|
<Reference Include="DigitalData.UserManager.Domain, Version=3.2.2.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\UserManager.Domain.3.2.2\lib\net462\DigitalData.UserManager.Domain.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
<Reference Include="DocumentFormat.OpenXml, Version=3.2.0.0, Culture=neutral, PublicKeyToken=8fb06cb64d019a17, processorArchitecture=MSIL">
|
<Reference Include="DocumentFormat.OpenXml, Version=3.2.0.0, Culture=neutral, PublicKeyToken=8fb06cb64d019a17, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\DocumentFormat.OpenXml.3.2.0\lib\net46\DocumentFormat.OpenXml.dll</HintPath>
|
<HintPath>..\packages\DocumentFormat.OpenXml.3.2.0\lib\net46\DocumentFormat.OpenXml.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
@@ -238,6 +241,9 @@
|
|||||||
<Reference Include="System.Collections.Immutable, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
<Reference Include="System.Collections.Immutable, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\System.Collections.Immutable.9.0.0\lib\net462\System.Collections.Immutable.dll</HintPath>
|
<HintPath>..\packages\System.Collections.Immutable.9.0.0\lib\net462\System.Collections.Immutable.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
|
<Reference Include="System.ComponentModel.Annotations, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\System.ComponentModel.Annotations.4.7.0\lib\net461\System.ComponentModel.Annotations.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
<Reference Include="System.ComponentModel.DataAnnotations" />
|
<Reference Include="System.ComponentModel.DataAnnotations" />
|
||||||
<Reference Include="System.Configuration" />
|
<Reference Include="System.Configuration" />
|
||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
@@ -245,6 +251,9 @@
|
|||||||
<Reference Include="System.Data.Odbc, Version=6.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
<Reference Include="System.Data.Odbc, Version=6.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\System.Data.Odbc.6.0.1\lib\net461\System.Data.Odbc.dll</HintPath>
|
<HintPath>..\packages\System.Data.Odbc.6.0.1\lib\net461\System.Data.Odbc.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
|
<Reference Include="System.Drawing.Common, Version=4.0.0.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\System.Drawing.Common.4.7.3\lib\net461\System.Drawing.Common.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
<Reference Include="System.Formats.Asn1, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
<Reference Include="System.Formats.Asn1, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\System.Formats.Asn1.9.0.0\lib\net462\System.Formats.Asn1.dll</HintPath>
|
<HintPath>..\packages\System.Formats.Asn1.9.0.0\lib\net462\System.Formats.Asn1.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
@@ -387,13 +396,23 @@
|
|||||||
<DesignTime>True</DesignTime>
|
<DesignTime>True</DesignTime>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="My Project\AssemblyInfo.vb" />
|
<Compile Include="My Project\AssemblyInfo.vb" />
|
||||||
|
<EmbeddedResource Include="frm2Factor_Properties.en.resx">
|
||||||
|
<DependentUpon>frm2Factor_Properties.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="frm2Factor_Properties.fr.resx">
|
||||||
|
<DependentUpon>frm2Factor_Properties.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="frm2Factor_Properties.resx">
|
<EmbeddedResource Include="frm2Factor_Properties.resx">
|
||||||
<DependentUpon>frm2Factor_Properties.vb</DependentUpon>
|
<DependentUpon>frm2Factor_Properties.vb</DependentUpon>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="frmEnvelopeEditor.en.resx">
|
<EmbeddedResource Include="frmEnvelopeEditor.en.resx">
|
||||||
<DependentUpon>frmEnvelopeEditor.vb</DependentUpon>
|
<DependentUpon>frmEnvelopeEditor.vb</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="frmEnvelopeEditor.fr.resx">
|
||||||
|
<DependentUpon>frmEnvelopeEditor.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="frmEnvelopeEditor.resx">
|
<EmbeddedResource Include="frmEnvelopeEditor.resx">
|
||||||
<DependentUpon>frmEnvelopeEditor.vb</DependentUpon>
|
<DependentUpon>frmEnvelopeEditor.vb</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
@@ -402,6 +421,9 @@
|
|||||||
<DependentUpon>frmEnvelopeMainData.vb</DependentUpon>
|
<DependentUpon>frmEnvelopeMainData.vb</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="frmEnvelopeMainData.fr.resx">
|
||||||
|
<DependentUpon>frmEnvelopeMainData.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="frmEnvelopeMainData.resx">
|
<EmbeddedResource Include="frmEnvelopeMainData.resx">
|
||||||
<DependentUpon>frmEnvelopeMainData.vb</DependentUpon>
|
<DependentUpon>frmEnvelopeMainData.vb</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
@@ -410,13 +432,13 @@
|
|||||||
<DependentUpon>frmFieldEditor.vb</DependentUpon>
|
<DependentUpon>frmFieldEditor.vb</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="frmFieldEditor.fr.resx">
|
||||||
|
<DependentUpon>frmFieldEditor.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="frmFieldEditor.resx">
|
<EmbeddedResource Include="frmFieldEditor.resx">
|
||||||
<DependentUpon>frmFieldEditor.vb</DependentUpon>
|
<DependentUpon>frmFieldEditor.vb</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="frmGhostMode.en-US.resx">
|
|
||||||
<DependentUpon>frmGhostMode.vb</DependentUpon>
|
|
||||||
</EmbeddedResource>
|
|
||||||
<EmbeddedResource Include="frmGhostMode.en.resx">
|
<EmbeddedResource Include="frmGhostMode.en.resx">
|
||||||
<DependentUpon>frmGhostMode.vb</DependentUpon>
|
<DependentUpon>frmGhostMode.vb</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
@@ -430,16 +452,37 @@
|
|||||||
<EmbeddedResource Include="frmMain.en.resx">
|
<EmbeddedResource Include="frmMain.en.resx">
|
||||||
<DependentUpon>frmMain.vb</DependentUpon>
|
<DependentUpon>frmMain.vb</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="frmMain.fr.resx">
|
||||||
|
<DependentUpon>frmMain.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="frmMain.resx">
|
<EmbeddedResource Include="frmMain.resx">
|
||||||
<DependentUpon>frmMain.vb</DependentUpon>
|
<DependentUpon>frmMain.vb</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="frmOrderFiles.en.resx">
|
||||||
|
<DependentUpon>frmOrderFiles.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="frmOrderFiles.fr.resx">
|
||||||
|
<DependentUpon>frmOrderFiles.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="frmOrderFiles.resx">
|
<EmbeddedResource Include="frmOrderFiles.resx">
|
||||||
<DependentUpon>frmOrderFiles.vb</DependentUpon>
|
<DependentUpon>frmOrderFiles.vb</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="frmRueckruf.en.resx">
|
||||||
|
<DependentUpon>frmRueckruf.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="frmRueckruf.fr.resx">
|
||||||
|
<DependentUpon>frmRueckruf.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="frmRueckruf.resx">
|
<EmbeddedResource Include="frmRueckruf.resx">
|
||||||
<DependentUpon>frmRueckruf.vb</DependentUpon>
|
<DependentUpon>frmRueckruf.vb</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="frmSplashScreen.en.resx">
|
||||||
|
<DependentUpon>frmSplashScreen.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="frmSplashScreen.fr.resx">
|
||||||
|
<DependentUpon>frmSplashScreen.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="frmSplashScreen.resx">
|
<EmbeddedResource Include="frmSplashScreen.resx">
|
||||||
<DependentUpon>frmSplashScreen.vb</DependentUpon>
|
<DependentUpon>frmSplashScreen.vb</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
Imports DigitalData.Modules.Database
|
Imports System.Runtime.CompilerServices
|
||||||
|
Imports System.Resources
|
||||||
|
Imports DigitalData.Modules.Database
|
||||||
Imports DigitalData.Modules.Logging
|
Imports DigitalData.Modules.Logging
|
||||||
Imports EnvelopeGenerator.CommonServices
|
Imports EnvelopeGenerator.CommonServices
|
||||||
|
Imports EnvelopeGenerator.CommonServices.My
|
||||||
Imports EnvelopeGenerator.Domain.Entities
|
Imports EnvelopeGenerator.Domain.Entities
|
||||||
|
Imports EnvelopeGenerator.Domain
|
||||||
|
|
||||||
Module ModuleSettings
|
Module ModuleSettings
|
||||||
Public ENVELOPE_TEMP_DOCUMENT As String = ""
|
Public ENVELOPE_TEMP_DOCUMENT As String = ""
|
||||||
@@ -11,7 +15,7 @@ Module ModuleSettings
|
|||||||
Public DB_DD_ECM As MSSQLServer = Nothing
|
Public DB_DD_ECM As MSSQLServer = Nothing
|
||||||
Public DEF_TF_ENABLED As Boolean = False
|
Public DEF_TF_ENABLED As Boolean = False
|
||||||
Public DEF_TF_ENABLED_WITH_PHONE As Boolean = False
|
Public DEF_TF_ENABLED_WITH_PHONE As Boolean = False
|
||||||
Public MYUSER As EGUser
|
Public MYUSER As FormUser
|
||||||
Public MyTempFiles As TempFiles
|
Public MyTempFiles As TempFiles
|
||||||
Public SQL_REP_ENV_USER_LM As String = ""
|
Public SQL_REP_ENV_USER_LM As String = ""
|
||||||
Public SQL_REP_ENV_USER_TM As String = ""
|
Public SQL_REP_ENV_USER_TM As String = ""
|
||||||
@@ -27,4 +31,21 @@ Module ModuleSettings
|
|||||||
Public MyState As State
|
Public MyState As State
|
||||||
Public CurrentEnvelopID As Integer = 0
|
Public CurrentEnvelopID As Integer = 0
|
||||||
Public CurrentEnvelopetitle As String = ""
|
Public CurrentEnvelopetitle As String = ""
|
||||||
|
|
||||||
|
<Extension()>
|
||||||
|
Public Function WithDefaultMessage(ByVal envelope As Envelope) As Envelope
|
||||||
|
If envelope Is Nothing Then
|
||||||
|
Throw New ArgumentNullException(NameOf(envelope))
|
||||||
|
End If
|
||||||
|
|
||||||
|
Dim resourceManager As New ResourceManager("EnvelopeGenerator.Domain.Resources.Envelope", GetType(EnvelopeGenerator.Domain.Entities.Envelope).Assembly)
|
||||||
|
|
||||||
|
If envelope.EnvelopeTypeId = 1 Then
|
||||||
|
envelope.Message = resourceManager.GetString("Please read and sign this document")
|
||||||
|
ElseIf envelope.EnvelopeTypeId = 2 Then
|
||||||
|
envelope.Message = resourceManager.GetString("Please read and confirm this document")
|
||||||
|
End If
|
||||||
|
|
||||||
|
Return envelope
|
||||||
|
End Function
|
||||||
End Module
|
End Module
|
||||||
|
|||||||
@@ -10,8 +10,8 @@ Imports System.Runtime.InteropServices
|
|||||||
<Assembly: AssemblyConfiguration("")>
|
<Assembly: AssemblyConfiguration("")>
|
||||||
<Assembly: AssemblyCompany("Digital Data")>
|
<Assembly: AssemblyCompany("Digital Data")>
|
||||||
<Assembly: AssemblyProduct("Envelope Generator")>
|
<Assembly: AssemblyProduct("Envelope Generator")>
|
||||||
<Assembly: AssemblyCopyright("Copyright © 2024")>
|
<Assembly: AssemblyCopyright("2026")>
|
||||||
<Assembly: AssemblyTrademark("2.9.0.0")>
|
<Assembly: AssemblyTrademark("")>
|
||||||
<Assembly: AssemblyCulture("")>
|
<Assembly: AssemblyCulture("")>
|
||||||
|
|
||||||
' Setting ComVisible to false makes the types in this assembly not visible
|
' Setting ComVisible to false makes the types in this assembly not visible
|
||||||
@@ -32,5 +32,5 @@ Imports System.Runtime.InteropServices
|
|||||||
' You can specify all the values or you can default the Build and Revision Numbers
|
' You can specify all the values or you can default the Build and Revision Numbers
|
||||||
' by using the '*' as shown below:
|
' by using the '*' as shown below:
|
||||||
' [assembly: AssemblyVersion("1.0.*")]
|
' [assembly: AssemblyVersion("1.0.*")]
|
||||||
<Assembly: AssemblyVersion("2.9.1.0")>
|
<Assembly: AssemblyVersion("2.9.3.0")>
|
||||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||||
|
|||||||
@@ -33,69 +33,44 @@ Partial Class frm2Factor_Properties
|
|||||||
'
|
'
|
||||||
'txtMail
|
'txtMail
|
||||||
'
|
'
|
||||||
Me.txtMail.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
resources.ApplyResources(Me.txtMail, "txtMail")
|
||||||
Me.txtMail.Location = New System.Drawing.Point(85, 24)
|
|
||||||
Me.txtMail.Name = "txtMail"
|
Me.txtMail.Name = "txtMail"
|
||||||
Me.txtMail.ReadOnly = True
|
Me.txtMail.ReadOnly = True
|
||||||
Me.txtMail.Size = New System.Drawing.Size(342, 23)
|
|
||||||
Me.txtMail.TabIndex = 0
|
|
||||||
'
|
'
|
||||||
'txtValid
|
'txtValid
|
||||||
'
|
'
|
||||||
Me.txtValid.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
resources.ApplyResources(Me.txtValid, "txtValid")
|
||||||
Me.txtValid.Location = New System.Drawing.Point(85, 79)
|
|
||||||
Me.txtValid.Name = "txtValid"
|
Me.txtValid.Name = "txtValid"
|
||||||
Me.txtValid.ReadOnly = True
|
Me.txtValid.ReadOnly = True
|
||||||
Me.txtValid.Size = New System.Drawing.Size(202, 23)
|
|
||||||
Me.txtValid.TabIndex = 1
|
|
||||||
'
|
'
|
||||||
'chkTOTP
|
'chkTOTP
|
||||||
'
|
'
|
||||||
Me.chkTOTP.AutoSize = True
|
resources.ApplyResources(Me.chkTOTP, "chkTOTP")
|
||||||
Me.chkTOTP.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
|
||||||
Me.chkTOTP.Location = New System.Drawing.Point(85, 53)
|
|
||||||
Me.chkTOTP.Name = "chkTOTP"
|
Me.chkTOTP.Name = "chkTOTP"
|
||||||
Me.chkTOTP.Size = New System.Drawing.Size(151, 20)
|
|
||||||
Me.chkTOTP.TabIndex = 2
|
|
||||||
Me.chkTOTP.Text = "Secret Key vorhanden"
|
|
||||||
Me.chkTOTP.UseVisualStyleBackColor = True
|
Me.chkTOTP.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'Label1
|
'Label1
|
||||||
'
|
'
|
||||||
Me.Label1.AutoSize = True
|
resources.ApplyResources(Me.Label1, "Label1")
|
||||||
Me.Label1.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
|
||||||
Me.Label1.Location = New System.Drawing.Point(12, 27)
|
|
||||||
Me.Label1.Name = "Label1"
|
Me.Label1.Name = "Label1"
|
||||||
Me.Label1.Size = New System.Drawing.Size(47, 16)
|
|
||||||
Me.Label1.TabIndex = 3
|
|
||||||
Me.Label1.Text = "E-Mail:"
|
|
||||||
'
|
'
|
||||||
'Label3
|
'Label3
|
||||||
'
|
'
|
||||||
Me.Label3.AutoSize = True
|
resources.ApplyResources(Me.Label3, "Label3")
|
||||||
Me.Label3.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
|
||||||
Me.Label3.Location = New System.Drawing.Point(15, 82)
|
|
||||||
Me.Label3.Name = "Label3"
|
Me.Label3.Name = "Label3"
|
||||||
Me.Label3.Size = New System.Drawing.Size(64, 16)
|
|
||||||
Me.Label3.TabIndex = 5
|
|
||||||
Me.Label3.Text = "Gültig bis:"
|
|
||||||
'
|
'
|
||||||
'SimpleButton1
|
'SimpleButton1
|
||||||
'
|
'
|
||||||
Me.SimpleButton1.Appearance.Font = New System.Drawing.Font("Tahoma", 9.75!)
|
resources.ApplyResources(Me.SimpleButton1, "SimpleButton1")
|
||||||
|
Me.SimpleButton1.Appearance.Font = CType(resources.GetObject("SimpleButton1.Appearance.Font"), System.Drawing.Font)
|
||||||
Me.SimpleButton1.Appearance.Options.UseFont = True
|
Me.SimpleButton1.Appearance.Options.UseFont = True
|
||||||
Me.SimpleButton1.ImageOptions.SvgImage = CType(resources.GetObject("SimpleButton1.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.SimpleButton1.ImageOptions.SvgImage = CType(resources.GetObject("SimpleButton1.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.SimpleButton1.Location = New System.Drawing.Point(18, 121)
|
|
||||||
Me.SimpleButton1.Name = "SimpleButton1"
|
Me.SimpleButton1.Name = "SimpleButton1"
|
||||||
Me.SimpleButton1.Size = New System.Drawing.Size(116, 40)
|
|
||||||
Me.SimpleButton1.TabIndex = 6
|
|
||||||
Me.SimpleButton1.Text = "Zurücksetzen"
|
|
||||||
'
|
'
|
||||||
'frm2Factor_Properties
|
'frm2Factor_Properties
|
||||||
'
|
'
|
||||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
resources.ApplyResources(Me, "$this")
|
||||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
Me.ClientSize = New System.Drawing.Size(443, 170)
|
|
||||||
Me.Controls.Add(Me.SimpleButton1)
|
Me.Controls.Add(Me.SimpleButton1)
|
||||||
Me.Controls.Add(Me.Label3)
|
Me.Controls.Add(Me.Label3)
|
||||||
Me.Controls.Add(Me.Label1)
|
Me.Controls.Add(Me.Label1)
|
||||||
@@ -105,8 +80,6 @@ Partial Class frm2Factor_Properties
|
|||||||
Me.MaximizeBox = False
|
Me.MaximizeBox = False
|
||||||
Me.MinimizeBox = False
|
Me.MinimizeBox = False
|
||||||
Me.Name = "frm2Factor_Properties"
|
Me.Name = "frm2Factor_Properties"
|
||||||
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
|
|
||||||
Me.Text = "Zwei-Faktor Eigenschaften Empfänger:"
|
|
||||||
Me.ResumeLayout(False)
|
Me.ResumeLayout(False)
|
||||||
Me.PerformLayout()
|
Me.PerformLayout()
|
||||||
|
|
||||||
|
|||||||
@@ -117,49 +117,44 @@
|
|||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="BarButtonItem1.Caption" xml:space="preserve">
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
<value>Activate ghost mode</value>
|
<data name="chkTOTP.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>140, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="$this.Text" xml:space="preserve">
|
||||||
|
<value>2 Factor properties receiver:</value>
|
||||||
|
</data>
|
||||||
|
<data name="Label3.Text" xml:space="preserve">
|
||||||
|
<value>Valid until:</value>
|
||||||
</data>
|
</data>
|
||||||
<assembly alias="DevExpress.Data.v21.2" name="DevExpress.Data.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
<assembly alias="DevExpress.Data.v21.2" name="DevExpress.Data.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||||
<data name="BarButtonItem1.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="SimpleButton1.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAAIEAAAC77u/
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAANcCAAAC77u/
|
||||||
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkdyZWVue2ZpbGw6IzAzOUMyMzt9Cgku
|
||||||
ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5SZWR7ZmlsbDojRDExQzFDO30KCS5HcmVlbntmaWxsOiMwMzlD
|
QmxhY2t7ZmlsbDojNzI3MjcyO30KCS5SZWR7ZmlsbDojRDExQzFDO30KCS5ZZWxsb3d7ZmlsbDojRkZC
|
||||||
MjM7fQoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
MTE1O30KCS5CbHVle2ZpbGw6IzExNzdENzt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
||||||
Y2l0eTowLjU7fQoJLnN0MXtvcGFjaXR5OjAuNzU7fQoJLnN0MntkaXNwbGF5Om5vbmU7fQoJLnN0M3tk
|
Y2l0eTowLjU7fQoJLnN0MXtvcGFjaXR5OjAuNzU7fQo8L3N0eWxlPg0KICA8ZyBpZD0iUmVzZXRMYXlv
|
||||||
aXNwbGF5OmlubGluZTtmaWxsOiNGRkIxMTU7fQoJLnN0NHtkaXNwbGF5OmlubGluZTt9Cgkuc3Q1e2Rp
|
dXRPcHRpb25zIj4NCiAgICA8cGF0aCBkPSJNMTYsNGMtMy4zLDAtNi4zLDEuMy04LjUsMy41TDQsNHYx
|
||||||
c3BsYXk6aW5saW5lO29wYWNpdHk6MC43NTt9Cgkuc3Q2e2Rpc3BsYXk6aW5saW5lO29wYWNpdHk6MC41
|
MGgwLjJoNC4xSDE0bC0zLjYtMy42QzExLjgsOC45LDEzLjgsOCwxNiw4YzQuNCwwLDgsMy42LDgsOHMt
|
||||||
O30KCS5zdDd7ZGlzcGxheTppbmxpbmU7ZmlsbDojMDM5QzIzO30KCS5zdDh7ZGlzcGxheTppbmxpbmU7
|
My42LDgtOCw4ICAgYy0zLjcsMC02LjgtMi42LTcuNy02SDQuMmMxLDUuNyw1LjksMTAsMTEuOCwxMGM2
|
||||||
ZmlsbDojRDExQzFDO30KCS5zdDl7ZGlzcGxheTppbmxpbmU7ZmlsbDojMTE3N0Q3O30KCS5zdDEwe2Rp
|
LjYsMCwxMi01LjQsMTItMTJTMjIuNiw0LDE2LDR6IiBjbGFzcz0iR3JlZW4iIC8+DQogIDwvZz4NCjwv
|
||||||
c3BsYXk6aW5saW5lO2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+DQogIDxnIGlkPSJSb2xlIj4NCiAgICA8
|
c3ZnPgs=
|
||||||
cGF0aCBkPSJNNCwydjE2YzAsNi42LDUuNCwxMiwxMiwxMnMxMi01LjQsMTItMTJWMkg0eiBNMTEsOWMx
|
|
||||||
LjcsMCwzLDEuMywzLDNIOEM4LDEwLjMsOS4zLDksMTEsOXogTTE2LDI0ICAgYy0zLjMsMC02LTIuNy02
|
|
||||||
LTZjMCwxLjEsMi43LDIsNiwyczYtMC45LDYtMkMyMiwyMS4zLDE5LjMsMjQsMTYsMjR6IE0xOCwxMmMw
|
|
||||||
LTEuNywxLjMtMywzLTNzMywxLjMsMywzSDE4eiIgY2xhc3M9IlllbGxvdyIgLz4NCiAgPC9nPg0KPC9z
|
|
||||||
dmc+Cw==
|
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RibbonPageGroup1.Text" xml:space="preserve">
|
<data name="Label3.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>Actions</value>
|
<value>68, 16</value>
|
||||||
</data>
|
</data>
|
||||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
<data name="SimpleButton1.Text" xml:space="preserve">
|
||||||
<data name="RibbonControl1.Size" type="System.Drawing.Size, System.Drawing">
|
<value>Reset</value>
|
||||||
<value>965, 146</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="GridControl1.Location" type="System.Drawing.Point, System.Drawing">
|
<data name="chkTOTP.Text" xml:space="preserve">
|
||||||
<value>0, 146</value>
|
<value>Secret key available</value>
|
||||||
</data>
|
|
||||||
<data name="GridView1.ViewCaption" xml:space="preserve">
|
|
||||||
<value>Please choose a ghost user</value>
|
|
||||||
</data>
|
|
||||||
<data name="GridControl1.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>965, 341</value>
|
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
163
EnvelopeGenerator.Form/frm2Factor_Properties.fr.resx
Normal file
163
EnvelopeGenerator.Form/frm2Factor_Properties.fr.resx
Normal file
@@ -0,0 +1,163 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
|
<data name="txtValid.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>130, 79</value>
|
||||||
|
</data>
|
||||||
|
<data name="chkTOTP.Text" xml:space="preserve">
|
||||||
|
<value>Clé secrète disponible</value>
|
||||||
|
</data>
|
||||||
|
<data name="Label3.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>110, 16</value>
|
||||||
|
</data>
|
||||||
|
<data name="Label3.Text" xml:space="preserve">
|
||||||
|
<value>Valable jusqu'au :</value>
|
||||||
|
</data>
|
||||||
|
<assembly alias="DevExpress.Data.v21.2" name="DevExpress.Data.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||||
|
<data name="SimpleButton1.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAANcCAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkdyZWVue2ZpbGw6IzAzOUMyMzt9Cgku
|
||||||
|
QmxhY2t7ZmlsbDojNzI3MjcyO30KCS5SZWR7ZmlsbDojRDExQzFDO30KCS5ZZWxsb3d7ZmlsbDojRkZC
|
||||||
|
MTE1O30KCS5CbHVle2ZpbGw6IzExNzdENzt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
||||||
|
Y2l0eTowLjU7fQoJLnN0MXtvcGFjaXR5OjAuNzU7fQo8L3N0eWxlPg0KICA8ZyBpZD0iUmVzZXRMYXlv
|
||||||
|
dXRPcHRpb25zIj4NCiAgICA8cGF0aCBkPSJNMTYsNGMtMy4zLDAtNi4zLDEuMy04LjUsMy41TDQsNHYx
|
||||||
|
MGgwLjJoNC4xSDE0bC0zLjYtMy42QzExLjgsOC45LDEzLjgsOCwxNiw4YzQuNCwwLDgsMy42LDgsOHMt
|
||||||
|
My42LDgtOCw4ICAgYy0zLjcsMC02LjgtMi42LTcuNy02SDQuMmMxLDUuNyw1LjksMTAsMTEuOCwxMGM2
|
||||||
|
LjYsMCwxMi01LjQsMTItMTJTMjIuNiw0LDE2LDR6IiBjbGFzcz0iR3JlZW4iIC8+DQogIDwvZz4NCjwv
|
||||||
|
c3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="SimpleButton1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>143, 40</value>
|
||||||
|
</data>
|
||||||
|
<data name="SimpleButton1.Text" xml:space="preserve">
|
||||||
|
<value>Réinitialisation</value>
|
||||||
|
</data>
|
||||||
|
<data name="$this.Text" xml:space="preserve">
|
||||||
|
<value>Propriétés à deux facteurs Récepteur :</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -117,6 +117,92 @@
|
|||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
|
<data name=">>SimpleButton1.Type" xml:space="preserve">
|
||||||
|
<value>DevExpress.XtraEditors.SimpleButton, DevExpress.XtraEditors.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
|
</data>
|
||||||
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
|
<data name="chkTOTP.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>151, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="SimpleButton1.Appearance.Font" type="System.Drawing.Font, System.Drawing">
|
||||||
|
<value>Tahoma, 9.75pt</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>SimpleButton1.ZOrder" xml:space="preserve">
|
||||||
|
<value>0</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtMail.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>85, 24</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>chkTOTP.ZOrder" xml:space="preserve">
|
||||||
|
<value>3</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>Label1.Name" xml:space="preserve">
|
||||||
|
<value>Label1</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>chkTOTP.Type" xml:space="preserve">
|
||||||
|
<value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</data>
|
||||||
|
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
|
<data name="chkTOTP.TabIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>2</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtValid.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>85, 79</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>txtMail.ZOrder" xml:space="preserve">
|
||||||
|
<value>5</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>txtMail.Name" xml:space="preserve">
|
||||||
|
<value>txtMail</value>
|
||||||
|
</data>
|
||||||
|
<data name="Label3.Font" type="System.Drawing.Font, System.Drawing">
|
||||||
|
<value>Tahoma, 9.75pt</value>
|
||||||
|
</data>
|
||||||
|
<data name="Label1.Font" type="System.Drawing.Font, System.Drawing">
|
||||||
|
<value>Tahoma, 9.75pt</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtValid.Font" type="System.Drawing.Font, System.Drawing">
|
||||||
|
<value>Tahoma, 9.75pt</value>
|
||||||
|
</data>
|
||||||
|
<data name="Label1.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>12, 27</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>txtValid.Type" xml:space="preserve">
|
||||||
|
<value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</data>
|
||||||
|
<data name="chkTOTP.AutoSize" type="System.Boolean, mscorlib">
|
||||||
|
<value>True</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>txtValid.ZOrder" xml:space="preserve">
|
||||||
|
<value>4</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtMail.Font" type="System.Drawing.Font, System.Drawing">
|
||||||
|
<value>Tahoma, 9.75pt</value>
|
||||||
|
</data>
|
||||||
|
<data name="$this.Text" xml:space="preserve">
|
||||||
|
<value>2 Faktor Eigenschaften Empfänger:</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>Label1.Parent" xml:space="preserve">
|
||||||
|
<value>$this</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>Label3.Type" xml:space="preserve">
|
||||||
|
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</data>
|
||||||
|
<data name="Label3.Text" xml:space="preserve">
|
||||||
|
<value>Gültig bis:</value>
|
||||||
|
</data>
|
||||||
|
<data name="SimpleButton1.TabIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>6</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>$this.Name" xml:space="preserve">
|
||||||
|
<value>frm2Factor_Properties</value>
|
||||||
|
</data>
|
||||||
|
<data name="Label1.TabIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>3</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>SimpleButton1.Name" xml:space="preserve">
|
||||||
|
<value>SimpleButton1</value>
|
||||||
|
</data>
|
||||||
<assembly alias="DevExpress.Data.v21.2" name="DevExpress.Data.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
<assembly alias="DevExpress.Data.v21.2" name="DevExpress.Data.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||||
<data name="SimpleButton1.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="SimpleButton1.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
@@ -138,4 +224,107 @@
|
|||||||
c3ZnPgs=
|
c3ZnPgs=
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name=">>SimpleButton1.Parent" xml:space="preserve">
|
||||||
|
<value>$this</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>Label1.ZOrder" xml:space="preserve">
|
||||||
|
<value>2</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>Label3.Parent" xml:space="preserve">
|
||||||
|
<value>$this</value>
|
||||||
|
</data>
|
||||||
|
<data name="Label3.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>64, 16</value>
|
||||||
|
</data>
|
||||||
|
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>443, 170</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>chkTOTP.Name" xml:space="preserve">
|
||||||
|
<value>chkTOTP</value>
|
||||||
|
</data>
|
||||||
|
<data name="Label3.AutoSize" type="System.Boolean, mscorlib">
|
||||||
|
<value>True</value>
|
||||||
|
</data>
|
||||||
|
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
|
||||||
|
<value>6, 13</value>
|
||||||
|
</data>
|
||||||
|
<data name="chkTOTP.Font" type="System.Drawing.Font, System.Drawing">
|
||||||
|
<value>Tahoma, 9.75pt</value>
|
||||||
|
</data>
|
||||||
|
<data name="Label3.TabIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>5</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>Label1.Type" xml:space="preserve">
|
||||||
|
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>txtMail.Parent" xml:space="preserve">
|
||||||
|
<value>$this</value>
|
||||||
|
</data>
|
||||||
|
<data name="SimpleButton1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>135, 40</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>txtValid.Parent" xml:space="preserve">
|
||||||
|
<value>$this</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>Label3.ZOrder" xml:space="preserve">
|
||||||
|
<value>1</value>
|
||||||
|
</data>
|
||||||
|
<data name="Label1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>47, 16</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>chkTOTP.Parent" xml:space="preserve">
|
||||||
|
<value>$this</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtValid.TabIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>1</value>
|
||||||
|
</data>
|
||||||
|
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
|
<data name="$this.StartPosition" type="System.Windows.Forms.FormStartPosition, System.Windows.Forms">
|
||||||
|
<value>CenterScreen</value>
|
||||||
|
</data>
|
||||||
|
<data name="Label1.AutoSize" type="System.Boolean, mscorlib">
|
||||||
|
<value>True</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>txtValid.Name" xml:space="preserve">
|
||||||
|
<value>txtValid</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>txtMail.Type" xml:space="preserve">
|
||||||
|
<value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtMail.TabIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>0</value>
|
||||||
|
</data>
|
||||||
|
<data name="Label1.Text" xml:space="preserve">
|
||||||
|
<value>E-Mail:</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>$this.Type" xml:space="preserve">
|
||||||
|
<value>System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtValid.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>202, 23</value>
|
||||||
|
</data>
|
||||||
|
<data name="chkTOTP.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>85, 53</value>
|
||||||
|
</data>
|
||||||
|
<data name="SimpleButton1.Text" xml:space="preserve">
|
||||||
|
<value>Zurücksetzen</value>
|
||||||
|
</data>
|
||||||
|
<data name="Label3.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>15, 82</value>
|
||||||
|
</data>
|
||||||
|
<data name="chkTOTP.Text" xml:space="preserve">
|
||||||
|
<value>Secret Key vorhanden</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>Label3.Name" xml:space="preserve">
|
||||||
|
<value>Label3</value>
|
||||||
|
</data>
|
||||||
|
<data name="SimpleButton1.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>18, 121</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtMail.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>342, 23</value>
|
||||||
|
</data>
|
||||||
|
<data name="$this.Localizable" type="System.Boolean, mscorlib">
|
||||||
|
<value>True</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -8,7 +8,7 @@ Public Class frm2Factor_Properties
|
|||||||
MsgBox(Resources.Model.Success_FormClose, MsgBoxStyle.Information)
|
MsgBox(Resources.Model.Success_FormClose, MsgBoxStyle.Information)
|
||||||
Me.Close()
|
Me.Close()
|
||||||
Else
|
Else
|
||||||
MsgBox("Something went wrong. Check the log", MsgBoxStyle.Exclamation)
|
MsgBox(Resources.Envelope.Error_while_resetting, MsgBoxStyle.Exclamation)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
End If
|
End If
|
||||||
|
|||||||
135
EnvelopeGenerator.Form/frmEnvelopeEditor.Designer.vb
generated
135
EnvelopeGenerator.Form/frmEnvelopeEditor.Designer.vb
generated
@@ -162,25 +162,37 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
'SplitContainerControl1.Panel1
|
'SplitContainerControl1.Panel1
|
||||||
'
|
'
|
||||||
Me.SplitContainerControl1.Panel1.Controls.Add(Me.LayoutControl3)
|
|
||||||
resources.ApplyResources(Me.SplitContainerControl1.Panel1, "SplitContainerControl1.Panel1")
|
resources.ApplyResources(Me.SplitContainerControl1.Panel1, "SplitContainerControl1.Panel1")
|
||||||
|
Me.SplitContainerControl1.Panel1.Controls.Add(Me.LayoutControl3)
|
||||||
'
|
'
|
||||||
'SplitContainerControl1.Panel2
|
'SplitContainerControl1.Panel2
|
||||||
'
|
'
|
||||||
Me.SplitContainerControl1.Panel2.Controls.Add(Me.SplitContainerControl2)
|
|
||||||
resources.ApplyResources(Me.SplitContainerControl1.Panel2, "SplitContainerControl1.Panel2")
|
resources.ApplyResources(Me.SplitContainerControl1.Panel2, "SplitContainerControl1.Panel2")
|
||||||
|
Me.SplitContainerControl1.Panel2.Controls.Add(Me.SplitContainerControl2)
|
||||||
Me.SplitContainerControl1.SplitterPosition = 251
|
Me.SplitContainerControl1.SplitterPosition = 251
|
||||||
'
|
'
|
||||||
'LayoutControl3
|
'LayoutControl3
|
||||||
'
|
'
|
||||||
Me.LayoutControl3.Controls.Add(Me.GridDocuments)
|
|
||||||
resources.ApplyResources(Me.LayoutControl3, "LayoutControl3")
|
resources.ApplyResources(Me.LayoutControl3, "LayoutControl3")
|
||||||
|
Me.LayoutControl3.Controls.Add(Me.GridDocuments)
|
||||||
Me.LayoutControl3.Name = "LayoutControl3"
|
Me.LayoutControl3.Name = "LayoutControl3"
|
||||||
Me.LayoutControl3.Root = Me.LayoutControlGroup4
|
Me.LayoutControl3.Root = Me.LayoutControlGroup4
|
||||||
'
|
'
|
||||||
'GridDocuments
|
'GridDocuments
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.GridDocuments, "GridDocuments")
|
resources.ApplyResources(Me.GridDocuments, "GridDocuments")
|
||||||
|
Me.GridDocuments.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridDocuments.EmbeddedNavigator.AccessibleDescription")
|
||||||
|
Me.GridDocuments.EmbeddedNavigator.AccessibleName = resources.GetString("GridDocuments.EmbeddedNavigator.AccessibleName")
|
||||||
|
Me.GridDocuments.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridDocuments.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
|
||||||
|
Me.GridDocuments.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridDocuments.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.GridDocuments.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridDocuments.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.GridDocuments.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridDocuments.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
|
||||||
|
Me.GridDocuments.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridDocuments.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
|
||||||
|
Me.GridDocuments.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridDocuments.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
|
||||||
|
Me.GridDocuments.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridDocuments.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
|
||||||
|
Me.GridDocuments.EmbeddedNavigator.ToolTip = resources.GetString("GridDocuments.EmbeddedNavigator.ToolTip")
|
||||||
|
Me.GridDocuments.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridDocuments.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
|
||||||
|
Me.GridDocuments.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridDocuments.EmbeddedNavigator.ToolTipTitle")
|
||||||
Me.GridDocuments.MainView = Me.ViewDocuments
|
Me.GridDocuments.MainView = Me.ViewDocuments
|
||||||
Me.GridDocuments.MenuManager = Me.RibbonControl1
|
Me.GridDocuments.MenuManager = Me.RibbonControl1
|
||||||
Me.GridDocuments.Name = "GridDocuments"
|
Me.GridDocuments.Name = "GridDocuments"
|
||||||
@@ -194,6 +206,11 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
Me.ViewDocuments.OptionsTiles.ItemSize = New System.Drawing.Size(200, 290)
|
Me.ViewDocuments.OptionsTiles.ItemSize = New System.Drawing.Size(200, 290)
|
||||||
Me.ViewDocuments.OptionsTiles.Orientation = System.Windows.Forms.Orientation.Vertical
|
Me.ViewDocuments.OptionsTiles.Orientation = System.Windows.Forms.Orientation.Vertical
|
||||||
Me.ViewDocuments.TileColumns.Add(TableColumnDefinition1)
|
Me.ViewDocuments.TileColumns.Add(TableColumnDefinition1)
|
||||||
|
'
|
||||||
|
'
|
||||||
|
'
|
||||||
|
Me.ViewDocuments.TileHtmlTemplate.Styles = resources.GetString("ViewDocuments.TileHtmlTemplate.Styles")
|
||||||
|
Me.ViewDocuments.TileHtmlTemplate.Template = resources.GetString("ViewDocuments.TileHtmlTemplate.Template")
|
||||||
TableRowDefinition1.Length.Value = 226.0R
|
TableRowDefinition1.Length.Value = 226.0R
|
||||||
TableRowDefinition2.Length.Value = 25.0R
|
TableRowDefinition2.Length.Value = 25.0R
|
||||||
TableRowDefinition3.Length.Value = 25.0R
|
TableRowDefinition3.Length.Value = 25.0R
|
||||||
@@ -222,6 +239,7 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
Me.ViewDocuments.TileTemplate.Add(TileViewItemElement1)
|
Me.ViewDocuments.TileTemplate.Add(TileViewItemElement1)
|
||||||
Me.ViewDocuments.TileTemplate.Add(TileViewItemElement2)
|
Me.ViewDocuments.TileTemplate.Add(TileViewItemElement2)
|
||||||
Me.ViewDocuments.TileTemplate.Add(TileViewItemElement3)
|
Me.ViewDocuments.TileTemplate.Add(TileViewItemElement3)
|
||||||
|
resources.ApplyResources(Me.ViewDocuments, "ViewDocuments")
|
||||||
'
|
'
|
||||||
'colFilename
|
'colFilename
|
||||||
'
|
'
|
||||||
@@ -243,9 +261,13 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
'RibbonControl1
|
'RibbonControl1
|
||||||
'
|
'
|
||||||
Me.RibbonControl1.ExpandCollapseItem.Id = 0
|
|
||||||
Me.RibbonControl1.Items.AddRange(New DevExpress.XtraBars.BarItem() {Me.RibbonControl1.ExpandCollapseItem, Me.RibbonControl1.SearchEditItem, Me.btnSave, Me.btnCancel, Me.btnNewFile, Me.btnDeleteFile, Me.btnSendEnvelope, Me.btnEditFields, Me.btnDeleteReceiver, Me.btnEditData, Me.txtCreatorEmailLabel, Me.txtEnvelopeIdLabel2, Me.BarButtonItem1, Me.bsitm_info, Me.BarButtonItem2, Me.BarButtonItem3, Me.bbtnitm_ConcatFiles, Me.btnShowFile})
|
|
||||||
resources.ApplyResources(Me.RibbonControl1, "RibbonControl1")
|
resources.ApplyResources(Me.RibbonControl1, "RibbonControl1")
|
||||||
|
Me.RibbonControl1.ExpandCollapseItem.Id = 0
|
||||||
|
Me.RibbonControl1.ExpandCollapseItem.ImageOptions.ImageIndex = CType(resources.GetObject("RibbonControl1.ExpandCollapseItem.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.RibbonControl1.ExpandCollapseItem.ImageOptions.LargeImageIndex = CType(resources.GetObject("RibbonControl1.ExpandCollapseItem.ImageOptions.LargeImageIndex"), Integer)
|
||||||
|
Me.RibbonControl1.ExpandCollapseItem.ImageOptions.SvgImage = CType(resources.GetObject("RibbonControl1.ExpandCollapseItem.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
|
Me.RibbonControl1.ExpandCollapseItem.SearchTags = resources.GetString("RibbonControl1.ExpandCollapseItem.SearchTags")
|
||||||
|
Me.RibbonControl1.Items.AddRange(New DevExpress.XtraBars.BarItem() {Me.RibbonControl1.ExpandCollapseItem, Me.RibbonControl1.SearchEditItem, Me.btnSave, Me.btnCancel, Me.btnNewFile, Me.btnDeleteFile, Me.btnSendEnvelope, Me.btnEditFields, Me.btnDeleteReceiver, Me.btnEditData, Me.txtCreatorEmailLabel, Me.txtEnvelopeIdLabel2, Me.BarButtonItem1, Me.bsitm_info, Me.BarButtonItem2, Me.BarButtonItem3, Me.bbtnitm_ConcatFiles, Me.btnShowFile})
|
||||||
Me.RibbonControl1.MaxItemId = 18
|
Me.RibbonControl1.MaxItemId = 18
|
||||||
Me.RibbonControl1.Name = "RibbonControl1"
|
Me.RibbonControl1.Name = "RibbonControl1"
|
||||||
Me.RibbonControl1.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.RibbonPage1})
|
Me.RibbonControl1.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.RibbonPage1})
|
||||||
@@ -259,6 +281,8 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.btnSave, "btnSave")
|
resources.ApplyResources(Me.btnSave, "btnSave")
|
||||||
Me.btnSave.Id = 1
|
Me.btnSave.Id = 1
|
||||||
|
Me.btnSave.ImageOptions.ImageIndex = CType(resources.GetObject("btnSave.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.btnSave.ImageOptions.LargeImageIndex = CType(resources.GetObject("btnSave.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.btnSave.ImageOptions.SvgImage = CType(resources.GetObject("btnSave.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.btnSave.ImageOptions.SvgImage = CType(resources.GetObject("btnSave.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.btnSave.Name = "btnSave"
|
Me.btnSave.Name = "btnSave"
|
||||||
'
|
'
|
||||||
@@ -266,6 +290,8 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.btnCancel, "btnCancel")
|
resources.ApplyResources(Me.btnCancel, "btnCancel")
|
||||||
Me.btnCancel.Id = 2
|
Me.btnCancel.Id = 2
|
||||||
|
Me.btnCancel.ImageOptions.ImageIndex = CType(resources.GetObject("btnCancel.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.btnCancel.ImageOptions.LargeImageIndex = CType(resources.GetObject("btnCancel.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.btnCancel.ImageOptions.SvgImage = CType(resources.GetObject("btnCancel.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.btnCancel.ImageOptions.SvgImage = CType(resources.GetObject("btnCancel.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.btnCancel.Name = "btnCancel"
|
Me.btnCancel.Name = "btnCancel"
|
||||||
'
|
'
|
||||||
@@ -273,6 +299,8 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.btnNewFile, "btnNewFile")
|
resources.ApplyResources(Me.btnNewFile, "btnNewFile")
|
||||||
Me.btnNewFile.Id = 3
|
Me.btnNewFile.Id = 3
|
||||||
|
Me.btnNewFile.ImageOptions.ImageIndex = CType(resources.GetObject("btnNewFile.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.btnNewFile.ImageOptions.LargeImageIndex = CType(resources.GetObject("btnNewFile.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.btnNewFile.ImageOptions.SvgImage = CType(resources.GetObject("btnNewFile.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.btnNewFile.ImageOptions.SvgImage = CType(resources.GetObject("btnNewFile.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.btnNewFile.Name = "btnNewFile"
|
Me.btnNewFile.Name = "btnNewFile"
|
||||||
'
|
'
|
||||||
@@ -280,6 +308,8 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.btnDeleteFile, "btnDeleteFile")
|
resources.ApplyResources(Me.btnDeleteFile, "btnDeleteFile")
|
||||||
Me.btnDeleteFile.Id = 4
|
Me.btnDeleteFile.Id = 4
|
||||||
|
Me.btnDeleteFile.ImageOptions.ImageIndex = CType(resources.GetObject("btnDeleteFile.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.btnDeleteFile.ImageOptions.LargeImageIndex = CType(resources.GetObject("btnDeleteFile.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.btnDeleteFile.ImageOptions.SvgImage = CType(resources.GetObject("btnDeleteFile.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.btnDeleteFile.ImageOptions.SvgImage = CType(resources.GetObject("btnDeleteFile.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.btnDeleteFile.Name = "btnDeleteFile"
|
Me.btnDeleteFile.Name = "btnDeleteFile"
|
||||||
'
|
'
|
||||||
@@ -287,6 +317,8 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.btnSendEnvelope, "btnSendEnvelope")
|
resources.ApplyResources(Me.btnSendEnvelope, "btnSendEnvelope")
|
||||||
Me.btnSendEnvelope.Id = 6
|
Me.btnSendEnvelope.Id = 6
|
||||||
|
Me.btnSendEnvelope.ImageOptions.ImageIndex = CType(resources.GetObject("btnSendEnvelope.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.btnSendEnvelope.ImageOptions.LargeImageIndex = CType(resources.GetObject("btnSendEnvelope.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.btnSendEnvelope.ImageOptions.SvgImage = CType(resources.GetObject("btnSendEnvelope.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.btnSendEnvelope.ImageOptions.SvgImage = CType(resources.GetObject("btnSendEnvelope.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.btnSendEnvelope.Name = "btnSendEnvelope"
|
Me.btnSendEnvelope.Name = "btnSendEnvelope"
|
||||||
'
|
'
|
||||||
@@ -294,6 +326,8 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.btnEditFields, "btnEditFields")
|
resources.ApplyResources(Me.btnEditFields, "btnEditFields")
|
||||||
Me.btnEditFields.Id = 7
|
Me.btnEditFields.Id = 7
|
||||||
|
Me.btnEditFields.ImageOptions.ImageIndex = CType(resources.GetObject("btnEditFields.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.btnEditFields.ImageOptions.LargeImageIndex = CType(resources.GetObject("btnEditFields.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.btnEditFields.ImageOptions.SvgImage = CType(resources.GetObject("btnEditFields.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.btnEditFields.ImageOptions.SvgImage = CType(resources.GetObject("btnEditFields.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.btnEditFields.Name = "btnEditFields"
|
Me.btnEditFields.Name = "btnEditFields"
|
||||||
'
|
'
|
||||||
@@ -301,6 +335,8 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.btnDeleteReceiver, "btnDeleteReceiver")
|
resources.ApplyResources(Me.btnDeleteReceiver, "btnDeleteReceiver")
|
||||||
Me.btnDeleteReceiver.Id = 8
|
Me.btnDeleteReceiver.Id = 8
|
||||||
|
Me.btnDeleteReceiver.ImageOptions.ImageIndex = CType(resources.GetObject("btnDeleteReceiver.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.btnDeleteReceiver.ImageOptions.LargeImageIndex = CType(resources.GetObject("btnDeleteReceiver.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.btnDeleteReceiver.ImageOptions.SvgImage = CType(resources.GetObject("btnDeleteReceiver.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.btnDeleteReceiver.ImageOptions.SvgImage = CType(resources.GetObject("btnDeleteReceiver.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.btnDeleteReceiver.Name = "btnDeleteReceiver"
|
Me.btnDeleteReceiver.Name = "btnDeleteReceiver"
|
||||||
'
|
'
|
||||||
@@ -308,6 +344,8 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.btnEditData, "btnEditData")
|
resources.ApplyResources(Me.btnEditData, "btnEditData")
|
||||||
Me.btnEditData.Id = 9
|
Me.btnEditData.Id = 9
|
||||||
|
Me.btnEditData.ImageOptions.ImageIndex = CType(resources.GetObject("btnEditData.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.btnEditData.ImageOptions.LargeImageIndex = CType(resources.GetObject("btnEditData.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.btnEditData.ImageOptions.SvgImage = CType(resources.GetObject("btnEditData.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.btnEditData.ImageOptions.SvgImage = CType(resources.GetObject("btnEditData.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.btnEditData.Name = "btnEditData"
|
Me.btnEditData.Name = "btnEditData"
|
||||||
'
|
'
|
||||||
@@ -315,6 +353,8 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.txtCreatorEmailLabel, "txtCreatorEmailLabel")
|
resources.ApplyResources(Me.txtCreatorEmailLabel, "txtCreatorEmailLabel")
|
||||||
Me.txtCreatorEmailLabel.Id = 10
|
Me.txtCreatorEmailLabel.Id = 10
|
||||||
|
Me.txtCreatorEmailLabel.ImageOptions.ImageIndex = CType(resources.GetObject("txtCreatorEmailLabel.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.txtCreatorEmailLabel.ImageOptions.LargeImageIndex = CType(resources.GetObject("txtCreatorEmailLabel.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.txtCreatorEmailLabel.ImageOptions.SvgImage = CType(resources.GetObject("txtCreatorEmailLabel.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.txtCreatorEmailLabel.ImageOptions.SvgImage = CType(resources.GetObject("txtCreatorEmailLabel.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.txtCreatorEmailLabel.Name = "txtCreatorEmailLabel"
|
Me.txtCreatorEmailLabel.Name = "txtCreatorEmailLabel"
|
||||||
Me.txtCreatorEmailLabel.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph
|
Me.txtCreatorEmailLabel.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph
|
||||||
@@ -324,6 +364,8 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.txtEnvelopeIdLabel2, "txtEnvelopeIdLabel2")
|
resources.ApplyResources(Me.txtEnvelopeIdLabel2, "txtEnvelopeIdLabel2")
|
||||||
Me.txtEnvelopeIdLabel2.Id = 11
|
Me.txtEnvelopeIdLabel2.Id = 11
|
||||||
|
Me.txtEnvelopeIdLabel2.ImageOptions.ImageIndex = CType(resources.GetObject("txtEnvelopeIdLabel2.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.txtEnvelopeIdLabel2.ImageOptions.LargeImageIndex = CType(resources.GetObject("txtEnvelopeIdLabel2.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.txtEnvelopeIdLabel2.ImageOptions.SvgImage = CType(resources.GetObject("txtEnvelopeIdLabel2.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.txtEnvelopeIdLabel2.ImageOptions.SvgImage = CType(resources.GetObject("txtEnvelopeIdLabel2.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.txtEnvelopeIdLabel2.Name = "txtEnvelopeIdLabel2"
|
Me.txtEnvelopeIdLabel2.Name = "txtEnvelopeIdLabel2"
|
||||||
Me.txtEnvelopeIdLabel2.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph
|
Me.txtEnvelopeIdLabel2.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph
|
||||||
@@ -333,29 +375,44 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.BarButtonItem1, "BarButtonItem1")
|
resources.ApplyResources(Me.BarButtonItem1, "BarButtonItem1")
|
||||||
Me.BarButtonItem1.Id = 12
|
Me.BarButtonItem1.Id = 12
|
||||||
|
Me.BarButtonItem1.ImageOptions.ImageIndex = CType(resources.GetObject("BarButtonItem1.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.BarButtonItem1.ImageOptions.LargeImageIndex = CType(resources.GetObject("BarButtonItem1.ImageOptions.LargeImageIndex"), Integer)
|
||||||
|
Me.BarButtonItem1.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem1.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.BarButtonItem1.Name = "BarButtonItem1"
|
Me.BarButtonItem1.Name = "BarButtonItem1"
|
||||||
'
|
'
|
||||||
'bsitm_info
|
'bsitm_info
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.bsitm_info, "bsitm_info")
|
||||||
Me.bsitm_info.Id = 13
|
Me.bsitm_info.Id = 13
|
||||||
|
Me.bsitm_info.ImageOptions.ImageIndex = CType(resources.GetObject("bsitm_info.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.bsitm_info.ImageOptions.LargeImageIndex = CType(resources.GetObject("bsitm_info.ImageOptions.LargeImageIndex"), Integer)
|
||||||
|
Me.bsitm_info.ImageOptions.SvgImage = CType(resources.GetObject("bsitm_info.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.bsitm_info.Name = "bsitm_info"
|
Me.bsitm_info.Name = "bsitm_info"
|
||||||
'
|
'
|
||||||
'BarButtonItem2
|
'BarButtonItem2
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.BarButtonItem2, "BarButtonItem2")
|
resources.ApplyResources(Me.BarButtonItem2, "BarButtonItem2")
|
||||||
Me.BarButtonItem2.Id = 14
|
Me.BarButtonItem2.Id = 14
|
||||||
|
Me.BarButtonItem2.ImageOptions.ImageIndex = CType(resources.GetObject("BarButtonItem2.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.BarButtonItem2.ImageOptions.LargeImageIndex = CType(resources.GetObject("BarButtonItem2.ImageOptions.LargeImageIndex"), Integer)
|
||||||
|
Me.BarButtonItem2.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem2.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.BarButtonItem2.Name = "BarButtonItem2"
|
Me.BarButtonItem2.Name = "BarButtonItem2"
|
||||||
'
|
'
|
||||||
'BarButtonItem3
|
'BarButtonItem3
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.BarButtonItem3, "BarButtonItem3")
|
resources.ApplyResources(Me.BarButtonItem3, "BarButtonItem3")
|
||||||
Me.BarButtonItem3.Id = 15
|
Me.BarButtonItem3.Id = 15
|
||||||
|
Me.BarButtonItem3.ImageOptions.ImageIndex = CType(resources.GetObject("BarButtonItem3.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.BarButtonItem3.ImageOptions.LargeImageIndex = CType(resources.GetObject("BarButtonItem3.ImageOptions.LargeImageIndex"), Integer)
|
||||||
|
Me.BarButtonItem3.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem3.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.BarButtonItem3.Name = "BarButtonItem3"
|
Me.BarButtonItem3.Name = "BarButtonItem3"
|
||||||
'
|
'
|
||||||
'bbtnitm_ConcatFiles
|
'bbtnitm_ConcatFiles
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.bbtnitm_ConcatFiles, "bbtnitm_ConcatFiles")
|
resources.ApplyResources(Me.bbtnitm_ConcatFiles, "bbtnitm_ConcatFiles")
|
||||||
Me.bbtnitm_ConcatFiles.Id = 16
|
Me.bbtnitm_ConcatFiles.Id = 16
|
||||||
|
Me.bbtnitm_ConcatFiles.ImageOptions.ImageIndex = CType(resources.GetObject("bbtnitm_ConcatFiles.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.bbtnitm_ConcatFiles.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtnitm_ConcatFiles.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.bbtnitm_ConcatFiles.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitm_ConcatFiles.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.bbtnitm_ConcatFiles.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitm_ConcatFiles.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.bbtnitm_ConcatFiles.Name = "bbtnitm_ConcatFiles"
|
Me.bbtnitm_ConcatFiles.Name = "bbtnitm_ConcatFiles"
|
||||||
'
|
'
|
||||||
@@ -363,6 +420,8 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.btnShowFile, "btnShowFile")
|
resources.ApplyResources(Me.btnShowFile, "btnShowFile")
|
||||||
Me.btnShowFile.Id = 17
|
Me.btnShowFile.Id = 17
|
||||||
|
Me.btnShowFile.ImageOptions.ImageIndex = CType(resources.GetObject("btnShowFile.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.btnShowFile.ImageOptions.LargeImageIndex = CType(resources.GetObject("btnShowFile.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.btnShowFile.ImageOptions.SvgImage = CType(resources.GetObject("btnShowFile.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.btnShowFile.ImageOptions.SvgImage = CType(resources.GetObject("btnShowFile.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.btnShowFile.Name = "btnShowFile"
|
Me.btnShowFile.Name = "btnShowFile"
|
||||||
'
|
'
|
||||||
@@ -410,37 +469,39 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
'RibbonStatusBar1
|
'RibbonStatusBar1
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.RibbonStatusBar1, "RibbonStatusBar1")
|
||||||
Me.RibbonStatusBar1.ItemLinks.Add(Me.txtCreatorEmailLabel)
|
Me.RibbonStatusBar1.ItemLinks.Add(Me.txtCreatorEmailLabel)
|
||||||
Me.RibbonStatusBar1.ItemLinks.Add(Me.txtEnvelopeIdLabel2)
|
Me.RibbonStatusBar1.ItemLinks.Add(Me.txtEnvelopeIdLabel2)
|
||||||
Me.RibbonStatusBar1.ItemLinks.Add(Me.bsitm_info)
|
Me.RibbonStatusBar1.ItemLinks.Add(Me.bsitm_info)
|
||||||
resources.ApplyResources(Me.RibbonStatusBar1, "RibbonStatusBar1")
|
|
||||||
Me.RibbonStatusBar1.Name = "RibbonStatusBar1"
|
Me.RibbonStatusBar1.Name = "RibbonStatusBar1"
|
||||||
Me.RibbonStatusBar1.Ribbon = Me.RibbonControl1
|
Me.RibbonStatusBar1.Ribbon = Me.RibbonControl1
|
||||||
'
|
'
|
||||||
'LayoutControlGroup4
|
'LayoutControlGroup4
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlGroup4, "LayoutControlGroup4")
|
||||||
Me.LayoutControlGroup4.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.[True]
|
Me.LayoutControlGroup4.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.[True]
|
||||||
Me.LayoutControlGroup4.GroupBordersVisible = False
|
Me.LayoutControlGroup4.GroupBordersVisible = False
|
||||||
Me.LayoutControlGroup4.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlGroup5})
|
Me.LayoutControlGroup4.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlGroup5})
|
||||||
Me.LayoutControlGroup4.Name = "LayoutControlGroup4"
|
Me.LayoutControlGroup4.Name = "LayoutControlGroup4"
|
||||||
Me.LayoutControlGroup4.Padding = New DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0)
|
Me.LayoutControlGroup4.Padding = New DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0)
|
||||||
Me.LayoutControlGroup4.Size = New System.Drawing.Size(251, 530)
|
Me.LayoutControlGroup4.Size = New System.Drawing.Size(251, 418)
|
||||||
Me.LayoutControlGroup4.TextVisible = False
|
Me.LayoutControlGroup4.TextVisible = False
|
||||||
'
|
'
|
||||||
'LayoutControlGroup5
|
'LayoutControlGroup5
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlGroup5, "LayoutControlGroup5")
|
||||||
Me.LayoutControlGroup5.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem5})
|
Me.LayoutControlGroup5.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem5})
|
||||||
Me.LayoutControlGroup5.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlGroup5.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlGroup5.Name = "LayoutControlGroup5"
|
Me.LayoutControlGroup5.Name = "LayoutControlGroup5"
|
||||||
Me.LayoutControlGroup5.Size = New System.Drawing.Size(251, 530)
|
Me.LayoutControlGroup5.Size = New System.Drawing.Size(251, 418)
|
||||||
resources.ApplyResources(Me.LayoutControlGroup5, "LayoutControlGroup5")
|
|
||||||
'
|
'
|
||||||
'LayoutControlItem5
|
'LayoutControlItem5
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlItem5, "LayoutControlItem5")
|
||||||
Me.LayoutControlItem5.Control = Me.GridDocuments
|
Me.LayoutControlItem5.Control = Me.GridDocuments
|
||||||
Me.LayoutControlItem5.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlItem5.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlItem5.Name = "LayoutControlItem5"
|
Me.LayoutControlItem5.Name = "LayoutControlItem5"
|
||||||
Me.LayoutControlItem5.Size = New System.Drawing.Size(227, 485)
|
Me.LayoutControlItem5.Size = New System.Drawing.Size(227, 373)
|
||||||
Me.LayoutControlItem5.TextSize = New System.Drawing.Size(0, 0)
|
Me.LayoutControlItem5.TextSize = New System.Drawing.Size(0, 0)
|
||||||
Me.LayoutControlItem5.TextVisible = False
|
Me.LayoutControlItem5.TextVisible = False
|
||||||
'
|
'
|
||||||
@@ -452,32 +513,44 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
'SplitContainerControl2.Panel1
|
'SplitContainerControl2.Panel1
|
||||||
'
|
'
|
||||||
Me.SplitContainerControl2.Panel1.Controls.Add(Me.PanelControl1)
|
|
||||||
resources.ApplyResources(Me.SplitContainerControl2.Panel1, "SplitContainerControl2.Panel1")
|
resources.ApplyResources(Me.SplitContainerControl2.Panel1, "SplitContainerControl2.Panel1")
|
||||||
|
Me.SplitContainerControl2.Panel1.Controls.Add(Me.PanelControl1)
|
||||||
'
|
'
|
||||||
'SplitContainerControl2.Panel2
|
'SplitContainerControl2.Panel2
|
||||||
'
|
'
|
||||||
Me.SplitContainerControl2.Panel2.Controls.Add(Me.PanelControl2)
|
|
||||||
resources.ApplyResources(Me.SplitContainerControl2.Panel2, "SplitContainerControl2.Panel2")
|
resources.ApplyResources(Me.SplitContainerControl2.Panel2, "SplitContainerControl2.Panel2")
|
||||||
|
Me.SplitContainerControl2.Panel2.Controls.Add(Me.PanelControl2)
|
||||||
Me.SplitContainerControl2.SplitterPosition = 253
|
Me.SplitContainerControl2.SplitterPosition = 253
|
||||||
'
|
'
|
||||||
'PanelControl1
|
'PanelControl1
|
||||||
'
|
'
|
||||||
Me.PanelControl1.Controls.Add(Me.LayoutControl2)
|
|
||||||
resources.ApplyResources(Me.PanelControl1, "PanelControl1")
|
resources.ApplyResources(Me.PanelControl1, "PanelControl1")
|
||||||
|
Me.PanelControl1.Controls.Add(Me.LayoutControl2)
|
||||||
Me.PanelControl1.Name = "PanelControl1"
|
Me.PanelControl1.Name = "PanelControl1"
|
||||||
'
|
'
|
||||||
'LayoutControl2
|
'LayoutControl2
|
||||||
'
|
'
|
||||||
Me.LayoutControl2.Controls.Add(Me.GridReceivers)
|
|
||||||
resources.ApplyResources(Me.LayoutControl2, "LayoutControl2")
|
resources.ApplyResources(Me.LayoutControl2, "LayoutControl2")
|
||||||
|
Me.LayoutControl2.Controls.Add(Me.GridReceivers)
|
||||||
Me.LayoutControl2.Name = "LayoutControl2"
|
Me.LayoutControl2.Name = "LayoutControl2"
|
||||||
Me.LayoutControl2.Root = Me.LayoutControlGroup2
|
Me.LayoutControl2.Root = Me.LayoutControlGroup2
|
||||||
'
|
'
|
||||||
'GridReceivers
|
'GridReceivers
|
||||||
'
|
'
|
||||||
Me.GridReceivers.DataSource = Me.EnvelopeReceiverBindingSource
|
|
||||||
resources.ApplyResources(Me.GridReceivers, "GridReceivers")
|
resources.ApplyResources(Me.GridReceivers, "GridReceivers")
|
||||||
|
Me.GridReceivers.DataSource = Me.EnvelopeReceiverBindingSource
|
||||||
|
Me.GridReceivers.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridReceivers.EmbeddedNavigator.AccessibleDescription")
|
||||||
|
Me.GridReceivers.EmbeddedNavigator.AccessibleName = resources.GetString("GridReceivers.EmbeddedNavigator.AccessibleName")
|
||||||
|
Me.GridReceivers.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridReceivers.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
|
||||||
|
Me.GridReceivers.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridReceivers.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.GridReceivers.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridReceivers.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.GridReceivers.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridReceivers.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
|
||||||
|
Me.GridReceivers.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridReceivers.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
|
||||||
|
Me.GridReceivers.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridReceivers.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
|
||||||
|
Me.GridReceivers.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridReceivers.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
|
||||||
|
Me.GridReceivers.EmbeddedNavigator.ToolTip = resources.GetString("GridReceivers.EmbeddedNavigator.ToolTip")
|
||||||
|
Me.GridReceivers.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridReceivers.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
|
||||||
|
Me.GridReceivers.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridReceivers.EmbeddedNavigator.ToolTipTitle")
|
||||||
Me.GridReceivers.MainView = Me.ViewReceivers
|
Me.GridReceivers.MainView = Me.ViewReceivers
|
||||||
Me.GridReceivers.MenuManager = Me.RibbonControl1
|
Me.GridReceivers.MenuManager = Me.RibbonControl1
|
||||||
Me.GridReceivers.Name = "GridReceivers"
|
Me.GridReceivers.Name = "GridReceivers"
|
||||||
@@ -492,6 +565,7 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'ViewReceivers
|
'ViewReceivers
|
||||||
'
|
'
|
||||||
Me.ViewReceivers.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple
|
Me.ViewReceivers.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple
|
||||||
|
resources.ApplyResources(Me.ViewReceivers, "ViewReceivers")
|
||||||
Me.ViewReceivers.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colColor, Me.colEmail, Me.colName, Me.colAccessCode, Me.colPhoneNumber})
|
Me.ViewReceivers.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colColor, Me.colEmail, Me.colName, Me.colAccessCode, Me.colPhoneNumber})
|
||||||
Me.ViewReceivers.GridControl = Me.GridReceivers
|
Me.ViewReceivers.GridControl = Me.GridReceivers
|
||||||
Me.ViewReceivers.Name = "ViewReceivers"
|
Me.ViewReceivers.Name = "ViewReceivers"
|
||||||
@@ -525,11 +599,11 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
'colEmail
|
'colEmail
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.colEmail, "colEmail")
|
||||||
Me.colEmail.ColumnEdit = Me.RepositoryItemComboBox1
|
Me.colEmail.ColumnEdit = Me.RepositoryItemComboBox1
|
||||||
Me.colEmail.FieldName = "EmailAddress"
|
Me.colEmail.FieldName = "EmailAddress"
|
||||||
Me.colEmail.Name = "colEmail"
|
Me.colEmail.Name = "colEmail"
|
||||||
Me.colEmail.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.[False]
|
Me.colEmail.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.[False]
|
||||||
resources.ApplyResources(Me.colEmail, "colEmail")
|
|
||||||
'
|
'
|
||||||
'RepositoryItemComboBox1
|
'RepositoryItemComboBox1
|
||||||
'
|
'
|
||||||
@@ -589,41 +663,43 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
'LayoutControlGroup2
|
'LayoutControlGroup2
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlGroup2, "LayoutControlGroup2")
|
||||||
Me.LayoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.[True]
|
Me.LayoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.[True]
|
||||||
Me.LayoutControlGroup2.GroupBordersVisible = False
|
Me.LayoutControlGroup2.GroupBordersVisible = False
|
||||||
Me.LayoutControlGroup2.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlGroup3})
|
Me.LayoutControlGroup2.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlGroup3})
|
||||||
Me.LayoutControlGroup2.Name = "LayoutControlGroup2"
|
Me.LayoutControlGroup2.Name = "LayoutControlGroup2"
|
||||||
Me.LayoutControlGroup2.Padding = New DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0)
|
Me.LayoutControlGroup2.Padding = New DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0)
|
||||||
Me.LayoutControlGroup2.Size = New System.Drawing.Size(899, 249)
|
Me.LayoutControlGroup2.Size = New System.Drawing.Size(796, 249)
|
||||||
Me.LayoutControlGroup2.TextVisible = False
|
Me.LayoutControlGroup2.TextVisible = False
|
||||||
'
|
'
|
||||||
'LayoutControlGroup3
|
'LayoutControlGroup3
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlGroup3, "LayoutControlGroup3")
|
||||||
Me.LayoutControlGroup3.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem2})
|
Me.LayoutControlGroup3.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem2})
|
||||||
Me.LayoutControlGroup3.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlGroup3.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlGroup3.Name = "LayoutControlGroup3"
|
Me.LayoutControlGroup3.Name = "LayoutControlGroup3"
|
||||||
Me.LayoutControlGroup3.Size = New System.Drawing.Size(899, 249)
|
Me.LayoutControlGroup3.Size = New System.Drawing.Size(796, 249)
|
||||||
resources.ApplyResources(Me.LayoutControlGroup3, "LayoutControlGroup3")
|
|
||||||
'
|
'
|
||||||
'LayoutControlItem2
|
'LayoutControlItem2
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlItem2, "LayoutControlItem2")
|
||||||
Me.LayoutControlItem2.Control = Me.GridReceivers
|
Me.LayoutControlItem2.Control = Me.GridReceivers
|
||||||
Me.LayoutControlItem2.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlItem2.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlItem2.Name = "LayoutControlItem2"
|
Me.LayoutControlItem2.Name = "LayoutControlItem2"
|
||||||
Me.LayoutControlItem2.Size = New System.Drawing.Size(875, 204)
|
Me.LayoutControlItem2.Size = New System.Drawing.Size(772, 204)
|
||||||
Me.LayoutControlItem2.TextSize = New System.Drawing.Size(0, 0)
|
Me.LayoutControlItem2.TextSize = New System.Drawing.Size(0, 0)
|
||||||
Me.LayoutControlItem2.TextVisible = False
|
Me.LayoutControlItem2.TextVisible = False
|
||||||
'
|
'
|
||||||
'PanelControl2
|
'PanelControl2
|
||||||
'
|
'
|
||||||
Me.PanelControl2.Controls.Add(Me.LayoutControl1)
|
|
||||||
resources.ApplyResources(Me.PanelControl2, "PanelControl2")
|
resources.ApplyResources(Me.PanelControl2, "PanelControl2")
|
||||||
|
Me.PanelControl2.Controls.Add(Me.LayoutControl1)
|
||||||
Me.PanelControl2.Name = "PanelControl2"
|
Me.PanelControl2.Name = "PanelControl2"
|
||||||
'
|
'
|
||||||
'LayoutControl1
|
'LayoutControl1
|
||||||
'
|
'
|
||||||
Me.LayoutControl1.Controls.Add(Me.txtMessage)
|
|
||||||
resources.ApplyResources(Me.LayoutControl1, "LayoutControl1")
|
resources.ApplyResources(Me.LayoutControl1, "LayoutControl1")
|
||||||
|
Me.LayoutControl1.Controls.Add(Me.txtMessage)
|
||||||
Me.LayoutControl1.Name = "LayoutControl1"
|
Me.LayoutControl1.Name = "LayoutControl1"
|
||||||
Me.LayoutControl1.Root = Me.Root
|
Me.LayoutControl1.Root = Me.Root
|
||||||
'
|
'
|
||||||
@@ -639,33 +715,34 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
'Root
|
'Root
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.Root, "Root")
|
||||||
Me.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.[True]
|
Me.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.[True]
|
||||||
Me.Root.GroupBordersVisible = False
|
Me.Root.GroupBordersVisible = False
|
||||||
Me.Root.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlGroup1})
|
Me.Root.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlGroup1})
|
||||||
Me.Root.Name = "Root"
|
Me.Root.Name = "Root"
|
||||||
Me.Root.Padding = New DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0)
|
Me.Root.Padding = New DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0)
|
||||||
Me.Root.Size = New System.Drawing.Size(899, 263)
|
Me.Root.Size = New System.Drawing.Size(796, 151)
|
||||||
Me.Root.TextVisible = False
|
Me.Root.TextVisible = False
|
||||||
'
|
'
|
||||||
'LayoutControlGroup1
|
'LayoutControlGroup1
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlGroup1, "LayoutControlGroup1")
|
||||||
Me.LayoutControlGroup1.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem3})
|
Me.LayoutControlGroup1.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem3})
|
||||||
Me.LayoutControlGroup1.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlGroup1.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlGroup1.Name = "LayoutControlGroup1"
|
Me.LayoutControlGroup1.Name = "LayoutControlGroup1"
|
||||||
Me.LayoutControlGroup1.Padding = New DevExpress.XtraLayout.Utils.Padding(10, 10, 10, 10)
|
Me.LayoutControlGroup1.Padding = New DevExpress.XtraLayout.Utils.Padding(10, 10, 10, 10)
|
||||||
Me.LayoutControlGroup1.Size = New System.Drawing.Size(899, 263)
|
Me.LayoutControlGroup1.Size = New System.Drawing.Size(796, 151)
|
||||||
resources.ApplyResources(Me.LayoutControlGroup1, "LayoutControlGroup1")
|
|
||||||
'
|
'
|
||||||
'LayoutControlItem3
|
'LayoutControlItem3
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlItem3, "LayoutControlItem3")
|
||||||
Me.LayoutControlItem3.Control = Me.txtMessage
|
Me.LayoutControlItem3.Control = Me.txtMessage
|
||||||
Me.LayoutControlItem3.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlItem3.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlItem3.Name = "LayoutControlItem3"
|
Me.LayoutControlItem3.Name = "LayoutControlItem3"
|
||||||
Me.LayoutControlItem3.Padding = New DevExpress.XtraLayout.Utils.Padding(10, 10, 10, 10)
|
Me.LayoutControlItem3.Padding = New DevExpress.XtraLayout.Utils.Padding(10, 10, 10, 10)
|
||||||
Me.LayoutControlItem3.Size = New System.Drawing.Size(873, 216)
|
Me.LayoutControlItem3.Size = New System.Drawing.Size(770, 104)
|
||||||
resources.ApplyResources(Me.LayoutControlItem3, "LayoutControlItem3")
|
|
||||||
Me.LayoutControlItem3.TextLocation = DevExpress.Utils.Locations.Top
|
Me.LayoutControlItem3.TextLocation = DevExpress.Utils.Locations.Top
|
||||||
Me.LayoutControlItem3.TextSize = New System.Drawing.Size(46, 13)
|
Me.LayoutControlItem3.TextSize = New System.Drawing.Size(43, 13)
|
||||||
'
|
'
|
||||||
'FrmEditorBindingSource
|
'FrmEditorBindingSource
|
||||||
'
|
'
|
||||||
@@ -694,8 +771,8 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
'
|
'
|
||||||
'frmEnvelopeEditor
|
'frmEnvelopeEditor
|
||||||
'
|
'
|
||||||
Me.AllowDrop = True
|
|
||||||
resources.ApplyResources(Me, "$this")
|
resources.ApplyResources(Me, "$this")
|
||||||
|
Me.AllowDrop = True
|
||||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
Me.Controls.Add(Me.SplitContainerControl1)
|
Me.Controls.Add(Me.SplitContainerControl1)
|
||||||
Me.Controls.Add(Me.RibbonStatusBar1)
|
Me.Controls.Add(Me.RibbonStatusBar1)
|
||||||
|
|||||||
@@ -117,10 +117,47 @@
|
|||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="btnSave.Caption" xml:space="preserve">
|
<data name="RibbonPageGroupDocuments.Text" xml:space="preserve">
|
||||||
<value>Save</value>
|
<value>Documents</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtEnvelopeIdLabel2.Caption" xml:space="preserve">
|
||||||
|
<value>Envelope ID: {0}</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnDeleteReceiver.Caption" xml:space="preserve">
|
||||||
|
<value>Remove receiver</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnDeleteFile.Caption" xml:space="preserve">
|
||||||
|
<value>Delete document</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem3.Text" xml:space="preserve">
|
||||||
|
<value>Message</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonPageGroupInvitation.Text" xml:space="preserve">
|
||||||
|
<value>Process</value>
|
||||||
</data>
|
</data>
|
||||||
<assembly alias="DevExpress.Data.v21.2" name="DevExpress.Data.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
<assembly alias="DevExpress.Data.v21.2" name="DevExpress.Data.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||||
|
<data name="btnDeleteReceiver.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAALMCAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
|
||||||
|
ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5CbGFja3tmaWxsOiM3MjcyNzI7fQoJLkdyZWVue2ZpbGw6IzAz
|
||||||
|
OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9Cgkuc3Qwe29wYWNpdHk6MC43NTt9Cgkuc3Qxe29wYWNp
|
||||||
|
dHk6MC41O30KPC9zdHlsZT4NCiAgPGcgaWQ9IkRlbGV0ZUNpcmNsZWQiPg0KICAgIDxwYXRoIGQ9Ik0x
|
||||||
|
Niw0QzkuNCw0LDQsOS40LDQsMTZzNS40LDEyLDEyLDEyczEyLTUuNCwxMi0xMlMyMi42LDQsMTYsNHog
|
||||||
|
TTIzLjEsMjAuMmwtMi44LDIuOEwxNiwxOC44bC00LjIsNC4yICAgbC0yLjgtMi44bDQuMi00LjJsLTQu
|
||||||
|
Mi00LjJsMi44LTIuOGw0LjIsNC4ybDQuMi00LjJsMi44LDIuOEwxOC44LDE2TDIzLjEsMjAuMnoiIGNs
|
||||||
|
YXNzPSJSZWQiIC8+DQogIDwvZz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnShowFile.Caption" xml:space="preserve">
|
||||||
|
<value>Display document</value>
|
||||||
|
</data>
|
||||||
<data name="btnSave.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="btnSave.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
@@ -140,8 +177,31 @@
|
|||||||
TTE0LDEwaC0yVjZoMlYxMHoiIGNsYXNzPSJCbGFjayIgLz4NCjwvc3ZnPgs=
|
TTE0LDEwaC0yVjZoMlYxMHoiIGNsYXNzPSJCbGFjayIgLz4NCjwvc3ZnPgs=
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="btnCancel.Caption" xml:space="preserve">
|
<data name="btnSave.Caption" xml:space="preserve">
|
||||||
<value>Cancel</value>
|
<value>Save</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnNewFile.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAOsCAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9Cgku
|
||||||
|
WWVsbG93e2ZpbGw6I0ZGQjExNTt9CgkuQmx1ZXtmaWxsOiMxMTc3RDc7fQoJLlJlZHtmaWxsOiNEMTFD
|
||||||
|
MUM7fQoJLldoaXRle2ZpbGw6I0ZGRkZGRjt9CgkuR3JlZW57ZmlsbDojMDM5QzIzO30KCS5zdDB7Zmls
|
||||||
|
bDojNzI3MjcyO30KCS5zdDF7b3BhY2l0eTowLjU7fQoJLnN0MntvcGFjaXR5OjAuNzU7fQo8L3N0eWxl
|
||||||
|
Pg0KICA8ZyBpZD0iQWRkRmlsZSI+DQogICAgPHBhdGggZD0iTTE2LDI2SDZWNGgxOHYxNGgyVjNjMC0w
|
||||||
|
LjUtMC41LTEtMS0xSDVDNC41LDIsNCwyLjUsNCwzdjI0YzAsMC41LDAuNSwxLDEsMWgxMVYyNnoiIGNs
|
||||||
|
YXNzPSJCbGFjayIgLz4NCiAgICA8cG9seWdvbiBwb2ludHM9IjMwLDI0IDI2LDI0IDI2LDIwIDIyLDIw
|
||||||
|
IDIyLDI0IDE4LDI0IDE4LDI4IDIyLDI4IDIyLDMyIDI2LDMyIDI2LDI4IDMwLDI4ICAiIGNsYXNzPSJH
|
||||||
|
cmVlbiIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonPageGroup1.Text" xml:space="preserve">
|
||||||
|
<value>Envelope</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="btnCancel.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="btnCancel.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
@@ -164,117 +224,8 @@
|
|||||||
LDE2eiIgY2xhc3M9IlJlZCIgLz4NCiAgICA8L2c+DQogIDwvZz4NCjwvc3ZnPgs=
|
LDE2eiIgY2xhc3M9IlJlZCIgLz4NCiAgICA8L2c+DQogIDwvZz4NCjwvc3ZnPgs=
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="btnNewFile.Caption" xml:space="preserve">
|
<data name="RibbonPageGroupAddSignature.Text" xml:space="preserve">
|
||||||
<value>Add Document</value>
|
<value>Signatures</value>
|
||||||
</data>
|
|
||||||
<data name="btnNewFile.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
|
||||||
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
|
||||||
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAOsCAAAC77u/
|
|
||||||
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
|
||||||
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
|
||||||
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
|
||||||
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
|
||||||
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9Cgku
|
|
||||||
WWVsbG93e2ZpbGw6I0ZGQjExNTt9CgkuQmx1ZXtmaWxsOiMxMTc3RDc7fQoJLlJlZHtmaWxsOiNEMTFD
|
|
||||||
MUM7fQoJLldoaXRle2ZpbGw6I0ZGRkZGRjt9CgkuR3JlZW57ZmlsbDojMDM5QzIzO30KCS5zdDB7Zmls
|
|
||||||
bDojNzI3MjcyO30KCS5zdDF7b3BhY2l0eTowLjU7fQoJLnN0MntvcGFjaXR5OjAuNzU7fQo8L3N0eWxl
|
|
||||||
Pg0KICA8ZyBpZD0iQWRkRmlsZSI+DQogICAgPHBhdGggZD0iTTE2LDI2SDZWNGgxOHYxNGgyVjNjMC0w
|
|
||||||
LjUtMC41LTEtMS0xSDVDNC41LDIsNCwyLjUsNCwzdjI0YzAsMC41LDAuNSwxLDEsMWgxMVYyNnoiIGNs
|
|
||||||
YXNzPSJCbGFjayIgLz4NCiAgICA8cG9seWdvbiBwb2ludHM9IjMwLDI0IDI2LDI0IDI2LDIwIDIyLDIw
|
|
||||||
IDIyLDI0IDE4LDI0IDE4LDI4IDIyLDI4IDIyLDMyIDI2LDMyIDI2LDI4IDMwLDI4ICAiIGNsYXNzPSJH
|
|
||||||
cmVlbiIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<data name="btnDeleteFile.Caption" xml:space="preserve">
|
|
||||||
<value>Delete Document</value>
|
|
||||||
</data>
|
|
||||||
<data name="btnDeleteFile.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
|
||||||
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
|
||||||
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAPECAAAC77u/
|
|
||||||
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
|
||||||
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
|
||||||
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
|
||||||
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
|
||||||
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9Cgku
|
|
||||||
WWVsbG93e2ZpbGw6I0ZGQjExNTt9CgkuQmx1ZXtmaWxsOiMxMTc3RDc7fQoJLkdyZWVue2ZpbGw6IzAz
|
|
||||||
OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
|
||||||
Y2l0eTowLjc1O30KCS5zdDF7b3BhY2l0eTowLjU7fQoJLnN0MntvcGFjaXR5OjAuMjU7fQo8L3N0eWxl
|
|
||||||
Pg0KICA8ZyBpZD0iRGVsZXRlTGlzdCI+DQogICAgPHBhdGggZD0iTTYsMjZWNGgxOHYxMy4ybDItMlYz
|
|
||||||
YzAtMC42LTAuNC0xLTEtMUg1QzQuNCwyLDQsMi40LDQsM3YyNGMwLDAuNiwwLjQsMSwxLDFoOC4ybDIt
|
|
||||||
Mkg2eiIgY2xhc3M9IkJsYWNrIiAvPg0KICAgIDxwb2x5Z29uIHBvaW50cz0iMjgsMjAgMjYsMTggMjIs
|
|
||||||
MjIgMTgsMTggMTYsMjAgMjAsMjQgMTYsMjggMTgsMzAgMjIsMjYgMjYsMzAgMjgsMjggMjQsMjQgICIg
|
|
||||||
Y2xhc3M9IlJlZCIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<data name="btnSendEnvelope.Caption" xml:space="preserve">
|
|
||||||
<value>Send Envelope</value>
|
|
||||||
</data>
|
|
||||||
<data name="btnSendEnvelope.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
|
||||||
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
|
||||||
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAADUCAAAC77u/
|
|
||||||
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
|
||||||
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
|
||||||
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
|
||||||
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
|
||||||
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
|
|
||||||
ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5CbGFja3tmaWxsOiM3MjcyNzI7fQoJLkdyZWVue2ZpbGw6IzAz
|
|
||||||
OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9Cgkuc3Qwe29wYWNpdHk6MC43NTt9Cgkuc3Qxe29wYWNp
|
|
||||||
dHk6MC41O30KPC9zdHlsZT4NCiAgPGcgaWQ9IlNlbmQiPg0KICAgIDxwb2x5Z29uIHBvaW50cz0iMiwy
|
|
||||||
MCA4LDIyLjQgMjQsMTAgMTIsMjQgMTIsMzAgMTYuMywyNS43IDIyLDI4IDMwLDIgICIgY2xhc3M9IkJs
|
|
||||||
dWUiIC8+DQogIDwvZz4NCjwvc3ZnPgs=
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<data name="btnEditFields.Caption" xml:space="preserve">
|
|
||||||
<value>Edit Signature Fields</value>
|
|
||||||
</data>
|
|
||||||
<data name="btnEditFields.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
|
||||||
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
|
||||||
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAGgCAAAC77u/
|
|
||||||
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
|
||||||
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
|
||||||
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
|
||||||
Y2U9InByZXNlcnZlIiBpZD0iRWRpdF9Db21tZW50IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3
|
|
||||||
IDAgMCAzMiAzMiI+DQogIDxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+CgkuQmx1ZXtmaWxsOiMxMTc3RDc7
|
|
||||||
fQoJLlllbGxvd3tmaWxsOiNGRkIxMTU7fQo8L3N0eWxlPg0KICA8cGF0aCBkPSJNMywyMmgzdjZsNi02
|
|
||||||
aDMuMkwyNiwxMS4yVjdjMC0wLjYtMC40LTEtMS0xSDNDMi40LDYsMiw2LjQsMiw3djE0QzIsMjEuNiwy
|
|
||||||
LjQsMjIsMywyMnoiIGNsYXNzPSJZZWxsb3ciIC8+DQogIDxwYXRoIGQ9Ik0yOSwxOWwtOCw4bC00LTRs
|
|
||||||
OC04TDI5LDE5eiBNMzAsMThsMS43LTEuN2MwLjQtMC40LDAuNC0xLDAtMS4zbC0yLjctMi43Yy0wLjQt
|
|
||||||
MC40LTEtMC40LTEuMywwTDI2LDE0TDMwLDE4eiAgIE0xNiwyNHY0aDRMMTYsMjR6IiBjbGFzcz0iQmx1
|
|
||||||
ZSIgLz4NCjwvc3ZnPgs=
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<data name="btnDeleteReceiver.Caption" xml:space="preserve">
|
|
||||||
<value>Remove Receiver</value>
|
|
||||||
</data>
|
|
||||||
<data name="btnDeleteReceiver.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
|
||||||
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
|
||||||
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAALMCAAAC77u/
|
|
||||||
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
|
||||||
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
|
||||||
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
|
||||||
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
|
||||||
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
|
|
||||||
ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5CbGFja3tmaWxsOiM3MjcyNzI7fQoJLkdyZWVue2ZpbGw6IzAz
|
|
||||||
OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9Cgkuc3Qwe29wYWNpdHk6MC43NTt9Cgkuc3Qxe29wYWNp
|
|
||||||
dHk6MC41O30KPC9zdHlsZT4NCiAgPGcgaWQ9IkRlbGV0ZUNpcmNsZWQiPg0KICAgIDxwYXRoIGQ9Ik0x
|
|
||||||
Niw0QzkuNCw0LDQsOS40LDQsMTZzNS40LDEyLDEyLDEyczEyLTUuNCwxMi0xMlMyMi42LDQsMTYsNHog
|
|
||||||
TTIzLjEsMjAuMmwtMi44LDIuOEwxNiwxOC44bC00LjIsNC4yICAgbC0yLjgtMi44bDQuMi00LjJsLTQu
|
|
||||||
Mi00LjJsMi44LTIuOGw0LjIsNC4ybDQuMi00LjJsMi44LDIuOEwxOC44LDE2TDIzLjEsMjAuMnoiIGNs
|
|
||||||
YXNzPSJSZWQiIC8+DQogIDwvZz4NCjwvc3ZnPgs=
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<data name="btnEditData.Caption" xml:space="preserve">
|
|
||||||
<value>Edit Data</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="btnEditData.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="btnEditData.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
@@ -305,27 +256,62 @@
|
|||||||
NHY0aDRMMTQsMjR6IiBjbGFzcz0iQmx1ZSIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
|
NHY0aDRMMTQsMjR6IiBjbGFzcz0iQmx1ZSIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RibbonPageGroup1.Text" xml:space="preserve">
|
<data name="LayoutControlGroup5.Text" xml:space="preserve">
|
||||||
<value>Envelope</value>
|
<value>Your documents</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RibbonPageGroupDocuments.Text" xml:space="preserve">
|
<data name="btnShowFile.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>Documents</value>
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAJYEAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLlllbGxvd3tmaWxsOiNGRkIxMTU7fQoJ
|
||||||
|
LlJlZHtmaWxsOiNEMTFDMUM7fQoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5HcmVlbntmaWxsOiMwMzlD
|
||||||
|
MjM7fQoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
||||||
|
Y2l0eTowLjc1O30KPC9zdHlsZT4NCiAgPGcgaWQ9IkRvY3VtZW50UERGIj4NCiAgICA8cGF0aCBkPSJN
|
||||||
|
MjIsMjR2NEgyVjJoMTR2NWMwLDAuNiwwLjQsMSwxLDFoNXY0aDJWN2wtNy03SDFDMC40LDAsMCwwLjQs
|
||||||
|
MCwxdjI4YzAsMC42LDAuNCwxLDEsMWgyMmMwLjYsMCwxLTAuNCwxLTEgICB2LTVIMjJ6IiBjbGFzcz0i
|
||||||
|
QmxhY2siIC8+DQogICAgPHBhdGggZD0iTTE5LjIsMTZjMC4zLDAuNSwwLjQsMS4xLDAuNCwxLjljMCww
|
||||||
|
LjktMC4yLDEuNS0wLjUsMmMtMC4zLDAuNS0wLjcsMC43LTEuMywwLjdoLTAuNnYtNS4zaDAuNiAgIEMx
|
||||||
|
OC40LDE1LjMsMTguOSwxNS42LDE5LjIsMTZ6IE0xMi4xLDE1LjNoLTAuNXYyLjZoMC41YzAuNywwLDEu
|
||||||
|
MS0wLjQsMS4xLTEuM2MwLTAuNC0wLjEtMC44LTAuMy0xQzEyLjYsMTUuNCwxMi40LDE1LjMsMTIuMSwx
|
||||||
|
NS4zeiAgICBNMzAsMTJ2MTJINlYxMkgzMHogTTE0LjgsMTYuNWMwLTAuOC0wLjItMS41LTAuNi0xLjlj
|
||||||
|
LTAuNC0wLjQtMS0wLjctMS44LTAuN0gxMHY4aDEuNnYtMi43aDAuNmMwLjgsMCwxLjQtMC4zLDEuOS0w
|
||||||
|
LjggICBDMTQuNSwxOCwxNC44LDE3LjMsMTQuOCwxNi41eiBNMjEuMiwxNy45YzAtMi42LTEuMS0zLjkt
|
||||||
|
My40LTMuOWgtMi4xdjhoMi4yYzEuMSwwLDEuOS0wLjQsMi41LTEuMUMyMC45LDIwLjIsMjEuMiwxOS4y
|
||||||
|
LDIxLjIsMTcuOXogICAgTTI2LDE0aC0zLjd2OGgxLjZ2LTMuMWgydi0xLjNoLTJ2LTIuMkgyNlYxNHoi
|
||||||
|
IGNsYXNzPSJSZWQiIC8+DQogIDwvZz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RibbonPageGroupInvitation.Text" xml:space="preserve">
|
<data name="btnCancel.Caption" xml:space="preserve">
|
||||||
<value>Process</value>
|
<value>Cancel</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RibbonPageGroupAddSignature.Text" xml:space="preserve">
|
<data name="btnDeleteFile.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>Signatures</value>
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAPECAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9Cgku
|
||||||
|
WWVsbG93e2ZpbGw6I0ZGQjExNTt9CgkuQmx1ZXtmaWxsOiMxMTc3RDc7fQoJLkdyZWVue2ZpbGw6IzAz
|
||||||
|
OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
||||||
|
Y2l0eTowLjc1O30KCS5zdDF7b3BhY2l0eTowLjU7fQoJLnN0MntvcGFjaXR5OjAuMjU7fQo8L3N0eWxl
|
||||||
|
Pg0KICA8ZyBpZD0iRGVsZXRlTGlzdCI+DQogICAgPHBhdGggZD0iTTYsMjZWNGgxOHYxMy4ybDItMlYz
|
||||||
|
YzAtMC42LTAuNC0xLTEtMUg1QzQuNCwyLDQsMi40LDQsM3YyNGMwLDAuNiwwLjQsMSwxLDFoOC4ybDIt
|
||||||
|
Mkg2eiIgY2xhc3M9IkJsYWNrIiAvPg0KICAgIDxwb2x5Z29uIHBvaW50cz0iMjgsMjAgMjYsMTggMjIs
|
||||||
|
MjIgMTgsMTggMTYsMjAgMjAsMjQgMTYsMjggMTgsMzAgMjIsMjYgMjYsMzAgMjgsMjggMjQsMjQgICIg
|
||||||
|
Y2xhc3M9IlJlZCIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
|
||||||
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RibbonPageGroupReceiver.Text" xml:space="preserve">
|
<data name="RibbonPageGroupReceiver.Text" xml:space="preserve">
|
||||||
<value>Receiver</value>
|
<value>Receiver</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LayoutControlGroup5.CustomizationFormText" xml:space="preserve">
|
|
||||||
<value>Your Documents</value>
|
|
||||||
</data>
|
|
||||||
<data name="LayoutControlGroup5.Text" xml:space="preserve">
|
|
||||||
<value>Your Documents</value>
|
|
||||||
</data>
|
|
||||||
<data name="colColor.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="colColor.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
@@ -344,27 +330,6 @@
|
|||||||
Lz4NCjwvc3ZnPgs=
|
Lz4NCjwvc3ZnPgs=
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="colName.Caption" xml:space="preserve">
|
|
||||||
<value>Email Salutation</value>
|
|
||||||
</data>
|
|
||||||
<data name="colAccessCode.Caption" xml:space="preserve">
|
|
||||||
<value>Access Code</value>
|
|
||||||
</data>
|
|
||||||
<data name="LayoutControlGroup3.CustomizationFormText" xml:space="preserve">
|
|
||||||
<value>Receiver</value>
|
|
||||||
</data>
|
|
||||||
<data name="LayoutControlGroup3.Text" xml:space="preserve">
|
|
||||||
<value>Receiver</value>
|
|
||||||
</data>
|
|
||||||
<data name="LayoutControlGroup1.CustomizationFormText" xml:space="preserve">
|
|
||||||
<value>Your Message</value>
|
|
||||||
</data>
|
|
||||||
<data name="LayoutControlItem3.Text" xml:space="preserve">
|
|
||||||
<value>Message</value>
|
|
||||||
</data>
|
|
||||||
<data name="LayoutControlGroup1.Text" xml:space="preserve">
|
|
||||||
<value>Your Message</value>
|
|
||||||
</data>
|
|
||||||
<data name="frmEnvelopeEditor.IconOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="frmEnvelopeEditor.IconOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
@@ -383,7 +348,170 @@
|
|||||||
b3ciIC8+DQogIDwvZz4NCjwvc3ZnPgs=
|
b3ciIC8+DQogIDwvZz4NCjwvc3ZnPgs=
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="bbtnitm_ConcatFiles.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAHECAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTXVsdGlwbGVfRG9jdW1lbnRzIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91
|
||||||
|
bmQ6bmV3IDAgMCAzMiAzMiI+DQogIDxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+CgkuQmxhY2t7ZmlsbDoj
|
||||||
|
NzI3MjcyO30KPC9zdHlsZT4NCiAgPHBhdGggZD0iTTMxLDhoLTVWNWMwLTAuNS0wLjUtMS0xLTFoLTVW
|
||||||
|
MWMwLTAuNS0wLjUtMS0xLTFIMUMwLjUsMCwwLDAuNSwwLDF2MjJjMCwwLjUsMC41LDEsMSwxaDV2M2Mw
|
||||||
|
LDAuNSwwLjUsMSwxLDEgIGg1djNjMCwwLjUsMC41LDEsMSwxaDE4YzAuNSwwLDEtMC41LDEtMVY5QzMy
|
||||||
|
LDguNSwzMS41LDgsMzEsOHogTTYsNXYxN0gyVjJoMTZ2Mkg3QzYuNSw0LDYsNC41LDYsNXogTTEyLDl2
|
||||||
|
MTdIOFY2aDE2djJIMTMgIEMxMi41LDgsMTIsOC41LDEyLDl6IE0zMCwzMEgxNFYxMGgxNlYzMHoiIGNs
|
||||||
|
YXNzPSJCbGFjayIgLz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="colAccessCode.Caption" xml:space="preserve">
|
||||||
|
<value>Access Code</value>
|
||||||
|
</data>
|
||||||
|
<data name="colPhoneNumber.Caption" xml:space="preserve">
|
||||||
|
<value>Mobile number</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnEditFields.Caption" xml:space="preserve">
|
||||||
|
<value>Edit signature fields</value>
|
||||||
|
</data>
|
||||||
<data name="$this.Text" xml:space="preserve">
|
<data name="$this.Text" xml:space="preserve">
|
||||||
<value>signFLOW - Envelope-Editor</value>
|
<value>signFLOW - Envelope Editor</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnEditData.Caption" xml:space="preserve">
|
||||||
|
<value>Edit</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnSendEnvelope.Caption" xml:space="preserve">
|
||||||
|
<value>Send envelope</value>
|
||||||
|
</data>
|
||||||
|
<data name="bbtnitm_ConcatFiles.Caption" xml:space="preserve">
|
||||||
|
<value>Concatenate multiple PDF documents</value>
|
||||||
|
</data>
|
||||||
|
<data name="colName.Caption" xml:space="preserve">
|
||||||
|
<value>E-Mail Salutation</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtCreatorEmailLabel.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAF8FAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
|
||||||
|
ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5SZWR7ZmlsbDojRDExQzFDO30KCS5HcmVlbntmaWxsOiMwMzlD
|
||||||
|
MjM7fQoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
||||||
|
Y2l0eTowLjU7fQoJLnN0MXtvcGFjaXR5OjAuNzU7fQoJLnN0MntkaXNwbGF5Om5vbmU7fQoJLnN0M3tk
|
||||||
|
aXNwbGF5OmlubGluZTtmaWxsOiNGRkIxMTU7fQoJLnN0NHtkaXNwbGF5OmlubGluZTt9Cgkuc3Q1e2Rp
|
||||||
|
c3BsYXk6aW5saW5lO29wYWNpdHk6MC43NTt9Cgkuc3Q2e2Rpc3BsYXk6aW5saW5lO29wYWNpdHk6MC41
|
||||||
|
O30KCS5zdDd7ZGlzcGxheTppbmxpbmU7ZmlsbDojMDM5QzIzO30KCS5zdDh7ZGlzcGxheTppbmxpbmU7
|
||||||
|
ZmlsbDojRDExQzFDO30KCS5zdDl7ZGlzcGxheTppbmxpbmU7ZmlsbDojMTE3N0Q3O30KCS5zdDEwe2Rp
|
||||||
|
c3BsYXk6aW5saW5lO2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+DQogIDxnIGlkPSJNeURldGFpbHMiPg0K
|
||||||
|
ICAgIDxwYXRoIGQ9Ik04LjQsMTEuM0M4LjIsMTAuOCw3LjksMTAuNCw4LDkuOWMwLjEtMC4yLDAuNC0w
|
||||||
|
LjMsMC41LTAuM0M3LjQsNiw4LDIsMTIuOCwyYzUuMiwwLDUuNSwzLDUuNSwzICAgczIuOS0wLjIsMS4x
|
||||||
|
LDQuN2MwLjEtMC4xLDAuNC0wLjEsMC41LDAuM2MwLjEsMC41LTAuMSwwLjktMC4zLDEuNGMtMC4zLDAu
|
||||||
|
NSwwLjEsMS43LTAuOSwxLjZ2MC4xYy0wLjUsMi4zLTIsNC45LTQuNyw0LjkgICBzLTQuMS0yLjYtNC43
|
||||||
|
LTQuOWMwLTAuMSwwLTAuMiwwLTAuMkM4LjMsMTMsOC42LDExLjgsOC40LDExLjN6IE0xNCwyNWMwLTEu
|
||||||
|
MSwwLjItMi4xLDAuNi0zLjFDMTQuNCwyMiwxNC4yLDIyLDE0LDIyICAgYy0xLjksMC0zLjItMi41LTQt
|
||||||
|
NGMtMi4zLDMuNS04LDEtOCw4LjVWMjhoMTIuNUMxNC4yLDI3LjEsMTQsMjYuMSwxNCwyNXoiIGNsYXNz
|
||||||
|
PSJCbGFjayIgLz4NCiAgICA8cGF0aCBkPSJNMjMsMThjLTMuOSwwLTcsMy4xLTcsN2MwLDMuOSwzLjEs
|
||||||
|
Nyw3LDdzNy0zLjEsNy03QzMwLDIxLjEsMjYuOSwxOCwyMywxOHogTTI0LDMwaC0ydi02aDJWMzB6IE0y
|
||||||
|
NCwyMmgtMnYtMiAgIGgyVjIyeiIgY2xhc3M9IkJsdWUiIC8+DQogIDwvZz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtCreatorEmailLabel.Caption" xml:space="preserve">
|
||||||
|
<value>Sender E-Mail: {0}</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnNewFile.Caption" xml:space="preserve">
|
||||||
|
<value>Add PDF document</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtEnvelopeIdLabel2.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAKUCAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
|
||||||
|
ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5CbGFja3tmaWxsOiM3MjcyNzI7fQoJLkdyZWVue2ZpbGw6IzAz
|
||||||
|
OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9Cgkuc3Qwe29wYWNpdHk6MC43NTt9Cgkuc3Qxe29wYWNp
|
||||||
|
dHk6MC41O30KPC9zdHlsZT4NCiAgPGcgaWQ9IkVudmVsb3BlQ2xvc2UiPg0KICAgIDxwYXRoIGQ9Ik0x
|
||||||
|
NiwxNmwxMi02LjlWOWMwLTAuNS0wLjUtMS0xLTFINUM0LjUsOCw0LDguNSw0LDl2MC4xTDE2LDE2eiIg
|
||||||
|
Y2xhc3M9IlllbGxvdyIgLz4NCiAgICA8cGF0aCBkPSJNMTYsMTguM0w0LDExLjRWMjNjMCwwLjUsMC41
|
||||||
|
LDEsMSwxaDIyYzAuNSwwLDEtMC41LDEtMVYxMS40TDE2LDE4LjN6IiBjbGFzcz0iWWVsbG93IiAvPg0K
|
||||||
|
ICA8L2c+DQo8L3N2Zz4L
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnSendEnvelope.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAADUCAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
|
||||||
|
ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5CbGFja3tmaWxsOiM3MjcyNzI7fQoJLkdyZWVue2ZpbGw6IzAz
|
||||||
|
OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9Cgkuc3Qwe29wYWNpdHk6MC43NTt9Cgkuc3Qxe29wYWNp
|
||||||
|
dHk6MC41O30KPC9zdHlsZT4NCiAgPGcgaWQ9IlNlbmQiPg0KICAgIDxwb2x5Z29uIHBvaW50cz0iMiwy
|
||||||
|
MCA4LDIyLjQgMjQsMTAgMTIsMjQgMTIsMzAgMTYuMywyNS43IDIyLDI4IDMwLDIgICIgY2xhc3M9IkJs
|
||||||
|
dWUiIC8+DQogIDwvZz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnEditFields.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAGgCAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iRWRpdF9Db21tZW50IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3
|
||||||
|
IDAgMCAzMiAzMiI+DQogIDxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+CgkuQmx1ZXtmaWxsOiMxMTc3RDc7
|
||||||
|
fQoJLlllbGxvd3tmaWxsOiNGRkIxMTU7fQo8L3N0eWxlPg0KICA8cGF0aCBkPSJNMywyMmgzdjZsNi02
|
||||||
|
aDMuMkwyNiwxMS4yVjdjMC0wLjYtMC40LTEtMS0xSDNDMi40LDYsMiw2LjQsMiw3djE0QzIsMjEuNiwy
|
||||||
|
LjQsMjIsMywyMnoiIGNsYXNzPSJZZWxsb3ciIC8+DQogIDxwYXRoIGQ9Ik0yOSwxOWwtOCw4bC00LTRs
|
||||||
|
OC04TDI5LDE5eiBNMzAsMThsMS43LTEuN2MwLjQtMC40LDAuNC0xLDAtMS4zbC0yLjctMi43Yy0wLjQt
|
||||||
|
MC40LTEtMC40LTEuMywwTDI2LDE0TDMwLDE4eiAgIE0xNiwyNHY0aDRMMTYsMjR6IiBjbGFzcz0iQmx1
|
||||||
|
ZSIgLz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlGroup1.Text" xml:space="preserve">
|
||||||
|
<value>Your Message</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtEnvelopeIdLabel.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAKUCAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
|
||||||
|
ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5CbGFja3tmaWxsOiM3MjcyNzI7fQoJLkdyZWVue2ZpbGw6IzAz
|
||||||
|
OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9Cgkuc3Qwe29wYWNpdHk6MC43NTt9Cgkuc3Qxe29wYWNp
|
||||||
|
dHk6MC41O30KPC9zdHlsZT4NCiAgPGcgaWQ9IkVudmVsb3BlQ2xvc2UiPg0KICAgIDxwYXRoIGQ9Ik0x
|
||||||
|
NiwxNmwxMi02LjlWOWMwLTAuNS0wLjUtMS0xLTFINUM0LjUsOCw0LDguNSw0LDl2MC4xTDE2LDE2eiIg
|
||||||
|
Y2xhc3M9IlllbGxvdyIgLz4NCiAgICA8cGF0aCBkPSJNMTYsMTguM0w0LDExLjRWMjNjMCwwLjUsMC41
|
||||||
|
LDEsMSwxaDIyYzAuNSwwLDEtMC41LDEtMVYxMS40TDE2LDE4LjN6IiBjbGFzcz0iWWVsbG93IiAvPg0K
|
||||||
|
ICA8L2c+DQo8L3N2Zz4L
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlGroup3.Text" xml:space="preserve">
|
||||||
|
<value>Receiver</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlGroup5.CustomizationFormText" xml:space="preserve">
|
||||||
|
<value>Your documents</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlGroup3.CustomizationFormText" xml:space="preserve">
|
||||||
|
<value>Receiver</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlGroup1.CustomizationFormText" xml:space="preserve">
|
||||||
|
<value>Your Message</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
506
EnvelopeGenerator.Form/frmEnvelopeEditor.fr.resx
Normal file
506
EnvelopeGenerator.Form/frmEnvelopeEditor.fr.resx
Normal file
@@ -0,0 +1,506 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="RibbonPageGroupDocuments.Text" xml:space="preserve">
|
||||||
|
<value>Dokuments</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtEnvelopeIdLabel2.Caption" xml:space="preserve">
|
||||||
|
<value>ID d'enveloppe : {0}</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnDeleteReceiver.Caption" xml:space="preserve">
|
||||||
|
<value>Supprimer le destinataire</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnDeleteFile.Caption" xml:space="preserve">
|
||||||
|
<value>Supprimer le document</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem3.Text" xml:space="preserve">
|
||||||
|
<value>Message</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonPageGroupInvitation.Text" xml:space="preserve">
|
||||||
|
<value>Procédure</value>
|
||||||
|
</data>
|
||||||
|
<assembly alias="DevExpress.Data.v21.2" name="DevExpress.Data.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||||
|
<data name="btnDeleteReceiver.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAALMCAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
|
||||||
|
ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5CbGFja3tmaWxsOiM3MjcyNzI7fQoJLkdyZWVue2ZpbGw6IzAz
|
||||||
|
OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9Cgkuc3Qwe29wYWNpdHk6MC43NTt9Cgkuc3Qxe29wYWNp
|
||||||
|
dHk6MC41O30KPC9zdHlsZT4NCiAgPGcgaWQ9IkRlbGV0ZUNpcmNsZWQiPg0KICAgIDxwYXRoIGQ9Ik0x
|
||||||
|
Niw0QzkuNCw0LDQsOS40LDQsMTZzNS40LDEyLDEyLDEyczEyLTUuNCwxMi0xMlMyMi42LDQsMTYsNHog
|
||||||
|
TTIzLjEsMjAuMmwtMi44LDIuOEwxNiwxOC44bC00LjIsNC4yICAgbC0yLjgtMi44bDQuMi00LjJsLTQu
|
||||||
|
Mi00LjJsMi44LTIuOGw0LjIsNC4ybDQuMi00LjJsMi44LDIuOEwxOC44LDE2TDIzLjEsMjAuMnoiIGNs
|
||||||
|
YXNzPSJSZWQiIC8+DQogIDwvZz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnShowFile.Caption" xml:space="preserve">
|
||||||
|
<value>Afficher le document</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnSave.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAMICAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsYWNre2ZpbGw6IzczNzM3NDt9Cgku
|
||||||
|
WWVsbG93e2ZpbGw6I0ZDQjAxQjt9CgkuR3JlZW57ZmlsbDojMTI5QzQ5O30KCS5CbHVle2ZpbGw6IzM4
|
||||||
|
N0NCNzt9CgkuUmVke2ZpbGw6I0QwMjEyNzt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
||||||
|
Y2l0eTowLjU7fQoJLnN0MXtvcGFjaXR5OjAuNzU7fQoJLnN0MntvcGFjaXR5OjAuMjU7fQoJLnN0M3tk
|
||||||
|
aXNwbGF5Om5vbmU7ZmlsbDojNzM3Mzc0O30KPC9zdHlsZT4NCiAgPHBhdGggZD0iTTI3LDRoLTN2MTBI
|
||||||
|
OFY0SDVDNC40LDQsNCw0LjQsNCw1djIyYzAsMC42LDAuNCwxLDEsMWgyMmMwLjYsMCwxLTAuNCwxLTFW
|
||||||
|
NUMyOCw0LjQsMjcuNiw0LDI3LDR6IE0yNCwyNEg4di02ICBoMTZWMjR6IE0xMCw0djhoMTBWNEgxMHog
|
||||||
|
TTE0LDEwaC0yVjZoMlYxMHoiIGNsYXNzPSJCbGFjayIgLz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnSave.Caption" xml:space="preserve">
|
||||||
|
<value>Enregistrer</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnNewFile.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAOsCAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9Cgku
|
||||||
|
WWVsbG93e2ZpbGw6I0ZGQjExNTt9CgkuQmx1ZXtmaWxsOiMxMTc3RDc7fQoJLlJlZHtmaWxsOiNEMTFD
|
||||||
|
MUM7fQoJLldoaXRle2ZpbGw6I0ZGRkZGRjt9CgkuR3JlZW57ZmlsbDojMDM5QzIzO30KCS5zdDB7Zmls
|
||||||
|
bDojNzI3MjcyO30KCS5zdDF7b3BhY2l0eTowLjU7fQoJLnN0MntvcGFjaXR5OjAuNzU7fQo8L3N0eWxl
|
||||||
|
Pg0KICA8ZyBpZD0iQWRkRmlsZSI+DQogICAgPHBhdGggZD0iTTE2LDI2SDZWNGgxOHYxNGgyVjNjMC0w
|
||||||
|
LjUtMC41LTEtMS0xSDVDNC41LDIsNCwyLjUsNCwzdjI0YzAsMC41LDAuNSwxLDEsMWgxMVYyNnoiIGNs
|
||||||
|
YXNzPSJCbGFjayIgLz4NCiAgICA8cG9seWdvbiBwb2ludHM9IjMwLDI0IDI2LDI0IDI2LDIwIDIyLDIw
|
||||||
|
IDIyLDI0IDE4LDI0IDE4LDI4IDIyLDI4IDIyLDMyIDI2LDMyIDI2LDI4IDMwLDI4ICAiIGNsYXNzPSJH
|
||||||
|
cmVlbiIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonPageGroup1.Text" xml:space="preserve">
|
||||||
|
<value>Enveloppe</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnCancel.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAD0DAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLlJlZHtmaWxsOiNEMTFDMUM7fQoJLkJs
|
||||||
|
YWNre2ZpbGw6IzcyNzI3Mjt9CgkuQmx1ZXtmaWxsOiMxMTc3RDc7fQoJLkdyZWVue2ZpbGw6IzAzOUMy
|
||||||
|
Mzt9CgkuWWVsbG93e2ZpbGw6I0ZGQjExNTt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
||||||
|
Y2l0eTowLjU7fQoJLnN0MXtvcGFjaXR5OjAuNzU7fQo8L3N0eWxlPg0KICA8ZyBpZD0iRGVsZXRlIj4N
|
||||||
|
CiAgICA8Zz4NCiAgICAgIDxwYXRoIGQ9Ik0xOC44LDE2bDYuOS02LjljMC40LTAuNCwwLjQtMSwwLTEu
|
||||||
|
NGwtMS40LTEuNGMtMC40LTAuNC0xLTAuNC0xLjQsMEwxNiwxMy4yTDkuMSw2LjNjLTAuNC0wLjQtMS0w
|
||||||
|
LjQtMS40LDAgICAgTDYuMyw3LjdjLTAuNCwwLjQtMC40LDEsMCwxLjRsNi45LDYuOWwtNi45LDYuOWMt
|
||||||
|
MC40LDAuNC0wLjQsMSwwLDEuNGwxLjQsMS40YzAuNCwwLjQsMSwwLjQsMS40LDBsNi45LTYuOWw2Ljks
|
||||||
|
Ni45ICAgIGMwLjQsMC40LDEsMC40LDEuNCwwbDEuNC0xLjRjMC40LTAuNCwwLjQtMSwwLTEuNEwxOC44
|
||||||
|
LDE2eiIgY2xhc3M9IlJlZCIgLz4NCiAgICA8L2c+DQogIDwvZz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonPageGroupAddSignature.Text" xml:space="preserve">
|
||||||
|
<value>Signatures</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnEditData.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAOYDAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iRG9jdW1lbnRfUHJvcGVydGllcyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3Jv
|
||||||
|
dW5kOm5ldyAwIDAgMzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsYWNre2ZpbGw6
|
||||||
|
IzcyNzI3Mjt9CgkuQmx1ZXtmaWxsOiMxMTc3RDc7fQo8L3N0eWxlPg0KICA8cGF0aCBkPSJNMzAsMjV2
|
||||||
|
LTJsLTIuMi0wLjRjLTAuMi0wLjYtMC40LTEuMy0wLjctMS44bDEuMy0xLjhsLTEuNC0xLjRsLTEuOCwx
|
||||||
|
LjNjLTAuNS0wLjMtMS4yLTAuNi0xLjgtMC43TDIzLDE2aC0yICBsLTAuNCwyLjJjLTAuNiwwLjItMS4z
|
||||||
|
LDAuNC0xLjgsMC43bC0xLjgtMS4zbC0xLjQsMS40bDEuMywxLjhjLTAuMywwLjUtMC42LDEuMi0wLjcs
|
||||||
|
MS44TDE0LDIzdjJsMi4yLDAuNGMwLjIsMC42LDAuNCwxLjMsMC43LDEuOCAgbC0xLjMsMS44bDEuNCwx
|
||||||
|
LjRsMS44LTEuM2MwLjUsMC4zLDEuMiwwLjYsMS44LDAuN0wyMSwzMmgybDAuNC0yLjJjMC42LTAuMiwx
|
||||||
|
LjMtMC40LDEuOC0wLjdsMS44LDEuM2wxLjQtMS40bC0xLjMtMS44ICBjMC4zLTAuNSwwLjYtMS4yLDAu
|
||||||
|
Ny0xLjhMMzAsMjV6IE0yMiwyNmMtMS4xLDAtMi0wLjktMi0yczAuOS0yLDItMnMyLDAuOSwyLDJTMjMu
|
||||||
|
MSwyNiwyMiwyNnoiIGNsYXNzPSJCbHVlIiAvPg0KICA8cGF0aCBkPSJNMTQuMywyNkg2VjRoNmg2djVj
|
||||||
|
MCwwLjYsMC40LDEsMSwxaDV2NS45bDAsMC40YzAuNywwLjIsMS40LDAuNSwyLDAuOFY5bC03LTdINUM0
|
||||||
|
LjQsMiw0LDIuNCw0LDN2MjQgIGMwLDAuNiwwLjQsMSwxLDFoMTAuMUMxNC43LDI3LjQsMTQuNCwyNi43
|
||||||
|
LDE0LjMsMjZ6IiBjbGFzcz0iQmxhY2siIC8+DQo8L3N2Zz4L
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlGroup5.Text" xml:space="preserve">
|
||||||
|
<value>Vos documents</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnShowFile.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAJYEAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLlllbGxvd3tmaWxsOiNGRkIxMTU7fQoJ
|
||||||
|
LlJlZHtmaWxsOiNEMTFDMUM7fQoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5HcmVlbntmaWxsOiMwMzlD
|
||||||
|
MjM7fQoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
||||||
|
Y2l0eTowLjc1O30KPC9zdHlsZT4NCiAgPGcgaWQ9IkRvY3VtZW50UERGIj4NCiAgICA8cGF0aCBkPSJN
|
||||||
|
MjIsMjR2NEgyVjJoMTR2NWMwLDAuNiwwLjQsMSwxLDFoNXY0aDJWN2wtNy03SDFDMC40LDAsMCwwLjQs
|
||||||
|
MCwxdjI4YzAsMC42LDAuNCwxLDEsMWgyMmMwLjYsMCwxLTAuNCwxLTEgICB2LTVIMjJ6IiBjbGFzcz0i
|
||||||
|
QmxhY2siIC8+DQogICAgPHBhdGggZD0iTTE5LjIsMTZjMC4zLDAuNSwwLjQsMS4xLDAuNCwxLjljMCww
|
||||||
|
LjktMC4yLDEuNS0wLjUsMmMtMC4zLDAuNS0wLjcsMC43LTEuMywwLjdoLTAuNnYtNS4zaDAuNiAgIEMx
|
||||||
|
OC40LDE1LjMsMTguOSwxNS42LDE5LjIsMTZ6IE0xMi4xLDE1LjNoLTAuNXYyLjZoMC41YzAuNywwLDEu
|
||||||
|
MS0wLjQsMS4xLTEuM2MwLTAuNC0wLjEtMC44LTAuMy0xQzEyLjYsMTUuNCwxMi40LDE1LjMsMTIuMSwx
|
||||||
|
NS4zeiAgICBNMzAsMTJ2MTJINlYxMkgzMHogTTE0LjgsMTYuNWMwLTAuOC0wLjItMS41LTAuNi0xLjlj
|
||||||
|
LTAuNC0wLjQtMS0wLjctMS44LTAuN0gxMHY4aDEuNnYtMi43aDAuNmMwLjgsMCwxLjQtMC4zLDEuOS0w
|
||||||
|
LjggICBDMTQuNSwxOCwxNC44LDE3LjMsMTQuOCwxNi41eiBNMjEuMiwxNy45YzAtMi42LTEuMS0zLjkt
|
||||||
|
My40LTMuOWgtMi4xdjhoMi4yYzEuMSwwLDEuOS0wLjQsMi41LTEuMUMyMC45LDIwLjIsMjEuMiwxOS4y
|
||||||
|
LDIxLjIsMTcuOXogICAgTTI2LDE0aC0zLjd2OGgxLjZ2LTMuMWgydi0xLjNoLTJ2LTIuMkgyNlYxNHoi
|
||||||
|
IGNsYXNzPSJSZWQiIC8+DQogIDwvZz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnCancel.Caption" xml:space="preserve">
|
||||||
|
<value>Interrompre</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnDeleteFile.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAPECAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9Cgku
|
||||||
|
WWVsbG93e2ZpbGw6I0ZGQjExNTt9CgkuQmx1ZXtmaWxsOiMxMTc3RDc7fQoJLkdyZWVue2ZpbGw6IzAz
|
||||||
|
OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
||||||
|
Y2l0eTowLjc1O30KCS5zdDF7b3BhY2l0eTowLjU7fQoJLnN0MntvcGFjaXR5OjAuMjU7fQo8L3N0eWxl
|
||||||
|
Pg0KICA8ZyBpZD0iRGVsZXRlTGlzdCI+DQogICAgPHBhdGggZD0iTTYsMjZWNGgxOHYxMy4ybDItMlYz
|
||||||
|
YzAtMC42LTAuNC0xLTEtMUg1QzQuNCwyLDQsMi40LDQsM3YyNGMwLDAuNiwwLjQsMSwxLDFoOC4ybDIt
|
||||||
|
Mkg2eiIgY2xhc3M9IkJsYWNrIiAvPg0KICAgIDxwb2x5Z29uIHBvaW50cz0iMjgsMjAgMjYsMTggMjIs
|
||||||
|
MjIgMTgsMTggMTYsMjAgMjAsMjQgMTYsMjggMTgsMzAgMjIsMjYgMjYsMzAgMjgsMjggMjQsMjQgICIg
|
||||||
|
Y2xhc3M9IlJlZCIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonPageGroupReceiver.Text" xml:space="preserve">
|
||||||
|
<value>Destinataire</value>
|
||||||
|
</data>
|
||||||
|
<data name="colColor.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAGUCAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iUmVkX3RvX0JsYWNrIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3
|
||||||
|
IDAgMCAzMiAzMiI+DQogIDxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+CgkuUmVke2ZpbGw6I0QxMUMxQzt9
|
||||||
|
CgkuQmxhY2t7ZmlsbDojNzI3MjcyO30KCS5zdDB7b3BhY2l0eTowLjU7fQo8L3N0eWxlPg0KICA8Y2ly
|
||||||
|
Y2xlIGN4PSI5IiBjeT0iOSIgcj0iNyIgY2xhc3M9IlJlZCIgLz4NCiAgPGcgY2xhc3M9InN0MCI+DQog
|
||||||
|
ICAgPGNpcmNsZSBjeD0iOSIgY3k9IjI1IiByPSI3IiBjbGFzcz0iQmxhY2siIC8+DQogIDwvZz4NCiAg
|
||||||
|
PGcgY2xhc3M9InN0MCI+DQogICAgPGNpcmNsZSBjeD0iMjUiIGN5PSI5IiByPSI3IiBjbGFzcz0iUmVk
|
||||||
|
IiAvPg0KICA8L2c+DQogIDxjaXJjbGUgY3g9IjI1IiBjeT0iMjUiIHI9IjciIGNsYXNzPSJCbGFjayIg
|
||||||
|
Lz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmEnvelopeEditor.IconOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAHECAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
|
||||||
|
ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5CbGFja3tmaWxsOiM3MjcyNzI7fQoJLkdyZWVue2ZpbGw6IzAz
|
||||||
|
OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9Cgkuc3Qwe29wYWNpdHk6MC43NTt9Cgkuc3Qxe29wYWNp
|
||||||
|
dHk6MC41O30KPC9zdHlsZT4NCiAgPGcgaWQ9IkVudmVsb3BlT3BlbiI+DQogICAgPHBhdGggZD0iTTE2
|
||||||
|
LDRMNCwxMnYxNWMwLDAuNSwwLjUsMSwxLDFoMjJjMC41LDAsMS0wLjUsMS0xVjEyTDE2LDR6IE0yNiwx
|
||||||
|
My4xbC0xMCw2LjdMNiwxMy4xdjBsMTAtNi43TDI2LDEzLjEgICBMMjYsMTMuMXoiIGNsYXNzPSJZZWxs
|
||||||
|
b3ciIC8+DQogIDwvZz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="bbtnitm_ConcatFiles.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAHECAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTXVsdGlwbGVfRG9jdW1lbnRzIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91
|
||||||
|
bmQ6bmV3IDAgMCAzMiAzMiI+DQogIDxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+CgkuQmxhY2t7ZmlsbDoj
|
||||||
|
NzI3MjcyO30KPC9zdHlsZT4NCiAgPHBhdGggZD0iTTMxLDhoLTVWNWMwLTAuNS0wLjUtMS0xLTFoLTVW
|
||||||
|
MWMwLTAuNS0wLjUtMS0xLTFIMUMwLjUsMCwwLDAuNSwwLDF2MjJjMCwwLjUsMC41LDEsMSwxaDV2M2Mw
|
||||||
|
LDAuNSwwLjUsMSwxLDEgIGg1djNjMCwwLjUsMC41LDEsMSwxaDE4YzAuNSwwLDEtMC41LDEtMVY5QzMy
|
||||||
|
LDguNSwzMS41LDgsMzEsOHogTTYsNXYxN0gyVjJoMTZ2Mkg3QzYuNSw0LDYsNC41LDYsNXogTTEyLDl2
|
||||||
|
MTdIOFY2aDE2djJIMTMgIEMxMi41LDgsMTIsOC41LDEyLDl6IE0zMCwzMEgxNFYxMGgxNlYzMHoiIGNs
|
||||||
|
YXNzPSJCbGFjayIgLz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="colAccessCode.Caption" xml:space="preserve">
|
||||||
|
<value>Code d'accès</value>
|
||||||
|
</data>
|
||||||
|
<data name="colPhoneNumber.Caption" xml:space="preserve">
|
||||||
|
<value>Numéro de portable</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnEditFields.Caption" xml:space="preserve">
|
||||||
|
<value>Modifier les champs de signature</value>
|
||||||
|
</data>
|
||||||
|
<data name="$this.Text" xml:space="preserve">
|
||||||
|
<value>signFLOW - Éditeur d'enveloppe</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnEditData.Caption" xml:space="preserve">
|
||||||
|
<value>Modifier</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnSendEnvelope.Caption" xml:space="preserve">
|
||||||
|
<value>Envoyer des enveloppes</value>
|
||||||
|
</data>
|
||||||
|
<data name="bbtnitm_ConcatFiles.Caption" xml:space="preserve">
|
||||||
|
<value>Enchaîner plusieurs documents PDF</value>
|
||||||
|
</data>
|
||||||
|
<data name="colName.Caption" xml:space="preserve">
|
||||||
|
<value>Civilité E-mail</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtCreatorEmailLabel.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAF8FAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
|
||||||
|
ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5SZWR7ZmlsbDojRDExQzFDO30KCS5HcmVlbntmaWxsOiMwMzlD
|
||||||
|
MjM7fQoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
||||||
|
Y2l0eTowLjU7fQoJLnN0MXtvcGFjaXR5OjAuNzU7fQoJLnN0MntkaXNwbGF5Om5vbmU7fQoJLnN0M3tk
|
||||||
|
aXNwbGF5OmlubGluZTtmaWxsOiNGRkIxMTU7fQoJLnN0NHtkaXNwbGF5OmlubGluZTt9Cgkuc3Q1e2Rp
|
||||||
|
c3BsYXk6aW5saW5lO29wYWNpdHk6MC43NTt9Cgkuc3Q2e2Rpc3BsYXk6aW5saW5lO29wYWNpdHk6MC41
|
||||||
|
O30KCS5zdDd7ZGlzcGxheTppbmxpbmU7ZmlsbDojMDM5QzIzO30KCS5zdDh7ZGlzcGxheTppbmxpbmU7
|
||||||
|
ZmlsbDojRDExQzFDO30KCS5zdDl7ZGlzcGxheTppbmxpbmU7ZmlsbDojMTE3N0Q3O30KCS5zdDEwe2Rp
|
||||||
|
c3BsYXk6aW5saW5lO2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+DQogIDxnIGlkPSJNeURldGFpbHMiPg0K
|
||||||
|
ICAgIDxwYXRoIGQ9Ik04LjQsMTEuM0M4LjIsMTAuOCw3LjksMTAuNCw4LDkuOWMwLjEtMC4yLDAuNC0w
|
||||||
|
LjMsMC41LTAuM0M3LjQsNiw4LDIsMTIuOCwyYzUuMiwwLDUuNSwzLDUuNSwzICAgczIuOS0wLjIsMS4x
|
||||||
|
LDQuN2MwLjEtMC4xLDAuNC0wLjEsMC41LDAuM2MwLjEsMC41LTAuMSwwLjktMC4zLDEuNGMtMC4zLDAu
|
||||||
|
NSwwLjEsMS43LTAuOSwxLjZ2MC4xYy0wLjUsMi4zLTIsNC45LTQuNyw0LjkgICBzLTQuMS0yLjYtNC43
|
||||||
|
LTQuOWMwLTAuMSwwLTAuMiwwLTAuMkM4LjMsMTMsOC42LDExLjgsOC40LDExLjN6IE0xNCwyNWMwLTEu
|
||||||
|
MSwwLjItMi4xLDAuNi0zLjFDMTQuNCwyMiwxNC4yLDIyLDE0LDIyICAgYy0xLjksMC0zLjItMi41LTQt
|
||||||
|
NGMtMi4zLDMuNS04LDEtOCw4LjVWMjhoMTIuNUMxNC4yLDI3LjEsMTQsMjYuMSwxNCwyNXoiIGNsYXNz
|
||||||
|
PSJCbGFjayIgLz4NCiAgICA8cGF0aCBkPSJNMjMsMThjLTMuOSwwLTcsMy4xLTcsN2MwLDMuOSwzLjEs
|
||||||
|
Nyw3LDdzNy0zLjEsNy03QzMwLDIxLjEsMjYuOSwxOCwyMywxOHogTTI0LDMwaC0ydi02aDJWMzB6IE0y
|
||||||
|
NCwyMmgtMnYtMiAgIGgyVjIyeiIgY2xhc3M9IkJsdWUiIC8+DQogIDwvZz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtCreatorEmailLabel.Caption" xml:space="preserve">
|
||||||
|
<value>Expéditeur E-mail : {0}</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnNewFile.Caption" xml:space="preserve">
|
||||||
|
<value>Ajouter un document PDF</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtEnvelopeIdLabel2.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAKUCAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
|
||||||
|
ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5CbGFja3tmaWxsOiM3MjcyNzI7fQoJLkdyZWVue2ZpbGw6IzAz
|
||||||
|
OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9Cgkuc3Qwe29wYWNpdHk6MC43NTt9Cgkuc3Qxe29wYWNp
|
||||||
|
dHk6MC41O30KPC9zdHlsZT4NCiAgPGcgaWQ9IkVudmVsb3BlQ2xvc2UiPg0KICAgIDxwYXRoIGQ9Ik0x
|
||||||
|
NiwxNmwxMi02LjlWOWMwLTAuNS0wLjUtMS0xLTFINUM0LjUsOCw0LDguNSw0LDl2MC4xTDE2LDE2eiIg
|
||||||
|
Y2xhc3M9IlllbGxvdyIgLz4NCiAgICA8cGF0aCBkPSJNMTYsMTguM0w0LDExLjRWMjNjMCwwLjUsMC41
|
||||||
|
LDEsMSwxaDIyYzAuNSwwLDEtMC41LDEtMVYxMS40TDE2LDE4LjN6IiBjbGFzcz0iWWVsbG93IiAvPg0K
|
||||||
|
ICA8L2c+DQo8L3N2Zz4L
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnSendEnvelope.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAADUCAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
|
||||||
|
ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5CbGFja3tmaWxsOiM3MjcyNzI7fQoJLkdyZWVue2ZpbGw6IzAz
|
||||||
|
OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9Cgkuc3Qwe29wYWNpdHk6MC43NTt9Cgkuc3Qxe29wYWNp
|
||||||
|
dHk6MC41O30KPC9zdHlsZT4NCiAgPGcgaWQ9IlNlbmQiPg0KICAgIDxwb2x5Z29uIHBvaW50cz0iMiwy
|
||||||
|
MCA4LDIyLjQgMjQsMTAgMTIsMjQgMTIsMzAgMTYuMywyNS43IDIyLDI4IDMwLDIgICIgY2xhc3M9IkJs
|
||||||
|
dWUiIC8+DQogIDwvZz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnEditFields.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAGgCAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iRWRpdF9Db21tZW50IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3
|
||||||
|
IDAgMCAzMiAzMiI+DQogIDxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+CgkuQmx1ZXtmaWxsOiMxMTc3RDc7
|
||||||
|
fQoJLlllbGxvd3tmaWxsOiNGRkIxMTU7fQo8L3N0eWxlPg0KICA8cGF0aCBkPSJNMywyMmgzdjZsNi02
|
||||||
|
aDMuMkwyNiwxMS4yVjdjMC0wLjYtMC40LTEtMS0xSDNDMi40LDYsMiw2LjQsMiw3djE0QzIsMjEuNiwy
|
||||||
|
LjQsMjIsMywyMnoiIGNsYXNzPSJZZWxsb3ciIC8+DQogIDxwYXRoIGQ9Ik0yOSwxOWwtOCw4bC00LTRs
|
||||||
|
OC04TDI5LDE5eiBNMzAsMThsMS43LTEuN2MwLjQtMC40LDAuNC0xLDAtMS4zbC0yLjctMi43Yy0wLjQt
|
||||||
|
MC40LTEtMC40LTEuMywwTDI2LDE0TDMwLDE4eiAgIE0xNiwyNHY0aDRMMTYsMjR6IiBjbGFzcz0iQmx1
|
||||||
|
ZSIgLz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlGroup1.Text" xml:space="preserve">
|
||||||
|
<value>Votre message</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtEnvelopeIdLabel.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAKUCAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
|
||||||
|
ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5CbGFja3tmaWxsOiM3MjcyNzI7fQoJLkdyZWVue2ZpbGw6IzAz
|
||||||
|
OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9Cgkuc3Qwe29wYWNpdHk6MC43NTt9Cgkuc3Qxe29wYWNp
|
||||||
|
dHk6MC41O30KPC9zdHlsZT4NCiAgPGcgaWQ9IkVudmVsb3BlQ2xvc2UiPg0KICAgIDxwYXRoIGQ9Ik0x
|
||||||
|
NiwxNmwxMi02LjlWOWMwLTAuNS0wLjUtMS0xLTFINUM0LjUsOCw0LDguNSw0LDl2MC4xTDE2LDE2eiIg
|
||||||
|
Y2xhc3M9IlllbGxvdyIgLz4NCiAgICA8cGF0aCBkPSJNMTYsMTguM0w0LDExLjRWMjNjMCwwLjUsMC41
|
||||||
|
LDEsMSwxaDIyYzAuNSwwLDEtMC41LDEtMVYxMS40TDE2LDE4LjN6IiBjbGFzcz0iWWVsbG93IiAvPg0K
|
||||||
|
ICA8L2c+DQo8L3N2Zz4L
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlGroup3.Text" xml:space="preserve">
|
||||||
|
<value>Destinataire</value>
|
||||||
|
</data>
|
||||||
|
<data name="colEmail.Caption" xml:space="preserve">
|
||||||
|
<value>E-mail</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -115,7 +115,7 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
Try
|
Try
|
||||||
File.OpenWrite(oTempFilename)
|
File.OpenWrite(oTempFilename)
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox("File might already be open?", MsgBoxStyle.Exclamation)
|
MsgBox(Resources.Envelope.Error_while_opening_file, MsgBoxStyle.Exclamation)
|
||||||
Me.Cursor = Cursors.Default
|
Me.Cursor = Cursors.Default
|
||||||
Exit For
|
Exit For
|
||||||
End Try
|
End Try
|
||||||
@@ -139,7 +139,7 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
txtMessage.EditValue = Controller.Envelope.Message
|
txtMessage.EditValue = Controller.Envelope.WithDefaultMessage().Message
|
||||||
|
|
||||||
GridDocuments.DataSource = Documents
|
GridDocuments.DataSource = Documents
|
||||||
GridReceivers.DataSource = Receivers
|
GridReceivers.DataSource = Receivers
|
||||||
@@ -195,9 +195,9 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
Private Sub btnSave_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles btnSave.ItemClick
|
Private Sub btnSave_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles btnSave.ItemClick
|
||||||
Try
|
Try
|
||||||
If SaveEnvelopeWithOutValidation() = True Then
|
If SaveEnvelopeWithOutValidation() = True Then
|
||||||
bsitm_info.Caption = "Data saved successfully " + Now.ToString
|
bsitm_info.Caption = Resources.Model.Saved + Now.ToString
|
||||||
Else
|
Else
|
||||||
bsitm_info.Caption = "Exceprion - Error saving Data. Check LOG"
|
bsitm_info.Caption = Resources.Envelope.Error_when_saving_the_envelope + Now.ToString
|
||||||
End If
|
End If
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
Logger.Error(ex)
|
Logger.Error(ex)
|
||||||
@@ -258,7 +258,7 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
End Using
|
End Using
|
||||||
End If
|
End If
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox(ex.Message, MsgBoxStyle.Exclamation, "Error in downloadFile")
|
MsgBox(ex.Message, MsgBoxStyle.Exclamation, Resources.Envelope.Error_downloading_file)
|
||||||
End Try
|
End Try
|
||||||
End Sub
|
End Sub
|
||||||
Private Function SaveEnvelopeWithValidation() As Boolean
|
Private Function SaveEnvelopeWithValidation() As Boolean
|
||||||
@@ -647,7 +647,7 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
For Each oFile As String In openform.fileResults
|
For Each oFile As String In openform.fileResults
|
||||||
arPDF(oIDX) = New GdPicturePDF()
|
arPDF(oIDX) = New GdPicturePDF()
|
||||||
If arPDF(oIDX).LoadFromFile(oFile) <> GdPictureStatus.OK Then
|
If arPDF(oIDX).LoadFromFile(oFile) <> GdPictureStatus.OK Then
|
||||||
MsgBox($"PDF Status of file {oFile} is not OK. Please check PDF-conformity!", MsgBoxStyle.Critical)
|
MsgBox(String.Format(Resources.Envelope.Error_Pdf_Status, oFile), MsgBoxStyle.Critical)
|
||||||
oErr = True
|
oErr = True
|
||||||
Exit For
|
Exit For
|
||||||
End If
|
End If
|
||||||
@@ -672,11 +672,11 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
dstPDF.CloseDocument()
|
dstPDF.CloseDocument()
|
||||||
oSuccess = True
|
oSuccess = True
|
||||||
Else
|
Else
|
||||||
MsgBox("Unexpected format-error within the final document!", MsgBoxStyle.Critical)
|
MsgBox(Resources.Envelope.Error_concat_documents, MsgBoxStyle.Critical)
|
||||||
oSuccess = False
|
oSuccess = False
|
||||||
End If
|
End If
|
||||||
Else
|
Else
|
||||||
MessageBox.Show("The MergeDocuments() method has failed with the status: " + oStatus.ToString(), "Example: MergeDocuments")
|
MessageBox.Show(Resources.Envelope.Error_concat_documents)
|
||||||
oSuccess = False
|
oSuccess = False
|
||||||
End If
|
End If
|
||||||
dstPDF.Dispose()
|
dstPDF.Dispose()
|
||||||
|
|||||||
@@ -109,6 +109,7 @@ Partial Class frmEnvelopeMainData
|
|||||||
'
|
'
|
||||||
'LayoutControl1
|
'LayoutControl1
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControl1, "LayoutControl1")
|
||||||
Me.LayoutControl1.Controls.Add(Me.chked_2Faktor)
|
Me.LayoutControl1.Controls.Add(Me.chked_2Faktor)
|
||||||
Me.LayoutControl1.Controls.Add(Me.txtTitle)
|
Me.LayoutControl1.Controls.Add(Me.txtTitle)
|
||||||
Me.LayoutControl1.Controls.Add(Me.cmbEnvelopeType)
|
Me.LayoutControl1.Controls.Add(Me.cmbEnvelopeType)
|
||||||
@@ -124,7 +125,6 @@ Partial Class frmEnvelopeMainData
|
|||||||
Me.LayoutControl1.Controls.Add(Me.chkUseAccessCode)
|
Me.LayoutControl1.Controls.Add(Me.chkUseAccessCode)
|
||||||
Me.LayoutControl1.Controls.Add(Me.cmbEmailToCreator)
|
Me.LayoutControl1.Controls.Add(Me.cmbEmailToCreator)
|
||||||
Me.LayoutControl1.Controls.Add(Me.cmbEmailToReceivers)
|
Me.LayoutControl1.Controls.Add(Me.cmbEmailToReceivers)
|
||||||
resources.ApplyResources(Me.LayoutControl1, "LayoutControl1")
|
|
||||||
Me.LayoutControl1.Name = "LayoutControl1"
|
Me.LayoutControl1.Name = "LayoutControl1"
|
||||||
Me.LayoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = New System.Drawing.Rectangle(855, 189, 650, 400)
|
Me.LayoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = New System.Drawing.Rectangle(855, 189, 650, 400)
|
||||||
Me.LayoutControl1.Root = Me.Root
|
Me.LayoutControl1.Root = Me.Root
|
||||||
@@ -136,33 +136,41 @@ Partial Class frmEnvelopeMainData
|
|||||||
Me.chked_2Faktor.Properties.Appearance.Font = CType(resources.GetObject("chked_2Faktor.Properties.Appearance.Font"), System.Drawing.Font)
|
Me.chked_2Faktor.Properties.Appearance.Font = CType(resources.GetObject("chked_2Faktor.Properties.Appearance.Font"), System.Drawing.Font)
|
||||||
Me.chked_2Faktor.Properties.Appearance.Options.UseFont = True
|
Me.chked_2Faktor.Properties.Appearance.Options.UseFont = True
|
||||||
Me.chked_2Faktor.Properties.Caption = resources.GetString("chked_2Faktor.Properties.Caption")
|
Me.chked_2Faktor.Properties.Caption = resources.GetString("chked_2Faktor.Properties.Caption")
|
||||||
|
Me.chked_2Faktor.Properties.DisplayValueChecked = resources.GetString("chked_2Faktor.Properties.DisplayValueChecked")
|
||||||
|
Me.chked_2Faktor.Properties.DisplayValueGrayed = resources.GetString("chked_2Faktor.Properties.DisplayValueGrayed")
|
||||||
|
Me.chked_2Faktor.Properties.DisplayValueUnchecked = resources.GetString("chked_2Faktor.Properties.DisplayValueUnchecked")
|
||||||
|
Me.chked_2Faktor.Properties.GlyphVerticalAlignment = CType(resources.GetObject("chked_2Faktor.Properties.GlyphVerticalAlignment"), DevExpress.Utils.VertAlignment)
|
||||||
Me.chked_2Faktor.StyleController = Me.LayoutControl1
|
Me.chked_2Faktor.StyleController = Me.LayoutControl1
|
||||||
'
|
'
|
||||||
'txtTitle
|
'txtTitle
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.txtTitle, "txtTitle")
|
resources.ApplyResources(Me.txtTitle, "txtTitle")
|
||||||
Me.txtTitle.Name = "txtTitle"
|
Me.txtTitle.Name = "txtTitle"
|
||||||
|
Me.txtTitle.Properties.Appearance.Font = CType(resources.GetObject("txtTitle.Properties.Appearance.Font"), System.Drawing.Font)
|
||||||
|
Me.txtTitle.Properties.Appearance.Options.UseFont = True
|
||||||
Me.txtTitle.StyleController = Me.LayoutControl1
|
Me.txtTitle.StyleController = Me.LayoutControl1
|
||||||
'
|
'
|
||||||
'cmbEnvelopeType
|
'cmbEnvelopeType
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.cmbEnvelopeType, "cmbEnvelopeType")
|
resources.ApplyResources(Me.cmbEnvelopeType, "cmbEnvelopeType")
|
||||||
Me.cmbEnvelopeType.Name = "cmbEnvelopeType"
|
Me.cmbEnvelopeType.Name = "cmbEnvelopeType"
|
||||||
|
Me.cmbEnvelopeType.Properties.Appearance.Font = CType(resources.GetObject("cmbEnvelopeType.Properties.Appearance.Font"), System.Drawing.Font)
|
||||||
|
Me.cmbEnvelopeType.Properties.Appearance.Options.UseFont = True
|
||||||
Me.cmbEnvelopeType.Properties.Buttons.AddRange(New DevExpress.XtraEditors.Controls.EditorButton() {New DevExpress.XtraEditors.Controls.EditorButton(CType(resources.GetObject("cmbEnvelopeType.Properties.Buttons"), DevExpress.XtraEditors.Controls.ButtonPredefines))})
|
Me.cmbEnvelopeType.Properties.Buttons.AddRange(New DevExpress.XtraEditors.Controls.EditorButton() {New DevExpress.XtraEditors.Controls.EditorButton(CType(resources.GetObject("cmbEnvelopeType.Properties.Buttons"), DevExpress.XtraEditors.Controls.ButtonPredefines))})
|
||||||
Me.cmbEnvelopeType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor
|
Me.cmbEnvelopeType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor
|
||||||
Me.cmbEnvelopeType.StyleController = Me.LayoutControl1
|
Me.cmbEnvelopeType.StyleController = Me.LayoutControl1
|
||||||
'
|
'
|
||||||
'btOK
|
'btOK
|
||||||
'
|
'
|
||||||
Me.btOK.DialogResult = System.Windows.Forms.DialogResult.OK
|
|
||||||
resources.ApplyResources(Me.btOK, "btOK")
|
resources.ApplyResources(Me.btOK, "btOK")
|
||||||
|
Me.btOK.DialogResult = System.Windows.Forms.DialogResult.OK
|
||||||
Me.btOK.Name = "btOK"
|
Me.btOK.Name = "btOK"
|
||||||
Me.btOK.StyleController = Me.LayoutControl1
|
Me.btOK.StyleController = Me.LayoutControl1
|
||||||
'
|
'
|
||||||
'btCancel
|
'btCancel
|
||||||
'
|
'
|
||||||
Me.btCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
|
|
||||||
resources.ApplyResources(Me.btCancel, "btCancel")
|
resources.ApplyResources(Me.btCancel, "btCancel")
|
||||||
|
Me.btCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
|
||||||
Me.btCancel.Name = "btCancel"
|
Me.btCancel.Name = "btCancel"
|
||||||
Me.btCancel.StyleController = Me.LayoutControl1
|
Me.btCancel.StyleController = Me.LayoutControl1
|
||||||
'
|
'
|
||||||
@@ -170,6 +178,8 @@ Partial Class frmEnvelopeMainData
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.cmbCertificationType, "cmbCertificationType")
|
resources.ApplyResources(Me.cmbCertificationType, "cmbCertificationType")
|
||||||
Me.cmbCertificationType.Name = "cmbCertificationType"
|
Me.cmbCertificationType.Name = "cmbCertificationType"
|
||||||
|
Me.cmbCertificationType.Properties.Appearance.Font = CType(resources.GetObject("cmbCertificationType.Properties.Appearance.Font"), System.Drawing.Font)
|
||||||
|
Me.cmbCertificationType.Properties.Appearance.Options.UseFont = True
|
||||||
Me.cmbCertificationType.Properties.Buttons.AddRange(New DevExpress.XtraEditors.Controls.EditorButton() {New DevExpress.XtraEditors.Controls.EditorButton(CType(resources.GetObject("cmbCertificationType.Properties.Buttons"), DevExpress.XtraEditors.Controls.ButtonPredefines))})
|
Me.cmbCertificationType.Properties.Buttons.AddRange(New DevExpress.XtraEditors.Controls.EditorButton() {New DevExpress.XtraEditors.Controls.EditorButton(CType(resources.GetObject("cmbCertificationType.Properties.Buttons"), DevExpress.XtraEditors.Controls.ButtonPredefines))})
|
||||||
Me.cmbCertificationType.StyleController = Me.LayoutControl1
|
Me.cmbCertificationType.StyleController = Me.LayoutControl1
|
||||||
'
|
'
|
||||||
@@ -178,6 +188,10 @@ Partial Class frmEnvelopeMainData
|
|||||||
resources.ApplyResources(Me.chkSendReminderEmails, "chkSendReminderEmails")
|
resources.ApplyResources(Me.chkSendReminderEmails, "chkSendReminderEmails")
|
||||||
Me.chkSendReminderEmails.Name = "chkSendReminderEmails"
|
Me.chkSendReminderEmails.Name = "chkSendReminderEmails"
|
||||||
Me.chkSendReminderEmails.Properties.Caption = resources.GetString("chkSendReminderEmails.Properties.Caption")
|
Me.chkSendReminderEmails.Properties.Caption = resources.GetString("chkSendReminderEmails.Properties.Caption")
|
||||||
|
Me.chkSendReminderEmails.Properties.DisplayValueChecked = resources.GetString("chkSendReminderEmails.Properties.DisplayValueChecked")
|
||||||
|
Me.chkSendReminderEmails.Properties.DisplayValueGrayed = resources.GetString("chkSendReminderEmails.Properties.DisplayValueGrayed")
|
||||||
|
Me.chkSendReminderEmails.Properties.DisplayValueUnchecked = resources.GetString("chkSendReminderEmails.Properties.DisplayValueUnchecked")
|
||||||
|
Me.chkSendReminderEmails.Properties.GlyphVerticalAlignment = CType(resources.GetObject("chkSendReminderEmails.Properties.GlyphVerticalAlignment"), DevExpress.Utils.VertAlignment)
|
||||||
Me.chkSendReminderEmails.StyleController = Me.LayoutControl1
|
Me.chkSendReminderEmails.StyleController = Me.LayoutControl1
|
||||||
'
|
'
|
||||||
'spnFirstReminderDays
|
'spnFirstReminderDays
|
||||||
@@ -212,6 +226,8 @@ Partial Class frmEnvelopeMainData
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.cmbLanguage, "cmbLanguage")
|
resources.ApplyResources(Me.cmbLanguage, "cmbLanguage")
|
||||||
Me.cmbLanguage.Name = "cmbLanguage"
|
Me.cmbLanguage.Name = "cmbLanguage"
|
||||||
|
Me.cmbLanguage.Properties.Appearance.Font = CType(resources.GetObject("cmbLanguage.Properties.Appearance.Font"), System.Drawing.Font)
|
||||||
|
Me.cmbLanguage.Properties.Appearance.Options.UseFont = True
|
||||||
Me.cmbLanguage.Properties.Buttons.AddRange(New DevExpress.XtraEditors.Controls.EditorButton() {New DevExpress.XtraEditors.Controls.EditorButton(CType(resources.GetObject("cmbLanguage.Properties.Buttons"), DevExpress.XtraEditors.Controls.ButtonPredefines))})
|
Me.cmbLanguage.Properties.Buttons.AddRange(New DevExpress.XtraEditors.Controls.EditorButton() {New DevExpress.XtraEditors.Controls.EditorButton(CType(resources.GetObject("cmbLanguage.Properties.Buttons"), DevExpress.XtraEditors.Controls.ButtonPredefines))})
|
||||||
Me.cmbLanguage.StyleController = Me.LayoutControl1
|
Me.cmbLanguage.StyleController = Me.LayoutControl1
|
||||||
'
|
'
|
||||||
@@ -219,7 +235,13 @@ Partial Class frmEnvelopeMainData
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.chkUseAccessCode, "chkUseAccessCode")
|
resources.ApplyResources(Me.chkUseAccessCode, "chkUseAccessCode")
|
||||||
Me.chkUseAccessCode.Name = "chkUseAccessCode"
|
Me.chkUseAccessCode.Name = "chkUseAccessCode"
|
||||||
|
Me.chkUseAccessCode.Properties.Appearance.Font = CType(resources.GetObject("chkUseAccessCode.Properties.Appearance.Font"), System.Drawing.Font)
|
||||||
|
Me.chkUseAccessCode.Properties.Appearance.Options.UseFont = True
|
||||||
Me.chkUseAccessCode.Properties.Caption = resources.GetString("chkUseAccessCode.Properties.Caption")
|
Me.chkUseAccessCode.Properties.Caption = resources.GetString("chkUseAccessCode.Properties.Caption")
|
||||||
|
Me.chkUseAccessCode.Properties.DisplayValueChecked = resources.GetString("chkUseAccessCode.Properties.DisplayValueChecked")
|
||||||
|
Me.chkUseAccessCode.Properties.DisplayValueGrayed = resources.GetString("chkUseAccessCode.Properties.DisplayValueGrayed")
|
||||||
|
Me.chkUseAccessCode.Properties.DisplayValueUnchecked = resources.GetString("chkUseAccessCode.Properties.DisplayValueUnchecked")
|
||||||
|
Me.chkUseAccessCode.Properties.GlyphVerticalAlignment = CType(resources.GetObject("chkUseAccessCode.Properties.GlyphVerticalAlignment"), DevExpress.Utils.VertAlignment)
|
||||||
Me.chkUseAccessCode.StyleController = Me.LayoutControl1
|
Me.chkUseAccessCode.StyleController = Me.LayoutControl1
|
||||||
'
|
'
|
||||||
'cmbEmailToCreator
|
'cmbEmailToCreator
|
||||||
@@ -238,6 +260,7 @@ Partial Class frmEnvelopeMainData
|
|||||||
'
|
'
|
||||||
'Root
|
'Root
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.Root, "Root")
|
||||||
Me.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.[True]
|
Me.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.[True]
|
||||||
Me.Root.GroupBordersVisible = False
|
Me.Root.GroupBordersVisible = False
|
||||||
Me.Root.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem3, Me.LayoutControlGroup1, Me.LayoutControlItem4, Me.emptySpaceItem1, Me.groupAllOptions})
|
Me.Root.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem3, Me.LayoutControlGroup1, Me.LayoutControlItem4, Me.emptySpaceItem1, Me.groupAllOptions})
|
||||||
@@ -247,8 +270,8 @@ Partial Class frmEnvelopeMainData
|
|||||||
'
|
'
|
||||||
'LayoutControlItem3
|
'LayoutControlItem3
|
||||||
'
|
'
|
||||||
Me.LayoutControlItem3.Control = Me.btOK
|
|
||||||
resources.ApplyResources(Me.LayoutControlItem3, "LayoutControlItem3")
|
resources.ApplyResources(Me.LayoutControlItem3, "LayoutControlItem3")
|
||||||
|
Me.LayoutControlItem3.Control = Me.btOK
|
||||||
Me.LayoutControlItem3.Location = New System.Drawing.Point(10, 624)
|
Me.LayoutControlItem3.Location = New System.Drawing.Point(10, 624)
|
||||||
Me.LayoutControlItem3.MaxSize = New System.Drawing.Size(70, 27)
|
Me.LayoutControlItem3.MaxSize = New System.Drawing.Size(70, 27)
|
||||||
Me.LayoutControlItem3.MinSize = New System.Drawing.Size(70, 27)
|
Me.LayoutControlItem3.MinSize = New System.Drawing.Size(70, 27)
|
||||||
@@ -261,34 +284,34 @@ Partial Class frmEnvelopeMainData
|
|||||||
'
|
'
|
||||||
'LayoutControlGroup1
|
'LayoutControlGroup1
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlGroup1, "LayoutControlGroup1")
|
||||||
Me.LayoutControlGroup1.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem1, Me.LayoutControlItem2})
|
Me.LayoutControlGroup1.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem1, Me.LayoutControlItem2})
|
||||||
Me.LayoutControlGroup1.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlGroup1.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlGroup1.Name = "LayoutControlGroup1"
|
Me.LayoutControlGroup1.Name = "LayoutControlGroup1"
|
||||||
Me.LayoutControlGroup1.Size = New System.Drawing.Size(571, 93)
|
Me.LayoutControlGroup1.Size = New System.Drawing.Size(571, 93)
|
||||||
resources.ApplyResources(Me.LayoutControlGroup1, "LayoutControlGroup1")
|
|
||||||
'
|
'
|
||||||
'LayoutControlItem1
|
'LayoutControlItem1
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlItem1, "LayoutControlItem1")
|
||||||
Me.LayoutControlItem1.Control = Me.txtTitle
|
Me.LayoutControlItem1.Control = Me.txtTitle
|
||||||
Me.LayoutControlItem1.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlItem1.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlItem1.Name = "LayoutControlItem1"
|
Me.LayoutControlItem1.Name = "LayoutControlItem1"
|
||||||
Me.LayoutControlItem1.Size = New System.Drawing.Size(547, 24)
|
Me.LayoutControlItem1.Size = New System.Drawing.Size(547, 24)
|
||||||
resources.ApplyResources(Me.LayoutControlItem1, "LayoutControlItem1")
|
Me.LayoutControlItem1.TextSize = New System.Drawing.Size(158, 13)
|
||||||
Me.LayoutControlItem1.TextSize = New System.Drawing.Size(168, 13)
|
|
||||||
'
|
'
|
||||||
'LayoutControlItem2
|
'LayoutControlItem2
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlItem2, "LayoutControlItem2")
|
||||||
Me.LayoutControlItem2.Control = Me.cmbEnvelopeType
|
Me.LayoutControlItem2.Control = Me.cmbEnvelopeType
|
||||||
Me.LayoutControlItem2.Location = New System.Drawing.Point(0, 24)
|
Me.LayoutControlItem2.Location = New System.Drawing.Point(0, 24)
|
||||||
Me.LayoutControlItem2.Name = "LayoutControlItem2"
|
Me.LayoutControlItem2.Name = "LayoutControlItem2"
|
||||||
Me.LayoutControlItem2.Size = New System.Drawing.Size(547, 24)
|
Me.LayoutControlItem2.Size = New System.Drawing.Size(547, 24)
|
||||||
resources.ApplyResources(Me.LayoutControlItem2, "LayoutControlItem2")
|
Me.LayoutControlItem2.TextSize = New System.Drawing.Size(158, 13)
|
||||||
Me.LayoutControlItem2.TextSize = New System.Drawing.Size(168, 13)
|
|
||||||
'
|
'
|
||||||
'LayoutControlItem4
|
'LayoutControlItem4
|
||||||
'
|
'
|
||||||
Me.LayoutControlItem4.Control = Me.btCancel
|
|
||||||
resources.ApplyResources(Me.LayoutControlItem4, "LayoutControlItem4")
|
resources.ApplyResources(Me.LayoutControlItem4, "LayoutControlItem4")
|
||||||
|
Me.LayoutControlItem4.Control = Me.btCancel
|
||||||
Me.LayoutControlItem4.Location = New System.Drawing.Point(80, 624)
|
Me.LayoutControlItem4.Location = New System.Drawing.Point(80, 624)
|
||||||
Me.LayoutControlItem4.MaxSize = New System.Drawing.Size(70, 27)
|
Me.LayoutControlItem4.MaxSize = New System.Drawing.Size(70, 27)
|
||||||
Me.LayoutControlItem4.MinSize = New System.Drawing.Size(70, 27)
|
Me.LayoutControlItem4.MinSize = New System.Drawing.Size(70, 27)
|
||||||
@@ -301,8 +324,8 @@ Partial Class frmEnvelopeMainData
|
|||||||
'
|
'
|
||||||
'emptySpaceItem1
|
'emptySpaceItem1
|
||||||
'
|
'
|
||||||
Me.emptySpaceItem1.AllowHotTrack = False
|
|
||||||
resources.ApplyResources(Me.emptySpaceItem1, "emptySpaceItem1")
|
resources.ApplyResources(Me.emptySpaceItem1, "emptySpaceItem1")
|
||||||
|
Me.emptySpaceItem1.AllowHotTrack = False
|
||||||
Me.emptySpaceItem1.Location = New System.Drawing.Point(0, 624)
|
Me.emptySpaceItem1.Location = New System.Drawing.Point(0, 624)
|
||||||
Me.emptySpaceItem1.MaxSize = New System.Drawing.Size(10, 27)
|
Me.emptySpaceItem1.MaxSize = New System.Drawing.Size(10, 27)
|
||||||
Me.emptySpaceItem1.MinSize = New System.Drawing.Size(10, 27)
|
Me.emptySpaceItem1.MinSize = New System.Drawing.Size(10, 27)
|
||||||
@@ -313,6 +336,7 @@ Partial Class frmEnvelopeMainData
|
|||||||
'
|
'
|
||||||
'groupAllOptions
|
'groupAllOptions
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.groupAllOptions, "groupAllOptions")
|
||||||
Me.groupAllOptions.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.[False]
|
Me.groupAllOptions.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.[False]
|
||||||
Me.groupAllOptions.ExpandButtonVisible = True
|
Me.groupAllOptions.ExpandButtonVisible = True
|
||||||
Me.groupAllOptions.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.EmptySpaceItem2, Me.groupFinalEmail, Me.groupExpiration, Me.groupReminders, Me.groupOptions})
|
Me.groupAllOptions.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.EmptySpaceItem2, Me.groupFinalEmail, Me.groupExpiration, Me.groupReminders, Me.groupOptions})
|
||||||
@@ -320,10 +344,10 @@ Partial Class frmEnvelopeMainData
|
|||||||
Me.groupAllOptions.Name = "groupAllOptions"
|
Me.groupAllOptions.Name = "groupAllOptions"
|
||||||
Me.groupAllOptions.Padding = New DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0)
|
Me.groupAllOptions.Padding = New DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0)
|
||||||
Me.groupAllOptions.Size = New System.Drawing.Size(571, 531)
|
Me.groupAllOptions.Size = New System.Drawing.Size(571, 531)
|
||||||
resources.ApplyResources(Me.groupAllOptions, "groupAllOptions")
|
|
||||||
'
|
'
|
||||||
'EmptySpaceItem2
|
'EmptySpaceItem2
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.EmptySpaceItem2, "EmptySpaceItem2")
|
||||||
Me.EmptySpaceItem2.AllowHotTrack = False
|
Me.EmptySpaceItem2.AllowHotTrack = False
|
||||||
Me.EmptySpaceItem2.Location = New System.Drawing.Point(0, 441)
|
Me.EmptySpaceItem2.Location = New System.Drawing.Point(0, 441)
|
||||||
Me.EmptySpaceItem2.Name = "EmptySpaceItem2"
|
Me.EmptySpaceItem2.Name = "EmptySpaceItem2"
|
||||||
@@ -332,71 +356,72 @@ Partial Class frmEnvelopeMainData
|
|||||||
'
|
'
|
||||||
'groupFinalEmail
|
'groupFinalEmail
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.groupFinalEmail, "groupFinalEmail")
|
||||||
Me.groupFinalEmail.GroupStyle = DevExpress.Utils.GroupStyle.Light
|
Me.groupFinalEmail.GroupStyle = DevExpress.Utils.GroupStyle.Light
|
||||||
Me.groupFinalEmail.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem9, Me.LayoutControlItem14})
|
Me.groupFinalEmail.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem9, Me.LayoutControlItem14})
|
||||||
Me.groupFinalEmail.Location = New System.Drawing.Point(0, 348)
|
Me.groupFinalEmail.Location = New System.Drawing.Point(0, 348)
|
||||||
Me.groupFinalEmail.Name = "groupFinalEmail"
|
Me.groupFinalEmail.Name = "groupFinalEmail"
|
||||||
Me.groupFinalEmail.Size = New System.Drawing.Size(565, 93)
|
Me.groupFinalEmail.Size = New System.Drawing.Size(565, 93)
|
||||||
resources.ApplyResources(Me.groupFinalEmail, "groupFinalEmail")
|
|
||||||
'
|
'
|
||||||
'LayoutControlItem9
|
'LayoutControlItem9
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlItem9, "LayoutControlItem9")
|
||||||
Me.LayoutControlItem9.Control = Me.cmbEmailToCreator
|
Me.LayoutControlItem9.Control = Me.cmbEmailToCreator
|
||||||
Me.LayoutControlItem9.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlItem9.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlItem9.Name = "LayoutControlItem9"
|
Me.LayoutControlItem9.Name = "LayoutControlItem9"
|
||||||
Me.LayoutControlItem9.Size = New System.Drawing.Size(541, 24)
|
Me.LayoutControlItem9.Size = New System.Drawing.Size(541, 24)
|
||||||
resources.ApplyResources(Me.LayoutControlItem9, "LayoutControlItem9")
|
Me.LayoutControlItem9.TextSize = New System.Drawing.Size(158, 13)
|
||||||
Me.LayoutControlItem9.TextSize = New System.Drawing.Size(168, 13)
|
|
||||||
'
|
'
|
||||||
'LayoutControlItem14
|
'LayoutControlItem14
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlItem14, "LayoutControlItem14")
|
||||||
Me.LayoutControlItem14.Control = Me.cmbEmailToReceivers
|
Me.LayoutControlItem14.Control = Me.cmbEmailToReceivers
|
||||||
Me.LayoutControlItem14.Location = New System.Drawing.Point(0, 24)
|
Me.LayoutControlItem14.Location = New System.Drawing.Point(0, 24)
|
||||||
Me.LayoutControlItem14.Name = "LayoutControlItem14"
|
Me.LayoutControlItem14.Name = "LayoutControlItem14"
|
||||||
Me.LayoutControlItem14.Size = New System.Drawing.Size(541, 24)
|
Me.LayoutControlItem14.Size = New System.Drawing.Size(541, 24)
|
||||||
resources.ApplyResources(Me.LayoutControlItem14, "LayoutControlItem14")
|
Me.LayoutControlItem14.TextSize = New System.Drawing.Size(158, 13)
|
||||||
Me.LayoutControlItem14.TextSize = New System.Drawing.Size(168, 13)
|
|
||||||
'
|
'
|
||||||
'groupExpiration
|
'groupExpiration
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.groupExpiration, "groupExpiration")
|
||||||
Me.groupExpiration.Enabled = False
|
Me.groupExpiration.Enabled = False
|
||||||
Me.groupExpiration.GroupStyle = DevExpress.Utils.GroupStyle.Light
|
Me.groupExpiration.GroupStyle = DevExpress.Utils.GroupStyle.Light
|
||||||
Me.groupExpiration.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem10, Me.LayoutControlItem11})
|
Me.groupExpiration.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem10, Me.LayoutControlItem11})
|
||||||
Me.groupExpiration.Location = New System.Drawing.Point(0, 255)
|
Me.groupExpiration.Location = New System.Drawing.Point(0, 255)
|
||||||
Me.groupExpiration.Name = "groupExpiration"
|
Me.groupExpiration.Name = "groupExpiration"
|
||||||
Me.groupExpiration.Size = New System.Drawing.Size(565, 93)
|
Me.groupExpiration.Size = New System.Drawing.Size(565, 93)
|
||||||
resources.ApplyResources(Me.groupExpiration, "groupExpiration")
|
|
||||||
'
|
'
|
||||||
'LayoutControlItem10
|
'LayoutControlItem10
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlItem10, "LayoutControlItem10")
|
||||||
Me.LayoutControlItem10.Control = Me.spnExpiresDays
|
Me.LayoutControlItem10.Control = Me.spnExpiresDays
|
||||||
Me.LayoutControlItem10.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlItem10.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlItem10.Name = "LayoutControlItem10"
|
Me.LayoutControlItem10.Name = "LayoutControlItem10"
|
||||||
Me.LayoutControlItem10.Size = New System.Drawing.Size(541, 24)
|
Me.LayoutControlItem10.Size = New System.Drawing.Size(541, 24)
|
||||||
resources.ApplyResources(Me.LayoutControlItem10, "LayoutControlItem10")
|
Me.LayoutControlItem10.TextSize = New System.Drawing.Size(158, 13)
|
||||||
Me.LayoutControlItem10.TextSize = New System.Drawing.Size(168, 13)
|
|
||||||
'
|
'
|
||||||
'LayoutControlItem11
|
'LayoutControlItem11
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlItem11, "LayoutControlItem11")
|
||||||
Me.LayoutControlItem11.Control = Me.spnExpiresWarningDays
|
Me.LayoutControlItem11.Control = Me.spnExpiresWarningDays
|
||||||
Me.LayoutControlItem11.Location = New System.Drawing.Point(0, 24)
|
Me.LayoutControlItem11.Location = New System.Drawing.Point(0, 24)
|
||||||
Me.LayoutControlItem11.Name = "LayoutControlItem11"
|
Me.LayoutControlItem11.Name = "LayoutControlItem11"
|
||||||
Me.LayoutControlItem11.Size = New System.Drawing.Size(541, 24)
|
Me.LayoutControlItem11.Size = New System.Drawing.Size(541, 24)
|
||||||
resources.ApplyResources(Me.LayoutControlItem11, "LayoutControlItem11")
|
Me.LayoutControlItem11.TextSize = New System.Drawing.Size(158, 13)
|
||||||
Me.LayoutControlItem11.TextSize = New System.Drawing.Size(168, 13)
|
|
||||||
'
|
'
|
||||||
'groupReminders
|
'groupReminders
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.groupReminders, "groupReminders")
|
||||||
Me.groupReminders.Enabled = False
|
Me.groupReminders.Enabled = False
|
||||||
Me.groupReminders.GroupStyle = DevExpress.Utils.GroupStyle.Light
|
Me.groupReminders.GroupStyle = DevExpress.Utils.GroupStyle.Light
|
||||||
Me.groupReminders.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem5, Me.LayoutControlItem6, Me.LayoutControlItem7})
|
Me.groupReminders.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem5, Me.LayoutControlItem6, Me.LayoutControlItem7})
|
||||||
Me.groupReminders.Location = New System.Drawing.Point(0, 140)
|
Me.groupReminders.Location = New System.Drawing.Point(0, 140)
|
||||||
Me.groupReminders.Name = "groupReminders"
|
Me.groupReminders.Name = "groupReminders"
|
||||||
Me.groupReminders.Size = New System.Drawing.Size(565, 115)
|
Me.groupReminders.Size = New System.Drawing.Size(565, 115)
|
||||||
resources.ApplyResources(Me.groupReminders, "groupReminders")
|
|
||||||
'
|
'
|
||||||
'LayoutControlItem5
|
'LayoutControlItem5
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlItem5, "LayoutControlItem5")
|
||||||
Me.LayoutControlItem5.Control = Me.chkSendReminderEmails
|
Me.LayoutControlItem5.Control = Me.chkSendReminderEmails
|
||||||
Me.LayoutControlItem5.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlItem5.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlItem5.Name = "LayoutControlItem5"
|
Me.LayoutControlItem5.Name = "LayoutControlItem5"
|
||||||
@@ -406,51 +431,52 @@ Partial Class frmEnvelopeMainData
|
|||||||
'
|
'
|
||||||
'LayoutControlItem6
|
'LayoutControlItem6
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlItem6, "LayoutControlItem6")
|
||||||
Me.LayoutControlItem6.Control = Me.spnFirstReminderDays
|
Me.LayoutControlItem6.Control = Me.spnFirstReminderDays
|
||||||
Me.LayoutControlItem6.Location = New System.Drawing.Point(0, 22)
|
Me.LayoutControlItem6.Location = New System.Drawing.Point(0, 22)
|
||||||
Me.LayoutControlItem6.Name = "LayoutControlItem6"
|
Me.LayoutControlItem6.Name = "LayoutControlItem6"
|
||||||
Me.LayoutControlItem6.Size = New System.Drawing.Size(541, 24)
|
Me.LayoutControlItem6.Size = New System.Drawing.Size(541, 24)
|
||||||
resources.ApplyResources(Me.LayoutControlItem6, "LayoutControlItem6")
|
Me.LayoutControlItem6.TextSize = New System.Drawing.Size(158, 13)
|
||||||
Me.LayoutControlItem6.TextSize = New System.Drawing.Size(168, 13)
|
|
||||||
'
|
'
|
||||||
'LayoutControlItem7
|
'LayoutControlItem7
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlItem7, "LayoutControlItem7")
|
||||||
Me.LayoutControlItem7.Control = Me.spnReminderIntervalDays
|
Me.LayoutControlItem7.Control = Me.spnReminderIntervalDays
|
||||||
Me.LayoutControlItem7.Location = New System.Drawing.Point(0, 46)
|
Me.LayoutControlItem7.Location = New System.Drawing.Point(0, 46)
|
||||||
Me.LayoutControlItem7.Name = "LayoutControlItem7"
|
Me.LayoutControlItem7.Name = "LayoutControlItem7"
|
||||||
Me.LayoutControlItem7.Size = New System.Drawing.Size(541, 24)
|
Me.LayoutControlItem7.Size = New System.Drawing.Size(541, 24)
|
||||||
resources.ApplyResources(Me.LayoutControlItem7, "LayoutControlItem7")
|
Me.LayoutControlItem7.TextSize = New System.Drawing.Size(158, 13)
|
||||||
Me.LayoutControlItem7.TextSize = New System.Drawing.Size(168, 13)
|
|
||||||
'
|
'
|
||||||
'groupOptions
|
'groupOptions
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.groupOptions, "groupOptions")
|
||||||
Me.groupOptions.GroupStyle = DevExpress.Utils.GroupStyle.Light
|
Me.groupOptions.GroupStyle = DevExpress.Utils.GroupStyle.Light
|
||||||
Me.groupOptions.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem8, Me.LayoutControlItem12, Me.LayoutControlItem13, Me.LayoutControlItem16})
|
Me.groupOptions.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem8, Me.LayoutControlItem12, Me.LayoutControlItem13, Me.LayoutControlItem16})
|
||||||
Me.groupOptions.Location = New System.Drawing.Point(0, 0)
|
Me.groupOptions.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.groupOptions.Name = "groupOptions"
|
Me.groupOptions.Name = "groupOptions"
|
||||||
Me.groupOptions.Size = New System.Drawing.Size(565, 140)
|
Me.groupOptions.Size = New System.Drawing.Size(565, 140)
|
||||||
resources.ApplyResources(Me.groupOptions, "groupOptions")
|
|
||||||
'
|
'
|
||||||
'LayoutControlItem8
|
'LayoutControlItem8
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlItem8, "LayoutControlItem8")
|
||||||
Me.LayoutControlItem8.Control = Me.cmbCertificationType
|
Me.LayoutControlItem8.Control = Me.cmbCertificationType
|
||||||
Me.LayoutControlItem8.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlItem8.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlItem8.Name = "LayoutControlItem8"
|
Me.LayoutControlItem8.Name = "LayoutControlItem8"
|
||||||
Me.LayoutControlItem8.Size = New System.Drawing.Size(541, 24)
|
Me.LayoutControlItem8.Size = New System.Drawing.Size(541, 24)
|
||||||
resources.ApplyResources(Me.LayoutControlItem8, "LayoutControlItem8")
|
Me.LayoutControlItem8.TextSize = New System.Drawing.Size(158, 13)
|
||||||
Me.LayoutControlItem8.TextSize = New System.Drawing.Size(168, 13)
|
|
||||||
'
|
'
|
||||||
'LayoutControlItem12
|
'LayoutControlItem12
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlItem12, "LayoutControlItem12")
|
||||||
Me.LayoutControlItem12.Control = Me.cmbLanguage
|
Me.LayoutControlItem12.Control = Me.cmbLanguage
|
||||||
Me.LayoutControlItem12.Location = New System.Drawing.Point(0, 24)
|
Me.LayoutControlItem12.Location = New System.Drawing.Point(0, 24)
|
||||||
Me.LayoutControlItem12.Name = "LayoutControlItem12"
|
Me.LayoutControlItem12.Name = "LayoutControlItem12"
|
||||||
Me.LayoutControlItem12.Size = New System.Drawing.Size(541, 24)
|
Me.LayoutControlItem12.Size = New System.Drawing.Size(541, 24)
|
||||||
resources.ApplyResources(Me.LayoutControlItem12, "LayoutControlItem12")
|
Me.LayoutControlItem12.TextSize = New System.Drawing.Size(158, 13)
|
||||||
Me.LayoutControlItem12.TextSize = New System.Drawing.Size(168, 13)
|
|
||||||
'
|
'
|
||||||
'LayoutControlItem13
|
'LayoutControlItem13
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlItem13, "LayoutControlItem13")
|
||||||
Me.LayoutControlItem13.Control = Me.chkUseAccessCode
|
Me.LayoutControlItem13.Control = Me.chkUseAccessCode
|
||||||
Me.LayoutControlItem13.Location = New System.Drawing.Point(0, 73)
|
Me.LayoutControlItem13.Location = New System.Drawing.Point(0, 73)
|
||||||
Me.LayoutControlItem13.Name = "LayoutControlItem13"
|
Me.LayoutControlItem13.Name = "LayoutControlItem13"
|
||||||
@@ -460,6 +486,7 @@ Partial Class frmEnvelopeMainData
|
|||||||
'
|
'
|
||||||
'LayoutControlItem16
|
'LayoutControlItem16
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.LayoutControlItem16, "LayoutControlItem16")
|
||||||
Me.LayoutControlItem16.Control = Me.chked_2Faktor
|
Me.LayoutControlItem16.Control = Me.chked_2Faktor
|
||||||
Me.LayoutControlItem16.Location = New System.Drawing.Point(0, 48)
|
Me.LayoutControlItem16.Location = New System.Drawing.Point(0, 48)
|
||||||
Me.LayoutControlItem16.Name = "LayoutControlItem16"
|
Me.LayoutControlItem16.Name = "LayoutControlItem16"
|
||||||
@@ -470,11 +497,15 @@ Partial Class frmEnvelopeMainData
|
|||||||
'AdornerUIManager1
|
'AdornerUIManager1
|
||||||
'
|
'
|
||||||
Me.AdornerUIManager1.Owner = Me
|
Me.AdornerUIManager1.Owner = Me
|
||||||
|
Me.AdornerUIManager1.ValidationHintProperties.IndeterminateState.Text = resources.GetString("AdornerUIManager1.ValidationHintProperties.IndeterminateState.Text")
|
||||||
|
Me.AdornerUIManager1.ValidationHintProperties.InvalidState.Text = resources.GetString("AdornerUIManager1.ValidationHintProperties.InvalidState.Text")
|
||||||
|
Me.AdornerUIManager1.ValidationHintProperties.ValidState.Text = resources.GetString("AdornerUIManager1.ValidationHintProperties.ValidState.Text")
|
||||||
'
|
'
|
||||||
'frmEnvelopeMainData
|
'frmEnvelopeMainData
|
||||||
'
|
'
|
||||||
Me.AcceptButton = Me.btOK
|
Me.AcceptButton = Me.btOK
|
||||||
resources.ApplyResources(Me, "$this")
|
resources.ApplyResources(Me, "$this")
|
||||||
|
Me.Appearance.Options.UseFont = True
|
||||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
Me.CancelButton = Me.btCancel
|
Me.CancelButton = Me.btCancel
|
||||||
Me.Controls.Add(Me.LayoutControl1)
|
Me.Controls.Add(Me.LayoutControl1)
|
||||||
|
|||||||
@@ -117,128 +117,131 @@
|
|||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
<data name="groupOptions.Text" xml:space="preserve">
|
||||||
<data name="txtTitle.Location" type="System.Drawing.Point, System.Drawing">
|
<value>General</value>
|
||||||
<value>223, 45</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="txtTitle.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="chked_2Faktor.Properties.Caption" xml:space="preserve">
|
||||||
<value>344, 20</value>
|
<value>Activate 2 Factor authentication</value>
|
||||||
</data>
|
|
||||||
<data name="cmbEnvelopeType.Location" type="System.Drawing.Point, System.Drawing">
|
|
||||||
<value>223, 69</value>
|
|
||||||
</data>
|
|
||||||
<data name="cmbEnvelopeType.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>344, 20</value>
|
|
||||||
</data>
|
|
||||||
<data name="btCancel.Text" xml:space="preserve">
|
|
||||||
<value>Cancel</value>
|
|
||||||
</data>
|
|
||||||
<data name="cmbCertificationType.Location" type="System.Drawing.Point, System.Drawing">
|
|
||||||
<value>226, 162</value>
|
|
||||||
</data>
|
|
||||||
<data name="cmbCertificationType.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>338, 20</value>
|
|
||||||
</data>
|
|
||||||
<data name="chkSendReminderEmails.Properties.Caption" xml:space="preserve">
|
|
||||||
<value>Send Reminders</value>
|
|
||||||
</data>
|
|
||||||
<data name="spnFirstReminderDays.Location" type="System.Drawing.Point, System.Drawing">
|
|
||||||
<value>226, 299</value>
|
|
||||||
</data>
|
|
||||||
<data name="spnFirstReminderDays.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>338, 20</value>
|
|
||||||
</data>
|
|
||||||
<data name="spnReminderIntervalDays.Location" type="System.Drawing.Point, System.Drawing">
|
|
||||||
<value>226, 323</value>
|
|
||||||
</data>
|
|
||||||
<data name="spnReminderIntervalDays.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>338, 20</value>
|
|
||||||
</data>
|
|
||||||
<data name="spnExpiresDays.Location" type="System.Drawing.Point, System.Drawing">
|
|
||||||
<value>226, 392</value>
|
|
||||||
</data>
|
|
||||||
<data name="spnExpiresDays.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>338, 20</value>
|
|
||||||
</data>
|
|
||||||
<data name="spnExpiresWarningDays.Location" type="System.Drawing.Point, System.Drawing">
|
|
||||||
<value>226, 416</value>
|
|
||||||
</data>
|
|
||||||
<data name="spnExpiresWarningDays.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>338, 20</value>
|
|
||||||
</data>
|
|
||||||
<data name="cmbLanguage.Location" type="System.Drawing.Point, System.Drawing">
|
|
||||||
<value>226, 186</value>
|
|
||||||
</data>
|
|
||||||
<data name="cmbLanguage.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>338, 20</value>
|
|
||||||
</data>
|
|
||||||
<data name="chkUseAccessCode.Properties.Caption" xml:space="preserve">
|
|
||||||
<value>Use Access Code</value>
|
|
||||||
</data>
|
|
||||||
<data name="cmbEmailToCreator.Location" type="System.Drawing.Point, System.Drawing">
|
|
||||||
<value>226, 485</value>
|
|
||||||
</data>
|
|
||||||
<data name="cmbEmailToCreator.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>338, 20</value>
|
|
||||||
</data>
|
|
||||||
<data name="cmbEmailToReceivers.Location" type="System.Drawing.Point, System.Drawing">
|
|
||||||
<value>226, 509</value>
|
|
||||||
</data>
|
|
||||||
<data name="cmbEmailToReceivers.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>338, 20</value>
|
|
||||||
</data>
|
|
||||||
<data name="LayoutControlGroup1.CustomizationFormText" xml:space="preserve">
|
|
||||||
<value>Basis Informationen</value>
|
|
||||||
</data>
|
|
||||||
<data name="LayoutControlItem1.Text" xml:space="preserve">
|
|
||||||
<value>Title</value>
|
|
||||||
</data>
|
|
||||||
<data name="LayoutControlItem2.Text" xml:space="preserve">
|
|
||||||
<value>Contract Type</value>
|
|
||||||
</data>
|
|
||||||
<data name="LayoutControlGroup1.Text" xml:space="preserve">
|
|
||||||
<value>Basic Information</value>
|
|
||||||
</data>
|
|
||||||
<data name="LayoutControlItem9.Text" xml:space="preserve">
|
|
||||||
<value>To Creator</value>
|
|
||||||
</data>
|
|
||||||
<data name="LayoutControlItem14.Text" xml:space="preserve">
|
|
||||||
<value>To Receiver</value>
|
|
||||||
</data>
|
|
||||||
<data name="groupFinalEmail.Text" xml:space="preserve">
|
|
||||||
<value>Closing Email</value>
|
|
||||||
</data>
|
|
||||||
<data name="LayoutControlItem10.Text" xml:space="preserve">
|
|
||||||
<value>Expiration (in Days)</value>
|
|
||||||
</data>
|
|
||||||
<data name="LayoutControlItem11.Text" xml:space="preserve">
|
|
||||||
<value>Reminder before Expiration (in Days)</value>
|
|
||||||
</data>
|
|
||||||
<data name="groupExpiration.Text" xml:space="preserve">
|
|
||||||
<value>Expiration</value>
|
|
||||||
</data>
|
|
||||||
<data name="LayoutControlItem6.Text" xml:space="preserve">
|
|
||||||
<value>First Reminder (in Days)</value>
|
|
||||||
</data>
|
|
||||||
<data name="LayoutControlItem7.Text" xml:space="preserve">
|
|
||||||
<value>Reminder interval (in Days)</value>
|
|
||||||
</data>
|
|
||||||
<data name="groupReminders.Text" xml:space="preserve">
|
|
||||||
<value>Reminders</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="LayoutControlItem8.Text" xml:space="preserve">
|
<data name="LayoutControlItem8.Text" xml:space="preserve">
|
||||||
<value>Certification type</value>
|
<value>Certification type</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LayoutControlItem12.Text" xml:space="preserve">
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
<value>Language</value>
|
<data name="spnReminderIntervalDays.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>207, 348</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="groupOptions.Text" xml:space="preserve">
|
<data name="LayoutControlItem11.Text" xml:space="preserve">
|
||||||
<value>General</value>
|
<value>Reminder before expiration (in days)</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbCertificationType.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>207, 162</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem10.Text" xml:space="preserve">
|
||||||
|
<value>Expiration (in days)</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbEmailToReceivers.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>207, 534</value>
|
||||||
|
</data>
|
||||||
|
<data name="spnExpiresWarningDays.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>357, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlGroup1.Text" xml:space="preserve">
|
||||||
|
<value>Basic Information</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem1.Text" xml:space="preserve">
|
||||||
|
<value>Title</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbLanguage.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>357, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem9.Text" xml:space="preserve">
|
||||||
|
<value>To creator</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem14.Text" xml:space="preserve">
|
||||||
|
<value>To receiver</value>
|
||||||
|
</data>
|
||||||
|
<data name="chkSendReminderEmails.Properties.Caption" xml:space="preserve">
|
||||||
|
<value>Send reminders</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbEnvelopeType.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>204, 69</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtTitle.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>204, 45</value>
|
||||||
|
</data>
|
||||||
|
<data name="chkUseAccessCode.Properties.Caption" xml:space="preserve">
|
||||||
|
<value>Use access code</value>
|
||||||
|
</data>
|
||||||
|
<data name="$this.Text" xml:space="preserve">
|
||||||
|
<value>New envelope</value>
|
||||||
|
</data>
|
||||||
|
<data name="groupReminders.Text" xml:space="preserve">
|
||||||
|
<value>Reminders</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbEmailToCreator.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>207, 510</value>
|
||||||
|
</data>
|
||||||
|
<data name="spnExpiresWarningDays.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>207, 441</value>
|
||||||
|
</data>
|
||||||
|
<data name="spnExpiresDays.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>357, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="spnExpiresDays.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>207, 417</value>
|
||||||
|
</data>
|
||||||
|
<data name="btCancel.Text" xml:space="preserve">
|
||||||
|
<value>Cancel</value>
|
||||||
|
</data>
|
||||||
|
<data name="groupExpiration.Text" xml:space="preserve">
|
||||||
|
<value>Expiration</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbLanguage.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>207, 186</value>
|
||||||
|
</data>
|
||||||
|
<data name="spnFirstReminderDays.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>357, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtTitle.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>363, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbEmailToReceivers.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>357, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="spnReminderIntervalDays.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>357, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbEnvelopeType.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>363, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem2.Text" xml:space="preserve">
|
||||||
|
<value>Contract type</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem7.Text" xml:space="preserve">
|
||||||
|
<value>Reminder interval (in days)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="groupAllOptions.Text" xml:space="preserve">
|
<data name="groupAllOptions.Text" xml:space="preserve">
|
||||||
<value>Options</value>
|
<value>Options</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="$this.Text" xml:space="preserve">
|
<data name="groupFinalEmail.Text" xml:space="preserve">
|
||||||
<value>New Envelope</value>
|
<value>Closing E-mail</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbEmailToCreator.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>357, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="spnFirstReminderDays.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>207, 324</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbCertificationType.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>357, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem6.Text" xml:space="preserve">
|
||||||
|
<value>First reminder (in days)</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem12.Text" xml:space="preserve">
|
||||||
|
<value>Language</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlGroup1.CustomizationFormText" xml:space="preserve">
|
||||||
|
<value>Basic Information</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
244
EnvelopeGenerator.Form/frmEnvelopeMainData.fr.resx
Normal file
244
EnvelopeGenerator.Form/frmEnvelopeMainData.fr.resx
Normal file
@@ -0,0 +1,244 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="chked_2Faktor.Properties.Caption" xml:space="preserve">
|
||||||
|
<value>Activer l'authentification à deux facteurs</value>
|
||||||
|
</data>
|
||||||
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
|
<data name="txtTitle.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>194, 45</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtTitle.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>373, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbEnvelopeType.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>194, 69</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbEnvelopeType.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>373, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="btCancel.Text" xml:space="preserve">
|
||||||
|
<value>Interrompre</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbCertificationType.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>197, 162</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbCertificationType.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>367, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="chkSendReminderEmails.Properties.Caption" xml:space="preserve">
|
||||||
|
<value>Envoyer des rappels</value>
|
||||||
|
</data>
|
||||||
|
<data name="spnFirstReminderDays.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>197, 324</value>
|
||||||
|
</data>
|
||||||
|
<data name="spnFirstReminderDays.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>367, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="spnReminderIntervalDays.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>197, 348</value>
|
||||||
|
</data>
|
||||||
|
<data name="spnReminderIntervalDays.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>367, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="spnExpiresDays.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>197, 417</value>
|
||||||
|
</data>
|
||||||
|
<data name="spnExpiresDays.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>367, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="spnExpiresWarningDays.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>197, 441</value>
|
||||||
|
</data>
|
||||||
|
<data name="spnExpiresWarningDays.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>367, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbLanguage.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>197, 186</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbLanguage.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>367, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="chkUseAccessCode.Properties.Caption" xml:space="preserve">
|
||||||
|
<value>Utiliser le code d'accès</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbEmailToCreator.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>197, 510</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbEmailToCreator.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>367, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbEmailToReceivers.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>197, 534</value>
|
||||||
|
</data>
|
||||||
|
<data name="cmbEmailToReceivers.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>367, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem1.Text" xml:space="preserve">
|
||||||
|
<value>Titre</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem2.Text" xml:space="preserve">
|
||||||
|
<value>Type de contrat</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlGroup1.Text" xml:space="preserve">
|
||||||
|
<value>Informations de base</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem9.Text" xml:space="preserve">
|
||||||
|
<value>Au créateur</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem14.Text" xml:space="preserve">
|
||||||
|
<value>Au destinataire</value>
|
||||||
|
</data>
|
||||||
|
<data name="groupFinalEmail.Text" xml:space="preserve">
|
||||||
|
<value>E-mail de finalisation</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem10.Text" xml:space="preserve">
|
||||||
|
<value>Expiration (en jours)</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem11.Text" xml:space="preserve">
|
||||||
|
<value>Rappel avant expiration (en jours)</value>
|
||||||
|
</data>
|
||||||
|
<data name="groupExpiration.Text" xml:space="preserve">
|
||||||
|
<value>Expiration</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem6.Text" xml:space="preserve">
|
||||||
|
<value>Premier rappel (en jours)</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem7.Text" xml:space="preserve">
|
||||||
|
<value>Intervalle de rappel (en jours)</value>
|
||||||
|
</data>
|
||||||
|
<data name="groupReminders.Text" xml:space="preserve">
|
||||||
|
<value>Rappels</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem8.Text" xml:space="preserve">
|
||||||
|
<value>Type de certification</value>
|
||||||
|
</data>
|
||||||
|
<data name="LayoutControlItem12.Text" xml:space="preserve">
|
||||||
|
<value>Langue</value>
|
||||||
|
</data>
|
||||||
|
<data name="groupOptions.Text" xml:space="preserve">
|
||||||
|
<value>Général</value>
|
||||||
|
</data>
|
||||||
|
<data name="groupAllOptions.Text" xml:space="preserve">
|
||||||
|
<value>Options</value>
|
||||||
|
</data>
|
||||||
|
<data name="$this.Text" xml:space="preserve">
|
||||||
|
<value>Nouvelle enveloppe</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -35,7 +35,7 @@ Public Class frmEnvelopeMainData
|
|||||||
Dim oTypes = EnvelopeTypeModel.List()
|
Dim oTypes = EnvelopeTypeModel.List()
|
||||||
|
|
||||||
If oTypes.Count = 0 Then
|
If oTypes.Count = 0 Then
|
||||||
MsgBox("No templates in Database!", MsgBoxStyle.Exclamation, Text)
|
MsgBox(Resources.Envelope.No_template, MsgBoxStyle.Exclamation, Text)
|
||||||
Close()
|
Close()
|
||||||
Exit Sub
|
Exit Sub
|
||||||
End If
|
End If
|
||||||
@@ -59,7 +59,7 @@ Public Class frmEnvelopeMainData
|
|||||||
cmbLanguage.Properties.Items.AddRange(New List(Of String) From {"de", "en"})
|
cmbLanguage.Properties.Items.AddRange(New List(Of String) From {"de", "en"})
|
||||||
|
|
||||||
groupAllOptions.Expanded = False
|
groupAllOptions.Expanded = False
|
||||||
Dim EnvelopeType = oTypes.FirstOrDefault()
|
EnvelopeType = oTypes.FirstOrDefault()
|
||||||
If NewEnvelopeMode = True Then
|
If NewEnvelopeMode = True Then
|
||||||
|
|
||||||
|
|
||||||
@@ -91,7 +91,7 @@ Public Class frmEnvelopeMainData
|
|||||||
cmbEmailToReceivers.SelectedIndex = Convert.ToInt32(Envelope.FinalEmailToReceivers)
|
cmbEmailToReceivers.SelectedIndex = Convert.ToInt32(Envelope.FinalEmailToReceivers)
|
||||||
End If
|
End If
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox(ex.Message, MsgBoxStyle.Critical, "Unexpected Error loading form:")
|
MsgBox(ex.Message, MsgBoxStyle.Critical, Resources.Envelope.Unexpected_Error)
|
||||||
End Try
|
End Try
|
||||||
|
|
||||||
|
|
||||||
@@ -139,8 +139,8 @@ Public Class frmEnvelopeMainData
|
|||||||
Envelope.FinalEmailToCreator = cmbEmailToCreator.SelectedIndex
|
Envelope.FinalEmailToCreator = cmbEmailToCreator.SelectedIndex
|
||||||
Envelope.FinalEmailToReceivers = cmbEmailToReceivers.SelectedIndex
|
Envelope.FinalEmailToReceivers = cmbEmailToReceivers.SelectedIndex
|
||||||
Envelope.TFA_Enabled = chked_2Faktor.EditValue
|
Envelope.TFA_Enabled = chked_2Faktor.EditValue
|
||||||
' ContractType kann zzt nicht über die Oberfläche gesetzt werden
|
' ContractType kann zzt nicht über die Oberfläche gesetzt werden - jetzt sollte es gehen.
|
||||||
Envelope.ContractType = ContractType.Contract
|
Envelope.EnvelopeType = EnvelopeType
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub frmEnvelopeMainData_Shown(sender As Object, e As EventArgs) Handles Me.Shown
|
Private Sub frmEnvelopeMainData_Shown(sender As Object, e As EventArgs) Handles Me.Shown
|
||||||
|
|||||||
26
EnvelopeGenerator.Form/frmFieldEditor.Designer.vb
generated
26
EnvelopeGenerator.Form/frmFieldEditor.Designer.vb
generated
@@ -66,23 +66,24 @@
|
|||||||
'
|
'
|
||||||
'SplitContainerControl1
|
'SplitContainerControl1
|
||||||
'
|
'
|
||||||
Me.SplitContainerControl1.CollapsePanel = DevExpress.XtraEditors.SplitCollapsePanel.Panel1
|
|
||||||
resources.ApplyResources(Me.SplitContainerControl1, "SplitContainerControl1")
|
resources.ApplyResources(Me.SplitContainerControl1, "SplitContainerControl1")
|
||||||
|
Me.SplitContainerControl1.CollapsePanel = DevExpress.XtraEditors.SplitCollapsePanel.Panel1
|
||||||
Me.SplitContainerControl1.Name = "SplitContainerControl1"
|
Me.SplitContainerControl1.Name = "SplitContainerControl1"
|
||||||
'
|
'
|
||||||
'SplitContainerControl1.Panel1
|
'SplitContainerControl1.Panel1
|
||||||
'
|
'
|
||||||
Me.SplitContainerControl1.Panel1.Controls.Add(Me.ThumbnailEx2)
|
|
||||||
resources.ApplyResources(Me.SplitContainerControl1.Panel1, "SplitContainerControl1.Panel1")
|
resources.ApplyResources(Me.SplitContainerControl1.Panel1, "SplitContainerControl1.Panel1")
|
||||||
|
Me.SplitContainerControl1.Panel1.Controls.Add(Me.ThumbnailEx2)
|
||||||
'
|
'
|
||||||
'SplitContainerControl1.Panel2
|
'SplitContainerControl1.Panel2
|
||||||
'
|
'
|
||||||
Me.SplitContainerControl1.Panel2.Controls.Add(Me.DocumentViewer1)
|
|
||||||
resources.ApplyResources(Me.SplitContainerControl1.Panel2, "SplitContainerControl1.Panel2")
|
resources.ApplyResources(Me.SplitContainerControl1.Panel2, "SplitContainerControl1.Panel2")
|
||||||
|
Me.SplitContainerControl1.Panel2.Controls.Add(Me.DocumentViewer1)
|
||||||
Me.SplitContainerControl1.SplitterPosition = 199
|
Me.SplitContainerControl1.SplitterPosition = 199
|
||||||
'
|
'
|
||||||
'ThumbnailEx2
|
'ThumbnailEx2
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.ThumbnailEx2, "ThumbnailEx2")
|
||||||
Me.ThumbnailEx2.AllowDropFiles = False
|
Me.ThumbnailEx2.AllowDropFiles = False
|
||||||
Me.ThumbnailEx2.AllowMoveItems = False
|
Me.ThumbnailEx2.AllowMoveItems = False
|
||||||
Me.ThumbnailEx2.BackColor = System.Drawing.SystemColors.Control
|
Me.ThumbnailEx2.BackColor = System.Drawing.SystemColors.Control
|
||||||
@@ -92,7 +93,6 @@
|
|||||||
Me.ThumbnailEx2.DefaultItemCheckState = False
|
Me.ThumbnailEx2.DefaultItemCheckState = False
|
||||||
Me.ThumbnailEx2.DefaultItemTextPrefix = ""
|
Me.ThumbnailEx2.DefaultItemTextPrefix = ""
|
||||||
Me.ThumbnailEx2.DisplayAnnotations = True
|
Me.ThumbnailEx2.DisplayAnnotations = True
|
||||||
resources.ApplyResources(Me.ThumbnailEx2, "ThumbnailEx2")
|
|
||||||
Me.ThumbnailEx2.EnableDropShadow = True
|
Me.ThumbnailEx2.EnableDropShadow = True
|
||||||
Me.ThumbnailEx2.HorizontalTextAlignment = GdPicture14.TextAlignment.TextAlignmentCenter
|
Me.ThumbnailEx2.HorizontalTextAlignment = GdPicture14.TextAlignment.TextAlignmentCenter
|
||||||
Me.ThumbnailEx2.HotTracking = False
|
Me.ThumbnailEx2.HotTracking = False
|
||||||
@@ -125,11 +125,13 @@
|
|||||||
'
|
'
|
||||||
'ribbonControl1
|
'ribbonControl1
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.ribbonControl1, "ribbonControl1")
|
||||||
Me.ribbonControl1.ExpandCollapseItem.Id = 0
|
Me.ribbonControl1.ExpandCollapseItem.Id = 0
|
||||||
Me.ribbonControl1.ExpandCollapseItem.ImageOptions.ImageIndex = CType(resources.GetObject("ribbonControl1.ExpandCollapseItem.ImageOptions.ImageIndex"), Integer)
|
Me.ribbonControl1.ExpandCollapseItem.ImageOptions.ImageIndex = CType(resources.GetObject("ribbonControl1.ExpandCollapseItem.ImageOptions.ImageIndex"), Integer)
|
||||||
Me.ribbonControl1.ExpandCollapseItem.ImageOptions.LargeImageIndex = CType(resources.GetObject("ribbonControl1.ExpandCollapseItem.ImageOptions.LargeImageIndex"), Integer)
|
Me.ribbonControl1.ExpandCollapseItem.ImageOptions.LargeImageIndex = CType(resources.GetObject("ribbonControl1.ExpandCollapseItem.ImageOptions.LargeImageIndex"), Integer)
|
||||||
|
Me.ribbonControl1.ExpandCollapseItem.ImageOptions.SvgImage = CType(resources.GetObject("ribbonControl1.ExpandCollapseItem.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
|
Me.ribbonControl1.ExpandCollapseItem.SearchTags = resources.GetString("ribbonControl1.ExpandCollapseItem.SearchTags")
|
||||||
Me.ribbonControl1.Items.AddRange(New DevExpress.XtraBars.BarItem() {Me.ribbonControl1.ExpandCollapseItem, Me.ribbonControl1.SearchEditItem, Me.BarButtonItem1, Me.btnSave, Me.btnDelete, Me.BarListItem1, Me.BarButtonItem2, Me.txtReceiver})
|
Me.ribbonControl1.Items.AddRange(New DevExpress.XtraBars.BarItem() {Me.ribbonControl1.ExpandCollapseItem, Me.ribbonControl1.SearchEditItem, Me.BarButtonItem1, Me.btnSave, Me.btnDelete, Me.BarListItem1, Me.BarButtonItem2, Me.txtReceiver})
|
||||||
resources.ApplyResources(Me.ribbonControl1, "ribbonControl1")
|
|
||||||
Me.ribbonControl1.MaxItemId = 16
|
Me.ribbonControl1.MaxItemId = 16
|
||||||
Me.ribbonControl1.Name = "ribbonControl1"
|
Me.ribbonControl1.Name = "ribbonControl1"
|
||||||
Me.ribbonControl1.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.ribbonPage1})
|
Me.ribbonControl1.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.ribbonPage1})
|
||||||
@@ -172,12 +174,13 @@
|
|||||||
Me.BarListItem1.Id = 9
|
Me.BarListItem1.Id = 9
|
||||||
Me.BarListItem1.ImageOptions.ImageIndex = CType(resources.GetObject("BarListItem1.ImageOptions.ImageIndex"), Integer)
|
Me.BarListItem1.ImageOptions.ImageIndex = CType(resources.GetObject("BarListItem1.ImageOptions.ImageIndex"), Integer)
|
||||||
Me.BarListItem1.ImageOptions.LargeImageIndex = CType(resources.GetObject("BarListItem1.ImageOptions.LargeImageIndex"), Integer)
|
Me.BarListItem1.ImageOptions.LargeImageIndex = CType(resources.GetObject("BarListItem1.ImageOptions.LargeImageIndex"), Integer)
|
||||||
|
Me.BarListItem1.ImageOptions.SvgImage = CType(resources.GetObject("BarListItem1.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.BarListItem1.Name = "BarListItem1"
|
Me.BarListItem1.Name = "BarListItem1"
|
||||||
'
|
'
|
||||||
'BarButtonItem2
|
'BarButtonItem2
|
||||||
'
|
'
|
||||||
Me.BarButtonItem2.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown
|
|
||||||
resources.ApplyResources(Me.BarButtonItem2, "BarButtonItem2")
|
resources.ApplyResources(Me.BarButtonItem2, "BarButtonItem2")
|
||||||
|
Me.BarButtonItem2.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown
|
||||||
Me.BarButtonItem2.DropDownControl = Me.PopupMenu1
|
Me.BarButtonItem2.DropDownControl = Me.PopupMenu1
|
||||||
Me.BarButtonItem2.Id = 11
|
Me.BarButtonItem2.Id = 11
|
||||||
Me.BarButtonItem2.ImageOptions.ImageIndex = CType(resources.GetObject("BarButtonItem2.ImageOptions.ImageIndex"), Integer)
|
Me.BarButtonItem2.ImageOptions.ImageIndex = CType(resources.GetObject("BarButtonItem2.ImageOptions.ImageIndex"), Integer)
|
||||||
@@ -197,6 +200,7 @@
|
|||||||
Me.txtReceiver.Id = 13
|
Me.txtReceiver.Id = 13
|
||||||
Me.txtReceiver.ImageOptions.ImageIndex = CType(resources.GetObject("txtReceiver.ImageOptions.ImageIndex"), Integer)
|
Me.txtReceiver.ImageOptions.ImageIndex = CType(resources.GetObject("txtReceiver.ImageOptions.ImageIndex"), Integer)
|
||||||
Me.txtReceiver.ImageOptions.LargeImageIndex = CType(resources.GetObject("txtReceiver.ImageOptions.LargeImageIndex"), Integer)
|
Me.txtReceiver.ImageOptions.LargeImageIndex = CType(resources.GetObject("txtReceiver.ImageOptions.LargeImageIndex"), Integer)
|
||||||
|
Me.txtReceiver.ImageOptions.SvgImage = CType(resources.GetObject("txtReceiver.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.txtReceiver.Name = "txtReceiver"
|
Me.txtReceiver.Name = "txtReceiver"
|
||||||
Me.txtReceiver.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph
|
Me.txtReceiver.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph
|
||||||
'
|
'
|
||||||
@@ -253,26 +257,26 @@
|
|||||||
'
|
'
|
||||||
'barDockControlTop
|
'barDockControlTop
|
||||||
'
|
'
|
||||||
Me.barDockControlTop.CausesValidation = False
|
|
||||||
resources.ApplyResources(Me.barDockControlTop, "barDockControlTop")
|
resources.ApplyResources(Me.barDockControlTop, "barDockControlTop")
|
||||||
|
Me.barDockControlTop.CausesValidation = False
|
||||||
Me.barDockControlTop.Manager = Me.BarManager1
|
Me.barDockControlTop.Manager = Me.BarManager1
|
||||||
'
|
'
|
||||||
'barDockControlBottom
|
'barDockControlBottom
|
||||||
'
|
'
|
||||||
Me.barDockControlBottom.CausesValidation = False
|
|
||||||
resources.ApplyResources(Me.barDockControlBottom, "barDockControlBottom")
|
resources.ApplyResources(Me.barDockControlBottom, "barDockControlBottom")
|
||||||
|
Me.barDockControlBottom.CausesValidation = False
|
||||||
Me.barDockControlBottom.Manager = Me.BarManager1
|
Me.barDockControlBottom.Manager = Me.BarManager1
|
||||||
'
|
'
|
||||||
'barDockControlLeft
|
'barDockControlLeft
|
||||||
'
|
'
|
||||||
Me.barDockControlLeft.CausesValidation = False
|
|
||||||
resources.ApplyResources(Me.barDockControlLeft, "barDockControlLeft")
|
resources.ApplyResources(Me.barDockControlLeft, "barDockControlLeft")
|
||||||
|
Me.barDockControlLeft.CausesValidation = False
|
||||||
Me.barDockControlLeft.Manager = Me.BarManager1
|
Me.barDockControlLeft.Manager = Me.BarManager1
|
||||||
'
|
'
|
||||||
'barDockControlRight
|
'barDockControlRight
|
||||||
'
|
'
|
||||||
Me.barDockControlRight.CausesValidation = False
|
|
||||||
resources.ApplyResources(Me.barDockControlRight, "barDockControlRight")
|
resources.ApplyResources(Me.barDockControlRight, "barDockControlRight")
|
||||||
|
Me.barDockControlRight.CausesValidation = False
|
||||||
Me.barDockControlRight.Manager = Me.BarManager1
|
Me.barDockControlRight.Manager = Me.BarManager1
|
||||||
'
|
'
|
||||||
'SvgImageCollection1
|
'SvgImageCollection1
|
||||||
@@ -282,8 +286,8 @@
|
|||||||
'
|
'
|
||||||
'frmFieldEditor
|
'frmFieldEditor
|
||||||
'
|
'
|
||||||
Me.Appearance.Options.UseFont = True
|
|
||||||
resources.ApplyResources(Me, "$this")
|
resources.ApplyResources(Me, "$this")
|
||||||
|
Me.Appearance.Options.UseFont = True
|
||||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
Me.Controls.Add(Me.SplitContainerControl1)
|
Me.Controls.Add(Me.SplitContainerControl1)
|
||||||
Me.Controls.Add(Me.ribbonControl1)
|
Me.Controls.Add(Me.ribbonControl1)
|
||||||
|
|||||||
@@ -124,15 +124,8 @@
|
|||||||
<data name="ribbonControl1.ExpandCollapseItem.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
<data name="ribbonControl1.ExpandCollapseItem.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
</data>
|
</data>
|
||||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
|
||||||
<data name="ribbonControl1.ExpandCollapseItem.ImageOptions.SvgImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
|
||||||
<value />
|
|
||||||
</data>
|
|
||||||
<data name="ribbonControl1.ExpandCollapseItem.SearchTags" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
|
||||||
<value />
|
|
||||||
</data>
|
|
||||||
<data name="BarButtonItem1.Caption" xml:space="preserve">
|
<data name="BarButtonItem1.Caption" xml:space="preserve">
|
||||||
<value>Add Signature</value>
|
<value>Add signature</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BarButtonItem1.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
<data name="BarButtonItem1.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
@@ -189,7 +182,7 @@
|
|||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="btnDelete.Caption" xml:space="preserve">
|
<data name="btnDelete.Caption" xml:space="preserve">
|
||||||
<value>Remove Signature</value>
|
<value>Remove signature</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="btnDelete.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
<data name="btnDelete.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
@@ -224,9 +217,6 @@
|
|||||||
<data name="BarListItem1.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
<data name="BarListItem1.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BarListItem1.ImageOptions.SvgImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
|
||||||
<value />
|
|
||||||
</data>
|
|
||||||
<data name="BarButtonItem2.Caption" xml:space="preserve">
|
<data name="BarButtonItem2.Caption" xml:space="preserve">
|
||||||
<value>Receiver</value>
|
<value>Receiver</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -260,7 +250,7 @@
|
|||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="txtReceiver.Caption" xml:space="preserve">
|
<data name="txtReceiver.Caption" xml:space="preserve">
|
||||||
<value>No Receiver selected</value>
|
<value>No receiver selected</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="txtReceiver.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
<data name="txtReceiver.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
@@ -268,11 +258,8 @@
|
|||||||
<data name="txtReceiver.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
<data name="txtReceiver.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
||||||
<value>-1</value>
|
<value>-1</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="txtReceiver.ImageOptions.SvgImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
|
||||||
<value />
|
|
||||||
</data>
|
|
||||||
<data name="ribbonPageGroup1.Text" xml:space="preserve">
|
<data name="ribbonPageGroup1.Text" xml:space="preserve">
|
||||||
<value>Common</value>
|
<value>Genreal</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RibbonPageGroup3.Text" xml:space="preserve">
|
<data name="RibbonPageGroup3.Text" xml:space="preserve">
|
||||||
<value>Receiver</value>
|
<value>Receiver</value>
|
||||||
@@ -299,6 +286,6 @@
|
|||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="$this.Text" xml:space="preserve">
|
<data name="$this.Text" xml:space="preserve">
|
||||||
<value>signFLOW - Signature-Editor</value>
|
<value>signFLOW - Signature editor</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
248
EnvelopeGenerator.Form/frmFieldEditor.fr.resx
Normal file
248
EnvelopeGenerator.Form/frmFieldEditor.fr.resx
Normal file
@@ -0,0 +1,248 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="txtReceiver.Caption" xml:space="preserve">
|
||||||
|
<value>Aucun récepteur sélectionné</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnSave.Caption" xml:space="preserve">
|
||||||
|
<value>Enregistrer</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonPageGroup2.Text" xml:space="preserve">
|
||||||
|
<value>Signatures</value>
|
||||||
|
</data>
|
||||||
|
<assembly alias="DevExpress.Data.v21.2" name="DevExpress.Data.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||||
|
<data name="BarButtonItem1.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAANACAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGluZV9Db2xvciIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAw
|
||||||
|
IDAgMzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9
|
||||||
|
CgkuQmx1ZXtmaWxsOiMxMTc3RDc7fQoJLnN0MHtmaWxsOm5vbmU7fQoJLnN0MXtvcGFjaXR5OjAuMjU7
|
||||||
|
fQo8L3N0eWxlPg0KICA8cGF0aCBkPSJNMTcsMTFMNywyMWwtNC00TDEzLDdMMTcsMTF6IE0xOCwxMGwx
|
||||||
|
LjctMS43YzAuNC0wLjQsMC40LTEsMC0xLjNMMTcsNC4zYy0wLjQtMC40LTEtMC40LTEuMywwTDE0LDZM
|
||||||
|
MTgsMTB6ICAgTTIsMTh2NGg0TDIsMTh6IiBjbGFzcz0iQmx1ZSIgLz4NCiAgPHJlY3QgeD0iMCIgeT0i
|
||||||
|
MjQiIHdpZHRoPSIzMiIgaGVpZ2h0PSI4IiByeD0iMCIgcnk9IjAiIGlkPSJJbmRpY2F0b3IiIGNsYXNz
|
||||||
|
PSJzdDAiIC8+DQogIDxnIGNsYXNzPSJzdDEiPg0KICAgIDxwYXRoIGQ9Ik0wLDIzLjlWMzJoMzJ2LTgu
|
||||||
|
MUgweiBNMzAsMzBIMnYtNGgyOFYzMHoiIGNsYXNzPSJCbGFjayIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="BarButtonItem2.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAKEDAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
|
||||||
|
ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5CbGFja3tmaWxsOiM3MjcyNzI7fQoJLkdyZWVue2ZpbGw6IzAz
|
||||||
|
OUMyMzt9CgkuUmVke2ZpbGw6I0QxMUMxQzt9Cgkuc3Qwe29wYWNpdHk6MC43NTt9Cgkuc3Qxe29wYWNp
|
||||||
|
dHk6MC41O30KPC9zdHlsZT4NCiAgPGcgaWQ9IlVzZXIiPg0KICAgIDxwYXRoIGQ9Ik0xMCw5LjljLTAu
|
||||||
|
MSwwLjUsMC4yLDAuOSwwLjQsMS40YzAuMiwwLjUtMC4xLDEuNywwLjksMS42YzAsMCwwLDAuMSwwLDAu
|
||||||
|
MmMwLjYsMi4zLDIsNC45LDQuNyw0LjkgICBjMi43LDAsNC4yLTIuNiw0LjctNC45YzAsMCwwLTAuMSww
|
||||||
|
LTAuMWMxLDAuMSwwLjYtMS4xLDAuOS0xLjZjMC4yLTAuNSwwLjQtMC45LDAuMy0xLjRjLTAuMS0wLjQt
|
||||||
|
MC40LTAuNC0wLjUtMC4zICAgYzEuOC00LjktMS4xLTQuNy0xLjEtNC43UzIwLDIsMTQuOCwyQzEwLDIs
|
||||||
|
OS40LDYsMTAuNSw5LjZDMTAuNCw5LjYsMTAuMSw5LjcsMTAsOS45eiIgY2xhc3M9IkJsYWNrIiAvPg0K
|
||||||
|
ICAgIDxwYXRoIGQ9Ik0yMCwxOGMtMC44LDEuNS0yLjEsNC00LDRjLTEuOSwwLTMuMi0yLjUtNC00Yy0y
|
||||||
|
LjMsMy41LTgsMS04LDguNVYzMGgyNHYtMy41QzI4LDE5LjEsMjIuMywyMS40LDIwLDE4eiIgY2xhc3M9
|
||||||
|
IkJsYWNrIiAvPg0KICA8L2c+DQo8L3N2Zz4L
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="BarButtonItem2.Caption" xml:space="preserve">
|
||||||
|
<value>Destinataire</value>
|
||||||
|
</data>
|
||||||
|
<data name="$this.Text" xml:space="preserve">
|
||||||
|
<value>signFLOW - Éditeur de signature</value>
|
||||||
|
</data>
|
||||||
|
<data name="frmFieldEditor.IconOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAGgCAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iRWRpdF9Db21tZW50IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3
|
||||||
|
IDAgMCAzMiAzMiI+DQogIDxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+CgkuQmx1ZXtmaWxsOiMxMTc3RDc7
|
||||||
|
fQoJLlllbGxvd3tmaWxsOiNGRkIxMTU7fQo8L3N0eWxlPg0KICA8cGF0aCBkPSJNMywyMmgzdjZsNi02
|
||||||
|
aDMuMkwyNiwxMS4yVjdjMC0wLjYtMC40LTEtMS0xSDNDMi40LDYsMiw2LjQsMiw3djE0QzIsMjEuNiwy
|
||||||
|
LjQsMjIsMywyMnoiIGNsYXNzPSJZZWxsb3ciIC8+DQogIDxwYXRoIGQ9Ik0yOSwxOWwtOCw4bC00LTRs
|
||||||
|
OC04TDI5LDE5eiBNMzAsMThsMS43LTEuN2MwLjQtMC40LDAuNC0xLDAtMS4zbC0yLjctMi43Yy0wLjQt
|
||||||
|
MC40LTEtMC40LTEuMywwTDI2LDE0TDMwLDE4eiAgIE0xNiwyNHY0aDRMMTYsMjR6IiBjbGFzcz0iQmx1
|
||||||
|
ZSIgLz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="ribbonPageGroup1.Text" xml:space="preserve">
|
||||||
|
<value>Général</value>
|
||||||
|
</data>
|
||||||
|
<data name="BarButtonItem1.Caption" xml:space="preserve">
|
||||||
|
<value>Ajouter une signature</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnSave.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAMICAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsYWNre2ZpbGw6IzczNzM3NDt9Cgku
|
||||||
|
WWVsbG93e2ZpbGw6I0ZDQjAxQjt9CgkuR3JlZW57ZmlsbDojMTI5QzQ5O30KCS5CbHVle2ZpbGw6IzM4
|
||||||
|
N0NCNzt9CgkuUmVke2ZpbGw6I0QwMjEyNzt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
||||||
|
Y2l0eTowLjU7fQoJLnN0MXtvcGFjaXR5OjAuNzU7fQoJLnN0MntvcGFjaXR5OjAuMjU7fQoJLnN0M3tk
|
||||||
|
aXNwbGF5Om5vbmU7ZmlsbDojNzM3Mzc0O30KPC9zdHlsZT4NCiAgPHBhdGggZD0iTTI3LDRoLTN2MTBI
|
||||||
|
OFY0SDVDNC40LDQsNCw0LjQsNCw1djIyYzAsMC42LDAuNCwxLDEsMWgyMmMwLjYsMCwxLTAuNCwxLTFW
|
||||||
|
NUMyOCw0LjQsMjcuNiw0LDI3LDR6IE0yNCwyNEg4di02ICBoMTZWMjR6IE0xMCw0djhoMTBWNEgxMHog
|
||||||
|
TTE0LDEwaC0yVjZoMlYxMHoiIGNsYXNzPSJCbGFjayIgLz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnDelete.Caption" xml:space="preserve">
|
||||||
|
<value>Supprimer la signature</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonPageGroup3.Text" xml:space="preserve">
|
||||||
|
<value>Destinataire</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnDelete.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAD0DAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLlJlZHtmaWxsOiNEMTFDMUM7fQoJLkJs
|
||||||
|
YWNre2ZpbGw6IzcyNzI3Mjt9CgkuQmx1ZXtmaWxsOiMxMTc3RDc7fQoJLkdyZWVue2ZpbGw6IzAzOUMy
|
||||||
|
Mzt9CgkuWWVsbG93e2ZpbGw6I0ZGQjExNTt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
||||||
|
Y2l0eTowLjU7fQoJLnN0MXtvcGFjaXR5OjAuNzU7fQo8L3N0eWxlPg0KICA8ZyBpZD0iRGVsZXRlIj4N
|
||||||
|
CiAgICA8Zz4NCiAgICAgIDxwYXRoIGQ9Ik0xOC44LDE2bDYuOS02LjljMC40LTAuNCwwLjQtMSwwLTEu
|
||||||
|
NGwtMS40LTEuNGMtMC40LTAuNC0xLTAuNC0xLjQsMEwxNiwxMy4yTDkuMSw2LjNjLTAuNC0wLjQtMS0w
|
||||||
|
LjQtMS40LDAgICAgTDYuMyw3LjdjLTAuNCwwLjQtMC40LDEsMCwxLjRsNi45LDYuOWwtNi45LDYuOWMt
|
||||||
|
MC40LDAuNC0wLjQsMSwwLDEuNGwxLjQsMS40YzAuNCwwLjQsMSwwLjQsMS40LDBsNi45LTYuOWw2Ljks
|
||||||
|
Ni45ICAgIGMwLjQsMC40LDEsMC40LDEuNCwwbDEuNC0xLjRjMC40LTAuNCwwLjQtMSwwLTEuNEwxOC44
|
||||||
|
LDE2eiIgY2xhc3M9IlJlZCIgLz4NCiAgICA8L2c+DQogIDwvZz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -117,65 +117,32 @@
|
|||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
|
||||||
<data name="SplitContainerControl1.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
|
||||||
<value>Fill</value>
|
|
||||||
</data>
|
|
||||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
<data name="SplitContainerControl1.Location" type="System.Drawing.Point, System.Drawing">
|
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>0, 59</value>
|
<value>786, 534</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThumbnailEx2.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
<value>Fill</value>
|
<data name="barDockControlBottom.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||||
|
<value>Bottom</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThumbnailEx2.Location" type="System.Drawing.Point, System.Drawing">
|
<data name=">>RepositoryItemComboBox1.Type" xml:space="preserve">
|
||||||
<value>0, 0</value>
|
<value>DevExpress.XtraEditors.Repository.RepositoryItemComboBox, DevExpress.XtraEditors.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThumbnailEx2.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="barDockControlRight.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||||
<value>199, 600</value>
|
<value>Right</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>barDockControlLeft.Name" xml:space="preserve">
|
||||||
|
<value>barDockControlLeft</value>
|
||||||
</data>
|
</data>
|
||||||
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
<data name="ThumbnailEx2.TabIndex" type="System.Int32, mscorlib">
|
<data name="SplitContainerControl1.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>0</value>
|
<value>15</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>ThumbnailEx2.Name" xml:space="preserve">
|
<data name=">>barDockControlLeft.Type" xml:space="preserve">
|
||||||
<value>ThumbnailEx2</value>
|
<value>DevExpress.XtraBars.BarDockControl, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>ThumbnailEx2.Type" xml:space="preserve">
|
<data name="ribbonControl1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>GdPicture14.ThumbnailEx, GdPicture.NET.14, Version=14.3.3.0, Culture=neutral, PublicKeyToken=f52a2e60ad468dbb</value>
|
<value>786, 132</value>
|
||||||
</data>
|
|
||||||
<data name=">>ThumbnailEx2.Parent" xml:space="preserve">
|
|
||||||
<value>SplitContainerControl1.Panel1</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>ThumbnailEx2.ZOrder" xml:space="preserve">
|
|
||||||
<value>0</value>
|
|
||||||
</data>
|
|
||||||
<data name="SplitContainerControl1.Panel1.Text" xml:space="preserve">
|
|
||||||
<value>Panel1</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>SplitContainerControl1.Panel1.Name" xml:space="preserve">
|
|
||||||
<value>SplitContainerControl1.Panel1</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>SplitContainerControl1.Panel1.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraEditors.SplitGroupPanel, DevExpress.Utils.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>SplitContainerControl1.Panel1.Parent" xml:space="preserve">
|
|
||||||
<value>SplitContainerControl1</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>SplitContainerControl1.Panel1.ZOrder" xml:space="preserve">
|
|
||||||
<value>0</value>
|
|
||||||
</data>
|
|
||||||
<data name="DocumentViewer1.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
|
||||||
<value>Fill</value>
|
|
||||||
</data>
|
|
||||||
<data name="DocumentViewer1.Location" type="System.Drawing.Point, System.Drawing">
|
|
||||||
<value>0, 0</value>
|
|
||||||
</data>
|
|
||||||
<data name="DocumentViewer1.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>917, 600</value>
|
|
||||||
</data>
|
|
||||||
<data name="DocumentViewer1.TabIndex" type="System.Int32, mscorlib">
|
|
||||||
<value>3</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name=">>DocumentViewer1.Name" xml:space="preserve">
|
<data name=">>DocumentViewer1.Name" xml:space="preserve">
|
||||||
<value>DocumentViewer1</value>
|
<value>DocumentViewer1</value>
|
||||||
@@ -183,59 +150,66 @@
|
|||||||
<data name=">>DocumentViewer1.Type" xml:space="preserve">
|
<data name=">>DocumentViewer1.Type" xml:space="preserve">
|
||||||
<value>DigitalData.Controls.DocumentViewer.DocumentViewer, DigitalData.Controls.DocumentViewer, Version=1.9.8.0, Culture=neutral, PublicKeyToken=null</value>
|
<value>DigitalData.Controls.DocumentViewer.DocumentViewer, DigitalData.Controls.DocumentViewer, Version=1.9.8.0, Culture=neutral, PublicKeyToken=null</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>DocumentViewer1.Parent" xml:space="preserve">
|
<data name=">>barDockControlLeft.ZOrder" xml:space="preserve">
|
||||||
<value>SplitContainerControl1.Panel2</value>
|
<value>2</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>DocumentViewer1.ZOrder" xml:space="preserve">
|
<data name="txtReceiver.Caption" xml:space="preserve">
|
||||||
|
<value>Kein Empfänger ausgewählt</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnSave.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SplitContainerControl1.Panel2.Text" xml:space="preserve">
|
<data name=">>ribbonControl1.Name" xml:space="preserve">
|
||||||
<value>Panel2</value>
|
<value>ribbonControl1</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>SplitContainerControl1.Panel2.Name" xml:space="preserve">
|
<data name="btnSave.Caption" xml:space="preserve">
|
||||||
<value>SplitContainerControl1.Panel2</value>
|
<value>Speichern</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>SplitContainerControl1.Panel2.Type" xml:space="preserve">
|
<data name="ThumbnailEx2.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||||
|
<value>Fill</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>PopupMenu1.Name" xml:space="preserve">
|
||||||
|
<value>PopupMenu1</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>ThumbnailEx2.Type" xml:space="preserve">
|
||||||
|
<value>GdPicture14.ThumbnailEx, GdPicture.NET.14, Version=14.3.3.0, Culture=neutral, PublicKeyToken=f52a2e60ad468dbb</value>
|
||||||
|
</data>
|
||||||
|
<data name="DocumentViewer1.TabIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>3</value>
|
||||||
|
</data>
|
||||||
|
<data name="BarButtonItem2.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>0</value>
|
||||||
|
</data>
|
||||||
|
<data name="BarListItem1.ImageOptions.SvgImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||||
|
<value />
|
||||||
|
</data>
|
||||||
|
<data name=">>ribbonControl1.Type" xml:space="preserve">
|
||||||
|
<value>DevExpress.XtraBars.Ribbon.RibbonControl, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonPageGroup2.Text" xml:space="preserve">
|
||||||
|
<value>Signaturen</value>
|
||||||
|
</data>
|
||||||
|
<assembly alias="DevExpress.Utils.v21.2" name="DevExpress.Utils.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||||
|
<data name="RepositoryItemComboBox1.Buttons" type="DevExpress.XtraEditors.Controls.ButtonPredefines, DevExpress.Utils.v21.2">
|
||||||
|
<value>Combo</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>btnSave.Type" xml:space="preserve">
|
||||||
|
<value>DevExpress.XtraBars.BarButtonItem, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>SplitContainerControl1.Panel1.Type" xml:space="preserve">
|
||||||
<value>DevExpress.XtraEditors.SplitGroupPanel, DevExpress.Utils.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>DevExpress.XtraEditors.SplitGroupPanel, DevExpress.Utils.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>SplitContainerControl1.Panel2.Parent" xml:space="preserve">
|
<data name="ThumbnailEx2.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
<value>SplitContainerControl1</value>
|
<value>0, 0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>SplitContainerControl1.Panel2.ZOrder" xml:space="preserve">
|
<data name="ribbonPage1.Text" xml:space="preserve">
|
||||||
<value>1</value>
|
<value>Start</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SplitContainerControl1.Size" type="System.Drawing.Size, System.Drawing">
|
<data name=">>barDockControlRight.ZOrder" xml:space="preserve">
|
||||||
<value>1126, 600</value>
|
<value>3</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SplitContainerControl1.TabIndex" type="System.Int32, mscorlib">
|
<data name=">>BarListItem1.Name" xml:space="preserve">
|
||||||
<value>15</value>
|
<value>BarListItem1</value>
|
||||||
</data>
|
|
||||||
<data name=">>SplitContainerControl1.Name" xml:space="preserve">
|
|
||||||
<value>SplitContainerControl1</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>SplitContainerControl1.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraEditors.SplitContainerControl, DevExpress.Utils.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>SplitContainerControl1.Parent" xml:space="preserve">
|
|
||||||
<value>$this</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>SplitContainerControl1.ZOrder" xml:space="preserve">
|
|
||||||
<value>0</value>
|
|
||||||
</data>
|
|
||||||
<data name="ribbonControl1.ExpandCollapseItem.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
|
||||||
<value>0</value>
|
|
||||||
</data>
|
|
||||||
<data name="ribbonControl1.ExpandCollapseItem.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
|
||||||
<value>0</value>
|
|
||||||
</data>
|
|
||||||
<data name="BarButtonItem1.Caption" xml:space="preserve">
|
|
||||||
<value>Signatur hinzufügen</value>
|
|
||||||
</data>
|
|
||||||
<data name="BarButtonItem1.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
|
||||||
<value>0</value>
|
|
||||||
</data>
|
|
||||||
<data name="BarButtonItem1.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
|
||||||
<value>0</value>
|
|
||||||
</data>
|
</data>
|
||||||
<assembly alias="DevExpress.Data.v21.2" name="DevExpress.Data.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
<assembly alias="DevExpress.Data.v21.2" name="DevExpress.Data.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||||
<data name="BarButtonItem1.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="BarButtonItem1.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
@@ -257,84 +231,56 @@
|
|||||||
MUgweiBNMzAsMzBIMnYtNGgyOFYzMHoiIGNsYXNzPSJCbGFjayIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
|
MUgweiBNMzAsMzBIMnYtNGgyOFYzMHoiIGNsYXNzPSJCbGFjayIgLz4NCiAgPC9nPg0KPC9zdmc+Cw==
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="btnSave.Caption" xml:space="preserve">
|
<data name=">>SplitContainerControl1.Panel2.Name" xml:space="preserve">
|
||||||
<value>Speichern</value>
|
<value>SplitContainerControl1.Panel2</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="btnSave.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
<data name=">>BarButtonItem2.Type" xml:space="preserve">
|
||||||
<value>0</value>
|
<value>DevExpress.XtraBars.BarButtonItem, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="btnSave.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
<data name="OpenFileDialog1.Filter" xml:space="preserve">
|
||||||
<value>0</value>
|
<value>PDF Files|*.pdf</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="btnSave.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name=">>SplitContainerControl1.Panel2.Type" xml:space="preserve">
|
||||||
<value>
|
<value>DevExpress.XtraEditors.SplitGroupPanel, DevExpress.Utils.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
|
||||||
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
|
||||||
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAMICAAAC77u/
|
|
||||||
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
|
||||||
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
|
||||||
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
|
||||||
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
|
||||||
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsYWNre2ZpbGw6IzczNzM3NDt9Cgku
|
|
||||||
WWVsbG93e2ZpbGw6I0ZDQjAxQjt9CgkuR3JlZW57ZmlsbDojMTI5QzQ5O30KCS5CbHVle2ZpbGw6IzM4
|
|
||||||
N0NCNzt9CgkuUmVke2ZpbGw6I0QwMjEyNzt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
|
||||||
Y2l0eTowLjU7fQoJLnN0MXtvcGFjaXR5OjAuNzU7fQoJLnN0MntvcGFjaXR5OjAuMjU7fQoJLnN0M3tk
|
|
||||||
aXNwbGF5Om5vbmU7ZmlsbDojNzM3Mzc0O30KPC9zdHlsZT4NCiAgPHBhdGggZD0iTTI3LDRoLTN2MTBI
|
|
||||||
OFY0SDVDNC40LDQsNCw0LjQsNCw1djIyYzAsMC42LDAuNCwxLDEsMWgyMmMwLjYsMCwxLTAuNCwxLTFW
|
|
||||||
NUMyOCw0LjQsMjcuNiw0LDI3LDR6IE0yNCwyNEg4di02ICBoMTZWMjR6IE0xMCw0djhoMTBWNEgxMHog
|
|
||||||
TTE0LDEwaC0yVjZoMlYxMHoiIGNsYXNzPSJCbGFjayIgLz4NCjwvc3ZnPgs=
|
|
||||||
</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="btnDelete.Caption" xml:space="preserve">
|
<data name=">>barDockControlTop.Type" xml:space="preserve">
|
||||||
<value>Signatur entfernen</value>
|
<value>DevExpress.XtraBars.BarDockControl, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="btnDelete.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
<data name=">>$this.Name" xml:space="preserve">
|
||||||
<value>0</value>
|
<value>frmFieldEditor</value>
|
||||||
|
</data>
|
||||||
|
<data name="barDockControlTop.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>786, 0</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>SvgImageCollection1.Type" xml:space="preserve">
|
||||||
|
<value>DevExpress.Utils.SvgImageCollection, DevExpress.Utils.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="btnDelete.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
<data name="btnDelete.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="btnDelete.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name=">>BarButtonItem2.Name" xml:space="preserve">
|
||||||
<value>
|
<value>BarButtonItem2</value>
|
||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
|
||||||
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
|
||||||
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAD0DAAAC77u/
|
|
||||||
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
|
||||||
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
|
||||||
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
|
||||||
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
|
||||||
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLlJlZHtmaWxsOiNEMTFDMUM7fQoJLkJs
|
|
||||||
YWNre2ZpbGw6IzcyNzI3Mjt9CgkuQmx1ZXtmaWxsOiMxMTc3RDc7fQoJLkdyZWVue2ZpbGw6IzAzOUMy
|
|
||||||
Mzt9CgkuWWVsbG93e2ZpbGw6I0ZGQjExNTt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
|
||||||
Y2l0eTowLjU7fQoJLnN0MXtvcGFjaXR5OjAuNzU7fQo8L3N0eWxlPg0KICA8ZyBpZD0iRGVsZXRlIj4N
|
|
||||||
CiAgICA8Zz4NCiAgICAgIDxwYXRoIGQ9Ik0xOC44LDE2bDYuOS02LjljMC40LTAuNCwwLjQtMSwwLTEu
|
|
||||||
NGwtMS40LTEuNGMtMC40LTAuNC0xLTAuNC0xLjQsMEwxNiwxMy4yTDkuMSw2LjNjLTAuNC0wLjQtMS0w
|
|
||||||
LjQtMS40LDAgICAgTDYuMyw3LjdjLTAuNCwwLjQtMC40LDEsMCwxLjRsNi45LDYuOWwtNi45LDYuOWMt
|
|
||||||
MC40LDAuNC0wLjQsMSwwLDEuNGwxLjQsMS40YzAuNCwwLjQsMSwwLjQsMS40LDBsNi45LTYuOWw2Ljks
|
|
||||||
Ni45ICAgIGMwLjQsMC40LDEsMC40LDEuNCwwbDEuNC0xLjRjMC40LTAuNCwwLjQtMSwwLTEuNEwxOC44
|
|
||||||
LDE2eiIgY2xhc3M9IlJlZCIgLz4NCiAgICA8L2c+DQogIDwvZz4NCjwvc3ZnPgs=
|
|
||||||
</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="BarListItem1.Caption" xml:space="preserve">
|
<data name="barDockControlTop.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||||
<value>BarListItem1</value>
|
<value>Top</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BarListItem1.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
<data name=">>SplitContainerControl1.Panel1.Parent" xml:space="preserve">
|
||||||
<value>0</value>
|
<value>SplitContainerControl1</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BarListItem1.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
<data name=">>barDockControlRight.Name" xml:space="preserve">
|
||||||
<value>0</value>
|
<value>barDockControlRight</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BarButtonItem2.Caption" xml:space="preserve">
|
<data name=">>RibbonPageGroup2.Name" xml:space="preserve">
|
||||||
<value>Empfänger</value>
|
<value>RibbonPageGroup2</value>
|
||||||
</data>
|
</data>
|
||||||
<metadata name="PopupMenu1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<data name=">>txtReceiver.Name" xml:space="preserve">
|
||||||
<value>159, 17</value>
|
<value>txtReceiver</value>
|
||||||
</metadata>
|
|
||||||
<data name="BarButtonItem2.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
|
||||||
<value>0</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="BarButtonItem2.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
<data name=">>barDockControlBottom.Parent" xml:space="preserve">
|
||||||
<value>0</value>
|
<value>$this</value>
|
||||||
|
</data>
|
||||||
|
<data name="$this.StartPosition" type="System.Windows.Forms.FormStartPosition, System.Windows.Forms">
|
||||||
|
<value>CenterScreen</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BarButtonItem2.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="BarButtonItem2.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
@@ -359,163 +305,126 @@
|
|||||||
IkJsYWNrIiAvPg0KICA8L2c+DQo8L3N2Zz4L
|
IkJsYWNrIiAvPg0KICA8L2c+DQo8L3N2Zz4L
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="txtReceiver.Caption" xml:space="preserve">
|
<data name=">>DocumentViewer1.ZOrder" xml:space="preserve">
|
||||||
<value>Kein Empfänger ausgewählt</value>
|
|
||||||
</data>
|
|
||||||
<data name="txtReceiver.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="txtReceiver.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
<data name=">>BarManager1.Name" xml:space="preserve">
|
||||||
<value>0</value>
|
<value>BarManager1</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ribbonControl1.Location" type="System.Drawing.Point, System.Drawing">
|
<data name=">>RibbonPageGroup2.Type" xml:space="preserve">
|
||||||
<value>0, 0</value>
|
<value>DevExpress.XtraBars.Ribbon.RibbonPageGroup, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
|
||||||
<data name="ribbonPageGroup1.Text" xml:space="preserve">
|
|
||||||
<value>Allgemein</value>
|
|
||||||
</data>
|
|
||||||
<data name="RibbonPageGroup3.Text" xml:space="preserve">
|
|
||||||
<value>Empfänger</value>
|
|
||||||
</data>
|
|
||||||
<data name="RibbonPageGroup2.Text" xml:space="preserve">
|
|
||||||
<value>Signaturen</value>
|
|
||||||
</data>
|
|
||||||
<data name="ribbonPage1.Text" xml:space="preserve">
|
|
||||||
<value>Start</value>
|
|
||||||
</data>
|
|
||||||
<data name="RepositoryItemComboBox1.AutoHeight" type="System.Boolean, mscorlib">
|
|
||||||
<value>False</value>
|
|
||||||
</data>
|
|
||||||
<assembly alias="DevExpress.Utils.v21.2" name="DevExpress.Utils.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
|
||||||
<data name="RepositoryItemComboBox1.Buttons" type="DevExpress.XtraEditors.Controls.ButtonPredefines, DevExpress.Utils.v21.2">
|
|
||||||
<value>Combo</value>
|
|
||||||
</data>
|
|
||||||
<data name="RepositoryItemLookUpEdit1.AutoHeight" type="System.Boolean, mscorlib">
|
|
||||||
<value>False</value>
|
|
||||||
</data>
|
|
||||||
<data name="RepositoryItemLookUpEdit1.Buttons" type="DevExpress.XtraEditors.Controls.ButtonPredefines, DevExpress.Utils.v21.2">
|
|
||||||
<value>Combo</value>
|
|
||||||
</data>
|
|
||||||
<data name="ribbonControl1.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>1126, 88</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>ribbonControl1.Name" xml:space="preserve">
|
|
||||||
<value>ribbonControl1</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>ribbonControl1.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraBars.Ribbon.RibbonControl, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name=">>ribbonControl1.Parent" xml:space="preserve">
|
<data name=">>ribbonControl1.Parent" xml:space="preserve">
|
||||||
<value>$this</value>
|
<value>$this</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>ribbonControl1.ZOrder" xml:space="preserve">
|
<data name="BarListItem1.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
||||||
<value>1</value>
|
<value>0</value>
|
||||||
</data>
|
</data>
|
||||||
<metadata name="OpenFileDialog1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<data name="BarButtonItem1.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
||||||
<value>17, 17</value>
|
<value>0</value>
|
||||||
</metadata>
|
|
||||||
<data name="OpenFileDialog1.Filter" xml:space="preserve">
|
|
||||||
<value>PDF Files|*.pdf</value>
|
|
||||||
</data>
|
</data>
|
||||||
<metadata name="BarManager1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<data name="DocumentViewer1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>284, 17</value>
|
<value>577, 402</value>
|
||||||
</metadata>
|
|
||||||
<data name="barDockControlTop.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
|
||||||
<value>Top</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="barDockControlTop.Location" type="System.Drawing.Point, System.Drawing">
|
<data name=">>SvgImageCollection1.Name" xml:space="preserve">
|
||||||
|
<value>SvgImageCollection1</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>ThumbnailEx2.ZOrder" xml:space="preserve">
|
||||||
|
<value>0</value>
|
||||||
|
</data>
|
||||||
|
<data name="SplitContainerControl1.Panel1.Text" xml:space="preserve">
|
||||||
|
<value>Panel1</value>
|
||||||
|
</data>
|
||||||
|
<data name="BarButtonItem2.Caption" xml:space="preserve">
|
||||||
|
<value>Empfänger</value>
|
||||||
|
</data>
|
||||||
|
<data name="DocumentViewer1.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
<value>0, 0</value>
|
<value>0, 0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="barDockControlTop.Size" type="System.Drawing.Size, System.Drawing">
|
<data name=">>ribbonPage1.Type" xml:space="preserve">
|
||||||
<value>1126, 0</value>
|
<value>DevExpress.XtraBars.Ribbon.RibbonPage, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>barDockControlTop.Name" xml:space="preserve">
|
<data name=">>BarListItem1.Type" xml:space="preserve">
|
||||||
<value>barDockControlTop</value>
|
<value>DevExpress.XtraBars.BarListItem, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>barDockControlTop.Type" xml:space="preserve">
|
<data name="BarListItem1.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
||||||
<value>DevExpress.XtraBars.BarDockControl, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>0</value>
|
||||||
</data>
|
|
||||||
<data name=">>barDockControlTop.Parent" xml:space="preserve">
|
|
||||||
<value>$this</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>barDockControlTop.ZOrder" xml:space="preserve">
|
|
||||||
<value>5</value>
|
|
||||||
</data>
|
|
||||||
<data name="barDockControlBottom.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
|
||||||
<value>Bottom</value>
|
|
||||||
</data>
|
|
||||||
<data name="barDockControlBottom.Location" type="System.Drawing.Point, System.Drawing">
|
|
||||||
<value>0, 659</value>
|
|
||||||
</data>
|
|
||||||
<data name="barDockControlBottom.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>1126, 0</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>barDockControlBottom.Name" xml:space="preserve">
|
|
||||||
<value>barDockControlBottom</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>barDockControlBottom.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraBars.BarDockControl, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>barDockControlBottom.Parent" xml:space="preserve">
|
|
||||||
<value>$this</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name=">>barDockControlBottom.ZOrder" xml:space="preserve">
|
<data name=">>barDockControlBottom.ZOrder" xml:space="preserve">
|
||||||
<value>4</value>
|
<value>4</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="barDockControlLeft.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
<data name="ribbonControl1.ExpandCollapseItem.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
||||||
<value>Left</value>
|
<value>0</value>
|
||||||
</data>
|
|
||||||
<data name="barDockControlLeft.Location" type="System.Drawing.Point, System.Drawing">
|
|
||||||
<value>0, 0</value>
|
|
||||||
</data>
|
|
||||||
<data name="barDockControlLeft.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>0, 659</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>barDockControlLeft.Name" xml:space="preserve">
|
|
||||||
<value>barDockControlLeft</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>barDockControlLeft.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraBars.BarDockControl, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>barDockControlLeft.Parent" xml:space="preserve">
|
|
||||||
<value>$this</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>barDockControlLeft.ZOrder" xml:space="preserve">
|
|
||||||
<value>2</value>
|
|
||||||
</data>
|
|
||||||
<data name="barDockControlRight.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
|
||||||
<value>Right</value>
|
|
||||||
</data>
|
|
||||||
<data name="barDockControlRight.Location" type="System.Drawing.Point, System.Drawing">
|
|
||||||
<value>1126, 0</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="barDockControlRight.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="barDockControlRight.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>0, 659</value>
|
<value>0, 534</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>barDockControlRight.Name" xml:space="preserve">
|
<data name="$this.Text" xml:space="preserve">
|
||||||
<value>barDockControlRight</value>
|
<value>signFLOW - Signatur-Editor</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>barDockControlRight.Type" xml:space="preserve">
|
<data name=">>SplitContainerControl1.ZOrder" xml:space="preserve">
|
||||||
<value>DevExpress.XtraBars.BarDockControl, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>barDockControlRight.Parent" xml:space="preserve">
|
<data name="SplitContainerControl1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>$this</value>
|
<value>786, 402</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>barDockControlRight.ZOrder" xml:space="preserve">
|
<data name=">>OpenFileDialog1.Type" xml:space="preserve">
|
||||||
<value>3</value>
|
<value>System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</data>
|
|
||||||
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
||||||
<value>True</value>
|
|
||||||
</metadata>
|
|
||||||
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
|
|
||||||
<value>6, 13</value>
|
|
||||||
</data>
|
|
||||||
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>1689, 988</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="$this.Font" type="System.Drawing.Font, System.Drawing">
|
<data name="$this.Font" type="System.Drawing.Font, System.Drawing">
|
||||||
<value>Segoe UI, 8.25pt</value>
|
<value>Segoe UI, 8.25pt</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name=">>ribbonPage1.Name" xml:space="preserve">
|
||||||
|
<value>ribbonPage1</value>
|
||||||
|
</data>
|
||||||
|
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
|
||||||
|
<value>6, 13</value>
|
||||||
|
</data>
|
||||||
|
<data name="RepositoryItemComboBox1.AutoHeight" type="System.Boolean, mscorlib">
|
||||||
|
<value>False</value>
|
||||||
|
</data>
|
||||||
|
<data name="ribbonControl1.ExpandCollapseItem.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>0</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>PopupMenu1.Type" xml:space="preserve">
|
||||||
|
<value>DevExpress.XtraBars.PopupMenu, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
|
</data>
|
||||||
|
<data name="RepositoryItemLookUpEdit1.AutoHeight" type="System.Boolean, mscorlib">
|
||||||
|
<value>False</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>btnSave.Name" xml:space="preserve">
|
||||||
|
<value>btnSave</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>SplitContainerControl1.Type" xml:space="preserve">
|
||||||
|
<value>DevExpress.XtraEditors.SplitContainerControl, DevExpress.Utils.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
|
</data>
|
||||||
|
<data name="barDockControlBottom.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>786, 0</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>RepositoryItemLookUpEdit1.Name" xml:space="preserve">
|
||||||
|
<value>RepositoryItemLookUpEdit1</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>RepositoryItemLookUpEdit1.Type" xml:space="preserve">
|
||||||
|
<value>DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit, DevExpress.XtraEditors.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
|
</data>
|
||||||
|
<data name="ribbonControl1.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>0, 0</value>
|
||||||
|
</data>
|
||||||
|
<data name="barDockControlLeft.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||||
|
<value>Left</value>
|
||||||
|
</data>
|
||||||
|
<data name="ribbonControl1.ExpandCollapseItem.ImageOptions.SvgImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||||
|
<value />
|
||||||
|
</data>
|
||||||
|
<data name=">>$this.Type" xml:space="preserve">
|
||||||
|
<value>DevExpress.XtraBars.Ribbon.RibbonForm, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>barDockControlTop.ZOrder" xml:space="preserve">
|
||||||
|
<value>5</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>SplitContainerControl1.Panel2.ZOrder" xml:space="preserve">
|
||||||
|
<value>1</value>
|
||||||
|
</data>
|
||||||
<data name="frmFieldEditor.IconOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="frmFieldEditor.IconOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
@@ -534,115 +443,218 @@
|
|||||||
ZSIgLz4NCjwvc3ZnPgs=
|
ZSIgLz4NCjwvc3ZnPgs=
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="$this.StartPosition" type="System.Windows.Forms.FormStartPosition, System.Windows.Forms">
|
<data name="ribbonPageGroup1.Text" xml:space="preserve">
|
||||||
<value>CenterScreen</value>
|
<value>Allgemein</value>
|
||||||
</data>
|
|
||||||
<data name="$this.Text" xml:space="preserve">
|
|
||||||
<value>signFLOW - Signatur-Editor</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>BarButtonItem1.Name" xml:space="preserve">
|
|
||||||
<value>BarButtonItem1</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name=">>BarButtonItem1.Type" xml:space="preserve">
|
<data name=">>BarButtonItem1.Type" xml:space="preserve">
|
||||||
<value>DevExpress.XtraBars.BarButtonItem, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>DevExpress.XtraBars.BarButtonItem, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>btnSave.Name" xml:space="preserve">
|
<data name="ThumbnailEx2.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>btnSave</value>
|
<value>0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>btnSave.Type" xml:space="preserve">
|
<data name="barDockControlTop.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
<value>DevExpress.XtraBars.BarButtonItem, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>0, 0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>btnDelete.Name" xml:space="preserve">
|
<data name=">>btnDelete.Name" xml:space="preserve">
|
||||||
<value>btnDelete</value>
|
<value>btnDelete</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>btnDelete.Type" xml:space="preserve">
|
<data name="BarButtonItem1.Caption" xml:space="preserve">
|
||||||
<value>DevExpress.XtraBars.BarButtonItem, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>Signatur hinzufügen</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>BarListItem1.Name" xml:space="preserve">
|
<data name=">>barDockControlBottom.Type" xml:space="preserve">
|
||||||
<value>BarListItem1</value>
|
<value>DevExpress.XtraBars.BarDockControl, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
|
||||||
<data name=">>BarListItem1.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraBars.BarListItem, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>BarButtonItem2.Name" xml:space="preserve">
|
|
||||||
<value>BarButtonItem2</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>BarButtonItem2.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraBars.BarButtonItem, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>PopupMenu1.Name" xml:space="preserve">
|
|
||||||
<value>PopupMenu1</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>PopupMenu1.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraBars.PopupMenu, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>txtReceiver.Name" xml:space="preserve">
|
|
||||||
<value>txtReceiver</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name=">>txtReceiver.Type" xml:space="preserve">
|
<data name=">>txtReceiver.Type" xml:space="preserve">
|
||||||
<value>DevExpress.XtraBars.BarStaticItem, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>DevExpress.XtraBars.BarStaticItem, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>ribbonPage1.Name" xml:space="preserve">
|
<data name="barDockControlBottom.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
<value>ribbonPage1</value>
|
<value>0, 534</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>ribbonPage1.Type" xml:space="preserve">
|
<data name=">>ribbonControl1.ZOrder" xml:space="preserve">
|
||||||
<value>DevExpress.XtraBars.Ribbon.RibbonPage, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>1</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>ribbonPageGroup1.Name" xml:space="preserve">
|
<data name="btnSave.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>ribbonPageGroup1</value>
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAMICAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsYWNre2ZpbGw6IzczNzM3NDt9Cgku
|
||||||
|
WWVsbG93e2ZpbGw6I0ZDQjAxQjt9CgkuR3JlZW57ZmlsbDojMTI5QzQ5O30KCS5CbHVle2ZpbGw6IzM4
|
||||||
|
N0NCNzt9CgkuUmVke2ZpbGw6I0QwMjEyNzt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
||||||
|
Y2l0eTowLjU7fQoJLnN0MXtvcGFjaXR5OjAuNzU7fQoJLnN0MntvcGFjaXR5OjAuMjU7fQoJLnN0M3tk
|
||||||
|
aXNwbGF5Om5vbmU7ZmlsbDojNzM3Mzc0O30KPC9zdHlsZT4NCiAgPHBhdGggZD0iTTI3LDRoLTN2MTBI
|
||||||
|
OFY0SDVDNC40LDQsNCw0LjQsNCw1djIyYzAsMC42LDAuNCwxLDEsMWgyMmMwLjYsMCwxLTAuNCwxLTFW
|
||||||
|
NUMyOCw0LjQsMjcuNiw0LDI3LDR6IE0yNCwyNEg4di02ICBoMTZWMjR6IE0xMCw0djhoMTBWNEgxMHog
|
||||||
|
TTE0LDEwaC0yVjZoMlYxMHoiIGNsYXNzPSJCbGFjayIgLz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>ribbonPageGroup1.Type" xml:space="preserve">
|
<data name=">>barDockControlBottom.Name" xml:space="preserve">
|
||||||
<value>DevExpress.XtraBars.Ribbon.RibbonPageGroup, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>barDockControlBottom</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>RibbonPageGroup3.Name" xml:space="preserve">
|
<data name="SplitContainerControl1.Panel2.Text" xml:space="preserve">
|
||||||
<value>RibbonPageGroup3</value>
|
<value>Panel2</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>RibbonPageGroup3.Type" xml:space="preserve">
|
<data name="btnDelete.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
||||||
<value>DevExpress.XtraBars.Ribbon.RibbonPageGroup, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>RibbonPageGroup2.Name" xml:space="preserve">
|
<data name="SplitContainerControl1.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||||
<value>RibbonPageGroup2</value>
|
<value>Fill</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>RibbonPageGroup2.Type" xml:space="preserve">
|
<data name=">>barDockControlRight.Parent" xml:space="preserve">
|
||||||
<value>DevExpress.XtraBars.Ribbon.RibbonPageGroup, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>$this</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>RepositoryItemComboBox1.Name" xml:space="preserve">
|
<data name="btnDelete.Caption" xml:space="preserve">
|
||||||
<value>RepositoryItemComboBox1</value>
|
<value>Signatur entfernen</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>RepositoryItemComboBox1.Type" xml:space="preserve">
|
<data name="barDockControlLeft.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
<value>DevExpress.XtraEditors.Repository.RepositoryItemComboBox, DevExpress.XtraEditors.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>0, 0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>RepositoryItemLookUpEdit1.Name" xml:space="preserve">
|
<data name=">>ThumbnailEx2.Parent" xml:space="preserve">
|
||||||
<value>RepositoryItemLookUpEdit1</value>
|
<value>SplitContainerControl1.Panel1</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>RepositoryItemLookUpEdit1.Type" xml:space="preserve">
|
<data name="ribbonControl1.ExpandCollapseItem.SearchTags" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||||
<value>DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit, DevExpress.XtraEditors.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value />
|
||||||
|
</data>
|
||||||
|
<data name="txtReceiver.ImageOptions.SvgImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||||
|
<value />
|
||||||
|
</data>
|
||||||
|
<data name="ThumbnailEx2.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>199, 402</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>OpenFileDialog1.Name" xml:space="preserve">
|
<data name=">>OpenFileDialog1.Name" xml:space="preserve">
|
||||||
<value>OpenFileDialog1</value>
|
<value>OpenFileDialog1</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>OpenFileDialog1.Type" xml:space="preserve">
|
<data name=">>DocumentViewer1.Parent" xml:space="preserve">
|
||||||
<value>System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>SplitContainerControl1.Panel2</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>BarManager1.Name" xml:space="preserve">
|
<data name=">>btnDelete.Type" xml:space="preserve">
|
||||||
<value>BarManager1</value>
|
<value>DevExpress.XtraBars.BarButtonItem, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
|
</data>
|
||||||
|
<data name="barDockControlRight.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>786, 0</value>
|
||||||
|
</data>
|
||||||
|
<data name="BarListItem1.Caption" xml:space="preserve">
|
||||||
|
<value>BarListItem1</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>BarButtonItem1.Name" xml:space="preserve">
|
||||||
|
<value>BarButtonItem1</value>
|
||||||
|
</data>
|
||||||
|
<data name="DocumentViewer1.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||||
|
<value>Fill</value>
|
||||||
|
</data>
|
||||||
|
<data name="SplitContainerControl1.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>0, 132</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>barDockControlTop.Name" xml:space="preserve">
|
||||||
|
<value>barDockControlTop</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>ribbonPageGroup1.Type" xml:space="preserve">
|
||||||
|
<value>DevExpress.XtraBars.Ribbon.RibbonPageGroup, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonPageGroup3.Text" xml:space="preserve">
|
||||||
|
<value>Empfänger</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>barDockControlTop.Parent" xml:space="preserve">
|
||||||
|
<value>$this</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>RibbonPageGroup3.Name" xml:space="preserve">
|
||||||
|
<value>RibbonPageGroup3</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>barDockControlRight.Type" xml:space="preserve">
|
||||||
|
<value>DevExpress.XtraBars.BarDockControl, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>SplitContainerControl1.Name" xml:space="preserve">
|
||||||
|
<value>SplitContainerControl1</value>
|
||||||
|
</data>
|
||||||
|
<data name="BarButtonItem2.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>0</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnSave.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>0</value>
|
||||||
|
</data>
|
||||||
|
<data name="txtReceiver.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>0</value>
|
||||||
|
</data>
|
||||||
|
<data name="barDockControlLeft.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>0, 534</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>RepositoryItemComboBox1.Name" xml:space="preserve">
|
||||||
|
<value>RepositoryItemComboBox1</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>ribbonPageGroup1.Name" xml:space="preserve">
|
||||||
|
<value>ribbonPageGroup1</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>BarManager1.Type" xml:space="preserve">
|
<data name=">>BarManager1.Type" xml:space="preserve">
|
||||||
<value>DevExpress.XtraBars.BarManager, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>DevExpress.XtraBars.BarManager, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>SvgImageCollection1.Name" xml:space="preserve">
|
<data name="txtReceiver.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
||||||
<value>SvgImageCollection1</value>
|
<value>0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>SvgImageCollection1.Type" xml:space="preserve">
|
<data name="BarButtonItem1.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
||||||
<value>DevExpress.Utils.SvgImageCollection, DevExpress.Utils.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>$this.Name" xml:space="preserve">
|
<data name=">>SplitContainerControl1.Panel2.Parent" xml:space="preserve">
|
||||||
<value>frmFieldEditor</value>
|
<value>SplitContainerControl1</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>$this.Type" xml:space="preserve">
|
<data name=">>RibbonPageGroup3.Type" xml:space="preserve">
|
||||||
<value>DevExpress.XtraBars.Ribbon.RibbonForm, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>DevExpress.XtraBars.Ribbon.RibbonPageGroup, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="btnDelete.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAD0DAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLlJlZHtmaWxsOiNEMTFDMUM7fQoJLkJs
|
||||||
|
YWNre2ZpbGw6IzcyNzI3Mjt9CgkuQmx1ZXtmaWxsOiMxMTc3RDc7fQoJLkdyZWVue2ZpbGw6IzAzOUMy
|
||||||
|
Mzt9CgkuWWVsbG93e2ZpbGw6I0ZGQjExNTt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
||||||
|
Y2l0eTowLjU7fQoJLnN0MXtvcGFjaXR5OjAuNzU7fQo8L3N0eWxlPg0KICA8ZyBpZD0iRGVsZXRlIj4N
|
||||||
|
CiAgICA8Zz4NCiAgICAgIDxwYXRoIGQ9Ik0xOC44LDE2bDYuOS02LjljMC40LTAuNCwwLjQtMSwwLTEu
|
||||||
|
NGwtMS40LTEuNGMtMC40LTAuNC0xLTAuNC0xLjQsMEwxNiwxMy4yTDkuMSw2LjNjLTAuNC0wLjQtMS0w
|
||||||
|
LjQtMS40LDAgICAgTDYuMyw3LjdjLTAuNCwwLjQtMC40LDEsMCwxLjRsNi45LDYuOWwtNi45LDYuOWMt
|
||||||
|
MC40LDAuNC0wLjQsMSwwLDEuNGwxLjQsMS40YzAuNCwwLjQsMSwwLjQsMS40LDBsNi45LTYuOWw2Ljks
|
||||||
|
Ni45ICAgIGMwLjQsMC40LDEsMC40LDEuNCwwbDEuNC0xLjRjMC40LTAuNCwwLjQtMSwwLTEuNEwxOC44
|
||||||
|
LDE2eiIgY2xhc3M9IlJlZCIgLz4NCiAgICA8L2c+DQogIDwvZz4NCjwvc3ZnPgs=
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>SplitContainerControl1.Parent" xml:space="preserve">
|
||||||
|
<value>$this</value>
|
||||||
|
</data>
|
||||||
|
<data name="RepositoryItemLookUpEdit1.Buttons" type="DevExpress.XtraEditors.Controls.ButtonPredefines, DevExpress.Utils.v21.2">
|
||||||
|
<value>Combo</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>ThumbnailEx2.Name" xml:space="preserve">
|
||||||
|
<value>ThumbnailEx2</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>barDockControlLeft.Parent" xml:space="preserve">
|
||||||
|
<value>$this</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>SplitContainerControl1.Panel1.ZOrder" xml:space="preserve">
|
||||||
|
<value>0</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>SplitContainerControl1.Panel1.Name" xml:space="preserve">
|
||||||
|
<value>SplitContainerControl1.Panel1</value>
|
||||||
|
</data>
|
||||||
|
<metadata name="BarManager1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>284, 17</value>
|
||||||
|
</metadata>
|
||||||
<metadata name="SvgImageCollection1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="SvgImageCollection1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>409, 17</value>
|
<value>409, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
<metadata name="OpenFileDialog1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="PopupMenu1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>159, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>True</value>
|
||||||
|
</metadata>
|
||||||
</root>
|
</root>
|
||||||
@@ -92,12 +92,12 @@ Partial Public Class frmFieldEditor
|
|||||||
Manager = GDViewer.GetAnnotationManager()
|
Manager = GDViewer.GetAnnotationManager()
|
||||||
Manager.InitFromGdViewer(GDViewer)
|
Manager.InitFromGdViewer(GDViewer)
|
||||||
Else
|
Else
|
||||||
Logger.Warn("Viewer could not be initialized!")
|
Logger.Warn(Resources.Envelope.Viewer_could_not_be_initialized)
|
||||||
End If
|
End If
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
Logger.Warn("Viewer could not be initialized!")
|
Logger.Warn("Viewer could not be initialized!")
|
||||||
Logger.Error(ex)
|
Logger.Error(ex)
|
||||||
MsgBox("Viewer could not be initialized!" & vbNewLine & ex.Message)
|
MsgBox(Resources.Envelope.Viewer_could_not_be_initialized & vbNewLine & ex.Message)
|
||||||
End Try
|
End Try
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
@@ -243,7 +243,7 @@ Partial Public Class frmFieldEditor
|
|||||||
If oElement IsNot Nothing Then
|
If oElement IsNot Nothing Then
|
||||||
oStickyNote.Tag = GetAnnotationTag(SelectedReceiver.Id, oPage, oElement.Id)
|
oStickyNote.Tag = GetAnnotationTag(SelectedReceiver.Id, oPage, oElement.Id)
|
||||||
Else
|
Else
|
||||||
MsgBox("No Element for Update found!")
|
'MsgBox("No Element for Update found!")
|
||||||
Logger.Error("No Element for Update found!")
|
Logger.Error("No Element for Update found!")
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
@@ -302,7 +302,7 @@ Partial Public Class frmFieldEditor
|
|||||||
oAnnotation.Tag = GetAnnotationTag(pReceiverId, oPage, pElement.Id)
|
oAnnotation.Tag = GetAnnotationTag(pReceiverId, oPage, pElement.Id)
|
||||||
Else
|
Else
|
||||||
Dim oStatus = Manager.GetStat()
|
Dim oStatus = Manager.GetStat()
|
||||||
MsgBox(String.Format("GDViewer returned error [{0}] on action [{1}]", oStatus.ToString, "LoadAnnotation"))
|
MsgBox(String.Format(Resources.Envelope.GdViewer_ActionError, oStatus.ToString(), "LoadAnnotation"))
|
||||||
Logger.Error("GDViewer returned error [{0}] on action [{1}]", oStatus.ToString, "LoadAnnotation")
|
Logger.Error("GDViewer returned error [{0}] on action [{1}]", oStatus.ToString, "LoadAnnotation")
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
@@ -389,7 +389,7 @@ Partial Public Class frmFieldEditor
|
|||||||
If oStatus = GdPictureStatus.OK Then
|
If oStatus = GdPictureStatus.OK Then
|
||||||
Return True
|
Return True
|
||||||
Else
|
Else
|
||||||
MsgBox(String.Format("GDViewer returned error [{0}] on action [{1}]", oStatus.ToString, pAction))
|
MsgBox(String.Format(Resources.Envelope.GdViewer_ActionError, oStatus.ToString(), pAction))
|
||||||
Logger.Error("GDViewer returned error [{0}] on action [{1}]", oStatus.ToString, pAction)
|
Logger.Error("GDViewer returned error [{0}] on action [{1}]", oStatus.ToString, pAction)
|
||||||
Return False
|
Return False
|
||||||
End If
|
End If
|
||||||
|
|||||||
24
EnvelopeGenerator.Form/frmGhostMode.Designer.vb
generated
24
EnvelopeGenerator.Form/frmGhostMode.Designer.vb
generated
@@ -37,9 +37,13 @@ Partial Class frmGhostMode
|
|||||||
'
|
'
|
||||||
'RibbonControl1
|
'RibbonControl1
|
||||||
'
|
'
|
||||||
Me.RibbonControl1.ExpandCollapseItem.Id = 0
|
|
||||||
Me.RibbonControl1.Items.AddRange(New DevExpress.XtraBars.BarItem() {Me.RibbonControl1.ExpandCollapseItem, Me.RibbonControl1.SearchEditItem, Me.BarButtonItem1})
|
|
||||||
resources.ApplyResources(Me.RibbonControl1, "RibbonControl1")
|
resources.ApplyResources(Me.RibbonControl1, "RibbonControl1")
|
||||||
|
Me.RibbonControl1.ExpandCollapseItem.Id = 0
|
||||||
|
Me.RibbonControl1.ExpandCollapseItem.ImageOptions.ImageIndex = CType(resources.GetObject("RibbonControl1.ExpandCollapseItem.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.RibbonControl1.ExpandCollapseItem.ImageOptions.LargeImageIndex = CType(resources.GetObject("RibbonControl1.ExpandCollapseItem.ImageOptions.LargeImageIndex"), Integer)
|
||||||
|
Me.RibbonControl1.ExpandCollapseItem.ImageOptions.SvgImage = CType(resources.GetObject("RibbonControl1.ExpandCollapseItem.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
|
Me.RibbonControl1.ExpandCollapseItem.SearchTags = resources.GetString("RibbonControl1.ExpandCollapseItem.SearchTags")
|
||||||
|
Me.RibbonControl1.Items.AddRange(New DevExpress.XtraBars.BarItem() {Me.RibbonControl1.ExpandCollapseItem, Me.RibbonControl1.SearchEditItem, Me.BarButtonItem1})
|
||||||
Me.RibbonControl1.MaxItemId = 2
|
Me.RibbonControl1.MaxItemId = 2
|
||||||
Me.RibbonControl1.Name = "RibbonControl1"
|
Me.RibbonControl1.Name = "RibbonControl1"
|
||||||
Me.RibbonControl1.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.RibbonPage1})
|
Me.RibbonControl1.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.RibbonPage1})
|
||||||
@@ -50,6 +54,8 @@ Partial Class frmGhostMode
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.BarButtonItem1, "BarButtonItem1")
|
resources.ApplyResources(Me.BarButtonItem1, "BarButtonItem1")
|
||||||
Me.BarButtonItem1.Id = 1
|
Me.BarButtonItem1.Id = 1
|
||||||
|
Me.BarButtonItem1.ImageOptions.ImageIndex = CType(resources.GetObject("BarButtonItem1.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.BarButtonItem1.ImageOptions.LargeImageIndex = CType(resources.GetObject("BarButtonItem1.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.BarButtonItem1.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem1.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.BarButtonItem1.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem1.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.BarButtonItem1.Name = "BarButtonItem1"
|
Me.BarButtonItem1.Name = "BarButtonItem1"
|
||||||
'
|
'
|
||||||
@@ -74,6 +80,18 @@ Partial Class frmGhostMode
|
|||||||
'GridControl1
|
'GridControl1
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.GridControl1, "GridControl1")
|
resources.ApplyResources(Me.GridControl1, "GridControl1")
|
||||||
|
Me.GridControl1.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridControl1.EmbeddedNavigator.AccessibleDescription")
|
||||||
|
Me.GridControl1.EmbeddedNavigator.AccessibleName = resources.GetString("GridControl1.EmbeddedNavigator.AccessibleName")
|
||||||
|
Me.GridControl1.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridControl1.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
|
||||||
|
Me.GridControl1.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridControl1.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.GridControl1.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridControl1.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.GridControl1.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridControl1.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
|
||||||
|
Me.GridControl1.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridControl1.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
|
||||||
|
Me.GridControl1.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridControl1.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
|
||||||
|
Me.GridControl1.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridControl1.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
|
||||||
|
Me.GridControl1.EmbeddedNavigator.ToolTip = resources.GetString("GridControl1.EmbeddedNavigator.ToolTip")
|
||||||
|
Me.GridControl1.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridControl1.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
|
||||||
|
Me.GridControl1.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridControl1.EmbeddedNavigator.ToolTipTitle")
|
||||||
Me.GridControl1.MainView = Me.GridView1
|
Me.GridControl1.MainView = Me.GridView1
|
||||||
Me.GridControl1.Name = "GridControl1"
|
Me.GridControl1.Name = "GridControl1"
|
||||||
Me.GridControl1.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.GridView1})
|
Me.GridControl1.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.GridView1})
|
||||||
@@ -82,6 +100,7 @@ Partial Class frmGhostMode
|
|||||||
'
|
'
|
||||||
Me.GridView1.Appearance.EvenRow.BackColor = System.Drawing.Color.LightBlue
|
Me.GridView1.Appearance.EvenRow.BackColor = System.Drawing.Color.LightBlue
|
||||||
Me.GridView1.Appearance.EvenRow.Options.UseBackColor = True
|
Me.GridView1.Appearance.EvenRow.Options.UseBackColor = True
|
||||||
|
resources.ApplyResources(Me.GridView1, "GridView1")
|
||||||
Me.GridView1.GridControl = Me.GridControl1
|
Me.GridView1.GridControl = Me.GridControl1
|
||||||
Me.GridView1.Name = "GridView1"
|
Me.GridView1.Name = "GridView1"
|
||||||
Me.GridView1.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.[False]
|
Me.GridView1.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.[False]
|
||||||
@@ -95,7 +114,6 @@ Partial Class frmGhostMode
|
|||||||
Me.GridView1.OptionsView.ShowAutoFilterRow = True
|
Me.GridView1.OptionsView.ShowAutoFilterRow = True
|
||||||
Me.GridView1.OptionsView.ShowErrorPanel = DevExpress.Utils.DefaultBoolean.[True]
|
Me.GridView1.OptionsView.ShowErrorPanel = DevExpress.Utils.DefaultBoolean.[True]
|
||||||
Me.GridView1.OptionsView.ShowViewCaption = True
|
Me.GridView1.OptionsView.ShowViewCaption = True
|
||||||
resources.ApplyResources(Me.GridView1, "GridView1")
|
|
||||||
'
|
'
|
||||||
'frmGhostMode
|
'frmGhostMode
|
||||||
'
|
'
|
||||||
|
|||||||
@@ -112,21 +112,44 @@
|
|||||||
<value>2.0</value>
|
<value>2.0</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<resheader name="reader">
|
<resheader name="reader">
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="RibbonPageGroup1.Text">
|
<data name="BarButtonItem1.Caption" xml:space="preserve">
|
||||||
<value>Actions</value>
|
|
||||||
</data>
|
|
||||||
<data name="GridView1.ViewCaption">
|
|
||||||
<value>Please select a ghost user</value>
|
|
||||||
</data>
|
|
||||||
<data name="BarButtonItem1.Caption">
|
|
||||||
<value>Activate ghost mode</value>
|
<value>Activate ghost mode</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RibbonPage1.Text">
|
<assembly alias="DevExpress.Data.v21.2" name="DevExpress.Data.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||||
<value>Start</value>
|
<data name="BarButtonItem1.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAAIEAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
|
||||||
|
ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5SZWR7ZmlsbDojRDExQzFDO30KCS5HcmVlbntmaWxsOiMwMzlD
|
||||||
|
MjM7fQoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
||||||
|
Y2l0eTowLjU7fQoJLnN0MXtvcGFjaXR5OjAuNzU7fQoJLnN0MntkaXNwbGF5Om5vbmU7fQoJLnN0M3tk
|
||||||
|
aXNwbGF5OmlubGluZTtmaWxsOiNGRkIxMTU7fQoJLnN0NHtkaXNwbGF5OmlubGluZTt9Cgkuc3Q1e2Rp
|
||||||
|
c3BsYXk6aW5saW5lO29wYWNpdHk6MC43NTt9Cgkuc3Q2e2Rpc3BsYXk6aW5saW5lO29wYWNpdHk6MC41
|
||||||
|
O30KCS5zdDd7ZGlzcGxheTppbmxpbmU7ZmlsbDojMDM5QzIzO30KCS5zdDh7ZGlzcGxheTppbmxpbmU7
|
||||||
|
ZmlsbDojRDExQzFDO30KCS5zdDl7ZGlzcGxheTppbmxpbmU7ZmlsbDojMTE3N0Q3O30KCS5zdDEwe2Rp
|
||||||
|
c3BsYXk6aW5saW5lO2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+DQogIDxnIGlkPSJSb2xlIj4NCiAgICA8
|
||||||
|
cGF0aCBkPSJNNCwydjE2YzAsNi42LDUuNCwxMiwxMiwxMnMxMi01LjQsMTItMTJWMkg0eiBNMTEsOWMx
|
||||||
|
LjcsMCwzLDEuMywzLDNIOEM4LDEwLjMsOS4zLDksMTEsOXogTTE2LDI0ICAgYy0zLjMsMC02LTIuNy02
|
||||||
|
LTZjMCwxLjEsMi43LDIsNiwyczYtMC45LDYtMkMyMiwyMS4zLDE5LjMsMjQsMTYsMjR6IE0xOCwxMmMw
|
||||||
|
LTEuNywxLjMtMywzLTNzMywxLjMsMywzSDE4eiIgY2xhc3M9IlllbGxvdyIgLz4NCiAgPC9nPg0KPC9z
|
||||||
|
dmc+Cw==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonPageGroup1.Text" xml:space="preserve">
|
||||||
|
<value>Actions</value>
|
||||||
|
</data>
|
||||||
|
<data name="GridView1.ViewCaption" xml:space="preserve">
|
||||||
|
<value>Please select a ghost user</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -112,21 +112,47 @@
|
|||||||
<value>2.0</value>
|
<value>2.0</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<resheader name="reader">
|
<resheader name="reader">
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="RibbonPageGroup1.Text">
|
<data name="BarButtonItem1.Caption" xml:space="preserve">
|
||||||
|
<value>Activer le mode gost</value>
|
||||||
|
</data>
|
||||||
|
<assembly alias="DevExpress.Data.v21.2" name="DevExpress.Data.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||||
|
<data name="BarButtonItem1.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
dkV4cHJlc3MuVXRpbHMuU3ZnLlN2Z0ltYWdlAQAAAAREYXRhBwICAAAACQMAAAAPAwAAAAIEAAAC77u/
|
||||||
|
PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0nVVRGLTgnPz4NCjxzdmcgeD0iMHB4IiB5PSIwcHgi
|
||||||
|
IHZpZXdCb3g9IjAgMCAzMiAzMiIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv
|
||||||
|
MjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3Bh
|
||||||
|
Y2U9InByZXNlcnZlIiBpZD0iTGF5ZXJfMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAg
|
||||||
|
MzIgMzIiPg0KICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLkJsdWV7ZmlsbDojMTE3N0Q3O30KCS5Z
|
||||||
|
ZWxsb3d7ZmlsbDojRkZCMTE1O30KCS5SZWR7ZmlsbDojRDExQzFDO30KCS5HcmVlbntmaWxsOiMwMzlD
|
||||||
|
MjM7fQoJLkJsYWNre2ZpbGw6IzcyNzI3Mjt9CgkuV2hpdGV7ZmlsbDojRkZGRkZGO30KCS5zdDB7b3Bh
|
||||||
|
Y2l0eTowLjU7fQoJLnN0MXtvcGFjaXR5OjAuNzU7fQoJLnN0MntkaXNwbGF5Om5vbmU7fQoJLnN0M3tk
|
||||||
|
aXNwbGF5OmlubGluZTtmaWxsOiNGRkIxMTU7fQoJLnN0NHtkaXNwbGF5OmlubGluZTt9Cgkuc3Q1e2Rp
|
||||||
|
c3BsYXk6aW5saW5lO29wYWNpdHk6MC43NTt9Cgkuc3Q2e2Rpc3BsYXk6aW5saW5lO29wYWNpdHk6MC41
|
||||||
|
O30KCS5zdDd7ZGlzcGxheTppbmxpbmU7ZmlsbDojMDM5QzIzO30KCS5zdDh7ZGlzcGxheTppbmxpbmU7
|
||||||
|
ZmlsbDojRDExQzFDO30KCS5zdDl7ZGlzcGxheTppbmxpbmU7ZmlsbDojMTE3N0Q3O30KCS5zdDEwe2Rp
|
||||||
|
c3BsYXk6aW5saW5lO2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+DQogIDxnIGlkPSJSb2xlIj4NCiAgICA8
|
||||||
|
cGF0aCBkPSJNNCwydjE2YzAsNi42LDUuNCwxMiwxMiwxMnMxMi01LjQsMTItMTJWMkg0eiBNMTEsOWMx
|
||||||
|
LjcsMCwzLDEuMywzLDNIOEM4LDEwLjMsOS4zLDksMTEsOXogTTE2LDI0ICAgYy0zLjMsMC02LTIuNy02
|
||||||
|
LTZjMCwxLjEsMi43LDIsNiwyczYtMC45LDYtMkMyMiwyMS4zLDE5LjMsMjQsMTYsMjR6IE0xOCwxMmMw
|
||||||
|
LTEuNywxLjMtMywzLTNzMywxLjMsMywzSDE4eiIgY2xhc3M9IlllbGxvdyIgLz4NCiAgPC9nPg0KPC9z
|
||||||
|
dmc+Cw==
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonPageGroup1.Text" xml:space="preserve">
|
||||||
<value>Actions</value>
|
<value>Actions</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GridView1.ViewCaption">
|
<data name="RibbonPage1.Text" xml:space="preserve">
|
||||||
|
<value>Commencer</value>
|
||||||
|
</data>
|
||||||
|
<data name="GridView1.ViewCaption" xml:space="preserve">
|
||||||
<value>Veuillez sélectionner un utilisateur fantôme</value>
|
<value>Veuillez sélectionner un utilisateur fantôme</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BarButtonItem1.Caption">
|
|
||||||
<value>Activer le Mode Fantôme</value>
|
|
||||||
</data>
|
|
||||||
<data name="RibbonPage1.Text">
|
|
||||||
<value>Démarrer</value>
|
|
||||||
</data>
|
|
||||||
</root>
|
</root>
|
||||||
@@ -117,8 +117,37 @@
|
|||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="BarButtonItem1.Caption" xml:space="preserve">
|
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
<value>Ghost Modus aktivieren</value>
|
<data name="GridControl1.EmbeddedNavigator.AccessibleName" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||||
|
<value />
|
||||||
|
</data>
|
||||||
|
<data name=">>BarButtonItem1.Type" xml:space="preserve">
|
||||||
|
<value>DevExpress.XtraBars.BarButtonItem, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
|
</data>
|
||||||
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
|
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>965, 509</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>RibbonControl1.ZOrder" xml:space="preserve">
|
||||||
|
<value>2</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonControl1.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>0, 0</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>RibbonPage1.Name" xml:space="preserve">
|
||||||
|
<value>RibbonPage1</value>
|
||||||
|
</data>
|
||||||
|
<data name="GridView1.ViewCaption" xml:space="preserve">
|
||||||
|
<value>Bitte wählen Sie einen Ghost User</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>GridView1.Name" xml:space="preserve">
|
||||||
|
<value>GridView1</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>RibbonStatusBar1.Parent" xml:space="preserve">
|
||||||
|
<value>$this</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>RibbonControl1.Type" xml:space="preserve">
|
||||||
|
<value>DevExpress.XtraBars.Ribbon.RibbonControl, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
<assembly alias="DevExpress.Data.v21.2" name="DevExpress.Data.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
<assembly alias="DevExpress.Data.v21.2" name="DevExpress.Data.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||||
<data name="BarButtonItem1.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="BarButtonItem1.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
@@ -146,121 +175,148 @@
|
|||||||
dmc+Cw==
|
dmc+Cw==
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
<assembly alias="DevExpress.Utils.v21.2" name="DevExpress.Utils.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||||
<data name="RibbonControl1.Location" type="System.Drawing.Point, System.Drawing">
|
<data name="GridControl1.EmbeddedNavigator.ToolTipIconType" type="DevExpress.Utils.ToolTipIconType, DevExpress.Utils.v21.2">
|
||||||
<value>0, 0</value>
|
<value>None</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RibbonPageGroup1.Text" xml:space="preserve">
|
<data name="RibbonControl1.ExpandCollapseItem.SearchTags" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||||
<value>Aktionen</value>
|
<value />
|
||||||
</data>
|
</data>
|
||||||
<data name="RibbonPage1.Text" xml:space="preserve">
|
<data name="GridControl1.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||||
<value>Start</value>
|
<value>Fill</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RibbonControl1.Size" type="System.Drawing.Size, System.Drawing">
|
<data name=">>GridControl1.Parent" xml:space="preserve">
|
||||||
<value>965, 146</value>
|
|
||||||
</data>
|
|
||||||
<data name="RibbonStatusBar1.Location" type="System.Drawing.Point, System.Drawing">
|
|
||||||
<value>0, 487</value>
|
|
||||||
</data>
|
|
||||||
<data name="RibbonStatusBar1.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>965, 22</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonStatusBar1.Name" xml:space="preserve">
|
|
||||||
<value>RibbonStatusBar1</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonStatusBar1.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraBars.Ribbon.RibbonStatusBar, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonStatusBar1.Parent" xml:space="preserve">
|
|
||||||
<value>$this</value>
|
<value>$this</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name=">>GridView1.Type" xml:space="preserve">
|
||||||
|
<value>DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
|
</data>
|
||||||
|
<data name="$this.Font" type="System.Drawing.Font, System.Drawing">
|
||||||
|
<value>Calibri, 8.25pt</value>
|
||||||
|
</data>
|
||||||
|
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
|
<data name="RibbonControl1.ExpandCollapseItem.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>-1</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>$this.Name" xml:space="preserve">
|
||||||
|
<value>frmGhostMode</value>
|
||||||
|
</data>
|
||||||
<data name=">>RibbonStatusBar1.ZOrder" xml:space="preserve">
|
<data name=">>RibbonStatusBar1.ZOrder" xml:space="preserve">
|
||||||
<value>1</value>
|
<value>1</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>RibbonControl1.Name" xml:space="preserve">
|
|
||||||
<value>RibbonControl1</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonControl1.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraBars.Ribbon.RibbonControl, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonControl1.Parent" xml:space="preserve">
|
|
||||||
<value>$this</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonControl1.ZOrder" xml:space="preserve">
|
|
||||||
<value>2</value>
|
|
||||||
</data>
|
|
||||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
|
||||||
<data name="GridControl1.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
|
||||||
<value>Fill</value>
|
|
||||||
</data>
|
|
||||||
<data name="GridControl1.Location" type="System.Drawing.Point, System.Drawing">
|
|
||||||
<value>0, 146</value>
|
|
||||||
</data>
|
|
||||||
<data name="GridView1.ViewCaption" xml:space="preserve">
|
|
||||||
<value>Bitte wählen Sie einen Ghost User</value>
|
|
||||||
</data>
|
|
||||||
<data name="GridControl1.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="GridControl1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>965, 341</value>
|
<value>965, 341</value>
|
||||||
</data>
|
</data>
|
||||||
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
<data name=">>RibbonPageGroup1.Type" xml:space="preserve">
|
||||||
<data name="GridControl1.TabIndex" type="System.Int32, mscorlib">
|
<value>DevExpress.XtraBars.Ribbon.RibbonPageGroup, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
<value>9</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name=">>GridControl1.Name" xml:space="preserve">
|
<data name=">>$this.Type" xml:space="preserve">
|
||||||
<value>GridControl1</value>
|
<value>System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>GridControl1.Type" xml:space="preserve">
|
<data name=">>GridControl1.Type" xml:space="preserve">
|
||||||
<value>DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>GridControl1.Parent" xml:space="preserve">
|
<data name="GridControl1.EmbeddedNavigator.BackgroundImageLayout" type="System.Windows.Forms.ImageLayout, System.Windows.Forms">
|
||||||
|
<value>Tile</value>
|
||||||
|
</data>
|
||||||
|
<data name="GridControl1.EmbeddedNavigator.AllowHtmlTextInToolTip" type="DevExpress.Utils.DefaultBoolean, DevExpress.Data.v21.2">
|
||||||
|
<value>Default</value>
|
||||||
|
</data>
|
||||||
|
<assembly alias="DevExpress.XtraEditors.v21.2" name="DevExpress.XtraEditors.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
|
||||||
|
<data name="GridControl1.EmbeddedNavigator.TextLocation" type="DevExpress.XtraEditors.NavigatorButtonsTextLocation, DevExpress.XtraEditors.v21.2">
|
||||||
|
<value>Center</value>
|
||||||
|
</data>
|
||||||
|
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
|
||||||
|
<value>6, 13</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonStatusBar1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>965, 22</value>
|
||||||
|
</data>
|
||||||
|
<data name="GridControl1.EmbeddedNavigator.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||||
|
<value>Top, Left</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>RibbonPageGroup1.Name" xml:space="preserve">
|
||||||
|
<value>RibbonPageGroup1</value>
|
||||||
|
</data>
|
||||||
|
<data name="GridControl1.EmbeddedNavigator.ToolTip" xml:space="preserve">
|
||||||
|
<value />
|
||||||
|
</data>
|
||||||
|
<data name=">>BarButtonItem1.Name" xml:space="preserve">
|
||||||
|
<value>BarButtonItem1</value>
|
||||||
|
</data>
|
||||||
|
<data name="BarButtonItem1.Caption" xml:space="preserve">
|
||||||
|
<value>Ghost Modus aktivieren</value>
|
||||||
|
</data>
|
||||||
|
<data name="GridControl1.EmbeddedNavigator.AccessibleDescription" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||||
|
<value />
|
||||||
|
</data>
|
||||||
|
<data name="RibbonPage1.Text" xml:space="preserve">
|
||||||
|
<value>Start</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>RibbonControl1.Name" xml:space="preserve">
|
||||||
|
<value>RibbonControl1</value>
|
||||||
|
</data>
|
||||||
|
<data name="GridControl1.EmbeddedNavigator.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
|
||||||
|
<value>Inherit</value>
|
||||||
|
</data>
|
||||||
|
<data name="GridControl1.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>0, 146</value>
|
||||||
|
</data>
|
||||||
|
<data name="BarButtonItem1.ImageOptions.LargeImageIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>-1</value>
|
||||||
|
</data>
|
||||||
|
<data name="GridControl1.EmbeddedNavigator.ToolTipTitle" xml:space="preserve">
|
||||||
|
<value />
|
||||||
|
</data>
|
||||||
|
<data name=">>RibbonControl1.Parent" xml:space="preserve">
|
||||||
<value>$this</value>
|
<value>$this</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name=">>RibbonStatusBar1.Type" xml:space="preserve">
|
||||||
|
<value>DevExpress.XtraBars.Ribbon.RibbonStatusBar, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonStatusBar1.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>0, 487</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>GridControl1.Name" xml:space="preserve">
|
||||||
|
<value>GridControl1</value>
|
||||||
|
</data>
|
||||||
|
<data name="GridControl1.EmbeddedNavigator.BackgroundImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||||
|
<value />
|
||||||
|
</data>
|
||||||
|
<data name="GridControl1.TabIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>9</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>RibbonStatusBar1.Name" xml:space="preserve">
|
||||||
|
<value>RibbonStatusBar1</value>
|
||||||
|
</data>
|
||||||
|
<data name="GridControl1.EmbeddedNavigator.MaximumSize" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>0, 0</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonControl1.ExpandCollapseItem.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>-1</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonControl1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>965, 146</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonControl1.ExpandCollapseItem.ImageOptions.SvgImage" type="System.Resources.ResXNullRef, System.Windows.Forms">
|
||||||
|
<value />
|
||||||
|
</data>
|
||||||
|
<data name=">>RibbonPage1.Type" xml:space="preserve">
|
||||||
|
<value>DevExpress.XtraBars.Ribbon.RibbonPage, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonPageGroup1.Text" xml:space="preserve">
|
||||||
|
<value>Aktionen</value>
|
||||||
|
</data>
|
||||||
|
<data name="BarButtonItem1.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>-1</value>
|
||||||
|
</data>
|
||||||
|
<data name="$this.StartPosition" type="System.Windows.Forms.FormStartPosition, System.Windows.Forms">
|
||||||
|
<value>CenterParent</value>
|
||||||
|
</data>
|
||||||
<data name=">>GridControl1.ZOrder" xml:space="preserve">
|
<data name=">>GridControl1.ZOrder" xml:space="preserve">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
</data>
|
</data>
|
||||||
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<value>True</value>
|
<value>True</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
|
|
||||||
<value>6, 13</value>
|
|
||||||
</data>
|
|
||||||
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>965, 509</value>
|
|
||||||
</data>
|
|
||||||
<data name="$this.Font" type="System.Drawing.Font, System.Drawing">
|
|
||||||
<value>Calibri, 8.25pt</value>
|
|
||||||
</data>
|
|
||||||
<data name="$this.StartPosition" type="System.Windows.Forms.FormStartPosition, System.Windows.Forms">
|
|
||||||
<value>CenterParent</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>BarButtonItem1.Name" xml:space="preserve">
|
|
||||||
<value>BarButtonItem1</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>BarButtonItem1.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraBars.BarButtonItem, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonPage1.Name" xml:space="preserve">
|
|
||||||
<value>RibbonPage1</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonPage1.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraBars.Ribbon.RibbonPage, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonPageGroup1.Name" xml:space="preserve">
|
|
||||||
<value>RibbonPageGroup1</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonPageGroup1.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraBars.Ribbon.RibbonPageGroup, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>GridView1.Name" xml:space="preserve">
|
|
||||||
<value>GridView1</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>GridView1.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>$this.Name" xml:space="preserve">
|
|
||||||
<value>frmGhostMode</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>$this.Type" xml:space="preserve">
|
|
||||||
<value>System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</data>
|
|
||||||
</root>
|
</root>
|
||||||
@@ -1,4 +1,6 @@
|
|||||||
Public Class frmGhostMode
|
Imports EnvelopeGenerator.CommonServices.My
|
||||||
|
|
||||||
|
Public Class frmGhostMode
|
||||||
Private Sub frmGhostMode_Load(sender As Object, e As EventArgs) Handles Me.Load
|
Private Sub frmGhostMode_Load(sender As Object, e As EventArgs) Handles Me.Load
|
||||||
Dim oSQL = "SELECT T.USERNAME,T.NAME, T.[PRENAME],T.EMAIL FROM TBDD_USER T ORDER BY USERNAME"
|
Dim oSQL = "SELECT T.USERNAME,T.NAME, T.[PRENAME],T.EMAIL FROM TBDD_USER T ORDER BY USERNAME"
|
||||||
Dim DT_USER = DB_DD_ECM.GetDatatable(oSQL)
|
Dim DT_USER = DB_DD_ECM.GetDatatable(oSQL)
|
||||||
@@ -11,7 +13,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox("Error Load_Users:" & vbNewLine & ex.Message)
|
MsgBox(Resources.Envelope.Error_LoadUsers & vbNewLine & ex.Message)
|
||||||
End Try
|
End Try
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -45,7 +47,7 @@
|
|||||||
End If
|
End If
|
||||||
End Try
|
End Try
|
||||||
If oFocusedUserName <> String.Empty Then
|
If oFocusedUserName <> String.Empty Then
|
||||||
Dim result As MsgBoxResult = MsgBox("Do You really want to activate the Ghost-Mode?", MsgBoxStyle.YesNo, "")
|
Dim result As MsgBoxResult = MsgBox(Resources.Envelope.Activate_ghost_mode, MsgBoxStyle.YesNo, "")
|
||||||
'wenn Speichern ja
|
'wenn Speichern ja
|
||||||
If result = MsgBoxResult.Yes Then
|
If result = MsgBoxResult.Yes Then
|
||||||
USER_GHOST_MODE_USRNAME = oFocusedUserName
|
USER_GHOST_MODE_USRNAME = oFocusedUserName
|
||||||
@@ -53,7 +55,7 @@
|
|||||||
Me.Close()
|
Me.Close()
|
||||||
End If
|
End If
|
||||||
Else
|
Else
|
||||||
MsgBox("Please choose an user for ghostmode!", MsgBoxStyle.Information)
|
MsgBox(Resources.Envelope.Select_user_for_ghost_mode, MsgBoxStyle.Information)
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
End Class
|
End Class
|
||||||
139
EnvelopeGenerator.Form/frmMain.Designer.vb
generated
139
EnvelopeGenerator.Form/frmMain.Designer.vb
generated
@@ -67,10 +67,12 @@ Partial Class frmMain
|
|||||||
Me.BarButtonItem4 = New DevExpress.XtraBars.BarButtonItem()
|
Me.BarButtonItem4 = New DevExpress.XtraBars.BarButtonItem()
|
||||||
Me.BarStaticItemGhost = New DevExpress.XtraBars.BarStaticItem()
|
Me.BarStaticItemGhost = New DevExpress.XtraBars.BarStaticItem()
|
||||||
Me.bbtnitm2Faktor = New DevExpress.XtraBars.BarButtonItem()
|
Me.bbtnitm2Faktor = New DevExpress.XtraBars.BarButtonItem()
|
||||||
|
Me.BarButtonItem2 = New DevExpress.XtraBars.BarButtonItem()
|
||||||
Me.RibbonPage1 = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
Me.RibbonPage1 = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
||||||
Me.RibbonPageEnvelopeActions = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.RibbonPageEnvelopeActions = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
Me.RibbonPageGroup1 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.RibbonPageGroup1 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
Me.RibbonPageGroupFunctions = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.RibbonPageGroupFunctions = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
|
Me.RibbonPageGroupReceiver = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
Me.RibbonPage2 = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
Me.RibbonPage2 = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
||||||
Me.RibbonPageGroup3 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.RibbonPageGroup3 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
Me.RibbonStatusBar = New DevExpress.XtraBars.Ribbon.RibbonStatusBar()
|
Me.RibbonStatusBar = New DevExpress.XtraBars.Ribbon.RibbonStatusBar()
|
||||||
@@ -87,6 +89,7 @@ Partial Class frmMain
|
|||||||
Me.ColHistoryDateCompleted = New DevExpress.XtraGrid.Columns.GridColumn()
|
Me.ColHistoryDateCompleted = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||||
Me.ViewCompleted = New DevExpress.XtraGrid.Views.Grid.GridView()
|
Me.ViewCompleted = New DevExpress.XtraGrid.Views.Grid.GridView()
|
||||||
Me.GridColumn3 = New DevExpress.XtraGrid.Columns.GridColumn()
|
Me.GridColumn3 = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||||
|
Me.GridColumn6 = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||||
Me.GridColumn4 = New DevExpress.XtraGrid.Columns.GridColumn()
|
Me.GridColumn4 = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||||
Me.GridColumn5 = New DevExpress.XtraGrid.Columns.GridColumn()
|
Me.GridColumn5 = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||||
Me.GridColumn7 = New DevExpress.XtraGrid.Columns.GridColumn()
|
Me.GridColumn7 = New DevExpress.XtraGrid.Columns.GridColumn()
|
||||||
@@ -152,16 +155,16 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
'SplitContainerControl1
|
'SplitContainerControl1
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.SplitContainerControl1, "SplitContainerControl1")
|
||||||
Me.SplitContainerControl1.Collapsed = True
|
Me.SplitContainerControl1.Collapsed = True
|
||||||
Me.SplitContainerControl1.CollapsePanel = DevExpress.XtraEditors.SplitCollapsePanel.Panel2
|
Me.SplitContainerControl1.CollapsePanel = DevExpress.XtraEditors.SplitCollapsePanel.Panel2
|
||||||
resources.ApplyResources(Me.SplitContainerControl1, "SplitContainerControl1")
|
|
||||||
Me.SplitContainerControl1.Horizontal = False
|
Me.SplitContainerControl1.Horizontal = False
|
||||||
Me.SplitContainerControl1.Name = "SplitContainerControl1"
|
Me.SplitContainerControl1.Name = "SplitContainerControl1"
|
||||||
'
|
'
|
||||||
'SplitContainerControl1.Panel1
|
'SplitContainerControl1.Panel1
|
||||||
'
|
'
|
||||||
Me.SplitContainerControl1.Panel1.Controls.Add(Me.XtraTabControlMain)
|
|
||||||
resources.ApplyResources(Me.SplitContainerControl1.Panel1, "SplitContainerControl1.Panel1")
|
resources.ApplyResources(Me.SplitContainerControl1.Panel1, "SplitContainerControl1.Panel1")
|
||||||
|
Me.SplitContainerControl1.Panel1.Controls.Add(Me.XtraTabControlMain)
|
||||||
'
|
'
|
||||||
'SplitContainerControl1.Panel2
|
'SplitContainerControl1.Panel2
|
||||||
'
|
'
|
||||||
@@ -177,19 +180,25 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
'XtraTabPage1
|
'XtraTabPage1
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.XtraTabPage1, "XtraTabPage1")
|
||||||
Me.XtraTabPage1.Controls.Add(Me.GridEnvelopes)
|
Me.XtraTabPage1.Controls.Add(Me.GridEnvelopes)
|
||||||
Me.XtraTabPage1.Name = "XtraTabPage1"
|
Me.XtraTabPage1.Name = "XtraTabPage1"
|
||||||
resources.ApplyResources(Me.XtraTabPage1, "XtraTabPage1")
|
|
||||||
'
|
'
|
||||||
'GridEnvelopes
|
'GridEnvelopes
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.GridEnvelopes, "GridEnvelopes")
|
resources.ApplyResources(Me.GridEnvelopes, "GridEnvelopes")
|
||||||
|
Me.GridEnvelopes.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridEnvelopes.EmbeddedNavigator.AccessibleDescription")
|
||||||
|
Me.GridEnvelopes.EmbeddedNavigator.AccessibleName = resources.GetString("GridEnvelopes.EmbeddedNavigator.AccessibleName")
|
||||||
Me.GridEnvelopes.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
|
Me.GridEnvelopes.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
|
||||||
Me.GridEnvelopes.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
|
Me.GridEnvelopes.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.GridEnvelopes.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
|
||||||
Me.GridEnvelopes.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
|
Me.GridEnvelopes.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
|
||||||
Me.GridEnvelopes.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
|
Me.GridEnvelopes.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
|
||||||
|
Me.GridEnvelopes.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
|
||||||
Me.GridEnvelopes.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
|
Me.GridEnvelopes.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
|
||||||
|
Me.GridEnvelopes.EmbeddedNavigator.ToolTip = resources.GetString("GridEnvelopes.EmbeddedNavigator.ToolTip")
|
||||||
Me.GridEnvelopes.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
|
Me.GridEnvelopes.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
|
||||||
|
Me.GridEnvelopes.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridEnvelopes.EmbeddedNavigator.ToolTipTitle")
|
||||||
GridLevelNode1.LevelTemplate = Me.ViewReceivers
|
GridLevelNode1.LevelTemplate = Me.ViewReceivers
|
||||||
GridLevelNode1.RelationName = "Receivers"
|
GridLevelNode1.RelationName = "Receivers"
|
||||||
GridLevelNode2.LevelTemplate = Me.ViewHistory
|
GridLevelNode2.LevelTemplate = Me.ViewHistory
|
||||||
@@ -203,6 +212,7 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
'ViewReceivers
|
'ViewReceivers
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.ViewReceivers, "ViewReceivers")
|
||||||
Me.ViewReceivers.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.ColReceiverStatus, Me.ColName, Me.ColEmail, Me.ColSignedDate, Me.colAccessCode, Me.ColStatusReceiver})
|
Me.ViewReceivers.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.ColReceiverStatus, Me.ColName, Me.ColEmail, Me.ColSignedDate, Me.colAccessCode, Me.ColStatusReceiver})
|
||||||
Me.ViewReceivers.GridControl = Me.GridEnvelopes
|
Me.ViewReceivers.GridControl = Me.GridEnvelopes
|
||||||
Me.ViewReceivers.Name = "ViewReceivers"
|
Me.ViewReceivers.Name = "ViewReceivers"
|
||||||
@@ -212,7 +222,6 @@ Partial Class frmMain
|
|||||||
Me.ViewReceivers.OptionsView.ShowDetailButtons = False
|
Me.ViewReceivers.OptionsView.ShowDetailButtons = False
|
||||||
Me.ViewReceivers.OptionsView.ShowGroupPanel = False
|
Me.ViewReceivers.OptionsView.ShowGroupPanel = False
|
||||||
Me.ViewReceivers.OptionsView.ShowIndicator = False
|
Me.ViewReceivers.OptionsView.ShowIndicator = False
|
||||||
resources.ApplyResources(Me.ViewReceivers, "ViewReceivers")
|
|
||||||
'
|
'
|
||||||
'ColReceiverStatus
|
'ColReceiverStatus
|
||||||
'
|
'
|
||||||
@@ -256,6 +265,7 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
'ViewHistory
|
'ViewHistory
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.ViewHistory, "ViewHistory")
|
||||||
Me.ViewHistory.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.ColHistoryStatus, Me.ColHistoryUserReference, Me.ColHistoryDate})
|
Me.ViewHistory.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.ColHistoryStatus, Me.ColHistoryUserReference, Me.ColHistoryDate})
|
||||||
Me.ViewHistory.GridControl = Me.GridEnvelopes
|
Me.ViewHistory.GridControl = Me.GridEnvelopes
|
||||||
Me.ViewHistory.Name = "ViewHistory"
|
Me.ViewHistory.Name = "ViewHistory"
|
||||||
@@ -287,6 +297,7 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
'ViewEnvelopes
|
'ViewEnvelopes
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.ViewEnvelopes, "ViewEnvelopes")
|
||||||
Me.ViewEnvelopes.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colEnvelopeId, Me.colContractType, Me.colStatus, Me.colTitle, Me.colAddedWhen, Me.GridColumn2})
|
Me.ViewEnvelopes.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colEnvelopeId, Me.colContractType, Me.colStatus, Me.colTitle, Me.colAddedWhen, Me.GridColumn2})
|
||||||
Me.ViewEnvelopes.GridControl = Me.GridEnvelopes
|
Me.ViewEnvelopes.GridControl = Me.GridEnvelopes
|
||||||
Me.ViewEnvelopes.Name = "ViewEnvelopes"
|
Me.ViewEnvelopes.Name = "ViewEnvelopes"
|
||||||
@@ -337,12 +348,14 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
'RibbonControl
|
'RibbonControl
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.RibbonControl, "RibbonControl")
|
||||||
Me.RibbonControl.ExpandCollapseItem.Id = 0
|
Me.RibbonControl.ExpandCollapseItem.Id = 0
|
||||||
Me.RibbonControl.ExpandCollapseItem.ImageOptions.ImageIndex = CType(resources.GetObject("RibbonControl.ExpandCollapseItem.ImageOptions.ImageIndex"), Integer)
|
Me.RibbonControl.ExpandCollapseItem.ImageOptions.ImageIndex = CType(resources.GetObject("RibbonControl.ExpandCollapseItem.ImageOptions.ImageIndex"), Integer)
|
||||||
Me.RibbonControl.ExpandCollapseItem.ImageOptions.LargeImageIndex = CType(resources.GetObject("RibbonControl.ExpandCollapseItem.ImageOptions.LargeImageIndex"), Integer)
|
Me.RibbonControl.ExpandCollapseItem.ImageOptions.LargeImageIndex = CType(resources.GetObject("RibbonControl.ExpandCollapseItem.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.RibbonControl.Items.AddRange(New DevExpress.XtraBars.BarItem() {Me.RibbonControl.ExpandCollapseItem, Me.RibbonControl.SearchEditItem, Me.btnCreateEnvelope, Me.btnEditEnvelope, Me.btnDeleteEnvelope, Me.BarButtonItem1, Me.txtRefreshLabel, Me.btnShowDocument, Me.btnContactReceiver, Me.txtEnvelopeIdLabel, Me.btnOpenLogDirectory, Me.BarCheckItem1, Me.bsitmInfo, Me.bbtnitmEB, Me.bbtnitmInfoMail, Me.bbtnitm_ResendInvitation, Me.BarButtonItem3, Me.BarButtonItem4, Me.BarStaticItemGhost, Me.bbtnitm2Faktor})
|
Me.RibbonControl.ExpandCollapseItem.ImageOptions.SvgImage = CType(resources.GetObject("RibbonControl.ExpandCollapseItem.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
resources.ApplyResources(Me.RibbonControl, "RibbonControl")
|
Me.RibbonControl.ExpandCollapseItem.SearchTags = resources.GetString("RibbonControl.ExpandCollapseItem.SearchTags")
|
||||||
Me.RibbonControl.MaxItemId = 21
|
Me.RibbonControl.Items.AddRange(New DevExpress.XtraBars.BarItem() {Me.RibbonControl.ExpandCollapseItem, Me.RibbonControl.SearchEditItem, Me.btnCreateEnvelope, Me.btnEditEnvelope, Me.btnDeleteEnvelope, Me.BarButtonItem1, Me.txtRefreshLabel, Me.btnShowDocument, Me.btnContactReceiver, Me.txtEnvelopeIdLabel, Me.btnOpenLogDirectory, Me.BarCheckItem1, Me.bsitmInfo, Me.bbtnitmEB, Me.bbtnitmInfoMail, Me.bbtnitm_ResendInvitation, Me.BarButtonItem3, Me.BarButtonItem4, Me.BarStaticItemGhost, Me.bbtnitm2Faktor, Me.BarButtonItem2})
|
||||||
|
Me.RibbonControl.MaxItemId = 22
|
||||||
Me.RibbonControl.Name = "RibbonControl"
|
Me.RibbonControl.Name = "RibbonControl"
|
||||||
Me.RibbonControl.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.RibbonPage1, Me.RibbonPage2})
|
Me.RibbonControl.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.RibbonPage1, Me.RibbonPage2})
|
||||||
Me.RibbonControl.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.[False]
|
Me.RibbonControl.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.[False]
|
||||||
@@ -431,6 +444,8 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.btnOpenLogDirectory, "btnOpenLogDirectory")
|
resources.ApplyResources(Me.btnOpenLogDirectory, "btnOpenLogDirectory")
|
||||||
Me.btnOpenLogDirectory.Id = 10
|
Me.btnOpenLogDirectory.Id = 10
|
||||||
|
Me.btnOpenLogDirectory.ImageOptions.ImageIndex = CType(resources.GetObject("btnOpenLogDirectory.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.btnOpenLogDirectory.ImageOptions.LargeImageIndex = CType(resources.GetObject("btnOpenLogDirectory.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.btnOpenLogDirectory.ImageOptions.SvgImage = CType(resources.GetObject("btnOpenLogDirectory.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.btnOpenLogDirectory.ImageOptions.SvgImage = CType(resources.GetObject("btnOpenLogDirectory.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.btnOpenLogDirectory.Name = "btnOpenLogDirectory"
|
Me.btnOpenLogDirectory.Name = "btnOpenLogDirectory"
|
||||||
'
|
'
|
||||||
@@ -439,13 +454,20 @@ Partial Class frmMain
|
|||||||
resources.ApplyResources(Me.BarCheckItem1, "BarCheckItem1")
|
resources.ApplyResources(Me.BarCheckItem1, "BarCheckItem1")
|
||||||
Me.BarCheckItem1.Id = 12
|
Me.BarCheckItem1.Id = 12
|
||||||
Me.BarCheckItem1.ImageOptions.Image = CType(resources.GetObject("BarCheckItem1.ImageOptions.Image"), System.Drawing.Image)
|
Me.BarCheckItem1.ImageOptions.Image = CType(resources.GetObject("BarCheckItem1.ImageOptions.Image"), System.Drawing.Image)
|
||||||
|
Me.BarCheckItem1.ImageOptions.ImageIndex = CType(resources.GetObject("BarCheckItem1.ImageOptions.ImageIndex"), Integer)
|
||||||
Me.BarCheckItem1.ImageOptions.LargeImage = CType(resources.GetObject("BarCheckItem1.ImageOptions.LargeImage"), System.Drawing.Image)
|
Me.BarCheckItem1.ImageOptions.LargeImage = CType(resources.GetObject("BarCheckItem1.ImageOptions.LargeImage"), System.Drawing.Image)
|
||||||
|
Me.BarCheckItem1.ImageOptions.LargeImageIndex = CType(resources.GetObject("BarCheckItem1.ImageOptions.LargeImageIndex"), Integer)
|
||||||
|
Me.BarCheckItem1.ImageOptions.SvgImage = CType(resources.GetObject("BarCheckItem1.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.BarCheckItem1.Name = "BarCheckItem1"
|
Me.BarCheckItem1.Name = "BarCheckItem1"
|
||||||
'
|
'
|
||||||
'bsitmInfo
|
'bsitmInfo
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.bsitmInfo, "bsitmInfo")
|
||||||
Me.bsitmInfo.Id = 13
|
Me.bsitmInfo.Id = 13
|
||||||
Me.bsitmInfo.ImageOptions.Image = CType(resources.GetObject("bsitmInfo.ImageOptions.Image"), System.Drawing.Image)
|
Me.bsitmInfo.ImageOptions.Image = CType(resources.GetObject("bsitmInfo.ImageOptions.Image"), System.Drawing.Image)
|
||||||
|
Me.bsitmInfo.ImageOptions.ImageIndex = CType(resources.GetObject("bsitmInfo.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.bsitmInfo.ImageOptions.LargeImageIndex = CType(resources.GetObject("bsitmInfo.ImageOptions.LargeImageIndex"), Integer)
|
||||||
|
Me.bsitmInfo.ImageOptions.SvgImage = CType(resources.GetObject("bsitmInfo.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.bsitmInfo.Name = "bsitmInfo"
|
Me.bsitmInfo.Name = "bsitmInfo"
|
||||||
Me.bsitmInfo.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph
|
Me.bsitmInfo.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph
|
||||||
Me.bsitmInfo.Visibility = DevExpress.XtraBars.BarItemVisibility.Never
|
Me.bsitmInfo.Visibility = DevExpress.XtraBars.BarItemVisibility.Never
|
||||||
@@ -455,6 +477,8 @@ Partial Class frmMain
|
|||||||
resources.ApplyResources(Me.bbtnitmEB, "bbtnitmEB")
|
resources.ApplyResources(Me.bbtnitmEB, "bbtnitmEB")
|
||||||
Me.bbtnitmEB.Enabled = False
|
Me.bbtnitmEB.Enabled = False
|
||||||
Me.bbtnitmEB.Id = 14
|
Me.bbtnitmEB.Id = 14
|
||||||
|
Me.bbtnitmEB.ImageOptions.ImageIndex = CType(resources.GetObject("bbtnitmEB.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.bbtnitmEB.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtnitmEB.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.bbtnitmEB.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitmEB.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.bbtnitmEB.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitmEB.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.bbtnitmEB.Name = "bbtnitmEB"
|
Me.bbtnitmEB.Name = "bbtnitmEB"
|
||||||
'
|
'
|
||||||
@@ -462,6 +486,8 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.bbtnitmInfoMail, "bbtnitmInfoMail")
|
resources.ApplyResources(Me.bbtnitmInfoMail, "bbtnitmInfoMail")
|
||||||
Me.bbtnitmInfoMail.Id = 15
|
Me.bbtnitmInfoMail.Id = 15
|
||||||
|
Me.bbtnitmInfoMail.ImageOptions.ImageIndex = CType(resources.GetObject("bbtnitmInfoMail.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.bbtnitmInfoMail.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtnitmInfoMail.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.bbtnitmInfoMail.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitmInfoMail.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.bbtnitmInfoMail.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitmInfoMail.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.bbtnitmInfoMail.Name = "bbtnitmInfoMail"
|
Me.bbtnitmInfoMail.Name = "bbtnitmInfoMail"
|
||||||
Me.bbtnitmInfoMail.Visibility = DevExpress.XtraBars.BarItemVisibility.Never
|
Me.bbtnitmInfoMail.Visibility = DevExpress.XtraBars.BarItemVisibility.Never
|
||||||
@@ -470,6 +496,8 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.bbtnitm_ResendInvitation, "bbtnitm_ResendInvitation")
|
resources.ApplyResources(Me.bbtnitm_ResendInvitation, "bbtnitm_ResendInvitation")
|
||||||
Me.bbtnitm_ResendInvitation.Id = 16
|
Me.bbtnitm_ResendInvitation.Id = 16
|
||||||
|
Me.bbtnitm_ResendInvitation.ImageOptions.ImageIndex = CType(resources.GetObject("bbtnitm_ResendInvitation.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.bbtnitm_ResendInvitation.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtnitm_ResendInvitation.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.bbtnitm_ResendInvitation.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitm_ResendInvitation.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.bbtnitm_ResendInvitation.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitm_ResendInvitation.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.bbtnitm_ResendInvitation.Name = "bbtnitm_ResendInvitation"
|
Me.bbtnitm_ResendInvitation.Name = "bbtnitm_ResendInvitation"
|
||||||
'
|
'
|
||||||
@@ -477,6 +505,8 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.BarButtonItem3, "BarButtonItem3")
|
resources.ApplyResources(Me.BarButtonItem3, "BarButtonItem3")
|
||||||
Me.BarButtonItem3.Id = 17
|
Me.BarButtonItem3.Id = 17
|
||||||
|
Me.BarButtonItem3.ImageOptions.ImageIndex = CType(resources.GetObject("BarButtonItem3.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.BarButtonItem3.ImageOptions.LargeImageIndex = CType(resources.GetObject("BarButtonItem3.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.BarButtonItem3.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem3.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.BarButtonItem3.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem3.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.BarButtonItem3.Name = "BarButtonItem3"
|
Me.BarButtonItem3.Name = "BarButtonItem3"
|
||||||
'
|
'
|
||||||
@@ -484,6 +514,8 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.BarButtonItem4, "BarButtonItem4")
|
resources.ApplyResources(Me.BarButtonItem4, "BarButtonItem4")
|
||||||
Me.BarButtonItem4.Id = 18
|
Me.BarButtonItem4.Id = 18
|
||||||
|
Me.BarButtonItem4.ImageOptions.ImageIndex = CType(resources.GetObject("BarButtonItem4.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.BarButtonItem4.ImageOptions.LargeImageIndex = CType(resources.GetObject("BarButtonItem4.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.BarButtonItem4.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem4.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.BarButtonItem4.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem4.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.BarButtonItem4.Name = "BarButtonItem4"
|
Me.BarButtonItem4.Name = "BarButtonItem4"
|
||||||
'
|
'
|
||||||
@@ -491,6 +523,9 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.BarStaticItemGhost, "BarStaticItemGhost")
|
resources.ApplyResources(Me.BarStaticItemGhost, "BarStaticItemGhost")
|
||||||
Me.BarStaticItemGhost.Id = 19
|
Me.BarStaticItemGhost.Id = 19
|
||||||
|
Me.BarStaticItemGhost.ImageOptions.ImageIndex = CType(resources.GetObject("BarStaticItemGhost.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.BarStaticItemGhost.ImageOptions.LargeImageIndex = CType(resources.GetObject("BarStaticItemGhost.ImageOptions.LargeImageIndex"), Integer)
|
||||||
|
Me.BarStaticItemGhost.ImageOptions.SvgImage = CType(resources.GetObject("BarStaticItemGhost.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.BarStaticItemGhost.ItemAppearance.Normal.BackColor = System.Drawing.Color.Yellow
|
Me.BarStaticItemGhost.ItemAppearance.Normal.BackColor = System.Drawing.Color.Yellow
|
||||||
Me.BarStaticItemGhost.ItemAppearance.Normal.Font = CType(resources.GetObject("BarStaticItemGhost.ItemAppearance.Normal.Font"), System.Drawing.Font)
|
Me.BarStaticItemGhost.ItemAppearance.Normal.Font = CType(resources.GetObject("BarStaticItemGhost.ItemAppearance.Normal.Font"), System.Drawing.Font)
|
||||||
Me.BarStaticItemGhost.ItemAppearance.Normal.ForeColor = System.Drawing.Color.Black
|
Me.BarStaticItemGhost.ItemAppearance.Normal.ForeColor = System.Drawing.Color.Black
|
||||||
@@ -504,12 +539,23 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.bbtnitm2Faktor, "bbtnitm2Faktor")
|
resources.ApplyResources(Me.bbtnitm2Faktor, "bbtnitm2Faktor")
|
||||||
Me.bbtnitm2Faktor.Id = 20
|
Me.bbtnitm2Faktor.Id = 20
|
||||||
|
Me.bbtnitm2Faktor.ImageOptions.ImageIndex = CType(resources.GetObject("bbtnitm2Faktor.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.bbtnitm2Faktor.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtnitm2Faktor.ImageOptions.LargeImageIndex"), Integer)
|
||||||
Me.bbtnitm2Faktor.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitm2Faktor.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.bbtnitm2Faktor.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitm2Faktor.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.bbtnitm2Faktor.Name = "bbtnitm2Faktor"
|
Me.bbtnitm2Faktor.Name = "bbtnitm2Faktor"
|
||||||
'
|
'
|
||||||
|
'BarButtonItem2
|
||||||
|
'
|
||||||
|
resources.ApplyResources(Me.BarButtonItem2, "BarButtonItem2")
|
||||||
|
Me.BarButtonItem2.Id = 21
|
||||||
|
Me.BarButtonItem2.ImageOptions.ImageIndex = CType(resources.GetObject("BarButtonItem2.ImageOptions.ImageIndex"), Integer)
|
||||||
|
Me.BarButtonItem2.ImageOptions.LargeImageIndex = CType(resources.GetObject("BarButtonItem2.ImageOptions.LargeImageIndex"), Integer)
|
||||||
|
Me.BarButtonItem2.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem2.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
|
Me.BarButtonItem2.Name = "BarButtonItem2"
|
||||||
|
'
|
||||||
'RibbonPage1
|
'RibbonPage1
|
||||||
'
|
'
|
||||||
Me.RibbonPage1.Groups.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageGroup() {Me.RibbonPageEnvelopeActions, Me.RibbonPageGroup1, Me.RibbonPageGroupFunctions})
|
Me.RibbonPage1.Groups.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageGroup() {Me.RibbonPageEnvelopeActions, Me.RibbonPageGroup1, Me.RibbonPageGroupFunctions, Me.RibbonPageGroupReceiver})
|
||||||
Me.RibbonPage1.Name = "RibbonPage1"
|
Me.RibbonPage1.Name = "RibbonPage1"
|
||||||
resources.ApplyResources(Me.RibbonPage1, "RibbonPage1")
|
resources.ApplyResources(Me.RibbonPage1, "RibbonPage1")
|
||||||
'
|
'
|
||||||
@@ -532,14 +578,21 @@ Partial Class frmMain
|
|||||||
'RibbonPageGroupFunctions
|
'RibbonPageGroupFunctions
|
||||||
'
|
'
|
||||||
Me.RibbonPageGroupFunctions.ItemLinks.Add(Me.btnShowDocument)
|
Me.RibbonPageGroupFunctions.ItemLinks.Add(Me.btnShowDocument)
|
||||||
Me.RibbonPageGroupFunctions.ItemLinks.Add(Me.bbtnitm_ResendInvitation)
|
|
||||||
Me.RibbonPageGroupFunctions.ItemLinks.Add(Me.btnContactReceiver)
|
|
||||||
Me.RibbonPageGroupFunctions.ItemLinks.Add(Me.bbtnitm2Faktor)
|
|
||||||
Me.RibbonPageGroupFunctions.ItemLinks.Add(Me.bbtnitmEB)
|
Me.RibbonPageGroupFunctions.ItemLinks.Add(Me.bbtnitmEB)
|
||||||
Me.RibbonPageGroupFunctions.ItemLinks.Add(Me.bbtnitmInfoMail)
|
Me.RibbonPageGroupFunctions.ItemLinks.Add(Me.bbtnitmInfoMail)
|
||||||
Me.RibbonPageGroupFunctions.Name = "RibbonPageGroupFunctions"
|
Me.RibbonPageGroupFunctions.Name = "RibbonPageGroupFunctions"
|
||||||
resources.ApplyResources(Me.RibbonPageGroupFunctions, "RibbonPageGroupFunctions")
|
resources.ApplyResources(Me.RibbonPageGroupFunctions, "RibbonPageGroupFunctions")
|
||||||
'
|
'
|
||||||
|
'RibbonPageGroupReceiver
|
||||||
|
'
|
||||||
|
Me.RibbonPageGroupReceiver.Enabled = False
|
||||||
|
Me.RibbonPageGroupReceiver.ItemLinks.Add(Me.bbtnitm_ResendInvitation)
|
||||||
|
Me.RibbonPageGroupReceiver.ItemLinks.Add(Me.BarButtonItem2)
|
||||||
|
Me.RibbonPageGroupReceiver.ItemLinks.Add(Me.bbtnitm2Faktor)
|
||||||
|
Me.RibbonPageGroupReceiver.ItemLinks.Add(Me.btnContactReceiver)
|
||||||
|
Me.RibbonPageGroupReceiver.Name = "RibbonPageGroupReceiver"
|
||||||
|
resources.ApplyResources(Me.RibbonPageGroupReceiver, "RibbonPageGroupReceiver")
|
||||||
|
'
|
||||||
'RibbonPage2
|
'RibbonPage2
|
||||||
'
|
'
|
||||||
Me.RibbonPage2.Groups.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageGroup() {Me.RibbonPageGroup3})
|
Me.RibbonPage2.Groups.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageGroup() {Me.RibbonPageGroup3})
|
||||||
@@ -556,29 +609,35 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
'RibbonStatusBar
|
'RibbonStatusBar
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.RibbonStatusBar, "RibbonStatusBar")
|
||||||
Me.RibbonStatusBar.ItemLinks.Add(Me.BarStaticItemGhost)
|
Me.RibbonStatusBar.ItemLinks.Add(Me.BarStaticItemGhost)
|
||||||
Me.RibbonStatusBar.ItemLinks.Add(Me.txtRefreshLabel)
|
Me.RibbonStatusBar.ItemLinks.Add(Me.txtRefreshLabel)
|
||||||
Me.RibbonStatusBar.ItemLinks.Add(Me.txtEnvelopeIdLabel)
|
Me.RibbonStatusBar.ItemLinks.Add(Me.txtEnvelopeIdLabel)
|
||||||
Me.RibbonStatusBar.ItemLinks.Add(Me.bsitmInfo)
|
Me.RibbonStatusBar.ItemLinks.Add(Me.bsitmInfo)
|
||||||
resources.ApplyResources(Me.RibbonStatusBar, "RibbonStatusBar")
|
|
||||||
Me.RibbonStatusBar.Name = "RibbonStatusBar"
|
Me.RibbonStatusBar.Name = "RibbonStatusBar"
|
||||||
Me.RibbonStatusBar.Ribbon = Me.RibbonControl
|
Me.RibbonStatusBar.Ribbon = Me.RibbonControl
|
||||||
'
|
'
|
||||||
'XtraTabPage2
|
'XtraTabPage2
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.XtraTabPage2, "XtraTabPage2")
|
||||||
Me.XtraTabPage2.Controls.Add(Me.GridCompleted)
|
Me.XtraTabPage2.Controls.Add(Me.GridCompleted)
|
||||||
Me.XtraTabPage2.Name = "XtraTabPage2"
|
Me.XtraTabPage2.Name = "XtraTabPage2"
|
||||||
resources.ApplyResources(Me.XtraTabPage2, "XtraTabPage2")
|
|
||||||
'
|
'
|
||||||
'GridCompleted
|
'GridCompleted
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.GridCompleted, "GridCompleted")
|
resources.ApplyResources(Me.GridCompleted, "GridCompleted")
|
||||||
|
Me.GridCompleted.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridCompleted.EmbeddedNavigator.AccessibleDescription")
|
||||||
|
Me.GridCompleted.EmbeddedNavigator.AccessibleName = resources.GetString("GridCompleted.EmbeddedNavigator.AccessibleName")
|
||||||
Me.GridCompleted.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
|
Me.GridCompleted.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
|
||||||
Me.GridCompleted.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
|
Me.GridCompleted.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.GridCompleted.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
|
||||||
Me.GridCompleted.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
|
Me.GridCompleted.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
|
||||||
Me.GridCompleted.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
|
Me.GridCompleted.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
|
||||||
|
Me.GridCompleted.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
|
||||||
Me.GridCompleted.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
|
Me.GridCompleted.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
|
||||||
|
Me.GridCompleted.EmbeddedNavigator.ToolTip = resources.GetString("GridCompleted.EmbeddedNavigator.ToolTip")
|
||||||
Me.GridCompleted.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
|
Me.GridCompleted.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
|
||||||
|
Me.GridCompleted.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridCompleted.EmbeddedNavigator.ToolTipTitle")
|
||||||
GridLevelNode3.LevelTemplate = Me.ViewReceiversCompleted
|
GridLevelNode3.LevelTemplate = Me.ViewReceiversCompleted
|
||||||
GridLevelNode3.RelationName = "Receivers"
|
GridLevelNode3.RelationName = "Receivers"
|
||||||
GridLevelNode4.LevelTemplate = Me.ViewHistoryCompleted
|
GridLevelNode4.LevelTemplate = Me.ViewHistoryCompleted
|
||||||
@@ -592,6 +651,7 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
'ViewReceiversCompleted
|
'ViewReceiversCompleted
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.ViewReceiversCompleted, "ViewReceiversCompleted")
|
||||||
Me.ViewReceiversCompleted.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.ColStatusCompleted, Me.ColNameCompleted, Me.ColEmailCompleted, Me.ColSignedDateCompleted})
|
Me.ViewReceiversCompleted.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.ColStatusCompleted, Me.ColNameCompleted, Me.ColEmailCompleted, Me.ColSignedDateCompleted})
|
||||||
Me.ViewReceiversCompleted.GridControl = Me.GridCompleted
|
Me.ViewReceiversCompleted.GridControl = Me.GridCompleted
|
||||||
Me.ViewReceiversCompleted.Name = "ViewReceiversCompleted"
|
Me.ViewReceiversCompleted.Name = "ViewReceiversCompleted"
|
||||||
@@ -601,7 +661,6 @@ Partial Class frmMain
|
|||||||
Me.ViewReceiversCompleted.OptionsView.ShowDetailButtons = False
|
Me.ViewReceiversCompleted.OptionsView.ShowDetailButtons = False
|
||||||
Me.ViewReceiversCompleted.OptionsView.ShowGroupPanel = False
|
Me.ViewReceiversCompleted.OptionsView.ShowGroupPanel = False
|
||||||
Me.ViewReceiversCompleted.OptionsView.ShowIndicator = False
|
Me.ViewReceiversCompleted.OptionsView.ShowIndicator = False
|
||||||
resources.ApplyResources(Me.ViewReceiversCompleted, "ViewReceiversCompleted")
|
|
||||||
'
|
'
|
||||||
'ColStatusCompleted
|
'ColStatusCompleted
|
||||||
'
|
'
|
||||||
@@ -629,6 +688,7 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
'ViewHistoryCompleted
|
'ViewHistoryCompleted
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.ViewHistoryCompleted, "ViewHistoryCompleted")
|
||||||
Me.ViewHistoryCompleted.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.ColHistoryStatusCompleted, Me.ColHistoryUserReferenceCompleted, Me.ColHistoryDateCompleted})
|
Me.ViewHistoryCompleted.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.ColHistoryStatusCompleted, Me.ColHistoryUserReferenceCompleted, Me.ColHistoryDateCompleted})
|
||||||
Me.ViewHistoryCompleted.GridControl = Me.GridCompleted
|
Me.ViewHistoryCompleted.GridControl = Me.GridCompleted
|
||||||
Me.ViewHistoryCompleted.Name = "ViewHistoryCompleted"
|
Me.ViewHistoryCompleted.Name = "ViewHistoryCompleted"
|
||||||
@@ -662,7 +722,8 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
'ViewCompleted
|
'ViewCompleted
|
||||||
'
|
'
|
||||||
Me.ViewCompleted.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.GridColumn3, Me.GridColumn4, Me.GridColumn5, Me.GridColumn7, Me.GridColumn1})
|
resources.ApplyResources(Me.ViewCompleted, "ViewCompleted")
|
||||||
|
Me.ViewCompleted.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.GridColumn3, Me.GridColumn6, Me.GridColumn4, Me.GridColumn5, Me.GridColumn7, Me.GridColumn1})
|
||||||
Me.ViewCompleted.GridControl = Me.GridCompleted
|
Me.ViewCompleted.GridControl = Me.GridCompleted
|
||||||
Me.ViewCompleted.Name = "ViewCompleted"
|
Me.ViewCompleted.Name = "ViewCompleted"
|
||||||
Me.ViewCompleted.OptionsBehavior.Editable = False
|
Me.ViewCompleted.OptionsBehavior.Editable = False
|
||||||
@@ -676,6 +737,13 @@ Partial Class frmMain
|
|||||||
Me.GridColumn3.FieldName = "EnvelopeTypeTitle"
|
Me.GridColumn3.FieldName = "EnvelopeTypeTitle"
|
||||||
Me.GridColumn3.Name = "GridColumn3"
|
Me.GridColumn3.Name = "GridColumn3"
|
||||||
'
|
'
|
||||||
|
'GridColumn6
|
||||||
|
'
|
||||||
|
resources.ApplyResources(Me.GridColumn6, "GridColumn6")
|
||||||
|
Me.GridColumn6.FieldName = "Comment"
|
||||||
|
Me.GridColumn6.MinWidth = 80
|
||||||
|
Me.GridColumn6.Name = "GridColumn6"
|
||||||
|
'
|
||||||
'GridColumn4
|
'GridColumn4
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.GridColumn4, "GridColumn4")
|
resources.ApplyResources(Me.GridColumn4, "GridColumn4")
|
||||||
@@ -706,10 +774,10 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
'XtraTabPageAdmin
|
'XtraTabPageAdmin
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.XtraTabPageAdmin, "XtraTabPageAdmin")
|
||||||
Me.XtraTabPageAdmin.Controls.Add(Me.SplitContainerControl2)
|
Me.XtraTabPageAdmin.Controls.Add(Me.SplitContainerControl2)
|
||||||
Me.XtraTabPageAdmin.Controls.Add(Me.PanelControl1)
|
Me.XtraTabPageAdmin.Controls.Add(Me.PanelControl1)
|
||||||
Me.XtraTabPageAdmin.Name = "XtraTabPageAdmin"
|
Me.XtraTabPageAdmin.Name = "XtraTabPageAdmin"
|
||||||
resources.ApplyResources(Me.XtraTabPageAdmin, "XtraTabPageAdmin")
|
|
||||||
'
|
'
|
||||||
'SplitContainerControl2
|
'SplitContainerControl2
|
||||||
'
|
'
|
||||||
@@ -718,8 +786,8 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
'SplitContainerControl2.Panel1
|
'SplitContainerControl2.Panel1
|
||||||
'
|
'
|
||||||
Me.SplitContainerControl2.Panel1.Controls.Add(Me.GridControlData)
|
|
||||||
resources.ApplyResources(Me.SplitContainerControl2.Panel1, "SplitContainerControl2.Panel1")
|
resources.ApplyResources(Me.SplitContainerControl2.Panel1, "SplitContainerControl2.Panel1")
|
||||||
|
Me.SplitContainerControl2.Panel1.Controls.Add(Me.GridControlData)
|
||||||
'
|
'
|
||||||
'SplitContainerControl2.Panel2
|
'SplitContainerControl2.Panel2
|
||||||
'
|
'
|
||||||
@@ -729,6 +797,18 @@ Partial Class frmMain
|
|||||||
'GridControlData
|
'GridControlData
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.GridControlData, "GridControlData")
|
resources.ApplyResources(Me.GridControlData, "GridControlData")
|
||||||
|
Me.GridControlData.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridControlData.EmbeddedNavigator.AccessibleDescription")
|
||||||
|
Me.GridControlData.EmbeddedNavigator.AccessibleName = resources.GetString("GridControlData.EmbeddedNavigator.AccessibleName")
|
||||||
|
Me.GridControlData.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridControlData.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
|
||||||
|
Me.GridControlData.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridControlData.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.GridControlData.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridControlData.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
|
||||||
|
Me.GridControlData.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridControlData.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
|
||||||
|
Me.GridControlData.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridControlData.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
|
||||||
|
Me.GridControlData.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridControlData.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
|
||||||
|
Me.GridControlData.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridControlData.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
|
||||||
|
Me.GridControlData.EmbeddedNavigator.ToolTip = resources.GetString("GridControlData.EmbeddedNavigator.ToolTip")
|
||||||
|
Me.GridControlData.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridControlData.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
|
||||||
|
Me.GridControlData.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridControlData.EmbeddedNavigator.ToolTipTitle")
|
||||||
Me.GridControlData.MainView = Me.GridViewData
|
Me.GridControlData.MainView = Me.GridViewData
|
||||||
Me.GridControlData.MenuManager = Me.RibbonControl
|
Me.GridControlData.MenuManager = Me.RibbonControl
|
||||||
Me.GridControlData.Name = "GridControlData"
|
Me.GridControlData.Name = "GridControlData"
|
||||||
@@ -736,82 +816,83 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
'GridViewData
|
'GridViewData
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.GridViewData, "GridViewData")
|
||||||
Me.GridViewData.GridControl = Me.GridControlData
|
Me.GridViewData.GridControl = Me.GridControlData
|
||||||
Me.GridViewData.Name = "GridViewData"
|
Me.GridViewData.Name = "GridViewData"
|
||||||
Me.GridViewData.OptionsView.ShowAutoFilterRow = True
|
Me.GridViewData.OptionsView.ShowAutoFilterRow = True
|
||||||
'
|
'
|
||||||
'PanelControl1
|
'PanelControl1
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.PanelControl1, "PanelControl1")
|
||||||
Me.PanelControl1.Controls.Add(Me.GroupControl2)
|
Me.PanelControl1.Controls.Add(Me.GroupControl2)
|
||||||
Me.PanelControl1.Controls.Add(Me.GroupControl1)
|
Me.PanelControl1.Controls.Add(Me.GroupControl1)
|
||||||
resources.ApplyResources(Me.PanelControl1, "PanelControl1")
|
|
||||||
Me.PanelControl1.Name = "PanelControl1"
|
Me.PanelControl1.Name = "PanelControl1"
|
||||||
'
|
'
|
||||||
'GroupControl2
|
'GroupControl2
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.GroupControl2, "GroupControl2")
|
||||||
Me.GroupControl2.Controls.Add(Me.btnEvvallUs_lastmonth)
|
Me.GroupControl2.Controls.Add(Me.btnEvvallUs_lastmonth)
|
||||||
Me.GroupControl2.Controls.Add(Me.btnEvvallUs_thismonth)
|
Me.GroupControl2.Controls.Add(Me.btnEvvallUs_thismonth)
|
||||||
resources.ApplyResources(Me.GroupControl2, "GroupControl2")
|
|
||||||
Me.GroupControl2.Name = "GroupControl2"
|
Me.GroupControl2.Name = "GroupControl2"
|
||||||
'
|
'
|
||||||
'btnEvvallUs_lastmonth
|
'btnEvvallUs_lastmonth
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.btnEvvallUs_lastmonth, "btnEvvallUs_lastmonth")
|
||||||
Me.btnEvvallUs_lastmonth.Appearance.BackColor = System.Drawing.Color.MediumPurple
|
Me.btnEvvallUs_lastmonth.Appearance.BackColor = System.Drawing.Color.MediumPurple
|
||||||
Me.btnEvvallUs_lastmonth.Appearance.Options.UseBackColor = True
|
Me.btnEvvallUs_lastmonth.Appearance.Options.UseBackColor = True
|
||||||
resources.ApplyResources(Me.btnEvvallUs_lastmonth, "btnEvvallUs_lastmonth")
|
|
||||||
Me.btnEvvallUs_lastmonth.Name = "btnEvvallUs_lastmonth"
|
Me.btnEvvallUs_lastmonth.Name = "btnEvvallUs_lastmonth"
|
||||||
'
|
'
|
||||||
'btnEvvallUs_thismonth
|
'btnEvvallUs_thismonth
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.btnEvvallUs_thismonth, "btnEvvallUs_thismonth")
|
||||||
Me.btnEvvallUs_thismonth.Appearance.BackColor = System.Drawing.Color.MediumSlateBlue
|
Me.btnEvvallUs_thismonth.Appearance.BackColor = System.Drawing.Color.MediumSlateBlue
|
||||||
Me.btnEvvallUs_thismonth.Appearance.Options.UseBackColor = True
|
Me.btnEvvallUs_thismonth.Appearance.Options.UseBackColor = True
|
||||||
resources.ApplyResources(Me.btnEvvallUs_thismonth, "btnEvvallUs_thismonth")
|
|
||||||
Me.btnEvvallUs_thismonth.Name = "btnEvvallUs_thismonth"
|
Me.btnEvvallUs_thismonth.Name = "btnEvvallUs_thismonth"
|
||||||
'
|
'
|
||||||
'GroupControl1
|
'GroupControl1
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.GroupControl1, "GroupControl1")
|
||||||
Me.GroupControl1.Controls.Add(Me.btnEnvelopes_All)
|
Me.GroupControl1.Controls.Add(Me.btnEnvelopes_All)
|
||||||
Me.GroupControl1.Controls.Add(Me.btnEnvelopes_thisYear)
|
Me.GroupControl1.Controls.Add(Me.btnEnvelopes_thisYear)
|
||||||
Me.GroupControl1.Controls.Add(Me.btnEnvelopes_lastmonth)
|
Me.GroupControl1.Controls.Add(Me.btnEnvelopes_lastmonth)
|
||||||
Me.GroupControl1.Controls.Add(Me.btnEnvelopes_thismonth)
|
Me.GroupControl1.Controls.Add(Me.btnEnvelopes_thismonth)
|
||||||
resources.ApplyResources(Me.GroupControl1, "GroupControl1")
|
|
||||||
Me.GroupControl1.Name = "GroupControl1"
|
Me.GroupControl1.Name = "GroupControl1"
|
||||||
'
|
'
|
||||||
'btnEnvelopes_All
|
'btnEnvelopes_All
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.btnEnvelopes_All, "btnEnvelopes_All")
|
||||||
Me.btnEnvelopes_All.Appearance.BackColor = System.Drawing.Color.MediumTurquoise
|
Me.btnEnvelopes_All.Appearance.BackColor = System.Drawing.Color.MediumTurquoise
|
||||||
Me.btnEnvelopes_All.Appearance.Options.UseBackColor = True
|
Me.btnEnvelopes_All.Appearance.Options.UseBackColor = True
|
||||||
resources.ApplyResources(Me.btnEnvelopes_All, "btnEnvelopes_All")
|
|
||||||
Me.btnEnvelopes_All.Name = "btnEnvelopes_All"
|
Me.btnEnvelopes_All.Name = "btnEnvelopes_All"
|
||||||
'
|
'
|
||||||
'btnEnvelopes_thisYear
|
'btnEnvelopes_thisYear
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.btnEnvelopes_thisYear, "btnEnvelopes_thisYear")
|
||||||
Me.btnEnvelopes_thisYear.Appearance.BackColor = System.Drawing.Color.LightSeaGreen
|
Me.btnEnvelopes_thisYear.Appearance.BackColor = System.Drawing.Color.LightSeaGreen
|
||||||
Me.btnEnvelopes_thisYear.Appearance.Options.UseBackColor = True
|
Me.btnEnvelopes_thisYear.Appearance.Options.UseBackColor = True
|
||||||
resources.ApplyResources(Me.btnEnvelopes_thisYear, "btnEnvelopes_thisYear")
|
|
||||||
Me.btnEnvelopes_thisYear.Name = "btnEnvelopes_thisYear"
|
Me.btnEnvelopes_thisYear.Name = "btnEnvelopes_thisYear"
|
||||||
'
|
'
|
||||||
'btnEnvelopes_lastmonth
|
'btnEnvelopes_lastmonth
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.btnEnvelopes_lastmonth, "btnEnvelopes_lastmonth")
|
||||||
Me.btnEnvelopes_lastmonth.Appearance.BackColor = System.Drawing.Color.Turquoise
|
Me.btnEnvelopes_lastmonth.Appearance.BackColor = System.Drawing.Color.Turquoise
|
||||||
Me.btnEnvelopes_lastmonth.Appearance.Options.UseBackColor = True
|
Me.btnEnvelopes_lastmonth.Appearance.Options.UseBackColor = True
|
||||||
resources.ApplyResources(Me.btnEnvelopes_lastmonth, "btnEnvelopes_lastmonth")
|
|
||||||
Me.btnEnvelopes_lastmonth.Name = "btnEnvelopes_lastmonth"
|
Me.btnEnvelopes_lastmonth.Name = "btnEnvelopes_lastmonth"
|
||||||
'
|
'
|
||||||
'btnEnvelopes_thismonth
|
'btnEnvelopes_thismonth
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.btnEnvelopes_thismonth, "btnEnvelopes_thismonth")
|
||||||
Me.btnEnvelopes_thismonth.Appearance.BackColor = System.Drawing.Color.Aquamarine
|
Me.btnEnvelopes_thismonth.Appearance.BackColor = System.Drawing.Color.Aquamarine
|
||||||
Me.btnEnvelopes_thismonth.Appearance.Options.UseBackColor = True
|
Me.btnEnvelopes_thismonth.Appearance.Options.UseBackColor = True
|
||||||
resources.ApplyResources(Me.btnEnvelopes_thismonth, "btnEnvelopes_thismonth")
|
|
||||||
Me.btnEnvelopes_thismonth.Name = "btnEnvelopes_thismonth"
|
Me.btnEnvelopes_thismonth.Name = "btnEnvelopes_thismonth"
|
||||||
'
|
'
|
||||||
'XtraTabPage3
|
'XtraTabPage3
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.XtraTabPage3, "XtraTabPage3")
|
||||||
Me.XtraTabPage3.Controls.Add(Me.Label1)
|
Me.XtraTabPage3.Controls.Add(Me.Label1)
|
||||||
Me.XtraTabPage3.Controls.Add(Me.Button1)
|
Me.XtraTabPage3.Controls.Add(Me.Button1)
|
||||||
Me.XtraTabPage3.Controls.Add(Me.txtEnvID)
|
Me.XtraTabPage3.Controls.Add(Me.txtEnvID)
|
||||||
Me.XtraTabPage3.Name = "XtraTabPage3"
|
Me.XtraTabPage3.Name = "XtraTabPage3"
|
||||||
resources.ApplyResources(Me.XtraTabPage3, "XtraTabPage3")
|
|
||||||
'
|
'
|
||||||
'Label1
|
'Label1
|
||||||
'
|
'
|
||||||
@@ -839,6 +920,7 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
'XtraSaveFileDialog1
|
'XtraSaveFileDialog1
|
||||||
'
|
'
|
||||||
|
resources.ApplyResources(Me.XtraSaveFileDialog1, "XtraSaveFileDialog1")
|
||||||
Me.XtraSaveFileDialog1.FileName = "XtraSaveFileDialog1"
|
Me.XtraSaveFileDialog1.FileName = "XtraSaveFileDialog1"
|
||||||
'
|
'
|
||||||
'frmMain
|
'frmMain
|
||||||
@@ -976,4 +1058,7 @@ Partial Class frmMain
|
|||||||
Friend WithEvents Label1 As Label
|
Friend WithEvents Label1 As Label
|
||||||
Friend WithEvents Button1 As Button
|
Friend WithEvents Button1 As Button
|
||||||
Friend WithEvents txtEnvID As TextBox
|
Friend WithEvents txtEnvID As TextBox
|
||||||
|
Friend WithEvents GridColumn6 As DevExpress.XtraGrid.Columns.GridColumn
|
||||||
|
Friend WithEvents BarButtonItem2 As DevExpress.XtraBars.BarButtonItem
|
||||||
|
Friend WithEvents RibbonPageGroupReceiver As DevExpress.XtraBars.Ribbon.RibbonPageGroup
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user