Merge branch 'master' of github.com:ONLYOFFICE/CommunityServer-AspNetCore

This commit is contained in:
Alexey Safronov 2019-08-13 17:48:17 +03:00
commit e63901c754
58 changed files with 6377 additions and 13377 deletions

View File

@ -36,7 +36,7 @@ namespace ASC.Api.Core.Middleware
}
Thread.CurrentThread.CurrentCulture = culture;
Thread.CurrentThread.CurrentCulture = culture;
Thread.CurrentThread.CurrentUICulture = culture;
await next.Invoke(context);
}

View File

@ -19,7 +19,10 @@ namespace ASC.Resource.Manager
[Option('f', "format", Required = false, HelpText = "Format", Default = "xml")]
public string Format { get; set; }
public void Deconstruct(out string project, out string module, out string exportPath, out string culture, out string format)
=> (project, module, exportPath, culture, format) = (Project, Module, ExportPath, Culture, Format);
[Option('k', "key", Required = false, HelpText = "Key", Default = "")]
public string Key { get; set; }
public void Deconstruct(out string project, out string module, out string exportPath, out string culture, out string format, out string key)
=> (project, module, exportPath, culture, format, key) = (Project, Module, ExportPath, Culture, Format, Key);
}
}

View File

@ -34,7 +34,7 @@ namespace ASC.Resource.Manager
try
{
var (project, module, exportPath, culture, format) = options;
var (project, module, exportPath, culture, format, key) = options;
if(format == "json")
{
@ -65,7 +65,7 @@ namespace ASC.Resource.Manager
cultures = ResourceData.GetCultures().Where(r => r.Available).Select(r => r.Title).Intersect(enabledSettings.Langs).ToList();
projects = ResourceData.GetAllFiles();
ExportWithProject(project, module, culture, exportPath);
ExportWithProject(project, module, culture, exportPath, key);
Console.WriteLine("The data has been successfully exported!");
}

View File

@ -60,7 +60,7 @@ namespace ASC.Resource.Manager
var fileName = firstWord == null
? module
: Path.GetFileNameWithoutExtension(firstWord.ResFile.FileName);
var zipFileName = Path.Combine(exportPath, project, module, $"{fileName}{(language == "Neutral" ? string.Empty : "." + language)}.resx");
var zipFileName = Path.Combine(exportPath, $"{fileName}{(language == "Neutral" ? string.Empty : "." + language)}.resx");
var dirName = Path.GetDirectoryName(zipFileName);
if (!Directory.Exists(dirName))
{
@ -71,6 +71,8 @@ namespace ASC.Resource.Manager
if (!string.IsNullOrEmpty(key))
{
var keys = key.Split(",");
if (File.Exists(zipFileName))
{
using var resXResourceReader = new ResXResourceReader(zipFileName);
@ -80,9 +82,16 @@ namespace ASC.Resource.Manager
}
}
if(!toAdd.Any(r=> r.Title == key))
foreach (var k in keys)
{
toAdd.Add(fileWords.FirstOrDefault(r => r.Title == key));
if (!toAdd.Any(r => r.Title == k))
{
var exists = fileWords.FirstOrDefault(r => r.Title == k);
if (exists != null)
{
toAdd.Add(exists);
}
}
}
}
else
@ -92,9 +101,9 @@ namespace ASC.Resource.Manager
using var resXResourceWriter = new ResXResourceWriter(zipFileName);
foreach (var word in toAdd.Where(r=> r != null).OrderBy(x => x.Title))
foreach (var word in toAdd.Where(r=> r != null && !string.IsNullOrEmpty(r.ValueTo)).OrderBy(x => x.Title))
{
resXResourceWriter.AddResource(word.Title, word.ValueFrom);
resXResourceWriter.AddResource(word.Title, word.ValueTo);
}
resXResourceWriter.Generate();

View File

@ -28,23 +28,37 @@
<ProjectReference Include="..\..\..\web\ASC.Web.Core\ASC.Web.Core.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Resources\Resources.tt">
<LastGenOutput>Resources.cs</LastGenOutput>
<Generator>TextTemplatingFileGenerator</Generator>
</None>
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
<ItemGroup>
<Compile Update="Resources\Resources.cs">
<Compile Update="Resources\PeopleResource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.tt</DependentUpon>
<DependentUpon>PeopleResource.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\PeopleResource.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>PeopleResource.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Resources\PeopleResource.ru.resx" >
<DependentUpon>PeopleResource.resx</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="Resources\PeopleResource.de.resx" >
<DependentUpon>PeopleResource.resx</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="Resources\PeopleResource.es.resx" >
<DependentUpon>PeopleResource.resx</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="Resources\PeopleResource.fr.resx" >
<DependentUpon>PeopleResource.resx</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="Resources\PeopleResource.it.resx" >
<DependentUpon>PeopleResource.resx</DependentUpon>
</EmbeddedResource>
</ItemGroup>
</Project>

View File

@ -19,6 +19,7 @@ using ASC.FederatedLogin.Profile;
using ASC.MessagingSystem;
using ASC.People;
using ASC.People.Models;
using ASC.People.Resources;
using ASC.Web.Api.Models;
using ASC.Web.Api.Routing;
using ASC.Web.Core;

View File

@ -1,5 +1,6 @@
using System;
using System.Linq;
using ASC.People.Resources;
using ASC.Web.Core;
namespace ASC.People

View File

@ -0,0 +1,135 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace ASC.People.Resources {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class PeopleResource {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal PeopleResource() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ASC.People.Resources.PeopleResource", typeof(PeopleResource).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to The uploaded file could not be found.
/// </summary>
internal static string ErrorEmptyUploadFileSelected {
get {
return ResourceManager.GetString("ErrorEmptyUploadFileSelected", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Image size is too large.
/// </summary>
internal static string ErrorImageSizetLimit {
get {
return ResourceManager.GetString("ErrorImageSizetLimit", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Image file size is too large.
/// </summary>
internal static string ErrorImageWeightLimit {
get {
return ResourceManager.GetString("ErrorImageWeightLimit", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unknown image file type.
/// </summary>
internal static string ErrorUnknownFileImageType {
get {
return ResourceManager.GetString("ErrorUnknownFileImageType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do the same as a user|Create profiles and groups|Import profiles|Invite users.
/// </summary>
internal static string ProductAdminOpportunities {
get {
return ResourceManager.GetString("ProductAdminOpportunities", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add new users, invite or import them. Manage users and view their detailed information..
/// </summary>
internal static string ProductDescription {
get {
return ResourceManager.GetString("ProductDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to People.
/// </summary>
internal static string ProductName {
get {
return ResourceManager.GetString("ProductName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to View profiles and groups.
/// </summary>
internal static string ProductUserOpportunities {
get {
return ResourceManager.GetString("ProductUserOpportunities", resourceCulture);
}
}
}
}

View File

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<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="ErrorEmptyUploadFileSelected" xml:space="preserve">
<value>Die hochgeladene Datei konnte nicht gefunden werden</value>
</data>
<data name="ErrorImageSizetLimit" xml:space="preserve">
<value>Das Bild ist zu groß</value>
</data>
<data name="ErrorImageWeightLimit" xml:space="preserve">
<value>Die Bilddatei ist zu groß</value>
</data>
<data name="ErrorUnknownFileImageType" xml:space="preserve">
<value>Unbekannter Bilddateityp</value>
</data>
<data name="ProductAdminOpportunities" xml:space="preserve">
<value>Das gleiche wie der Benutzer tun|Profile und Gruppen erstellen|Profile importieren|Nutzer einladen</value>
</data>
<data name="ProductDescription" xml:space="preserve">
<value>Fügen Sie neue Benutzer hinzu, importieren oder laden Sie diese ein. Verwalten Sie die Benutzer und sehen Sie detaillierte Informationen über sie.</value>
</data>
<data name="ProductName" xml:space="preserve">
<value>Personen</value>
</data>
<data name="ProductUserOpportunities" xml:space="preserve">
<value>Profile und Gruppen anschauen</value>
</data>
</root>

View File

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<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="ErrorEmptyUploadFileSelected" xml:space="preserve">
<value>Imposible encontrar el archivo subido</value>
</data>
<data name="ErrorImageSizetLimit" xml:space="preserve">
<value>El tamaño de la imagen es demasiado grande</value>
</data>
<data name="ErrorImageWeightLimit" xml:space="preserve">
<value>El tamaño del archivo de la imagen es demasiado grande </value>
</data>
<data name="ErrorUnknownFileImageType" xml:space="preserve">
<value>El tipo de archivo desconocido</value>
</data>
<data name="ProductAdminOpportunities" xml:space="preserve">
<value>Hacer lo mismo que el usuario|Crear perfiles y grupos|Importar perfiles|Invitar a usuarios</value>
</data>
<data name="ProductDescription" xml:space="preserve">
<value>Añada nuevos usuarios, invítelos o impórtelos. Manéje a los usuarios y vea su información detallada.</value>
</data>
<data name="ProductName" xml:space="preserve">
<value>Personas</value>
</data>
<data name="ProductUserOpportunities" xml:space="preserve">
<value>Ver perfiles y grupos</value>
</data>
</root>

View File

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<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="ErrorEmptyUploadFileSelected" xml:space="preserve">
<value>Impossible de trouver le fichier chargé</value>
</data>
<data name="ErrorImageSizetLimit" xml:space="preserve">
<value>La taille de l'image est trop grande</value>
</data>
<data name="ErrorImageWeightLimit" xml:space="preserve">
<value>La taille du fichier d'image est trop grande</value>
</data>
<data name="ErrorUnknownFileImageType" xml:space="preserve">
<value>Le type de fichier de l'image est inconnu</value>
</data>
<data name="ProductAdminOpportunities" xml:space="preserve">
<value>Faire la même chose qu'un utilisateur|Créer des profils et groupes|Importer des profils|Inviter des utilisateurs</value>
</data>
<data name="ProductDescription" xml:space="preserve">
<value>Ajoutez de nouveaux utilisateurs, invitez ou importez-les. Gérez les utilisateurs et visualisez leurs informations détaillées.</value>
</data>
<data name="ProductName" xml:space="preserve">
<value>Personnes</value>
</data>
<data name="ProductUserOpportunities" xml:space="preserve">
<value>Afficher les profils et groupes</value>
</data>
</root>

View File

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<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="ErrorEmptyUploadFileSelected" xml:space="preserve">
<value>E' impossibile trovare il file caricato</value>
</data>
<data name="ErrorImageSizetLimit" xml:space="preserve">
<value>E' stata superata la dimensione immagine massima</value>
</data>
<data name="ErrorImageWeightLimit" xml:space="preserve">
<value>E' stata superata la dimensione file massima</value>
</data>
<data name="ErrorUnknownFileImageType" xml:space="preserve">
<value>Tipo file immagine sconosciuto</value>
</data>
<data name="ProductAdminOpportunities" xml:space="preserve">
<value>Fai lo stesso come un utente|Crea profili e gruppi|Importa profili|Invita utenti</value>
</data>
<data name="ProductDescription" xml:space="preserve">
<value>Aggiungi nuovi utenti, invitali o importali. Gestisci utenti e visualizza le loro informazione dettagliata.</value>
</data>
<data name="ProductName" xml:space="preserve">
<value>Persone</value>
</data>
<data name="ProductUserOpportunities" xml:space="preserve">
<value>Vedi profili e gruppi</value>
</data>
</root>

View File

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<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="ErrorEmptyUploadFileSelected" xml:space="preserve">
<value>The uploaded file could not be found</value>
</data>
<data name="ErrorImageSizetLimit" xml:space="preserve">
<value>Image size is too large</value>
</data>
<data name="ErrorImageWeightLimit" xml:space="preserve">
<value>Image file size is too large</value>
</data>
<data name="ErrorUnknownFileImageType" xml:space="preserve">
<value>Unknown image file type</value>
</data>
<data name="ProductAdminOpportunities" xml:space="preserve">
<value>Do the same as a user|Create profiles and groups|Import profiles|Invite users</value>
</data>
<data name="ProductDescription" xml:space="preserve">
<value>Add new users, invite or import them. Manage users and view their detailed information.</value>
</data>
<data name="ProductName" xml:space="preserve">
<value>People</value>
</data>
<data name="ProductUserOpportunities" xml:space="preserve">
<value>View profiles and groups</value>
</data>
</root>

View File

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<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="ErrorEmptyUploadFileSelected" xml:space="preserve">
<value>Загружаемый файл не найден</value>
</data>
<data name="ErrorImageSizetLimit" xml:space="preserve">
<value>Размер изображения слишком большой</value>
</data>
<data name="ErrorImageWeightLimit" xml:space="preserve">
<value>Размер файла изображения слишком большой</value>
</data>
<data name="ErrorUnknownFileImageType" xml:space="preserve">
<value>Неизвестный тип файла изображения</value>
</data>
<data name="ProductAdminOpportunities" xml:space="preserve">
<value>Делать то же самое, что и пользователь|Создавать профили и группы|Импортировать профили|Приглашать пользователей</value>
</data>
<data name="ProductDescription" xml:space="preserve">
<value>Добавляйте новых пользователей, приглашайте или импортируйте их. Управляйте пользователями и просматривайте подробную информацию о них.</value>
</data>
<data name="ProductName" xml:space="preserve">
<value>Люди</value>
</data>
<data name="ProductUserOpportunities" xml:space="preserve">
<value>Просматривать профили и группы</value>
</data>
</root>

File diff suppressed because it is too large Load Diff

View File

@ -1,13 +0,0 @@
<#@ assembly name="$(MSBuildProjectDirectory)\..\..\..\common\ASC.Core.Common\bin\$(Configuration)\ASC.Core.Common.dll" #>
<#@ include file="$(MSBuildProjectDirectory)\..\..\..\common\ASC.Core.Common\Resources\ResourceGenerator.tt" #>
<#+
string GetNamespace()
{
return "ASC.People";
}
string GetPath()
{
return this.Host.ResolvePath(@"en");
}
#>

View File

@ -1,176 +0,0 @@
{
"AccessRightsSettings": "Zugriffsrechte auf dem Portal",
"Actions": "Aktionen",
"AddButton": "Hinzufügen",
"AddDepartmentDlgTitle": "{!Group} hinzufügen",
"AddImage": "Bild hinzufügen",
"AddMembers": "Mitglieder hinzufügen",
"BlockedMessage": "Deaktiviert",
"CancelButton": "Abbrechen",
"ChangeStatus": "Status ändern",
"ChangeStatusButton": "Benutzerstatus ändern",
"ChangeStatusDialogConstraint": "Aktualisieren Sie Ihren Tarifplan und wiederholen Sie die Operation, sonst wird der Status der anderen Benutzer nicht geändert.",
"ChangeStatusDialogHeader": "Benutzerstatus ändern",
"ChangeStatusDialogRestriction": "Sie können den Status für den Portalbesitzer und sich selbst nicht ändern",
"ChangeStatusDialogToActive": "Die Benutzer mit dem Status 'deaktiviert' werden aktiviert.",
"ChangeStatusDialogToTerminate": "Die Benutzer mit dem Status 'aktiv' werden deaktiviert.",
"ChangeType": "Typ ändern",
"ChangeTypeDialogConstraint": "Aktualisieren Sie Ihren Tarifplan und wiederholen Sie die Operation, sonst wird der Typ der anderen Benutzer nicht geändert.",
"ChangeTypeDialogHeader": "Benutzertyp ändern",
"ChangeTypeDialogRestriction": "Sie können den Typ für die Portaladministratoren und sich selbst nicht ändern",
"ChangeTypeDialogToGuest": "Die Benutzer mit dem Typ 'Benutzer' werden auf den Typ 'Gast' verschoben",
"ChangeTypeDialogToUser": "Die Benutzer mit dem Typ 'Gast' werden auf den Typ 'Benutzer' verschoben",
"ChooseUser": "Benutzer wählen",
"ClearButton": "Filter zurücksetzen",
"Confirmation": "Bestätigung",
"CreateNewProfile": "Neuen Benutzer erstellen",
"DeleteBtnHint": "Nur Benutzer oder Gäste mit dem Status 'Deaktiviert' können gelöscht werden",
"DeleteButton": "Löschen",
"DeleteProfileAfterReassignment": "Profil löschen, wenn die Neuzuordnung abgeschlossen ist",
"DeleteUserProfiles": "Löschung der Benutzer aus dem Portal",
"DeleteUsersDataConfirmation": "Persönliche Dokumente dieser Benutzer, die für andere verfügbar sind, werden gelöscht. Um dies zu vermeiden, müssen Sie den Datentransfer vor dem Löschen starten.",
"DeleteUsersDescription": "Die gewünschten deaktivierten Benutzer werden aus dem Portal gelöscht. Bitte beachten Sie, dass diese Aktion nicht widerrufen werden kann. Sie können die Benutzer nicht löschen, falls sie den Status 'Aktiv' oder 'Ausstehend' haben, sie müssen erst deaktiviert werden. ",
"DeleteUsersDescriptionText": "Die ausgewählten deaktivierten Benutzer werden vom Portal gelöscht.",
"DepartmentMaster": "{!Head}",
"DeselectAll": "Markierung aufheben",
"DisableUserButton": "Deaktivieren",
"DisableUserHelp": "Der {!User} wird nicht mehr in der Liste mit aktiven {!Users}n angezeigt",
"EditButton": "Bearbeiten",
"EditImage": "Bild bearbeiten",
"Email": "E-Mail-Adresse",
"EnableUserButton": "Aktivieren",
"EnableUserHelp": "Der {!User} wird als aktiv wieder angezeigt",
"ErrorEmptyName": "Geben Sie einen Namen ein",
"ErrorEmptyUploadFileSelected": "Die hochgeladene Datei konnte nicht gefunden werden",
"ErrorImageSizetLimit": "Das Bild ist zu groß",
"ErrorImageWeightLimit": "Die Bilddatei ist zu groß",
"ErrorUnknownFileImageType": "Unbekannter Bilddateityp",
"ExampleValues": "Beispielwerte",
"FieldsInFile": "Felder in der Datei",
"FieldsOnPortal": "Felder im ONLYOFFICE-Portal",
"FirstName": "Vorname",
"Hide": "Ausblenden",
"HideSelectedUserList": "Liste der gewählten Benutzer ausblenden",
"ImportClear": "Leeren",
"ImportColumn": "Spalte",
"ImportDelimiterDQ": "Doppeltes Anführungszeichen",
"ImportDelimiterSQ": "Einfaches Anführungszeichen",
"ImportEncodingASCII": "ASCII",
"ImportEncodingCP866": "CP-866",
"ImportEncodingKOI8R": "KOI8-R",
"ImportEncodingUTF8": "UTF-8",
"ImportEncodingWindows1251": "Windows1251",
"ImportFromFile": "Aus Datei",
"ImportFromGoogle": "Google",
"ImportFromYahoo": "Yahoo",
"ImportPeople": "Personen importieren",
"ImportSeparatorColon": "Doppelpunkt",
"ImportSeparatorComma": "Komma",
"ImportSeparatorSemicolon": "Semikolon",
"ImportSeparatorSpace": "Leerzeichen",
"ImportSeparatorTab": "Tabulator",
"ImportWizardFirstStep": "Kontakte importieren",
"ImportWizardFourthStep": "Dem Portal hinzufügen",
"ImportWizardSecondStep": "Compliance-System einrichten",
"ImportWizardThirdStep": "Kontakte bearbeiten",
"InviteLink": "Einladungslink",
"LastName": "Nachname",
"LblActive": "Aktiv",
"LblByName": "Name",
"LblByType": "Typ",
"LblCancelButton": "Abbrechen",
"LblChangeEmail": "E-Mail-Adresse ändern",
"LblChangePassword": "Kennwort ändern",
"LblCreateNew": "Erstellen",
"LblDeleteProfile": "Profil löschen",
"LblEdit": "Bearbeiten",
"LblImportAccounts": "Konten importieren",
"LblMobilePhone": "Hauptmobiltelefon",
"LblOKButton": "OK",
"LblOther": "Sonstiges",
"LblPassword": "Kennwort",
"LblPending": "Ausstehend",
"LblReassignData": "Daten erneut zuweisen",
"LblRemoveData": "Persönliche Daten löschen",
"LblResendInvites": "Einladungen erneut senden",
"LblSendActivation": "Link zum Aktivieren erneut senden",
"LblSendEmail": "E-Mail senden",
"LblSendMessage": "Nachricht senden",
"LblStatus": "Status",
"LblSubscriptions": "Benachrichtigungen",
"LblTerminated": "Deaktiviert",
"LblTips": "QuickInfo",
"MainEmail": "Haupt-E-Mail-Adresse",
"Members": "Mitglieder",
"NoSameValuesOptions": "Felder im Portal können nicht dieselben Werte haben!",
"NotFoundDescription": "In dieser Sektion können keine Personen nach Ihren Filterkriterien angezeigt werden... Bitte wählen Sie andere Filteroptionen oder leeren Sie den Filter, um alle Personen in dieser Sektion zu sehen.",
"NotFoundTitle": "Keine Ergebnisse nach Ihren Filterkriterien gefunden ",
"NotImport": "Nicht importieren",
"OnTop": "Oben",
"ProductAdminOpportunities": "Das gleiche wie der Benutzer tun|Profile und Gruppen erstellen|Profile importieren|Nutzer einladen",
"ProductDescription": "Fügen Sie neue Benutzer hinzu, importieren oder laden Sie diese ein. Verwalten Sie die Benutzer und sehen Sie detaillierte Informationen über sie.",
"ProductName": "Personen",
"ProductUserOpportunities": "Profile und Gruppen anschauen",
"ReadAboutNonProfit": "Oder {0}lesen Sie über die nicht-kommerzielle Nutzung{1}.",
"ReassignAbortButton": "Übertragung abbrеchen",
"ReassignAbortToastrMsg": "Datenübertragung ist abgebrochen",
"ReassignButton": "Neu zuweisen",
"ReassignCrmModule": "CRM",
"ReassignDocumentsModule": "Dokumente",
"ReassignErrorToastrMsg": "Die Datenübertragung wurde aufgrund eines Serverfehlers unterbrochen",
"ReassignMailModule": "Email",
"ReassignmentData": "Neuzuweisung von Daten",
"ReassignProjectsModule": "Projekte",
"ReassignRestartButton": "Starten Sie die Übertragung erneut",
"ReassignsProgressNotifyInfo": "Sie können diese Seite schließen. Wenn der Vorgang abgeschlossen ist, wird der Administrator, der ihn ausführt, per E-Mail benachrichtigt.",
"ReassignsProgressText": "Der Prozess der Datenübertragung wird gestartet, er kann einige Zeit dauern. {0} Sie können diese Seite schließen. Wenn der Vorgang abgeschlossen ist, wird der Administrator, der ihn ausführt, per E-Mail benachrichtigt.",
"ReassignsProgressUserInfo": "Der Prozess der Neuzuordnung der Daten von Benutzer {0} zu Benutzer {1} wurde gestartet. Dies kann einige Zeit dauern.",
"ReassignsReadMore": "Mehr zur Datenübertragung",
"ReassignStatusAborted": "Unterbrochen, einige Daten könnten übertragen werden",
"ReassignStatusError": "Server-Fehler",
"ReassignStatusFinished": "Alle Daten werden übertragen",
"ReassignStatusNotStarted": "Daten wurden nicht übertragen",
"ReassignStatusQueued": "In Warteschlange",
"ReassignStatusStarted": "Gestart",
"ReassignsToUser": "Mitarbeiter, an den die Daten übermittelt werden -",
"ReassignsTransferedListHdr": "Werden überwiesen:",
"ReassignsTransferedListItem1": "Allgemeine und persönliche Dokumente, die anderen Portalbenutzern zur Verfügung stehen;",
"ReassignsTransferedListItem2": "Offene Projekte, Meilensteine und Aufgaben;",
"ReassignsTransferedListItem3": "Kontakte, offene Aufgaben, nicht geschlossene Verkaufschancen und CRM-Veranstaltungen;",
"ReassignTalkModule": "Chat",
"RemovingAbortButton": "Entfernen abbrechen",
"RemovingAbortToastrMsg": "Datenlöschung ist abgebrochen",
"RemovingData": "Löschen von persönlichen Daten",
"RemovingErrorToastrMsg": "Die Datenlöschung wurde aufgrund eines Serverfehlers unterbrochen",
"RemovingListHdr": "Werden entfernt:",
"RemovingListItem1": "Alle persönliche Dokumente;",
"RemovingListItem2": "CRM Berichtsdateien;",
"RemovingListItem3": "Alle E-Mails und angehängte Dateien;",
"RemovingListItem4": "Dateien aus Chat angehängt;",
"RemovingProgressUserInfo": "Der Prozess zum Löschen personenbezogener Daten für den Benutzer {0} kann gestartet werden. Dies kann einige Zeit in Anspruch nehmen.",
"RemovingReadMore": "Mehr zum Löschen der persönlichen Daten",
"RemovingRestartButton": "Starten Sie das Entfernen erneut",
"RemovingStatusAborted": "Unterbrochen, einige Daten könnten gelöscht werden",
"RemovingStatusFinished": "Alle Daten werden gelöscht",
"RemovingStatusNotStarted": "Daten wurden nicht gelöscht",
"ResendInviteDialogAfterActivation": "Nachdem die Benutzer die Einladung zum Portal bestätigt haben, wird ihr Status auf 'aktiv' ändern",
"ResendInviteDialogHeader": "Einladungen erneut senden",
"ResendInviteDialogTargetUsers": "Die Einladung zum Portal wird an die gewählten, nicht deaktivierten Benutzer mit dem Status 'ausstehend' noch einmal versandt. ",
"SaveButton": "Speichern",
"SelectAll": "Alle markieren",
"SelectedCount": "{0} ausgewählt",
"Settings": "Einstellungen",
"Show": "Einblenden",
"ShowOnPage": "Auf der Seite anzeigen",
"ShowSelectedUserList": "Liste der gewählten Benutzer sehen",
"SocialProfiles": "Soziale Profile",
"SuccessfullyDeleteUserInfoMessage": "Der Benutzer wurde erfolgreich gelöscht",
"SuccessfullySentNotificationDeleteUserInfoMessage": "Die Hinweise zum Löschen Ihres Profils werden an Ihre E-Mail-Adresse gesendet",
"TariffActiveUserLimit": "Ihr aktueller Zahlungsplan erlaubt Ihnen {0}{1} aktive Benutzer{2} hinzuzufügen.",
"TerminateButton": "Beenden",
"Title": "Titel",
"TitleThumbnailPhoto": "Vorschaubilder ändern",
"TotalCount": "Gesamtanzahl",
"WaitingForConfirmation": "In Erwartung der Bestätigung",
"WriteButton": "Brief schreiben"
}

View File

@ -1,176 +0,0 @@
{
"AccessRightsSettings": "Portal Access Rights",
"Actions": "Actions",
"AddButton": "Add",
"AddDepartmentDlgTitle": "Add {!group}",
"AddImage": "Add Image",
"AddMembers": "Add members",
"BlockedMessage": "Disabled",
"CancelButton": "Cancel",
"ChangeStatus": "Change status",
"ChangeStatusButton": "Change user status",
"ChangeStatusDialogConstraint": "If this number exceeds the current pricing plan you will need to upgrade your plan and repeat the operation or other users status will not be changed.",
"ChangeStatusDialogHeader": "Change user status",
"ChangeStatusDialogRestriction": "You cannot change the status for portal owner and for yourself",
"ChangeStatusDialogToActive": "The users with the 'Disabled' status will be enabled.",
"ChangeStatusDialogToTerminate": "The users with the 'Active' status will be disabled.",
"ChangeType": "Change type",
"ChangeTypeDialogConstraint": "Upgrade your plan and repeat the operation or other users type will not be changed.",
"ChangeTypeDialogHeader": "Change user type",
"ChangeTypeDialogRestriction": "You cannot change the type for portal administrators and for yourself",
"ChangeTypeDialogToGuest": "Users with the '{!User}' type will be moved to '{!Guest}' type",
"ChangeTypeDialogToUser": "Users with the '{!Guest}' type will be moved to '{!User}' type",
"ChooseUser": "Choose user",
"ClearButton": "Reset filter",
"Confirmation": "Confirmation",
"CreateNewProfile": "Create New User",
"DeleteBtnHint": "Only users or guests with the 'Disabled' status can be deleted",
"DeleteButton": "Delete",
"DeleteProfileAfterReassignment": "Delete profile when reassignment is finished",
"DeleteUserProfiles": "Delete the users from portal",
"DeleteUsersDataConfirmation": "Personal documents of these users which are available to others will be deleted. To avoid this, you must start the data transfer process before deleting.",
"DeleteUsersDescription": "The selected disabled users will be deleted from the portal. Please note that this action cannot be undone.\r\nYou cannot delete the users if they have 'Active' or 'Pending' status, they need to be disabled first.",
"DeleteUsersDescriptionText": "The selected disabled users will be deleted from the portal.",
"DepartmentMaster": "{!Head}",
"DeselectAll": "Deselect all",
"DisableUserButton": "Disable",
"DisableUserHelp": "The {!user} will not be displayed in the list of active {!users}",
"EditButton": "Edit",
"EditImage": "Edit Image",
"Email": "Email",
"EnableUserButton": "Enable",
"EnableUserHelp": "The {!user} will be displayed as active again",
"ErrorEmptyName": "Enter a name",
"ErrorEmptyUploadFileSelected": "The uploaded file could not be found",
"ErrorImageSizetLimit": "Image size is too large",
"ErrorImageWeightLimit": "Image file size is too large",
"ErrorUnknownFileImageType": "Unknown image file type",
"ExampleValues": "Example values",
"FieldsInFile": "Fields in file",
"FieldsOnPortal": "Fields on the ONLYOFFICE portal",
"FirstName": "First Name",
"Hide": "Hide",
"HideSelectedUserList": "Hide the selected users list",
"ImportClear": "Clear",
"ImportColumn": "Column",
"ImportDelimiterDQ": "Double quote",
"ImportDelimiterSQ": "Single quote",
"ImportEncodingASCII": "ASCII",
"ImportEncodingCP866": "CP-866",
"ImportEncodingKOI8R": "KOI8-R",
"ImportEncodingUTF8": "UTF-8",
"ImportEncodingWindows1251": "Windows1251",
"ImportFromFile": "From File",
"ImportFromGoogle": "Google",
"ImportFromYahoo": "Yahoo",
"ImportPeople": "Import People",
"ImportSeparatorColon": "Colon",
"ImportSeparatorComma": "Comma",
"ImportSeparatorSemicolon": "Semicolon",
"ImportSeparatorSpace": "Space",
"ImportSeparatorTab": "Tab",
"ImportWizardFirstStep": "Import contacts",
"ImportWizardFourthStep": "Add to portal",
"ImportWizardSecondStep": "Setting up compliance",
"ImportWizardThirdStep": "Edit Contacts",
"InviteLink": "Invitation Link",
"LastName": "Last Name",
"LblActive": "Active",
"LblByName": "Name",
"LblByType": "Type",
"LblCancelButton": "Cancel",
"LblChangeEmail": "Change email",
"LblChangePassword": "Change password",
"LblCreateNew": "Create",
"LblDeleteProfile": "Delete profile",
"LblEdit": "Edit",
"LblImportAccounts": "Import accounts",
"LblMobilePhone": "Primary Mobile Phone",
"LblOKButton": "OK",
"LblOther": "Other",
"LblPassword": "Password",
"LblPending": "Pending",
"LblReassignData": "Reassign data",
"LblRemoveData": "Delete personal data",
"LblResendInvites": "Send invitations once again",
"LblSendActivation": "Send activation link once again",
"LblSendEmail": "Send email",
"LblSendMessage": "Send message",
"LblStatus": "Status",
"LblSubscriptions": "Subscriptions",
"LblTerminated": "Disabled",
"LblTips": "Tooltips",
"MainEmail": "Main Email",
"Members": "Members",
"NoSameValuesOptions": "Fields on the portal cannot have the same values!",
"NotFoundDescription": "No people matching your filter can be displayed in this section. Please select other filter options or clear filter to view all the people in this section.",
"NotFoundTitle": "No results matching your search could be found",
"NotImport": "Not import",
"OnTop": "On top",
"ProductAdminOpportunities": "Do the same as a user|Create profiles and groups|Import profiles|Invite users",
"ProductDescription": "Add new users, invite or import them. Manage users and view their detailed information.",
"ProductName": "People",
"ProductUserOpportunities": "View profiles and groups",
"ReadAboutNonProfit": "Or {0}read about non-profit usage{1}.",
"ReassignAbortButton": "Abort transfer",
"ReassignAbortToastrMsg": "Data transfer aborted",
"ReassignButton": "Reassign",
"ReassignCrmModule": "CRM",
"ReassignDocumentsModule": "Documents",
"ReassignErrorToastrMsg": "Data transfer interrupted due to a server error",
"ReassignMailModule": "Mail",
"ReassignmentData": "Data reassignment",
"ReassignProjectsModule": "Projects",
"ReassignRestartButton": "Start transfer again",
"ReassignsProgressNotifyInfo": "You can close this page. When the process is completed, the administrator who runs it will be notified by mail.",
"ReassignsProgressText": "The process of data transfer is started, it can take a considerable time.{0}You can close this page. When the process is completed, the administrator who runs it will be notified by mail.",
"ReassignsProgressUserInfo": "The process of reassignment data from user {0} to user {1} started, it can take a considerable time.",
"ReassignsReadMore": "More about data transfer",
"ReassignStatusAborted": "Interrupted, some data could be transferred",
"ReassignStatusError": "Server error",
"ReassignStatusFinished": "All data transferred",
"ReassignStatusNotStarted": "Data was not transferred",
"ReassignStatusQueued": "Queued",
"ReassignStatusStarted": "Started",
"ReassignsToUser": "Employee to whom the data will be transferred -",
"ReassignsTransferedListHdr": "Will be transferred:",
"ReassignsTransferedListItem1": "General and personal documents available to other portal users;",
"ReassignsTransferedListItem2": "Open projects, milestones and tasks;",
"ReassignsTransferedListItem3": "Contacts, open tasks, not closed opportunities and CRM cases;",
"ReassignTalkModule": "Talk",
"RemovingAbortButton": "Abort removal",
"RemovingAbortToastrMsg": "Data deletion aborted",
"RemovingData": "Deleting personal data",
"RemovingErrorToastrMsg": "Data deletion interrupted due to a server error",
"RemovingListHdr": "Will be removed:",
"RemovingListItem1": "All personal documents;",
"RemovingListItem2": "CRM report files;",
"RemovingListItem3": "All emails and attached files;",
"RemovingListItem4": "Attached from Talk files;",
"RemovingProgressUserInfo": "The process of deleting personal data for user {0} started, it can take a considerable time.",
"RemovingReadMore": "More about deleting the personal data",
"RemovingRestartButton": "Start removing again",
"RemovingStatusAborted": "Interrupted, some data could be deleted",
"RemovingStatusFinished": "All data deleted",
"RemovingStatusNotStarted": "Data was not deleted",
"ResendInviteDialogAfterActivation": "After the users confirm the invitation to the portal their status will change to 'Active'",
"ResendInviteDialogHeader": "Send invitation once again",
"ResendInviteDialogTargetUsers": "The invitation to the portal will be sent once again to the selected users with the 'Pending' status who are not disabled.",
"SaveButton": "Save",
"SelectAll": "Select all",
"SelectedCount": "{0} selected",
"Settings": "Settings",
"Show": "Show",
"ShowOnPage": "Show on page",
"ShowSelectedUserList": "View the selected users list",
"SocialProfiles": "Social Profiles",
"SuccessfullyDeleteUserInfoMessage": "User has been successfully deleted",
"SuccessfullySentNotificationDeleteUserInfoMessage": "The instructions for your profile deletion have been sent to email address",
"TariffActiveUserLimit": "Your current pricing plan allows you to add {0}{1} active users{2}.",
"TerminateButton": "Terminate",
"Title": "Title",
"TitleThumbnailPhoto": "Change Thumbnails",
"TotalCount": "Total count",
"WaitingForConfirmation": "Waiting for confirmation",
"WriteButton": "Write Letter"
}

View File

@ -1,176 +0,0 @@
{
"AccessRightsSettings": "Droits d'accès sur le portail",
"Actions": "Actions",
"AddButton": "Ajouter",
"AddDepartmentDlgTitle": "Ajouter {!group}",
"AddImage": "Ajouter image",
"AddMembers": "Ajouter membres",
"BlockedMessage": "Désactivé",
"CancelButton": "Annuler",
"ChangeStatus": "Changer statut",
"ChangeStatusButton": "Modifier le statut",
"ChangeStatusDialogConstraint": "Si ce nombre dépasse le plan de tarification actuel, vous devez mettre à jour votre plan et répétez l'opération sinon le statut des autres utilisateurs ne sera pas modifié.",
"ChangeStatusDialogHeader": "Modifier le statut de l'utilisateur",
"ChangeStatusDialogRestriction": "Vous ne pouvez pas changer le statut de propriétaire du portail et votre propre statut",
"ChangeStatusDialogToActive": "Les utilisateurs avec le statut 'Désactivé' seront activés.",
"ChangeStatusDialogToTerminate": "Les utilisateurs avec le statut 'Actif' seront désactivés.",
"ChangeType": "Modifier le type",
"ChangeTypeDialogConstraint": "Actualisez votre plan et répétez l'opération sinon le type des autres utilisateurs ne sera pas modifié.",
"ChangeTypeDialogHeader": "Changer le type d'utilisateur",
"ChangeTypeDialogRestriction": "Vous ne pouvez pas changer votre type ou le type de propriétaire du portail",
"ChangeTypeDialogToGuest": "Les utilisateurs du type '{!User}' seront déplacés dans le type '{!Guest}'",
"ChangeTypeDialogToUser": "Les utilisateurs du type '{!Guest}' seront déplacés dans le type '{!User}'",
"ChooseUser": "Choisir l'utilisateur",
"ClearButton": "Réinitialiser le filtre",
"Confirmation": "Confirmation",
"CreateNewProfile": "Créer un nouvel utilisateur",
"DeleteBtnHint": "Ce ne sont que les utilisateurs et les invités avec le statut 'Desactivé' qui peuvent être supprimés",
"DeleteButton": "Supprimer",
"DeleteProfileAfterReassignment": "Supprimer le profile lorsque réaffectation est finie",
"DeleteUserProfiles": "Supprimer l'utilisateur du portail",
"DeleteUsersDataConfirmation": "Les documents personnels de ces utilisateurs qui sont patagés avec d'autres seront supprimés. Pour éviter cela, vous devez démarrer le processus de transfert de données avant la suppression.",
"DeleteUsersDescription": "Les utilisateurs désactivés sélectionnés seront supprimés du portail. Il est à noter que cette action ne peut pas être annulée. Vous ne pouvez pas supprimer des utilisateurs qui ont des statuts 'Actif' ou 'En attente', tout d'abord il faut les désactiver.",
"DeleteUsersDescriptionText": "Les utilisateurs handicapés sélectionnés seront supprimés du portail.",
"DepartmentMaster": "{!Head}",
"DeselectAll": "Désélectionner tout",
"DisableUserButton": "Désactiver",
"DisableUserHelp": "{!User} ne sera pas affiché dans la liste des {!users} actifs",
"EditButton": "Modifier",
"EditImage": "Modifier image",
"Email": "Email",
"EnableUserButton": "Activer ",
"EnableUserHelp": "{!User} sera affiché de nouveau comme actif ",
"ErrorEmptyName": "Entrez un nom",
"ErrorEmptyUploadFileSelected": "Impossible de trouver le fichier chargé",
"ErrorImageSizetLimit": "La taille de l'image est trop grande",
"ErrorImageWeightLimit": "La taille du fichier d'image est trop grande",
"ErrorUnknownFileImageType": "Le type de fichier de l'image est inconnu",
"ExampleValues": "Valeurs d'example",
"FieldsInFile": "Chapms dans le fichier",
"FieldsOnPortal": "Champs sur le portail ONLYOFFICE",
"FirstName": "Prénom",
"Hide": "Cacher",
"HideSelectedUserList": "Cacher la liste des utilisateurs sélectionnés",
"ImportClear": "Effacer",
"ImportColumn": "Colonne",
"ImportDelimiterDQ": "Guillemets doubles",
"ImportDelimiterSQ": "Guillemet simple",
"ImportEncodingASCII": "ASCII",
"ImportEncodingCP866": "CP-866",
"ImportEncodingKOI8R": "KOI8-R",
"ImportEncodingUTF8": "UTF-8",
"ImportEncodingWindows1251": "Windows1251",
"ImportFromFile": "Depuis un fichier",
"ImportFromGoogle": "Google",
"ImportFromYahoo": "Yahoo",
"ImportPeople": "Importer personnes",
"ImportSeparatorColon": "Deux-points",
"ImportSeparatorComma": "Virgule",
"ImportSeparatorSemicolon": "Point-virgule",
"ImportSeparatorSpace": "Espace",
"ImportSeparatorTab": "Tabulation",
"ImportWizardFirstStep": "Importer les contacts",
"ImportWizardFourthStep": "Ajouter au portail",
"ImportWizardSecondStep": "Mise en place de conformité",
"ImportWizardThirdStep": "Modifier Contacts",
"InviteLink": "Lien d'invitation",
"LastName": "Nom",
"LblActive": "Actif",
"LblByName": "Nom",
"LblByType": "Type",
"LblCancelButton": "Annuler",
"LblChangeEmail": "Modifier l'émail",
"LblChangePassword": "Changer le mot de passe",
"LblCreateNew": "Créer",
"LblDeleteProfile": "Supprimer le profil",
"LblEdit": "Modifier",
"LblImportAccounts": "Importer des comptes",
"LblMobilePhone": "Numéro de téléphone principale",
"LblOKButton": "OK",
"LblOther": "Autre",
"LblPassword": "Mot de passe",
"LblPending": "En attente",
"LblReassignData": "Réaffecter des données",
"LblRemoveData": "Supprimer les données personnelles",
"LblResendInvites": "Renvoyer les invitations",
"LblSendActivation": "Envoyer un lien d'activation encore une fois",
"LblSendEmail": "Envoyer message",
"LblSendMessage": "Envoyer message",
"LblStatus": "Statut",
"LblSubscriptions": "Abonnements",
"LblTerminated": "Désactivé",
"LblTips": "Info-bulles",
"MainEmail": "Email principale",
"Members": "Membres",
"NoSameValuesOptions": "Champs sur le portail ne peuvent pas avoir les mêmes valeurs!",
"NotFoundDescription": "Aucune personne CRM correspondant à votre filtre peut être affichée dans cette section. Sélectionnez d'autres options de filtre ou effacez le filtre pour afficher toutes les personnes dans cette section.",
"NotFoundTitle": "Aucun résultat correspondant à vos critères n'a pu être trouvé",
"NotImport": "N'importer pas",
"OnTop": "En haut",
"ProductAdminOpportunities": "Faire la même chose qu'un utilisateur|Créer des profils et groupes|Importer des profils|Inviter des utilisateurs",
"ProductDescription": "Ajoutez de nouveaux utilisateurs, invitez ou importez-les. Gérez les utilisateurs et visualisez leurs informations détaillées.",
"ProductName": "Personnes",
"ProductUserOpportunities": "Afficher les profils et groupes",
"ReadAboutNonProfit": "Ou {0}lisez sur l'utilisation à but non lucratif{1}.",
"ReassignAbortButton": "Annuler le transfert",
"ReassignAbortToastrMsg": "Transfert de données annulé",
"ReassignButton": "Réaffecter",
"ReassignCrmModule": "CRM",
"ReassignDocumentsModule": "Documents",
"ReassignErrorToastrMsg": "Transfert de données interrompu dû à une erreur de serveur",
"ReassignMailModule": "Mail",
"ReassignmentData": "Réattribution de données",
"ReassignProjectsModule": "Projets",
"ReassignRestartButton": "Recommencer le transfert",
"ReassignsProgressNotifyInfo": "Vous pouvez fermer cette page. Lorsque le processus sera terminé, l'administrateur qui l'exécute sera averti par mail.",
"ReassignsProgressText": "Le processus de transfert de données est démarré, cela peut prendre beaucoup de temps.{0}Vous pouvez fermer cette page. Lorsque le processus sera terminé, l'administrateur qui l'exécute sera averti par mail.",
"ReassignsProgressUserInfo": "Le processus de réaffectation des données de l'utilisateur {0} à l'utilisateur {1} a commencé, cela peut prendre beaucoup de temps.",
"ReassignsReadMore": "En savoir plus sur le transfert de données",
"ReassignStatusAborted": "Interrompu, certaines données pourraient être transférées",
"ReassignStatusError": "Erreur de serveur",
"ReassignStatusFinished": "Toutes les données transférées",
"ReassignStatusNotStarted": "Les données n'ont pas été transférées",
"ReassignStatusQueued": "En file d'attente",
"ReassignStatusStarted": "Démarrer",
"ReassignsToUser": "Employé à qui les données seront transférées -",
"ReassignsTransferedListHdr": "Sera transféré:",
"ReassignsTransferedListItem1": "Documents généraux et personnels disponibles pour les autres utilisateurs du portail;",
"ReassignsTransferedListItem2": "Projets ouverts, jalons et tâches;",
"ReassignsTransferedListItem3": "Contacts, tâches ouvertes, opportunités non fermées et cas de CRM;",
"ReassignTalkModule": "Chat",
"RemovingAbortButton": "Annuler la suppression",
"RemovingAbortToastrMsg": "Suppression de données annulée",
"RemovingData": "Suppression de données personnelles",
"RemovingErrorToastrMsg": "Suppression de données interrompue en raison d'une erreur de serveur",
"RemovingListHdr": "Sera suprimé:",
"RemovingListItem1": "Tous les documents personnels;",
"RemovingListItem2": "Fichiers de rapport CRM;",
"RemovingListItem3": "Tous les e-mails et fichiers joints;",
"RemovingListItem4": "Fichiers joints à partir de Talk;",
"RemovingProgressUserInfo": "Le processus de suppression des données personnelles pour l'utilisateur {0} a commencé, cela peut prendre beaucoup de temps.",
"RemovingReadMore": "En savoir plus sur la suppression des données personnelles",
"RemovingRestartButton": "Commencez à supprimer à nouveau",
"RemovingStatusAborted": "Interrompu, certaines données pourraient être supprimées",
"RemovingStatusFinished": "Toutes les données supprimées",
"RemovingStatusNotStarted": "Les données n'ont pas été supprimées",
"ResendInviteDialogAfterActivation": "Après que les utilisateurs confirment l'invitation sur le portail leurs statuts deviennent 'Actif'",
"ResendInviteDialogHeader": "Renvoyer l'invitation",
"ResendInviteDialogTargetUsers": "L'invitation sur le portail sera renvoyée aux utilisateurs sélectionnés avec le statut 'En attente' qui ne sont pas désactivés.",
"SaveButton": "Enregistrer",
"SelectAll": "Sélectionner tout",
"SelectedCount": "{0} sélectionné",
"Settings": "Paramètres",
"Show": "Afficher",
"ShowOnPage": "Afficher sur la page",
"ShowSelectedUserList": "Afficher la liste des utilisateurs sélectionnés",
"SocialProfiles": "Profils sociaux",
"SuccessfullyDeleteUserInfoMessage": "L'utilisateur a été supprimé avec succès",
"SuccessfullySentNotificationDeleteUserInfoMessage": "Les instructions sur la suppression de votre profil sont été envoyées à l'adresse email",
"TariffActiveUserLimit": "Le plan tarifaire actuel permet d'ajouter les {0}{1}utilisateurs actifs{2}.",
"TerminateButton": "Terminer",
"Title": "Titre",
"TitleThumbnailPhoto": "Modifier vignettes",
"TotalCount": "Nombre total",
"WaitingForConfirmation": "En attente de confirmation",
"WriteButton": "Ecrire un message"
}

View File

@ -1,176 +0,0 @@
{
"AccessRightsSettings": "Права доступа на портале",
"Actions": "Действия",
"AddButton": "Добавить",
"AddDepartmentDlgTitle": "Добавить группу",
"AddImage": "Добавить изображение",
"AddMembers": "Добавить участников",
"BlockedMessage": "Заблокирован",
"CancelButton": "Отмена",
"ChangeStatus": "Изменить статус",
"ChangeStatusButton": "Изменить статус",
"ChangeStatusDialogConstraint": "Если это число превышает текущий тарифный план, вам потребуется повысить тарифный план и повторить операцию, иначе статус остальных пользователей не изменится.",
"ChangeStatusDialogHeader": "Изменение статуса пользователя",
"ChangeStatusDialogRestriction": "Вы не можете изменить статус владельца портала и свой собственный статус",
"ChangeStatusDialogToActive": "Пользователи со статусом 'Заблокирован' будут разблокированы.",
"ChangeStatusDialogToTerminate": "Пользователи со статусом 'Активный' будут заблокированы.",
"ChangeType": "Изменить тип",
"ChangeTypeDialogConstraint": "Повысьте тарифный план и повторите операцию, иначе тип остальных пользователей не изменится.",
"ChangeTypeDialogHeader": "Изменение типа пользователя",
"ChangeTypeDialogRestriction": "Вы не можете изменить тип для администраторов портала и для самого себя",
"ChangeTypeDialogToGuest": "Пользователи с типом '{!User}' будут переведены в тип '{!Guest}'",
"ChangeTypeDialogToUser": "Пользователи с типом '{!Guest}' будут переведены в тип '{!User}'",
"ChooseUser": "Выбрать пользователя",
"ClearButton": "Сбросить фильтр",
"Confirmation": "Подтверждение",
"CreateNewProfile": "Создание нового пользователя",
"DeleteBtnHint": "Удалить можно только пользователей или гостей со статусом 'Заблокирован'",
"DeleteButton": "Удалить",
"DeleteProfileAfterReassignment": "Удалить профиль после завершения передачи данных",
"DeleteUserProfiles": "Удаление пользователей с портала",
"DeleteUsersDataConfirmation": "Будут удалены личные документы этих пользователей, доступные для других. Чтобы избежать этого, нужно перед удалением запустить процесс передачи данных.",
"DeleteUsersDescription": "Выбранные заблокированные пользователи будут удалены с портала. Пожалуйста, обратите внимание на то, что это действие нельзя отменить.\nПользователей со статусом 'Активный' или 'Ожидание' удалить нельзя, сначала их надо заблокировать.",
"DeleteUsersDescriptionText": "Выбранные заблокированные пользователи будут удалены с портала.",
"DepartmentMaster": "{!Head}",
"DeselectAll": "Отменить выбор",
"DisableUserButton": "Заблокировать",
"DisableUserHelp": "{!User} не будет отображаться в списке активных",
"EditButton": "Редактировать",
"EditImage": "Изменить изображение",
"Email": "Email",
"EnableUserButton": "Разблокировать",
"EnableUserHelp": "{!User} снова перейдет в статус активных",
"ErrorEmptyName": "Введите название",
"ErrorEmptyUploadFileSelected": "Загружаемый файл не найден",
"ErrorImageSizetLimit": "Размер изображения слишком большой",
"ErrorImageWeightLimit": "Размер файла изображения слишком большой",
"ErrorUnknownFileImageType": "Неизвестный тип файла изображения",
"ExampleValues": "Примеры значений",
"FieldsInFile": "Поля в файле",
"FieldsOnPortal": "Поля на портале ONLYOFFICE",
"FirstName": "Имя",
"Hide": "Скрыть",
"HideSelectedUserList": "Скрыть список выбранных пользователей",
"ImportClear": "Очистить",
"ImportColumn": "Столбец",
"ImportDelimiterDQ": "Двойная кавычка",
"ImportDelimiterSQ": "Одинарная кавычка",
"ImportEncodingASCII": "ASCII",
"ImportEncodingCP866": "CP-866",
"ImportEncodingKOI8R": "KOI8-R",
"ImportEncodingUTF8": "UTF-8",
"ImportEncodingWindows1251": "Windows1251",
"ImportFromFile": "Из файла",
"ImportFromGoogle": "Google",
"ImportFromYahoo": "Yahoo",
"ImportPeople": "Импортировать людей",
"ImportSeparatorColon": "Двоеточие",
"ImportSeparatorComma": "Запятая",
"ImportSeparatorSemicolon": "Точка с запятой",
"ImportSeparatorSpace": "Пробел",
"ImportSeparatorTab": "Табуляция",
"ImportWizardFirstStep": "Импорт контактов",
"ImportWizardFourthStep": "Добавление на портал",
"ImportWizardSecondStep": "Установка соответствия",
"ImportWizardThirdStep": "Проверка",
"InviteLink": "Пригласительная ссылка",
"LastName": "Фамилия",
"LblActive": "Активный",
"LblByName": "Фамилия",
"LblByType": "Тип",
"LblCancelButton": "Отмена",
"LblChangeEmail": "Изменить email",
"LblChangePassword": "Сменить пароль",
"LblCreateNew": "Создать",
"LblDeleteProfile": "Удалить профиль",
"LblEdit": "Редактировать",
"LblImportAccounts": "Импортировать аккаунты",
"LblMobilePhone": "Основной телефон",
"LblOKButton": "OK",
"LblOther": "Другое",
"LblPassword": "Пароль",
"LblPending": "Ожидание",
"LblReassignData": "Передать данные",
"LblRemoveData": "Удалить личные данные",
"LblResendInvites": "Отправить приглашения еще раз",
"LblSendActivation": "Отправить ссылку активации еще раз",
"LblSendEmail": "Отправить письмо",
"LblSendMessage": "Отправить сообщение",
"LblStatus": "Статус",
"LblSubscriptions": "Подписки",
"LblTerminated": "Заблокирован",
"LblTips": "Подсказки",
"MainEmail": "Основной Email",
"Members": "Участники",
"NoSameValuesOptions": "Поля на портале не могут иметь одинаковые значения!",
"NotFoundDescription": "В данном разделе нет людей, соответствующих фильтру. Пожалуйста, выберите другие параметры или очистите фильтр, чтобы просмотреть всех людей в этом разделе.",
"NotFoundTitle": "Результатов, соответствующих заданным критериям, не найдено",
"NotImport": "Не импортировать",
"OnTop": "Наверх",
"ProductAdminOpportunities": "Делать то же самое, что и пользователь|Создавать профили и группы|Импортировать профили|Приглашать пользователей",
"ProductDescription": "Добавляйте новых пользователей, приглашайте или импортируйте их. Управляйте пользователями и просматривайте подробную информацию о них.",
"ProductName": "Люди",
"ProductUserOpportunities": "Просматривать профили и группы",
"ReadAboutNonProfit": "Или {0}прочитайте о некоммерческом использовании{1}.",
"ReassignAbortButton": "Прервать передачу",
"ReassignAbortToastrMsg": "Передача данных прервана",
"ReassignButton": "Передать",
"ReassignCrmModule": "CRM",
"ReassignDocumentsModule": "Документы",
"ReassignErrorToastrMsg": "Передача данных прервана из-за ошибки сервера",
"ReassignMailModule": "Почта",
"ReassignmentData": "Передача данных",
"ReassignProjectsModule": "Проекты",
"ReassignRestartButton": "Запустить передачу заново",
"ReassignsProgressNotifyInfo": "Вы можете закрыть эту страницу. Когда процесс завершится, запустившему его администратору придет уведомление на почту.",
"ReassignsProgressText": "Процесс передачи данных запущен, он может занять значительное время.{0}Вы можете закрыть эту страницу. Когда процесс завершится, запустившему его администратору придет уведомление на почту.",
"ReassignsProgressUserInfo": "Процесс передачи данных от пользователя {0} пользователю {1} запущен, он может занять значительное время.",
"ReassignsReadMore": "Подробнее о передаче данных",
"ReassignStatusAborted": "Прервано, часть данных могла быть передана",
"ReassignStatusError": "Ошибка сервера",
"ReassignStatusFinished": "Переданы все данные",
"ReassignStatusNotStarted": "Данные не передавались",
"ReassignStatusQueued": "В очереди",
"ReassignStatusStarted": "Запущено",
"ReassignsToUser": "Сотрудник, которому будут переданы данные, -",
"ReassignsTransferedListHdr": "Будут переданы:",
"ReassignsTransferedListItem1": "Общие и личные документы, которые доступны другим пользователям портала;",
"ReassignsTransferedListItem2": "Открытые проекты, вехи и задачи;",
"ReassignsTransferedListItem3": "Контакты, открытые задачи, незакрытые сделки и мероприятия CRM;",
"ReassignTalkModule": "Чат",
"RemovingAbortButton": "Прервать удаление",
"RemovingAbortToastrMsg": "Удаление данных прервано",
"RemovingData": "Удаление личных данных",
"RemovingErrorToastrMsg": "Удаление данных прервано из-за ошибки сервера",
"RemovingListHdr": "Будут удалены:",
"RemovingListItem1": "Все личные документы;",
"RemovingListItem2": "Файлы отчетов CRM;",
"RemovingListItem3": "Все письма и вложения;",
"RemovingListItem4": "Прикрепленные файлы из Чата;",
"RemovingProgressUserInfo": "Процесс удаления персональных данных пользователя {0} запущен, он может занять значительное время.",
"RemovingReadMore": "Подробнее об удалении личных данных",
"RemovingRestartButton": "Запустить удаление заново",
"RemovingStatusAborted": "Прервано, часть данных могла быть удалена",
"RemovingStatusFinished": "Удалены все данные",
"RemovingStatusNotStarted": "Данные не удалялись",
"ResendInviteDialogAfterActivation": "После того, как пользователи подтвердят приглашение на портал, их статус изменится на 'Активный'",
"ResendInviteDialogHeader": "Отправить приглашение еще раз",
"ResendInviteDialogTargetUsers": "Приглашение на портал будет отправлено еще раз выбранным пользователям со статусом 'Ожидание', которые не заблокированы.",
"SaveButton": "Сохранить",
"SelectAll": "Выбрать всех",
"SelectedCount": "выбрано {0}",
"Settings": "Настройки",
"Show": "Показать",
"ShowOnPage": "Показывать на странице",
"ShowSelectedUserList": "Показать список выбранных пользователей",
"SocialProfiles": "Социальные профили",
"SuccessfullyDeleteUserInfoMessage": "Пользователь успешно удален",
"SuccessfullySentNotificationDeleteUserInfoMessage": "Инструкции по удалению Вашего профиля были высланы на адрес электронной почты",
"TariffActiveUserLimit": "Текущий тарифный план позволяет добавить {0}{1} активных пользователей{2}.",
"TerminateButton": "Завершить",
"Title": "Название",
"TitleThumbnailPhoto": "Изменить миниатюры",
"TotalCount": "Общее количество",
"WaitingForConfirmation": "Ожидание подтверждения",
"WriteButton": "Написать письмо"
}

View File

@ -29,6 +29,7 @@
"bootstrap": "^4.3.1",
"lodash": "4.17.14",
"lodash-es": "4.17.14",
"moment": "^2.24.0",
"postcss": "^7.0.16",
"prop-types": "^15.7.2",
"rc-tree": "^2.1.2",

View File

@ -132,6 +132,7 @@ const EditLink = styled.div`
span {
display: inline-block;
max-width: 100%;
}
`;

View File

@ -3,12 +3,8 @@ import PropTypes from 'prop-types'
import styled, { css } from 'styled-components';
import DatePicker, { registerLocale } from "react-datepicker";
import ComboBox from '../combobox';
import moment from 'moment/min/moment-with-locales';
import "react-datepicker/dist/react-datepicker.css";
import enGB from 'date-fns/locale/en-GB';
registerLocale('en-GB', enGB);
const CalendarContainer = styled.div`
width: 293px;
@ -47,6 +43,8 @@ const CalendarStyle = styled.div`
.react-datepicker__header {
background-color: #fff;
border: none;
position: absolute;
z-index: -1;
}
.react-datepicker__month {
@ -61,15 +59,6 @@ const CalendarStyle = styled.div`
color: #ECEEF1 !important;
}
.react-datepicker__day-name {
width: 32px;
}
.react-datepicker__day-names {
display: block;
font-size: 13px;
}
.react-datepicker__day {
line-height: 2.5em;
${DaysStyle}
@ -90,7 +79,7 @@ const CalendarStyle = styled.div`
const DataSelector = styled.div`
position: relative;
display: flex;
margin-bottom: 16px;
margin-bottom: 5px;
`;
const ComboboxStyled = styled.div`
@ -98,103 +87,146 @@ const ComboboxStyled = styled.div`
width: 80px;
`;
class Calendar extends Component {
const DayNames = styled.div`
max-width: 293px;
display: block;
margin-left: 5px;
`;
const DayName = styled.label`
width:32px;
height:32px;
font-size: 13px;
font-family: Open Sans;
font-style: normal;
font-weight: bold;
text-align: center;
margin-left: 4px;
line-height: 4.5em;
`;
class Calendar extends Component {
constructor(props) {
super(props);
moment.locale(props.location);
this.state = {
startDate: props.startDate
selectedDate: props.selectedDate,
openToDate: props.openToDate,
months: moment.months()
};
const minDate = new Date(props.minDate.getFullYear(), props.minDate.getMonth(), 1);
const maxDate = new Date(props.maxDate.getFullYear(), props.maxDate.getMonth() + 1, 0);
}
// need rework!!!
month = [
{ key: "Jan", label: "January" },
{ key: "Feb", label: "February" },
{ key: "Mar", label: "March" },
{ key: "Apr", label: "April" },
{ key: "May", label: "May" },
{ key: "Jun", label: "June" },
{ key: "Jul", label: "July" },
{ key: "Aug", label: "August" },
{ key: "Sep", label: "September" },
{ key: "Oct", label: "October" },
{ key: "Nov", label: "November" },
{ key: "Dec", label: "December" }];
/*
options = {
era: 'long',
year: 'numeric',
month: 'long',
day: 'numeric',
weekday: 'long',
timezone: 'UTC',
hour: 'numeric',
minute: 'numeric',
second: 'numeric'
};
*/
options = {
month: 'long'
};
arrayDates = function () {
getArrayDates = function () {
let date1 = this.props.minDate.getFullYear();
let date2 = this.props.maxDate.getFullYear();
const yearList = [];
for (let i = date1; i <= date2; i++) {
yearList.push({ key: `${i}`, label: `${i}` });
yearList.push({ key: `${i}`, label: `${String(i).toLocaleString(this.props.location)}` });
}
return yearList;
}
getCurrentDate = function () {
let year = this.arrayDates();
year = year.find(x => x.label == this.state.startDate.getFullYear());
let year = this.getArrayDates();
year = year.find(x => x.key == this.state.selectedDate.getFullYear());
return (year.key);
}
//need rework too!!!
getListMonth = function (date1, date2) {
//const monthList = [];
let monthList = new Array();
for (let i = date1; i <= date2; i++) {
monthList.push({ key: `${i}`, label: `${this.state.months[i]}` });
}
//console.log(monthList[0]);
return monthList;
}
getArrayMonth = function () {
let date1 = this.props.minDate.getMonth();
let date2 = this.props.maxDate.getMonth();
//let monthList = [];
let monthList = new Array();
if (this.props.minDate.getFullYear() !== this.props.maxDate.getFullYear()) {
monthList = this.getListMonth(0, 11);
} else { monthList = this.getListMonth(date1, date2); }
//console.log(monthList);
return monthList;
}
getCurrentMonth = function () {
let month = this.month.find(x => x.label === this.state.startDate.toLocaleString('default', { month: 'long' }));
return (month.key);
let month = this.getArrayMonth();
let selectedmonth = month.find(x => x.key == this.state.selectedDate.getMonth());
return (selectedmonth.key);
}
fomateDate = function (date) {
return (date.getMonth() + 1) + "/" + date.getDate() + "/" + date.getFullYear();
}
handleChange(date) {
this.setState({ startDate: date });
this.props.onChange && this.props.onChange(date);
if (this.fomateDate(this.props.selectedDate) !== this.fomateDate(date)) {
this.setState({ selectedDate: date });
this.props.onChange && this.props.onChange(date);
}
}
selectedDate = (value) => {
//console.log(value);
this.setState({ openToDate: new Date(value.key, this.state.openToDate.getMonth()) });
}
selectedMonth = (value) => {
//console.log(value);
this.setState({ openToDate: new Date(this.state.openToDate.getFullYear(), value.key) });
}
componentDidUpdate(prevProps) {
if (this.props.location !== prevProps.location) {
moment.locale(this.props.location);
this.setState(this.state.months = moment.months());
}
}
render() {
console.log(this.props.minDate.toLocaleString("en-GB", this.options));
console.log(this.props.maxDate.toLocaleString("en-GB", this.options));
return (
<CalendarContainer>
<DataSelector>
<div>
<ComboBox isDisabled={this.props.disabled} options={this.month} selectedOption={this.getCurrentMonth()} />
<ComboBox scaled={false} onSelect={this.selectedMonth} isDisabled={this.props.disabled} options={this.getArrayMonth()} selectedOption={this.getCurrentMonth()} />
</div>
<ComboboxStyled>
<ComboBox isDisabled={this.props.disabled} options={this.arrayDates()} selectedOption={this.getCurrentDate()} />
<ComboBox onSelect={this.selectedDate} isDisabled={this.props.disabled} options={this.getArrayDates()} selectedOption={this.getCurrentDate()} />
</ComboboxStyled>
</DataSelector>
<DayNames>
<DayName>{moment.weekdaysMin()[0]}</DayName>
<DayName>{moment.weekdaysMin()[1]}</DayName>
<DayName>{moment.weekdaysMin()[2]}</DayName>
<DayName>{moment.weekdaysMin()[3]}</DayName>
<DayName>{moment.weekdaysMin()[4]}</DayName>
<DayName>{moment.weekdaysMin()[5]}</DayName>
<DayName>{moment.weekdaysMin()[6]}</DayName>
</DayNames>
<CalendarStyle color={this.props.themeColor}>
<DatePicker
inline
selected={this.state.startDate}
selected={this.state.selectedDate}
onChange={this.handleChange.bind(this)}
dateFormat={this.props.dateFormat}
disabled={this.props.disabled}
locale="en-GB"
minDate={this.minDate}
maxDate={this.maxDate}
openToDate={this.props.openToDate}
minDate={new Date(this.props.minDate.getFullYear(), this.props.minDate.getMonth(), 1)}
maxDate={new Date(this.props.maxDate.getFullYear(), this.props.maxDate.getMonth() + 1, 0)}
openToDate={this.state.openToDate}
showDisabledMonthNavigation
//renderCustomHeader={({ }) => { }}
renderCustomHeader={({ }) => { }}
//locale={this.props.location}
//disabled={this.props.disabled}
//dateFormat={this.props.dateFormat}
//locale={this.props.location}
//locale='language'
/>
</CalendarStyle>
</CalendarContainer>
@ -207,19 +239,21 @@ Calendar.propTypes = {
disabled: PropTypes.bool,
dateFormat: PropTypes.string,
themeColor: PropTypes.string,
startDate: PropTypes.instanceOf(Date),
selectedDate: PropTypes.instanceOf(Date),
openToDate: PropTypes.instanceOf(Date),
minDate: PropTypes.instanceOf(Date),
maxDate: PropTypes.instanceOf(Date)
maxDate: PropTypes.instanceOf(Date),
location: PropTypes.string
}
Calendar.defaultProps = {
startDate: new Date(),
selectedDate: new Date(),
openToDate: new Date(),
minDate: new Date("1970/01/01"),
maxDate: new Date("3000/01/01"),
dateFormat: "dd.MM.yyyy",
themeColor: '#ED7309',
location: 'en'
}
export default Calendar;

View File

@ -12,6 +12,7 @@ import NavItem from './sub-components/nav-item'
class Layout extends React.Component {
constructor(props) {
super(props);
this.timeout = null;
this.state = this.mapPropsToState(props);
};
@ -119,12 +120,29 @@ class Layout extends React.Component {
});
};
handleNavHover = () => {
if(!this.state.isNavHoverEnabled) return;
handleNavMouseEnter = () => {
if (!this.state.isNavHoverEnabled) return;
this.timeout = setTimeout(() => {
this.setState({
isBackdropVisible: false,
isNavOpened: true,
isAsideVisible: false
});
}, 300);
}
handleNavMouseLeave = () => {
if (!this.state.isNavHoverEnabled) return;
if (this.timeout != null) {
clearTimeout(this.timeout);
this.timeout = null;
}
this.setState({
isBackdropVisible: false,
isNavOpened: !this.state.isNavOpened,
isNavOpened: false,
isAsideVisible: false
});
}
@ -167,8 +185,8 @@ class Layout extends React.Component {
this.state.isNavAvailable &&
<Nav
opened={this.state.isNavOpened}
onMouseEnter={this.handleNavHover}
onMouseLeave={this.handleNavHover}
onMouseEnter={this.handleNavMouseEnter}
onMouseLeave={this.handleNavMouseLeave}
>
<NavLogoItem
opened={this.state.isNavOpened}

View File

@ -5606,6 +5606,11 @@ mkdirp@0.5.x, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1:
dependencies:
minimist "0.0.8"
moment@^2.24.0:
version "2.24.0"
resolved "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b"
integrity sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg==
move-concurrently@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"

View File

@ -26,31 +26,6 @@
</ItemGroup>
<ItemGroup>
<Compile Update="PublicResources\AuditResource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>AuditResource.resx</DependentUpon>
</Compile>
<Compile Update="PublicResources\ChatResource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>ChatResource.resx</DependentUpon>
</Compile>
<Compile Update="PublicResources\CustomModeResource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>CustomModeResource.resx</DependentUpon>
</Compile>
<Compile Update="PublicResources\FeedResource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>FeedResource.resx</DependentUpon>
</Compile>
<Compile Update="PublicResources\MonitoringResource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>MonitoringResource.resx</DependentUpon>
</Compile>
<Compile Update="PublicResources\Resource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
@ -61,11 +36,6 @@
<AutoGen>True</AutoGen>
<DependentUpon>ResourceJS.resx</DependentUpon>
</Compile>
<Compile Update="PublicResources\StudioCountriesResource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>StudioCountriesResource.resx</DependentUpon>
</Compile>
<Compile Update="PublicResources\UserControlsCommonResource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
@ -76,16 +46,6 @@
<AutoGen>True</AutoGen>
<DependentUpon>WebstudioNotifyPatternResource.resx</DependentUpon>
</Compile>
<Compile Update="PublicResources\WhiteLabelResource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>WhiteLabelResource.resx</DependentUpon>
</Compile>
<Compile Update="PublicResources\NamingPeopleResource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>NamingPeopleResource.resx</DependentUpon>
</Compile>
<Compile Update="PublicResources\WebPatternResource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
@ -94,46 +54,14 @@
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="PublicResources\AuditResource.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>AuditResource.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\ChatResource.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>ChatResource.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\CustomModeResource.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>CustomModeResource.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\FeedResource.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>FeedResource.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\Resource.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Resource.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\ResourceJS.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>ResourceJS.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\StudioCountriesResource.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>StudioCountriesResource.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\UserControlsCommonResource.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>UserControlsCommonResource.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\WhiteLabelResource.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>WhiteLabelResource.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\NamingPeopleResource.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>NamingPeopleResource.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\WebPatternResource.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>WebPatternResource.Designer.cs</LastGenOutput>
@ -143,7 +71,67 @@
<LastGenOutput>WebstudioNotifyPatternResource.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Update="PublicResources\NamingPeopleResource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>NamingPeopleResource.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="PublicResources\NamingPeopleResource.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>NamingPeopleResource.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\NamingPeopleResource.ru.resx" >
<DependentUpon>NamingPeopleResource.resx</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\NamingPeopleResource.de.resx" >
<DependentUpon>NamingPeopleResource.resx</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\NamingPeopleResource.es.resx" >
<DependentUpon>NamingPeopleResource.resx</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\NamingPeopleResource.fr.resx" >
<DependentUpon>NamingPeopleResource.resx</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\NamingPeopleResource.it.resx" >
<DependentUpon>NamingPeopleResource.resx</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Update="PublicResources\Resource.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resource.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="PublicResources\Resource.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Resource.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\Resource.ru.resx" >
<DependentUpon>Resource.resx</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\Resource.de.resx" >
<DependentUpon>Resource.resx</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\Resource.es.resx" >
<DependentUpon>Resource.resx</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\Resource.fr.resx" >
<DependentUpon>Resource.resx</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="PublicResources\Resource.it.resx" >
<DependentUpon>Resource.resx</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Protobuf Include="protos\SmsKeyCacheKey.proto" />
<Protobuf Include="protos\TenantLogoCacheItem.proto" />

View File

@ -1,243 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace ASC.Web.Core.PublicResources {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class AuditResource {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal AuditResource() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ASC.Web.Core.PublicResources.AuditResource", typeof(AuditResource).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Action.
/// </summary>
internal static string ActionCol {
get {
return ResourceManager.GetString("ActionCol", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You can download the report for the data available during the selected storage period to view the detailed statistics. Please note, that the logging is currently enabled for the Documents, Projects, CRM and People modules, as well as for portal settings..
/// </summary>
internal static string AuditDownloadText {
get {
return ResourceManager.GetString("AuditDownloadText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Only the latest activity is shown at this page. The data itself is stored during the period, which can be entered to the field below (measured in days, 180 maximum):.
/// </summary>
internal static string AuditLatestText {
get {
return ResourceManager.GetString("AuditLatestText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to When the portal is actively used, all the user activity will be displayed here: document creation and editing, participation in projects, CRM and other modules, and various other information..
/// </summary>
internal static string AuditTrailEmptyScreenDscr {
get {
return ResourceManager.GetString("AuditTrailEmptyScreenDscr", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There is nothing to be displayed here.
/// </summary>
internal static string AuditTrailEmptyScreenHeader {
get {
return ResourceManager.GetString("AuditTrailEmptyScreenHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Audit Trail.
/// </summary>
internal static string AuditTrailNav {
get {
return ResourceManager.GetString("AuditTrailNav", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Online Users.
/// </summary>
internal static string AuditTrailOnlineUsers {
get {
return ResourceManager.GetString("AuditTrailOnlineUsers", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Date.
/// </summary>
internal static string DateCol {
get {
return ResourceManager.GetString("DateCol", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Download and open report.
/// </summary>
internal static string DownloadReportBtn {
get {
return ResourceManager.GetString("DownloadReportBtn", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Email is not specified.
/// </summary>
internal static string EmailNotSpecified {
get {
return ResourceManager.GetString("EmailNotSpecified", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please wait while the report is being generated....
/// </summary>
internal static string GenerateText {
get {
return ResourceManager.GetString("GenerateText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You can download the report for the data available during the selected storage period to view the detailed statistics..
/// </summary>
internal static string LoginDownloadText {
get {
return ResourceManager.GetString("LoginDownloadText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to When the portal is actively used, all the user successful login activity as well as the unsuccessful login attempts will be displayed here..
/// </summary>
internal static string LoginHistoryEmptyScreenDscr {
get {
return ResourceManager.GetString("LoginHistoryEmptyScreenDscr", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There is nothing to be displayed here.
/// </summary>
internal static string LoginHistoryEmptyScreenHeader {
get {
return ResourceManager.GetString("LoginHistoryEmptyScreenHeader", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Login History.
/// </summary>
internal static string LoginHistoryNav {
get {
return ResourceManager.GetString("LoginHistoryNav", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Login History.
/// </summary>
internal static string LoginHistoryTitle {
get {
return ResourceManager.GetString("LoginHistoryTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Only the latest activity is shown at this page. The data itself is stored during the period, which can be entered to the field below (measured in days, 180 maximum):.
/// </summary>
internal static string LoginLatestText {
get {
return ResourceManager.GetString("LoginLatestText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Period of storage.
/// </summary>
internal static string StoragePeriod {
get {
return ResourceManager.GetString("StoragePeriod", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Total.
/// </summary>
internal static string TotalAuditItems {
get {
return ResourceManager.GetString("TotalAuditItems", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to User.
/// </summary>
internal static string UserCol {
get {
return ResourceManager.GetString("UserCol", resourceCulture);
}
}
}
}

View File

@ -1,180 +0,0 @@
<?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="ActionCol" xml:space="preserve">
<value>Action</value>
</data>
<data name="AuditDownloadText" xml:space="preserve">
<value>You can download the report for the data available during the selected storage period to view the detailed statistics. Please note, that the logging is currently enabled for the Documents, Projects, CRM and People modules, as well as for portal settings.</value>
</data>
<data name="AuditLatestText" xml:space="preserve">
<value>Only the latest activity is shown at this page. The data itself is stored during the period, which can be entered to the field below (measured in days, 180 maximum):</value>
</data>
<data name="AuditTrailEmptyScreenDscr" xml:space="preserve">
<value>When the portal is actively used, all the user activity will be displayed here: document creation and editing, participation in projects, CRM and other modules, and various other information.</value>
</data>
<data name="AuditTrailEmptyScreenHeader" xml:space="preserve">
<value>There is nothing to be displayed here</value>
</data>
<data name="AuditTrailNav" xml:space="preserve">
<value>Audit Trail</value>
</data>
<data name="AuditTrailOnlineUsers" xml:space="preserve">
<value>Online Users</value>
</data>
<data name="DateCol" xml:space="preserve">
<value>Date</value>
</data>
<data name="DownloadReportBtn" xml:space="preserve">
<value>Download and open report</value>
</data>
<data name="EmailNotSpecified" xml:space="preserve">
<value>Email is not specified</value>
</data>
<data name="GenerateText" xml:space="preserve">
<value>Please wait while the report is being generated...</value>
</data>
<data name="LoginDownloadText" xml:space="preserve">
<value>You can download the report for the data available during the selected storage period to view the detailed statistics.</value>
</data>
<data name="LoginHistoryEmptyScreenDscr" xml:space="preserve">
<value>When the portal is actively used, all the user successful login activity as well as the unsuccessful login attempts will be displayed here.</value>
</data>
<data name="LoginHistoryEmptyScreenHeader" xml:space="preserve">
<value>There is nothing to be displayed here</value>
</data>
<data name="LoginHistoryNav" xml:space="preserve">
<value>Login History</value>
</data>
<data name="LoginHistoryTitle" xml:space="preserve">
<value>Login History</value>
</data>
<data name="LoginLatestText" xml:space="preserve">
<value>Only the latest activity is shown at this page. The data itself is stored during the period, which can be entered to the field below (measured in days, 180 maximum):</value>
</data>
<data name="StoragePeriod" xml:space="preserve">
<value>Period of storage</value>
</data>
<data name="TotalAuditItems" xml:space="preserve">
<value>Total</value>
</data>
<data name="UserCol" xml:space="preserve">
<value>User</value>
</data>
</root>

View File

@ -1,351 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace ASC.Web.Core.PublicResources {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class ChatResource {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal ChatResource() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ASC.Web.Core.PublicResources.ChatResource", typeof(ChatResource).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Invitation to chat room.
/// </summary>
internal static string ChatRoomInvite {
get {
return ResourceManager.GetString("ChatRoomInvite", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear.
/// </summary>
internal static string ClearText {
get {
return ResourceManager.GetString("ClearText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Close all mini-chat windows.
/// </summary>
internal static string CloseAllWindows {
get {
return ResourceManager.GetString("CloseAllWindows", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Close item .
/// </summary>
internal static string CloseItem {
get {
return ResourceManager.GetString("CloseItem", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Close window.
/// </summary>
internal static string CloseMessageWindowAltTitle {
get {
return ResourceManager.GetString("CloseMessageWindowAltTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Chat rooms.
/// </summary>
internal static string ConferenceGroupName {
get {
return ResourceManager.GetString("ConferenceGroupName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Extend mini-chat.
/// </summary>
internal static string ExtendChatAltTitle {
get {
return ResourceManager.GetString("ExtendChatAltTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please switch to Talk..
/// </summary>
internal static string GoTalk {
get {
return ResourceManager.GetString("GoTalk", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Groups.
/// </summary>
internal static string Groups {
get {
return ResourceManager.GetString("Groups", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use Ctrl+Enter to send messages.
/// </summary>
internal static string HintCtrlEnterSender {
get {
return ResourceManager.GetString("HintCtrlEnterSender", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enable sounds.
/// </summary>
internal static string HintSounds {
get {
return ResourceManager.GetString("HintSounds", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enter your message...
/// </summary>
internal static string InputNotificationMessage {
get {
return ResourceManager.GetString("InputNotificationMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Mailings.
/// </summary>
internal static string MailingsGroupName {
get {
return ResourceManager.GetString("MailingsGroupName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Minimize all mini-chat windows.
/// </summary>
internal static string MinimizeAllWindows {
get {
return ResourceManager.GetString("MinimizeAllWindows", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Minimize all windows when out of focus.
/// </summary>
internal static string MinimizeAllWindowsIfLoseFocus {
get {
return ResourceManager.GetString("MinimizeAllWindowsIfLoseFocus", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Minimize window.
/// </summary>
internal static string MinimizeMessageWindowAltTitle {
get {
return ResourceManager.GetString("MinimizeMessageWindowAltTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to New message.
/// </summary>
internal static string NewMessageLabel {
get {
return ResourceManager.GetString("NewMessageLabel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Expand all mini-chat windows.
/// </summary>
internal static string RestoreAllWindows {
get {
return ResourceManager.GetString("RestoreAllWindows", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Expand window.
/// </summary>
internal static string RestoreMessageWindowAltTitle {
get {
return ResourceManager.GetString("RestoreMessageWindowAltTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Search.
/// </summary>
internal static string Search {
get {
return ResourceManager.GetString("Search", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Server internal error..
/// </summary>
internal static string ServerError {
get {
return ResourceManager.GetString("ServerError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show/Hide mini-chat.
/// </summary>
internal static string ShowHideChatAltTitle {
get {
return ResourceManager.GetString("ShowHideChatAltTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show invisible dialog windows.
/// </summary>
internal static string ShowInvisibleWindows {
get {
return ResourceManager.GetString("ShowInvisibleWindows", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Options.
/// </summary>
internal static string SmallChatOptionsAltTitle {
get {
return ResourceManager.GetString("SmallChatOptionsAltTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Smileys.
/// </summary>
internal static string SmileysAltTitle {
get {
return ResourceManager.GetString("SmileysAltTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Away.
/// </summary>
internal static string StatusAway {
get {
return ResourceManager.GetString("StatusAway", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Not available.
/// </summary>
internal static string StatusNA {
get {
return ResourceManager.GetString("StatusNA", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Offline.
/// </summary>
internal static string StatusOffline {
get {
return ResourceManager.GetString("StatusOffline", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Online.
/// </summary>
internal static string StatusOnline {
get {
return ResourceManager.GetString("StatusOnline", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Create chat room.
/// </summary>
internal static string TitleCreateRoom {
get {
return ResourceManager.GetString("TitleCreateRoom", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to typing the message....
/// </summary>
internal static string TypingMessage {
get {
return ResourceManager.GetString("TypingMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No contacts matching your search criteria can be found in list.
/// </summary>
internal static string UserNotFound {
get {
return ResourceManager.GetString("UserNotFound", resourceCulture);
}
}
}
}

View File

@ -1,216 +0,0 @@
<?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="ChatRoomInvite" xml:space="preserve">
<value>Invitation to chat room</value>
</data>
<data name="ClearText" xml:space="preserve">
<value>Clear</value>
</data>
<data name="CloseAllWindows" xml:space="preserve">
<value>Close all mini-chat windows</value>
</data>
<data name="CloseItem" xml:space="preserve">
<value>Close item </value>
</data>
<data name="CloseMessageWindowAltTitle" xml:space="preserve">
<value>Close window</value>
</data>
<data name="ConferenceGroupName" xml:space="preserve">
<value>Chat rooms</value>
</data>
<data name="ExtendChatAltTitle" xml:space="preserve">
<value>Extend mini-chat</value>
</data>
<data name="GoTalk" xml:space="preserve">
<value>Please switch to Talk.</value>
</data>
<data name="Groups" xml:space="preserve">
<value>Groups</value>
</data>
<data name="HintCtrlEnterSender" xml:space="preserve">
<value>Use Ctrl+Enter to send messages</value>
</data>
<data name="HintSounds" xml:space="preserve">
<value>Enable sounds</value>
</data>
<data name="InputNotificationMessage" xml:space="preserve">
<value>Enter your message..</value>
</data>
<data name="MailingsGroupName" xml:space="preserve">
<value>Mailings</value>
</data>
<data name="MinimizeAllWindows" xml:space="preserve">
<value>Minimize all mini-chat windows</value>
</data>
<data name="MinimizeAllWindowsIfLoseFocus" xml:space="preserve">
<value>Minimize all windows when out of focus</value>
</data>
<data name="MinimizeMessageWindowAltTitle" xml:space="preserve">
<value>Minimize window</value>
</data>
<data name="NewMessageLabel" xml:space="preserve">
<value>New message</value>
</data>
<data name="RestoreAllWindows" xml:space="preserve">
<value>Expand all mini-chat windows</value>
</data>
<data name="RestoreMessageWindowAltTitle" xml:space="preserve">
<value>Expand window</value>
</data>
<data name="Search" xml:space="preserve">
<value>Search</value>
</data>
<data name="ServerError" xml:space="preserve">
<value>Server internal error.</value>
</data>
<data name="ShowHideChatAltTitle" xml:space="preserve">
<value>Show/Hide mini-chat</value>
</data>
<data name="ShowInvisibleWindows" xml:space="preserve">
<value>Show invisible dialog windows</value>
</data>
<data name="SmallChatOptionsAltTitle" xml:space="preserve">
<value>Options</value>
</data>
<data name="SmileysAltTitle" xml:space="preserve">
<value>Smileys</value>
</data>
<data name="StatusAway" xml:space="preserve">
<value>Away</value>
</data>
<data name="StatusNA" xml:space="preserve">
<value>Not available</value>
</data>
<data name="StatusOffline" xml:space="preserve">
<value>Offline</value>
</data>
<data name="StatusOnline" xml:space="preserve">
<value>Online</value>
</data>
<data name="TitleCreateRoom" xml:space="preserve">
<value>Create chat room</value>
</data>
<data name="TypingMessage" xml:space="preserve">
<value>typing the message...</value>
</data>
<data name="UserNotFound" xml:space="preserve">
<value>No contacts matching your search criteria can be found in list</value>
</data>
</root>

View File

@ -1,817 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace ASC.Web.Core.PublicResources {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class CustomModeResource {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal CustomModeResource() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ASC.Web.Core.PublicResources.CustomModeResource", typeof(CustomModeResource).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to &amp;copy; Ascensio System SIA {0}. All rights reserved..
/// </summary>
internal static string AllRightsReservedCustomMode {
get {
return ResourceManager.GetString("AllRightsReservedCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ONLYOFFICE Personal is a free online editing suite for text documents, spreadsheets and presentations with an individual cloud storage..
/// </summary>
internal static string AuthDocsMetaDescriptionCustomMode {
get {
return ResourceManager.GetString("AuthDocsMetaDescriptionCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to edit word online, word editor online, word online free, word office online.
/// </summary>
internal static string AuthDocsMetaKeywordsCustomMode {
get {
return ResourceManager.GetString("AuthDocsMetaKeywordsCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Or sign in with.
/// </summary>
internal static string AuthDocsOrCustomMode {
get {
return ResourceManager.GetString("AuthDocsOrCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Work in the browser or through the ONLYOFFICE desktop application.
/// </summary>
internal static string BrowserAndDesktopTextCustomMode {
get {
return ResourceManager.GetString("BrowserAndDesktopTextCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Start typing email address or contact name from your personal, CRM contacts or
///portal users or use any other email to invite people to your event..
/// </summary>
internal static string calendarEventEditor_attendeesLabelHelpInfoCustomMode {
get {
return ResourceManager.GetString("calendarEventEditor_attendeesLabelHelpInfoCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Check your email for account confirmation..
/// </summary>
internal static string CheckEmailCustomMode {
get {
return ResourceManager.GetString("CheckEmailCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Convenient co-editing and reviewing.
/// </summary>
internal static string CollaborativeEditingTextCustomMode {
get {
return ResourceManager.GetString("CollaborativeEditingTextCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Document collaboration.
/// </summary>
internal static string CollaborativeWorkCustomMode {
get {
return ResourceManager.GetString("CollaborativeWorkCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 100% compatible with MS Office formats.
/// </summary>
internal static string CompatibleTextCustomMode {
get {
return ResourceManager.GetString("CompatibleTextCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Connection Instructions.
/// </summary>
internal static string ConnectionInstructionsCustomMode {
get {
return ResourceManager.GetString("ConnectionInstructionsCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Create an account.
/// </summary>
internal static string CreateAccountCustomMode {
get {
return ResourceManager.GetString("CreateAccountCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Create cloud.
/// </summary>
internal static string CreateOfficeCustomMode {
get {
return ResourceManager.GetString("CreateOfficeCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Document Discussion.
/// </summary>
internal static string DiscussionDocumentCustomMode {
get {
return ResourceManager.GetString("DiscussionDocumentCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use comments and chat to discuss working on a document without leaving the editor..
/// </summary>
internal static string DiscussionDocumentDescriptionCustomMode {
get {
return ResourceManager.GetString("DiscussionDocumentDescriptionCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ONLYOFFICE Document Editor.
/// </summary>
internal static string DocumentEditorCustomMode {
get {
return ResourceManager.GetString("DocumentEditorCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to It will help you easily create and edit text documents with formatting of any level of complexity..
/// </summary>
internal static string DocumentEditorDescriptionCustomMode {
get {
return ResourceManager.GetString("DocumentEditorDescriptionCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Email.
/// </summary>
internal static string EmailCustomMode {
get {
return ResourceManager.GetString("EmailCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enter your email address.
/// </summary>
internal static string EmailHintCustomMode {
get {
return ResourceManager.GetString("EmailHintCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Or sign in with.
/// </summary>
internal static string EnterViaSocialCustomMode {
get {
return ResourceManager.GetString("EnterViaSocialCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Forgot password?.
/// </summary>
internal static string ForgotPswdCustomMode {
get {
return ResourceManager.GetString("ForgotPswdCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Here you can change your portal address. Enter the part that will appear next to the onlyoffice.com/onlyoffice.eu portal address.{0}
///{1}Please note{2}: your old portal address will become available to new ONLYOFFICE users once you click the {1}Save{2} button..
/// </summary>
internal static string HelpAnswerPortalRenameCustomMode {
get {
return ResourceManager.GetString("HelpAnswerPortalRenameCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to To activate ONLYOFFICE Enterprise Edition you need to buy a license key..
/// </summary>
internal static string LicenseActivateDescrCustomMode {
get {
return ResourceManager.GetString("LicenseActivateDescrCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}Online Documents Editors{1}{0}Document Management{1}{0}Mail{1}{0}Projects{1}{0}CRM{1}{0}Calendar{1}{0}Community{1}.
/// </summary>
internal static string LicenseModulesListCustomMode {
get {
return ResourceManager.GetString("LicenseModulesListCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Account Login.
/// </summary>
internal static string LoginAccountCustomMode {
get {
return ResourceManager.GetString("LoginAccountCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Connect to cloud.
/// </summary>
internal static string LoginAccountDesktopCustomMode {
get {
return ResourceManager.GetString("LoginAccountDesktopCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Login.
/// </summary>
internal static string LoginCustomMode {
get {
return ResourceManager.GetString("LoginCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ONLYOFFICE always at hand.
/// </summary>
internal static string NearAtHandCustomMode {
get {
return ResourceManager.GetString("NearAtHandCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Not registered yet?.
/// </summary>
internal static string NotRegisteredCustomMode {
get {
return ResourceManager.GetString("NotRegisteredCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ONLYOFFICE desktop.
/// </summary>
internal static string OfficeDesktopCustomMode {
get {
return ResourceManager.GetString("OfficeDesktopCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Connect your ONLYOFFICE copy to the cloud to work on documents together without leaving the app..
/// </summary>
internal static string OfficeDesktopDescriptionCustomMode {
get {
return ResourceManager.GetString("OfficeDesktopDescriptionCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ONLYOFFICE online.
/// </summary>
internal static string OfficeOnlineCustomMode {
get {
return ResourceManager.GetString("OfficeOnlineCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You only need a browser to work from anywhere. Reliable hosting will ensure the security of your data..
/// </summary>
internal static string OfficeOnlineDescriptionCustomMode {
get {
return ResourceManager.GetString("OfficeOnlineDescriptionCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ONLYOFFICE Online Version.
/// </summary>
internal static string OnlineVersionCustomMode {
get {
return ResourceManager.GetString("OnlineVersionCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Password.
/// </summary>
internal static string PasswordCustomMode {
get {
return ResourceManager.GetString("PasswordCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Dear $UserName,
///
///Your user profile has been successfully added to the portal at &quot;${__VirtualRootPath}&quot;:&quot;${__VirtualRootPath}&quot;. Get started with it today!
///
///h3.Start working with Documents:
///
///# Create and edit text documents, spreadsheet and presentations.
///# Connect cloud storages you use to create a single workspace for all of your docs.
///# Share documents with your team members.
///# Explore different ways of working on docs together: two real-time co-editing modes, review, comments, chat.
///
///h3.Try additional ${L [rest of string was truncated]&quot;;.
/// </summary>
internal static string pattern_enterprise_whitelabel_user_welcome_custom_mode {
get {
return ResourceManager.GetString("pattern_enterprise_whitelabel_user_welcome_custom_mode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to h1.Welcome to ONLYOFFICE Personal
///
///You have just created your personal office in the cloud.
///
///h3.It&apos;s a virtual workspace where you can edit and store documents, work with them from anywhere providing access to your friends or colleagues.
///
///ONLYOFFICE is compatible with Microsoft Office™ document formats and guarantees no loss of formatting or quality of created objects. We promise to relieve you from formatting fidelity headache and give full professional editing toolset in your hands.
///
///h3.For a quick start, [rest of string was truncated]&quot;;.
/// </summary>
internal static string pattern_personal_custom_mode_after_registration1 {
get {
return ResourceManager.GetString("pattern_personal_custom_mode_after_registration1", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to $PersonalHeaderStart Connect your favorite cloud storage to ONLYOFFICE $PersonalHeaderEnd
///
///It has been a week since you created your cloud office, so we believe it&apos;s time to unveil some beneficial features you might have missed.
///
///Connect *Dropbox*, *Google Drive*, *Box*, *OneDrive*, *Nextcloud*, *ownCloud* or *Yandex.Disk* to ONLYOFFICE and create a single document management space for all your documents. You&apos;ll be able to edit external files in ONLYOFFICE and save them to the storage you keep documents in. [rest of string was truncated]&quot;;.
/// </summary>
internal static string pattern_personal_custom_mode_after_registration7 {
get {
return ResourceManager.GetString("pattern_personal_custom_mode_after_registration7", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You have requested to change your email address used to enter the ${LetterLogoText} portal.
///
///Please follow the link below to change your email address:
///
///$GreenButton
///
///*Note*: this link is valid for 7 days only. Please complete your email change process within that period.
///
///If you do not want to change your email or received this email by mistake, please ignore it.
///
///Sincerely,
///ONLYOFFICE team.
/// </summary>
internal static string pattern_personal_custom_mode_change_email {
get {
return ResourceManager.GetString("pattern_personal_custom_mode_change_email", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There has been a request to change your password used to enter the &quot;${__VirtualRootPath}&quot;:&quot;${__VirtualRootPath}&quot; portal.
///
///Please follow the link below to change your password:
///
///$GreenButton
///
///*Note*: this link is valid for 7 days only. Please complete the password change process within that period.
///
///If you do not want to change your password or received this email by mistake, please ignore it.
///
///Sincerely,
///ONLYOFFICE team.
/// </summary>
internal static string pattern_personal_custom_mode_change_password {
get {
return ResourceManager.GetString("pattern_personal_custom_mode_change_password", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Hello,
///
///you&apos;ve just registered an account at the ONLYOFFICE solution for personal use. Click &quot;here&quot;:&quot;$InviteLink&quot; to confirm the registration and create a password.
///
///If you can&apos;t open the link, please copy the following &quot;$InviteLink&quot;:&quot;$InviteLink&quot; and paste it into your browser address bar.
///
///Sincerely,
///ONLYOFFICE team.
/// </summary>
internal static string pattern_personal_custom_mode_confirmation {
get {
return ResourceManager.GetString("pattern_personal_custom_mode_confirmation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You have requested a termination of your account at personal.onlyoffice.com. Follow the link to complete the request (the link is active for a 7-day period):
///
///$GreenButton
///
///*Note*: After the deletion, your account and all data associated with it will be erased permanently in accordance with our &quot;Privacy statement&quot;:&quot;https://help.onlyoffice.com/products/files/doceditor.aspx?fileid=5048502&amp;amp;doc=SXhWMEVzSEYxNlVVaXJJeUVtS0kyYk14YWdXTEFUQmRWL250NllHNUFGbz0_IjUwNDg1MDIi0&quot;.
///
///Ignore this email if you do not want [rest of string was truncated]&quot;;.
/// </summary>
internal static string pattern_personal_custom_mode_profile_delete {
get {
return ResourceManager.GetString("pattern_personal_custom_mode_profile_delete", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Dear $UserName,
///
///The process of removing data from user &quot;$FromUserName&quot;:&quot;$FromUserLink&quot; has been successfully completed.
///
///The deletion of personal data allowed to free:
///
///# Documents - $DocsSpace
///# Mail - $MailSpace
///# Talk - $TalkSpace
///
///^You receive this email because you are a registered user of the &quot;${__VirtualRootPath}&quot;:&quot;${__VirtualRootPath}&quot; portal.^.
/// </summary>
internal static string pattern_remove_user_data_completed_custom_mode {
get {
return ResourceManager.GetString("pattern_remove_user_data_completed_custom_mode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ONLYOFFICE presentation editor.
/// </summary>
internal static string PresentationEditorCustomMode {
get {
return ResourceManager.GetString("PresentationEditorCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to It will provide you with all the tools to create impressive presentations and present any idea to the audience..
/// </summary>
internal static string PresentationEditorDescriptionCustomMode {
get {
return ResourceManager.GetString("PresentationEditorDescriptionCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do the same as a user|Link Dropbox, Box and other accounts in the &apos;Common Documents&apos; section|Set up access rights to the documents and folders in the &apos;Common Documents&apos; section.
/// </summary>
internal static string ProductAdminOpportunitiesCustomMode {
get {
return ResourceManager.GetString("ProductAdminOpportunitiesCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Create and edit own documents as well as the shared documents with the proper access rights|Give reading/editing access to other users to the documents and folders|Link Dropbox, Box and other accounts in the &apos;My documents&apos; section.
/// </summary>
internal static string ProductUserOpportunitiesCustomMode {
get {
return ResourceManager.GetString("ProductUserOpportunitiesCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Create now.
/// </summary>
internal static string RegistryButtonCreateNowCustomMode {
get {
return ResourceManager.GetString("RegistryButtonCreateNowCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to I want to subscribe to the ONLYOFFICE newsletter.
/// </summary>
internal static string RegistrySettingSpamCustomMode {
get {
return ResourceManager.GetString("RegistrySettingSpamCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to I agree to ONLYOFFICE {0}Terms and conditions{1}.
/// </summary>
internal static string RegistrySettingTermsCustomMode {
get {
return ResourceManager.GetString("RegistrySettingTermsCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remember.
/// </summary>
internal static string RememberCustomMode {
get {
return ResourceManager.GetString("RememberCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Review.
/// </summary>
internal static string ReviewingCustomMode {
get {
return ResourceManager.GetString("ReviewingCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Turn on review mode to suggest edits to the document without changing it..
/// </summary>
internal static string ReviewingDescriptionCustomMode {
get {
return ResourceManager.GetString("ReviewingDescriptionCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Activation email sent to.
/// </summary>
internal static string SendActivationEmailCustomMode {
get {
return ResourceManager.GetString("SendActivationEmailCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Sign Up.
/// </summary>
internal static string SignUpCustomMode {
get {
return ResourceManager.GetString("SignUpCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Sign Up to the cloud.
/// </summary>
internal static string SignUpDesktopCustomMode {
get {
return ResourceManager.GetString("SignUpDesktopCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}Two-factor authentication{1} is a more secure way for the users to enter the portal. After the credentials are entered, the user will have to enter the code from connected authenticator application.{2}Enable this option for a more secure portal access by all the portal users. {2}To apply the changes you made click the {0}Save{1} button below this section.{2}.
/// </summary>
internal static string SmsAuthDescriptionCustomMode {
get {
return ResourceManager.GetString("SmsAuthDescriptionCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ONLYOFFICE spreadsheet editor.
/// </summary>
internal static string SpreadsheetEditorCustomMode {
get {
return ResourceManager.GetString("SpreadsheetEditorCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Provides professional work with spreadsheets, helps to conduct complex calculations and organize your data..
/// </summary>
internal static string SpreadsheetEditorDescriptionCustomMode {
get {
return ResourceManager.GetString("SpreadsheetEditorDescriptionCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Welcome to ONLYOFFICE Personal.
/// </summary>
internal static string subject_personal_custom_mode_after_registration1 {
get {
return ResourceManager.GetString("subject_personal_custom_mode_after_registration1", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Connect your favorite cloud storage to ONLYOFFICE.
/// </summary>
internal static string subject_personal_custom_mode_after_registration7 {
get {
return ResourceManager.GetString("subject_personal_custom_mode_after_registration7", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ONLYOFFICE Personal. Email change request.
/// </summary>
internal static string subject_personal_custom_mode_change_email {
get {
return ResourceManager.GetString("subject_personal_custom_mode_change_email", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ONLYOFFICE Personal password assistance.
/// </summary>
internal static string subject_personal_custom_mode_change_password {
get {
return ResourceManager.GetString("subject_personal_custom_mode_change_password", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ONLYOFFICE Personal. Please activate your email address.
/// </summary>
internal static string subject_personal_custom_mode_confirmation {
get {
return ResourceManager.GetString("subject_personal_custom_mode_confirmation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ONLYOFFICE Personal account termination.
/// </summary>
internal static string subject_personal_custom_mode_profile_delete {
get {
return ResourceManager.GetString("subject_personal_custom_mode_profile_delete", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ${LetterLogoText}. Remove user data is completed.
/// </summary>
internal static string subject_remove_user_data_completed_custom_mode {
get {
return ResourceManager.GetString("subject_remove_user_data_completed_custom_mode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You are using ONLYOFFICE™ Enterprise Edition. {0}Support and updates are no longer available for your license since {2}{1}..
/// </summary>
internal static string TariffOverdueStandaloneCustomMode {
get {
return ResourceManager.GetString("TariffOverdueStandaloneCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You are using ONLYOFFICE™ Enterprise Edition..
/// </summary>
internal static string TariffPaidStandaloneCustomMode {
get {
return ResourceManager.GetString("TariffPaidStandaloneCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Terms of Use.
/// </summary>
internal static string TermsServiceCustomMode {
get {
return ResourceManager.GetString("TermsServiceCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Thank you for registering.
/// </summary>
internal static string ThanksRegistrationCustomMode {
get {
return ResourceManager.GetString("ThanksRegistrationCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Collaboration cloud.
/// </summary>
internal static string TitleCustomMode {
get {
return ResourceManager.GetString("TitleCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Personal online office.
/// </summary>
internal static string TitlePageNewCustomMode {
get {
return ResourceManager.GetString("TitlePageNewCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Change tracking.
/// </summary>
internal static string TrackingChangesCustomMode {
get {
return ResourceManager.GetString("TrackingChangesCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Turn on the display of the changes made. Different viewing modes will help check how the document will look like if you accept or reject these edits..
/// </summary>
internal static string TrackingChangesDescriptionCustomMode {
get {
return ResourceManager.GetString("TrackingChangesDescriptionCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Two co-editing modes.
/// </summary>
internal static string TwoEditingModesCustomMode {
get {
return ResourceManager.GetString("TwoEditingModesCustomMode", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to In Quick mode, you see what your collaborator is typing, and he sees what you are typing. In Strict you edit parts of the document privately, and the changes are shown after saving..
/// </summary>
internal static string TwoEditingModesDescriptionCustomMode {
get {
return ResourceManager.GetString("TwoEditingModesDescriptionCustomMode", resourceCulture);
}
}
}
}

View File

@ -1,469 +0,0 @@
<?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="AllRightsReservedCustomMode" xml:space="preserve">
<value>&amp;copy; Ascensio System SIA {0}. All rights reserved.</value>
</data>
<data name="AuthDocsMetaDescriptionCustomMode" xml:space="preserve">
<value>ONLYOFFICE Personal is a free online editing suite for text documents, spreadsheets and presentations with an individual cloud storage.</value>
</data>
<data name="AuthDocsMetaKeywordsCustomMode" xml:space="preserve">
<value>edit word online, word editor online, word online free, word office online</value>
</data>
<data name="AuthDocsOrCustomMode" xml:space="preserve">
<value>Or sign in with</value>
</data>
<data name="BrowserAndDesktopTextCustomMode" xml:space="preserve">
<value>Work in the browser or through the ONLYOFFICE desktop application</value>
</data>
<data name="CheckEmailCustomMode" xml:space="preserve">
<value>Check your email for account confirmation.</value>
</data>
<data name="CollaborativeEditingTextCustomMode" xml:space="preserve">
<value>Convenient co-editing and reviewing</value>
</data>
<data name="CollaborativeWorkCustomMode" xml:space="preserve">
<value>Document collaboration</value>
</data>
<data name="CompatibleTextCustomMode" xml:space="preserve">
<value>100% compatible with MS Office formats</value>
</data>
<data name="ConnectionInstructionsCustomMode" xml:space="preserve">
<value>Connection Instructions</value>
</data>
<data name="CreateAccountCustomMode" xml:space="preserve">
<value>Create an account</value>
</data>
<data name="CreateOfficeCustomMode" xml:space="preserve">
<value>Create cloud</value>
</data>
<data name="DiscussionDocumentCustomMode" xml:space="preserve">
<value>Document Discussion</value>
</data>
<data name="DiscussionDocumentDescriptionCustomMode" xml:space="preserve">
<value>Use comments and chat to discuss working on a document without leaving the editor.</value>
</data>
<data name="DocumentEditorCustomMode" xml:space="preserve">
<value>ONLYOFFICE Document Editor</value>
</data>
<data name="DocumentEditorDescriptionCustomMode" xml:space="preserve">
<value>It will help you easily create and edit text documents with formatting of any level of complexity.</value>
</data>
<data name="EmailCustomMode" xml:space="preserve">
<value>Email</value>
</data>
<data name="EmailHintCustomMode" xml:space="preserve">
<value>Enter your email address</value>
</data>
<data name="EnterViaSocialCustomMode" xml:space="preserve">
<value>Or sign in with</value>
</data>
<data name="ForgotPswdCustomMode" xml:space="preserve">
<value>Forgot password?</value>
</data>
<data name="HelpAnswerPortalRenameCustomMode" xml:space="preserve">
<value>Here you can change your portal address. Enter the part that will appear next to the onlyoffice.com/onlyoffice.eu portal address.{0}
{1}Please note{2}: your old portal address will become available to new ONLYOFFICE users once you click the {1}Save{2} button.</value>
</data>
<data name="LicenseActivateDescrCustomMode" xml:space="preserve">
<value>To activate ONLYOFFICE Enterprise Edition you need to buy a license key.</value>
</data>
<data name="LicenseModulesListCustomMode" xml:space="preserve">
<value>{0}Online Documents Editors{1}{0}Document Management{1}{0}Mail{1}{0}Projects{1}{0}CRM{1}{0}Calendar{1}{0}Community{1}</value>
</data>
<data name="LoginAccountCustomMode" xml:space="preserve">
<value>Account Login</value>
</data>
<data name="LoginAccountDesktopCustomMode" xml:space="preserve">
<value>Connect to cloud</value>
</data>
<data name="LoginCustomMode" xml:space="preserve">
<value>Login</value>
</data>
<data name="NearAtHandCustomMode" xml:space="preserve">
<value>ONLYOFFICE always at hand</value>
</data>
<data name="NotRegisteredCustomMode" xml:space="preserve">
<value>Not registered yet?</value>
</data>
<data name="OfficeDesktopCustomMode" xml:space="preserve">
<value>ONLYOFFICE desktop</value>
</data>
<data name="OfficeDesktopDescriptionCustomMode" xml:space="preserve">
<value>Connect your ONLYOFFICE copy to the cloud to work on documents together without leaving the app.</value>
</data>
<data name="OfficeOnlineCustomMode" xml:space="preserve">
<value>ONLYOFFICE online</value>
</data>
<data name="OfficeOnlineDescriptionCustomMode" xml:space="preserve">
<value>You only need a browser to work from anywhere. Reliable hosting will ensure the security of your data.</value>
</data>
<data name="OnlineVersionCustomMode" xml:space="preserve">
<value>ONLYOFFICE Online Version</value>
</data>
<data name="PasswordCustomMode" xml:space="preserve">
<value>Password</value>
</data>
<data name="pattern_enterprise_whitelabel_user_welcome_custom_mode" xml:space="preserve">
<value>Dear $UserName,
Your user profile has been successfully added to the portal at "${__VirtualRootPath}":"${__VirtualRootPath}". Get started with it today!
h3.Start working with Documents:
# Create and edit text documents, spreadsheet and presentations.
# Connect cloud storages you use to create a single workspace for all of your docs.
# Share documents with your team members.
# Explore different ways of working on docs together: two real-time co-editing modes, review, comments, chat.
h3.Try additional ${LetterLogoText} tools:
# Add your email account to "${LetterLogoText} Mail":"${__VirtualRootPath}/addons/mail/".
# Create "Projects":"${__VirtualRootPath}/products/projects/" and manage your workflow by adding milestones and tasks.
# Manage your customer relations using "CRM":"${__VirtualRootPath}/products/crm/".
# Use "Community":"${__VirtualRootPath}/products/community/" to start your blogs, forums, add events, share bookmarks.
# Organize your work schedule with the built-in "Calendar":"${__VirtualRootPath}/addons/calendar/".
# Start "Talk":"${__VirtualRootPath}/addons/talk/" to chat with your teammates online.
$GreenButton
Truly yours,
${LetterLogoText} Team</value>
</data>
<data name="pattern_personal_custom_mode_after_registration1" xml:space="preserve">
<value>h1.Welcome to ONLYOFFICE Personal
You have just created your personal office in the cloud.
h3.It's a virtual workspace where you can edit and store documents, work with them from anywhere providing access to your friends or colleagues.
ONLYOFFICE is compatible with Microsoft Office™ document formats and guarantees no loss of formatting or quality of created objects. We promise to relieve you from formatting fidelity headache and give full professional editing toolset in your hands.
h3.For a quick start, here's what you can do in ONLYOFFICE:
- Upload files from your computer or create new;
- Work with all popular file formats;
- Edit autoshapes, charts, tables, equations and other objects;
- Use various addons for extended editing features;
- Easily access your Personal cloud via "Chrome extension":"https://chrome.google.com/webstore/detail/onlyoffice-personal/ohdlcmpahmacjddiaokoogleflddlahc?hl=en-US".
You can also edit documents offline with our free "desktop editors":"https://www.onlyoffice.com/download-desktop.aspx" or get a "mobile editing suite":"https://www.onlyoffice.com/mobile.aspx" for your iOS or Android device.
Sincerely,
ONLYOFFICE team</value>
</data>
<data name="pattern_personal_custom_mode_after_registration7" xml:space="preserve">
<value>$PersonalHeaderStart Connect your favorite cloud storage to ONLYOFFICE $PersonalHeaderEnd
It has been a week since you created your cloud office, so we believe it's time to unveil some beneficial features you might have missed.
Connect *Dropbox*, *Google Drive*, *Box*, *OneDrive*, *Nextcloud*, *ownCloud* or *Yandex.Disk* to ONLYOFFICE and create a single document management space for all your documents. You'll be able to edit external files in ONLYOFFICE and save them to the storage you keep documents in. Read details about connecting file storages to ONLYOFFICE "here":"${__HelpLink}/tipstricks/add-resource.aspx".
You can also integrate ONLYOFFICE editors into Google Drive using our "connector app":"https://chrome.google.com/webstore/detail/onlyoffice-personal/iohfebkcjhlelaoibebeohcgkohkcgpn".
Need more of document management?
h3.Try ONLYOFFICE for business "in the cloud":"https://www.onlyoffice.com/cloud-office.aspx" or "on your server":"https://www.onlyoffice.com/server-solutions.aspx" for free for 30 days and check out extended document management opportunities together with a business toolset:
- Manage team documents in projects;
- Integrate documents with CRM and Email;
- Share files to groups of users;
- Optimize your workflow with team communication tools.
Interested? Learn more about "ONLYOFFICE for business":"http://www.onlyoffice.com/document-management.aspx".
Sincerely,
ONLYOFFICE team</value>
</data>
<data name="pattern_personal_custom_mode_change_email" xml:space="preserve">
<value>You have requested to change your email address used to enter the ${LetterLogoText} portal.
Please follow the link below to change your email address:
$GreenButton
*Note*: this link is valid for 7 days only. Please complete your email change process within that period.
If you do not want to change your email or received this email by mistake, please ignore it.
Sincerely,
ONLYOFFICE team</value>
</data>
<data name="pattern_personal_custom_mode_change_password" xml:space="preserve">
<value>There has been a request to change your password used to enter the "${__VirtualRootPath}":"${__VirtualRootPath}" portal.
Please follow the link below to change your password:
$GreenButton
*Note*: this link is valid for 7 days only. Please complete the password change process within that period.
If you do not want to change your password or received this email by mistake, please ignore it.
Sincerely,
ONLYOFFICE team</value>
</data>
<data name="pattern_personal_custom_mode_confirmation" xml:space="preserve">
<value>Hello,
you've just registered an account at the ONLYOFFICE solution for personal use. Click "here":"$InviteLink" to confirm the registration and create a password.
If you can't open the link, please copy the following "$InviteLink":"$InviteLink" and paste it into your browser address bar.
Sincerely,
ONLYOFFICE team</value>
</data>
<data name="pattern_personal_custom_mode_profile_delete" xml:space="preserve">
<value>You have requested a termination of your account at personal.onlyoffice.com. Follow the link to complete the request (the link is active for a 7-day period):
$GreenButton
*Note*: After the deletion, your account and all data associated with it will be erased permanently in accordance with our "Privacy statement":"https://help.onlyoffice.com/products/files/doceditor.aspx?fileid=5048502&amp;amp;doc=SXhWMEVzSEYxNlVVaXJJeUVtS0kyYk14YWdXTEFUQmRWL250NllHNUFGbz0_IjUwNDg1MDIi0".
Ignore this email if you do not want to proceed.
If you have any questions, please contact us at "support@onlyoffice.com":"mailto:support@onlyoffice.com"
Sincerely,
ONLYOFFICE team</value>
</data>
<data name="PresentationEditorCustomMode" xml:space="preserve">
<value>ONLYOFFICE presentation editor</value>
</data>
<data name="PresentationEditorDescriptionCustomMode" xml:space="preserve">
<value>It will provide you with all the tools to create impressive presentations and present any idea to the audience.</value>
</data>
<data name="RegistryButtonCreateNowCustomMode" xml:space="preserve">
<value>Create now</value>
</data>
<data name="RegistrySettingSpamCustomMode" xml:space="preserve">
<value>I want to subscribe to the ONLYOFFICE newsletter</value>
</data>
<data name="RegistrySettingTermsCustomMode" xml:space="preserve">
<value>I agree to ONLYOFFICE {0}Terms and conditions{1}</value>
</data>
<data name="RememberCustomMode" xml:space="preserve">
<value>Remember</value>
</data>
<data name="ReviewingCustomMode" xml:space="preserve">
<value>Review</value>
</data>
<data name="ReviewingDescriptionCustomMode" xml:space="preserve">
<value>Turn on review mode to suggest edits to the document without changing it.</value>
</data>
<data name="SendActivationEmailCustomMode" xml:space="preserve">
<value>Activation email sent to</value>
</data>
<data name="SignUpCustomMode" xml:space="preserve">
<value>Sign Up</value>
</data>
<data name="SignUpDesktopCustomMode" xml:space="preserve">
<value>Sign Up to the cloud</value>
</data>
<data name="SpreadsheetEditorCustomMode" xml:space="preserve">
<value>ONLYOFFICE spreadsheet editor</value>
</data>
<data name="SpreadsheetEditorDescriptionCustomMode" xml:space="preserve">
<value>Provides professional work with spreadsheets, helps to conduct complex calculations and organize your data.</value>
</data>
<data name="subject_personal_custom_mode_after_registration1" xml:space="preserve">
<value>Welcome to ONLYOFFICE Personal</value>
</data>
<data name="subject_personal_custom_mode_after_registration7" xml:space="preserve">
<value>Connect your favorite cloud storage to ONLYOFFICE</value>
</data>
<data name="subject_personal_custom_mode_change_email" xml:space="preserve">
<value>ONLYOFFICE Personal. Email change request</value>
</data>
<data name="subject_personal_custom_mode_change_password" xml:space="preserve">
<value>ONLYOFFICE Personal password assistance</value>
</data>
<data name="subject_personal_custom_mode_confirmation" xml:space="preserve">
<value>ONLYOFFICE Personal. Please activate your email address</value>
</data>
<data name="subject_personal_custom_mode_profile_delete" xml:space="preserve">
<value>ONLYOFFICE Personal account termination</value>
</data>
<data name="TariffOverdueStandaloneCustomMode" xml:space="preserve">
<value>You are using ONLYOFFICE™ Enterprise Edition. {0}Support and updates are no longer available for your license since {2}{1}.</value>
</data>
<data name="TariffPaidStandaloneCustomMode" xml:space="preserve">
<value>You are using ONLYOFFICE™ Enterprise Edition.</value>
</data>
<data name="TermsServiceCustomMode" xml:space="preserve">
<value>Terms of Use</value>
</data>
<data name="ThanksRegistrationCustomMode" xml:space="preserve">
<value>Thank you for registering</value>
</data>
<data name="TitleCustomMode" xml:space="preserve">
<value>Collaboration cloud</value>
</data>
<data name="TitlePageNewCustomMode" xml:space="preserve">
<value>Personal online office</value>
</data>
<data name="TrackingChangesCustomMode" xml:space="preserve">
<value>Change tracking</value>
</data>
<data name="TrackingChangesDescriptionCustomMode" xml:space="preserve">
<value>Turn on the display of the changes made. Different viewing modes will help check how the document will look like if you accept or reject these edits.</value>
</data>
<data name="TwoEditingModesCustomMode" xml:space="preserve">
<value>Two co-editing modes</value>
</data>
<data name="TwoEditingModesDescriptionCustomMode" xml:space="preserve">
<value>In Quick mode, you see what your collaborator is typing, and he sees what you are typing. In Strict you edit parts of the document privately, and the changes are shown after saving.</value>
</data>
<data name="calendarEventEditor_attendeesLabelHelpInfoCustomMode" xml:space="preserve">
<value>Start typing email address or contact name from your personal, CRM contacts or
portal users or use any other email to invite people to your event.</value>
</data>
<data name="ProductAdminOpportunitiesCustomMode" xml:space="preserve">
<value>Do the same as a user|Link Dropbox, Box and other accounts in the 'Common Documents' section|Set up access rights to the documents and folders in the 'Common Documents' section</value>
</data>
<data name="ProductUserOpportunitiesCustomMode" xml:space="preserve">
<value>Create and edit own documents as well as the shared documents with the proper access rights|Give reading/editing access to other users to the documents and folders|Link Dropbox, Box and other accounts in the 'My documents' section</value>
</data>
<data name="pattern_remove_user_data_completed_custom_mode" xml:space="preserve">
<value>Dear $UserName,
The process of removing data from user "$FromUserName":"$FromUserLink" has been successfully completed.
The deletion of personal data allowed to free:
# Documents - $DocsSpace
# Mail - $MailSpace
# Talk - $TalkSpace
^You receive this email because you are a registered user of the "${__VirtualRootPath}":"${__VirtualRootPath}" portal.^</value>
</data>
<data name="subject_remove_user_data_completed_custom_mode" xml:space="preserve">
<value>${LetterLogoText}. Remove user data is completed</value>
</data>
<data name="SmsAuthDescriptionCustomMode" xml:space="preserve">
<value>{0}Two-factor authentication{1} is a more secure way for the users to enter the portal. After the credentials are entered, the user will have to enter the code from connected authenticator application.{2}Enable this option for a more secure portal access by all the portal users. {2}To apply the changes you made click the {0}Save{1} button below this section.{2}</value>
</data>
</root>

View File

@ -1,963 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace ASC.Web.Core.PublicResources {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class FeedResource {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal FeedResource() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ASC.Web.Core.PublicResources.FeedResource", typeof(FeedResource).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Comments added to the announcement.
/// </summary>
internal static string AdvertCommentedText {
get {
return ResourceManager.GetString("AdvertCommentedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Advertisement has been added.
/// </summary>
internal static string AdvertCreatedText {
get {
return ResourceManager.GetString("AdvertCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Author.
/// </summary>
internal static string Author {
get {
return ResourceManager.GetString("Author", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Post comment has been added.
/// </summary>
internal static string BlogCommentedText {
get {
return ResourceManager.GetString("BlogCommentedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Post has been added.
/// </summary>
internal static string BlogCreatedText {
get {
return ResourceManager.GetString("BlogCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Blogs.
/// </summary>
internal static string BlogsModule {
get {
return ResourceManager.GetString("BlogsModule", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bookmark.
/// </summary>
internal static string Bookmark {
get {
return ResourceManager.GetString("Bookmark", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bookmark comment has been added.
/// </summary>
internal static string BookmarkCommentedText {
get {
return ResourceManager.GetString("BookmarkCommentedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bookmark has been added.
/// </summary>
internal static string BookmarkCreatedText {
get {
return ResourceManager.GetString("BookmarkCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bookmarks.
/// </summary>
internal static string BookmarksModule {
get {
return ResourceManager.GetString("BookmarksModule", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to User.
/// </summary>
internal static string ByUser {
get {
return ResourceManager.GetString("ByUser", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cancel.
/// </summary>
internal static string CancelCommentBtn {
get {
return ResourceManager.GetString("CancelCommentBtn", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Case.
/// </summary>
internal static string Case {
get {
return ResourceManager.GetString("Case", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Case has been added.
/// </summary>
internal static string CaseCreatedText {
get {
return ResourceManager.GetString("CaseCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cases.
/// </summary>
internal static string CasesModule {
get {
return ResourceManager.GetString("CasesModule", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Access error while adding a comment.
/// </summary>
internal static string CommentErrorMsg {
get {
return ResourceManager.GetString("CommentErrorMsg", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Community.
/// </summary>
internal static string CommunityProduct {
get {
return ResourceManager.GetString("CommunityProduct", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Company.
/// </summary>
internal static string Company {
get {
return ResourceManager.GetString("Company", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Company has been added.
/// </summary>
internal static string CompanyCreatedText {
get {
return ResourceManager.GetString("CompanyCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Contact.
/// </summary>
internal static string Contact {
get {
return ResourceManager.GetString("Contact", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Contacts.
/// </summary>
internal static string Contacts {
get {
return ResourceManager.GetString("Contacts", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Contacts.
/// </summary>
internal static string ContactsModule {
get {
return ResourceManager.GetString("ContactsModule", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Created by.
/// </summary>
internal static string CreatedBy {
get {
return ResourceManager.GetString("CreatedBy", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CRM.
/// </summary>
internal static string CrmProduct {
get {
return ResourceManager.GetString("CrmProduct", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Task has been added.
/// </summary>
internal static string CrmTaskCreatedText {
get {
return ResourceManager.GetString("CrmTaskCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Tasks.
/// </summary>
internal static string CrmTaskModule {
get {
return ResourceManager.GetString("CrmTaskModule", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Current month.
/// </summary>
internal static string CurrentMonth {
get {
return ResourceManager.GetString("CurrentMonth", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Current week.
/// </summary>
internal static string CurrentWeek {
get {
return ResourceManager.GetString("CurrentWeek", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Custom period.
/// </summary>
internal static string CustomPeriod {
get {
return ResourceManager.GetString("CustomPeriod", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deadline.
/// </summary>
internal static string Deadline {
get {
return ResourceManager.GetString("Deadline", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Opportunity.
/// </summary>
internal static string Deal {
get {
return ResourceManager.GetString("Deal", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Opportunity has been added.
/// </summary>
internal static string DealCreatedText {
get {
return ResourceManager.GetString("DealCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Description.
/// </summary>
internal static string Description {
get {
return ResourceManager.GetString("Description", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Discussion.
/// </summary>
internal static string Discussion {
get {
return ResourceManager.GetString("Discussion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Discussion comment has been added.
/// </summary>
internal static string DiscussionCommentedText {
get {
return ResourceManager.GetString("DiscussionCommentedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Discussion has been added.
/// </summary>
internal static string DiscussionCreatedText {
get {
return ResourceManager.GetString("DiscussionCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Discussions.
/// </summary>
internal static string DiscussionsModule {
get {
return ResourceManager.GetString("DiscussionsModule", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Documents.
/// </summary>
internal static string DocumentsProduct {
get {
return ResourceManager.GetString("DocumentsProduct", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Event.
/// </summary>
internal static string Event {
get {
return ResourceManager.GetString("Event", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Events.
/// </summary>
internal static string EventsModule {
get {
return ResourceManager.GetString("EventsModule", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No news so far. Please go to the feed to see the latest news history..
/// </summary>
internal static string FeedsReadedMsg {
get {
return ResourceManager.GetString("FeedsReadedMsg", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File.
/// </summary>
internal static string File {
get {
return ResourceManager.GetString("File", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File has been added.
/// </summary>
internal static string FileCreatedText {
get {
return ResourceManager.GetString("FileCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Files.
/// </summary>
internal static string FilesModule {
get {
return ResourceManager.GetString("FilesModule", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File updated.
/// </summary>
internal static string FileUpdatedText {
get {
return ResourceManager.GetString("FileUpdatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Folder.
/// </summary>
internal static string Folder {
get {
return ResourceManager.GetString("Folder", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Folder has been added.
/// </summary>
internal static string FolderCreatedText {
get {
return ResourceManager.GetString("FolderCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Folders.
/// </summary>
internal static string FoldersModule {
get {
return ResourceManager.GetString("FoldersModule", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Forum.
/// </summary>
internal static string Forum {
get {
return ResourceManager.GetString("Forum", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Poll has been added.
/// </summary>
internal static string ForumPollCreatedText {
get {
return ResourceManager.GetString("ForumPollCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Post added.
/// </summary>
internal static string ForumPostCreatedText {
get {
return ResourceManager.GetString("ForumPostCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Forums.
/// </summary>
internal static string ForumsModule {
get {
return ResourceManager.GetString("ForumsModule", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Topic added.
/// </summary>
internal static string ForumTopicCreatedText {
get {
return ResourceManager.GetString("ForumTopicCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Hide additional comments.
/// </summary>
internal static string HideAdditionalCommentsBtn {
get {
return ResourceManager.GetString("HideAdditionalCommentsBtn", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Hide additional events.
/// </summary>
internal static string HideGroupedFeedsBtn {
get {
return ResourceManager.GetString("HideGroupedFeedsBtn", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Loading, please wait.
/// </summary>
internal static string LoadingMsg {
get {
return ResourceManager.GetString("LoadingMsg", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Me.
/// </summary>
internal static string Me {
get {
return ResourceManager.GetString("Me", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Members.
/// </summary>
internal static string Members {
get {
return ResourceManager.GetString("Members", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Milestone.
/// </summary>
internal static string Milestone {
get {
return ResourceManager.GetString("Milestone", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Milestone has been added.
/// </summary>
internal static string MilestoneCreatedText {
get {
return ResourceManager.GetString("MilestoneCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Milestones.
/// </summary>
internal static string MilestonesModule {
get {
return ResourceManager.GetString("MilestonesModule", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to new.
/// </summary>
internal static string NewFeedIndicator {
get {
return ResourceManager.GetString("NewFeedIndicator", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Comments added to the news.
/// </summary>
internal static string NewsCommentedText {
get {
return ResourceManager.GetString("NewsCommentedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to News has been added.
/// </summary>
internal static string NewsCreatedText {
get {
return ResourceManager.GetString("NewsCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Opportunities.
/// </summary>
internal static string OpportunitiesModule {
get {
return ResourceManager.GetString("OpportunitiesModule", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Comments added to the order.
/// </summary>
internal static string OrderCommentedText {
get {
return ResourceManager.GetString("OrderCommentedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Order has been added.
/// </summary>
internal static string OrderCreatedText {
get {
return ResourceManager.GetString("OrderCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to +{0} more.
/// </summary>
internal static string OtherFeedsCountMsg {
get {
return ResourceManager.GetString("OtherFeedsCountMsg", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Other users.
/// </summary>
internal static string OtherUsers {
get {
return ResourceManager.GetString("OtherUsers", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Participant has been added.
/// </summary>
internal static string ParticipantCreatedText {
get {
return ResourceManager.GetString("ParticipantCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Person.
/// </summary>
internal static string Person {
get {
return ResourceManager.GetString("Person", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Person has been added.
/// </summary>
internal static string PersonCreatedText {
get {
return ResourceManager.GetString("PersonCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Comments added to the poll.
/// </summary>
internal static string PollCommentedText {
get {
return ResourceManager.GetString("PollCommentedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Poll has been added.
/// </summary>
internal static string PollCreatedText {
get {
return ResourceManager.GetString("PollCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Module.
/// </summary>
internal static string Product {
get {
return ResourceManager.GetString("Product", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Project.
/// </summary>
internal static string Project {
get {
return ResourceManager.GetString("Project", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Project has been added.
/// </summary>
internal static string ProjectCreatedText {
get {
return ResourceManager.GetString("ProjectCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Manager.
/// </summary>
internal static string ProjectManager {
get {
return ResourceManager.GetString("ProjectManager", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Projects.
/// </summary>
internal static string ProjectsProduct {
get {
return ResourceManager.GetString("ProjectsProduct", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Publish.
/// </summary>
internal static string PublishCommentBtn {
get {
return ResourceManager.GetString("PublishCommentBtn", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Reply.
/// </summary>
internal static string ReplyCommentBtn {
get {
return ResourceManager.GetString("ReplyCommentBtn", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Responsible.
/// </summary>
internal static string Responsible {
get {
return ResourceManager.GetString("Responsible", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Responsible users.
/// </summary>
internal static string Responsibles {
get {
return ResourceManager.GetString("Responsibles", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to See all.
/// </summary>
internal static string SeeAllFeedsBtn {
get {
return ResourceManager.GetString("SeeAllFeedsBtn", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You were given access to a document in folder.
/// </summary>
internal static string SharedFileCreatedInFolderText {
get {
return ResourceManager.GetString("SharedFileCreatedInFolderText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You were given access to document.
/// </summary>
internal static string SharedFileCreatedText {
get {
return ResourceManager.GetString("SharedFileCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to You were given access to folder.
/// </summary>
internal static string SharedFolderCreatedText {
get {
return ResourceManager.GetString("SharedFolderCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show all.
/// </summary>
internal static string ShowAll {
get {
return ResourceManager.GetString("ShowAll", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show other events.
/// </summary>
internal static string ShowGroupedFeedsBtn {
get {
return ResourceManager.GetString("ShowGroupedFeedsBtn", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show other comments.
/// </summary>
internal static string ShowOthersCommentsBtn {
get {
return ResourceManager.GetString("ShowOthersCommentsBtn", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Size.
/// </summary>
internal static string Size {
get {
return ResourceManager.GetString("Size", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Task.
/// </summary>
internal static string Task {
get {
return ResourceManager.GetString("Task", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Task comment has been added.
/// </summary>
internal static string TaskCommentedText {
get {
return ResourceManager.GetString("TaskCommentedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Task has been added.
/// </summary>
internal static string TaskCreatedText {
get {
return ResourceManager.GetString("TaskCreatedText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Tasks.
/// </summary>
internal static string TasksModule {
get {
return ResourceManager.GetString("TasksModule", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Period.
/// </summary>
internal static string TimeDistance {
get {
return ResourceManager.GetString("TimeDistance", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Today.
/// </summary>
internal static string Today {
get {
return ResourceManager.GetString("Today", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Today at.
/// </summary>
internal static string TodayAt {
get {
return ResourceManager.GetString("TodayAt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Add comment.
/// </summary>
internal static string WriteComment {
get {
return ResourceManager.GetString("WriteComment", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Yesterday at.
/// </summary>
internal static string YesterdayAt {
get {
return ResourceManager.GetString("YesterdayAt", resourceCulture);
}
}
}
}

View File

@ -1,420 +0,0 @@
<?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="AdvertCommentedText" xml:space="preserve">
<value>Comments added to the announcement</value>
</data>
<data name="AdvertCreatedText" xml:space="preserve">
<value>Advertisement has been added</value>
</data>
<data name="Author" xml:space="preserve">
<value>Author</value>
</data>
<data name="BlogCommentedText" xml:space="preserve">
<value>Post comment has been added</value>
</data>
<data name="BlogCreatedText" xml:space="preserve">
<value>Post has been added</value>
</data>
<data name="BlogsModule" xml:space="preserve">
<value>Blogs</value>
</data>
<data name="Bookmark" xml:space="preserve">
<value>Bookmark</value>
</data>
<data name="BookmarkCommentedText" xml:space="preserve">
<value>Bookmark comment has been added</value>
</data>
<data name="BookmarkCreatedText" xml:space="preserve">
<value>Bookmark has been added</value>
</data>
<data name="BookmarksModule" xml:space="preserve">
<value>Bookmarks</value>
</data>
<data name="ByUser" xml:space="preserve">
<value>User</value>
</data>
<data name="CancelCommentBtn" xml:space="preserve">
<value>Cancel</value>
</data>
<data name="Case" xml:space="preserve">
<value>Case</value>
</data>
<data name="CaseCreatedText" xml:space="preserve">
<value>Case has been added</value>
</data>
<data name="CasesModule" xml:space="preserve">
<value>Cases</value>
</data>
<data name="CommentErrorMsg" xml:space="preserve">
<value>Access error while adding a comment</value>
</data>
<data name="CommunityProduct" xml:space="preserve">
<value>Community</value>
</data>
<data name="Company" xml:space="preserve">
<value>Company</value>
</data>
<data name="CompanyCreatedText" xml:space="preserve">
<value>Company has been added</value>
</data>
<data name="Contact" xml:space="preserve">
<value>Contact</value>
</data>
<data name="Contacts" xml:space="preserve">
<value>Contacts</value>
</data>
<data name="ContactsModule" xml:space="preserve">
<value>Contacts</value>
</data>
<data name="CreatedBy" xml:space="preserve">
<value>Created by</value>
</data>
<data name="CrmProduct" xml:space="preserve">
<value>CRM</value>
</data>
<data name="CrmTaskCreatedText" xml:space="preserve">
<value>Task has been added</value>
</data>
<data name="CrmTaskModule" xml:space="preserve">
<value>Tasks</value>
</data>
<data name="CurrentMonth" xml:space="preserve">
<value>Current month</value>
</data>
<data name="CurrentWeek" xml:space="preserve">
<value>Current week</value>
</data>
<data name="CustomPeriod" xml:space="preserve">
<value>Custom period</value>
</data>
<data name="Deadline" xml:space="preserve">
<value>Deadline</value>
</data>
<data name="Deal" xml:space="preserve">
<value>Opportunity</value>
</data>
<data name="DealCreatedText" xml:space="preserve">
<value>Opportunity has been added</value>
</data>
<data name="Description" xml:space="preserve">
<value>Description</value>
</data>
<data name="Discussion" xml:space="preserve">
<value>Discussion</value>
</data>
<data name="DiscussionCommentedText" xml:space="preserve">
<value>Discussion comment has been added</value>
</data>
<data name="DiscussionCreatedText" xml:space="preserve">
<value>Discussion has been added</value>
</data>
<data name="DiscussionsModule" xml:space="preserve">
<value>Discussions</value>
</data>
<data name="DocumentsProduct" xml:space="preserve">
<value>Documents</value>
</data>
<data name="Event" xml:space="preserve">
<value>Event</value>
</data>
<data name="EventsModule" xml:space="preserve">
<value>Events</value>
</data>
<data name="FeedsReadedMsg" xml:space="preserve">
<value>No news so far. Please go to the feed to see the latest news history.</value>
</data>
<data name="File" xml:space="preserve">
<value>File</value>
</data>
<data name="FileCreatedText" xml:space="preserve">
<value>File has been added</value>
</data>
<data name="FilesModule" xml:space="preserve">
<value>Files</value>
</data>
<data name="FileUpdatedText" xml:space="preserve">
<value>File updated</value>
</data>
<data name="Folder" xml:space="preserve">
<value>Folder</value>
</data>
<data name="FolderCreatedText" xml:space="preserve">
<value>Folder has been added</value>
</data>
<data name="FoldersModule" xml:space="preserve">
<value>Folders</value>
</data>
<data name="Forum" xml:space="preserve">
<value>Forum</value>
</data>
<data name="ForumPollCreatedText" xml:space="preserve">
<value>Poll has been added</value>
</data>
<data name="ForumPostCreatedText" xml:space="preserve">
<value>Post added</value>
</data>
<data name="ForumsModule" xml:space="preserve">
<value>Forums</value>
</data>
<data name="ForumTopicCreatedText" xml:space="preserve">
<value>Topic added</value>
</data>
<data name="HideAdditionalCommentsBtn" xml:space="preserve">
<value>Hide additional comments</value>
</data>
<data name="HideGroupedFeedsBtn" xml:space="preserve">
<value>Hide additional events</value>
</data>
<data name="LoadingMsg" xml:space="preserve">
<value>Loading, please wait</value>
</data>
<data name="Me" xml:space="preserve">
<value>Me</value>
</data>
<data name="Members" xml:space="preserve">
<value>Members</value>
</data>
<data name="Milestone" xml:space="preserve">
<value>Milestone</value>
</data>
<data name="MilestoneCreatedText" xml:space="preserve">
<value>Milestone has been added</value>
</data>
<data name="MilestonesModule" xml:space="preserve">
<value>Milestones</value>
</data>
<data name="NewFeedIndicator" xml:space="preserve">
<value>new</value>
</data>
<data name="NewsCommentedText" xml:space="preserve">
<value>Comments added to the news</value>
</data>
<data name="NewsCreatedText" xml:space="preserve">
<value>News has been added</value>
</data>
<data name="OpportunitiesModule" xml:space="preserve">
<value>Opportunities</value>
</data>
<data name="OrderCommentedText" xml:space="preserve">
<value>Comments added to the order</value>
</data>
<data name="OrderCreatedText" xml:space="preserve">
<value>Order has been added</value>
</data>
<data name="OtherFeedsCountMsg" xml:space="preserve">
<value>+{0} more</value>
</data>
<data name="OtherUsers" xml:space="preserve">
<value>Other users</value>
</data>
<data name="ParticipantCreatedText" xml:space="preserve">
<value>Participant has been added</value>
</data>
<data name="Person" xml:space="preserve">
<value>Person</value>
</data>
<data name="PersonCreatedText" xml:space="preserve">
<value>Person has been added</value>
</data>
<data name="PollCommentedText" xml:space="preserve">
<value>Comments added to the poll</value>
</data>
<data name="PollCreatedText" xml:space="preserve">
<value>Poll has been added</value>
</data>
<data name="Product" xml:space="preserve">
<value>Module</value>
</data>
<data name="Project" xml:space="preserve">
<value>Project</value>
</data>
<data name="ProjectCreatedText" xml:space="preserve">
<value>Project has been added</value>
</data>
<data name="ProjectManager" xml:space="preserve">
<value>Manager</value>
</data>
<data name="ProjectsProduct" xml:space="preserve">
<value>Projects</value>
</data>
<data name="PublishCommentBtn" xml:space="preserve">
<value>Publish</value>
</data>
<data name="ReplyCommentBtn" xml:space="preserve">
<value>Reply</value>
</data>
<data name="Responsible" xml:space="preserve">
<value>Responsible</value>
</data>
<data name="Responsibles" xml:space="preserve">
<value>Responsible users</value>
</data>
<data name="SeeAllFeedsBtn" xml:space="preserve">
<value>See all</value>
</data>
<data name="SharedFileCreatedInFolderText" xml:space="preserve">
<value>You were given access to a document in folder</value>
</data>
<data name="SharedFileCreatedText" xml:space="preserve">
<value>You were given access to document</value>
</data>
<data name="SharedFolderCreatedText" xml:space="preserve">
<value>You were given access to folder</value>
</data>
<data name="ShowAll" xml:space="preserve">
<value>Show all</value>
</data>
<data name="ShowGroupedFeedsBtn" xml:space="preserve">
<value>Show other events</value>
</data>
<data name="ShowOthersCommentsBtn" xml:space="preserve">
<value>Show other comments</value>
</data>
<data name="Size" xml:space="preserve">
<value>Size</value>
</data>
<data name="Task" xml:space="preserve">
<value>Task</value>
</data>
<data name="TaskCommentedText" xml:space="preserve">
<value>Task comment has been added</value>
</data>
<data name="TaskCreatedText" xml:space="preserve">
<value>Task has been added</value>
</data>
<data name="TasksModule" xml:space="preserve">
<value>Tasks</value>
</data>
<data name="TimeDistance" xml:space="preserve">
<value>Period</value>
</data>
<data name="Today" xml:space="preserve">
<value>Today</value>
</data>
<data name="TodayAt" xml:space="preserve">
<value>Today at</value>
</data>
<data name="WriteComment" xml:space="preserve">
<value>Add comment</value>
</data>
<data name="YesterdayAt" xml:space="preserve">
<value>Yesterday at</value>
</data>
</root>

View File

@ -1,225 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace ASC.Web.Core.PublicResources {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class MonitoringResource {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal MonitoringResource() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ASC.Web.Core.PublicResources.MonitoringResource", typeof(MonitoringResource).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Clear the cache.
/// </summary>
internal static string CacheClearBtnText {
get {
return ResourceManager.GetString("CacheClearBtnText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to All the scripts used for the portal correct work are cached for ONLYOFFICE™ maximum performance. Sometimes (usually after a major update or when some incorrectness is observed in portal behavior) you need to clear the cache. Use the &lt;b&gt;Clear the Cache&lt;/b&gt; button to flush the scripts from the server and reload them back again. No portal data will be lost during the operation..
/// </summary>
internal static string CacheHelpText {
get {
return ResourceManager.GetString("CacheHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use this option if you observe some incorrectness in portal behavior.
/// </summary>
internal static string CacheText {
get {
return ResourceManager.GetString("CacheText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cache.
/// </summary>
internal static string CacheTitle {
get {
return ResourceManager.GetString("CacheTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Check our {0}FAQ page{1} if you have any questions or contact us at {2}support@onlyoffice.com{3}.
/// </summary>
internal static string ContactUsText {
get {
return ResourceManager.GetString("ContactUsText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to If you have any questions contact us at {0}support.onlyoffice.com{1}.
/// </summary>
internal static string ContactUsText2 {
get {
return ResourceManager.GetString("ContactUsText2", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Contact Us.
/// </summary>
internal static string ContactUsTitle {
get {
return ResourceManager.GetString("ContactUsTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Period.
/// </summary>
internal static string LogsDateInterval {
get {
return ResourceManager.GetString("LogsDateInterval", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The &lt;b&gt;Logs&lt;/b&gt; section allows you to download all the portal logs for a selected period of time archived to a .zip file. Select the period start and end time and click the &lt;b&gt;Download&lt;/b&gt; button to get the logs..
/// </summary>
internal static string LogsHelpText {
get {
return ResourceManager.GetString("LogsHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Download all the logs.
/// </summary>
internal static string LogsText {
get {
return ResourceManager.GetString("LogsText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Logs.
/// </summary>
internal static string LogsTitle {
get {
return ResourceManager.GetString("LogsTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The &lt;b&gt;Ports&lt;/b&gt; section contains the list of all ports necessary for ONLYOFFICE™ portal correct work and their status (open or closed). For your ONLYOFFICE™ server to operate properly these ports must have the &lt;b&gt;Open&lt;/b&gt; status. Please note, that some ports require only either incoming or outgoing connections to be allowed, while other will need both connection types..
/// </summary>
internal static string PortsHelpText {
get {
return ResourceManager.GetString("PortsHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open.
/// </summary>
internal static string PortStatusOpen {
get {
return ResourceManager.GetString("PortStatusOpen", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to All following ports must be open.
/// </summary>
internal static string PortsText {
get {
return ResourceManager.GetString("PortsText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ports.
/// </summary>
internal static string PortsTitle {
get {
return ResourceManager.GetString("PortsTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The &lt;b&gt;Services&lt;/b&gt; section displays the list of all available ONLYOFFICE™ services and their status (running or stopped). You can restart the running services or start the stopped ones using the appropriate action button to the right of the service status..
/// </summary>
internal static string ServicesHelpText {
get {
return ResourceManager.GetString("ServicesHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ONLYOFFICE™ services and their current status.
/// </summary>
internal static string ServicesText {
get {
return ResourceManager.GetString("ServicesText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Services.
/// </summary>
internal static string ServicesTitle {
get {
return ResourceManager.GetString("ServicesTitle", resourceCulture);
}
}
}
}

View File

@ -1,174 +0,0 @@
<?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="CacheClearBtnText" xml:space="preserve">
<value>Clear the cache</value>
</data>
<data name="CacheHelpText" xml:space="preserve">
<value>All the scripts used for the portal correct work are cached for ONLYOFFICE™ maximum performance. Sometimes (usually after a major update or when some incorrectness is observed in portal behavior) you need to clear the cache. Use the &lt;b&gt;Clear the Cache&lt;/b&gt; button to flush the scripts from the server and reload them back again. No portal data will be lost during the operation.</value>
</data>
<data name="CacheText" xml:space="preserve">
<value>Use this option if you observe some incorrectness in portal behavior</value>
</data>
<data name="CacheTitle" xml:space="preserve">
<value>Cache</value>
</data>
<data name="ContactUsText" xml:space="preserve">
<value>Check our {0}FAQ page{1} if you have any questions or contact us at {2}support@onlyoffice.com{3}</value>
</data>
<data name="ContactUsText2" xml:space="preserve">
<value>If you have any questions contact us at {0}support.onlyoffice.com{1}</value>
</data>
<data name="ContactUsTitle" xml:space="preserve">
<value>Contact Us</value>
</data>
<data name="LogsDateInterval" xml:space="preserve">
<value>Period</value>
</data>
<data name="LogsHelpText" xml:space="preserve">
<value>The &lt;b&gt;Logs&lt;/b&gt; section allows you to download all the portal logs for a selected period of time archived to a .zip file. Select the period start and end time and click the &lt;b&gt;Download&lt;/b&gt; button to get the logs.</value>
</data>
<data name="LogsText" xml:space="preserve">
<value>Download all the logs</value>
</data>
<data name="LogsTitle" xml:space="preserve">
<value>Logs</value>
</data>
<data name="PortsHelpText" xml:space="preserve">
<value>The &lt;b&gt;Ports&lt;/b&gt; section contains the list of all ports necessary for ONLYOFFICE™ portal correct work and their status (open or closed). For your ONLYOFFICE™ server to operate properly these ports must have the &lt;b&gt;Open&lt;/b&gt; status. Please note, that some ports require only either incoming or outgoing connections to be allowed, while other will need both connection types.</value>
</data>
<data name="PortStatusOpen" xml:space="preserve">
<value>Open</value>
</data>
<data name="PortsText" xml:space="preserve">
<value>All following ports must be open</value>
</data>
<data name="PortsTitle" xml:space="preserve">
<value>Ports</value>
</data>
<data name="ServicesHelpText" xml:space="preserve">
<value>The &lt;b&gt;Services&lt;/b&gt; section displays the list of all available ONLYOFFICE™ services and their status (running or stopped). You can restart the running services or start the stopped ones using the appropriate action button to the right of the service status.</value>
</data>
<data name="ServicesText" xml:space="preserve">
<value>ONLYOFFICE™ services and their current status</value>
</data>
<data name="ServicesTitle" xml:space="preserve">
<value>Services</value>
</data>
</root>

View File

@ -19,10 +19,10 @@ namespace ASC.Web.Core.PublicResources {
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class NamingPeopleResource {
internal class NamingPeopleResource {
private static global::System.Resources.ResourceManager resourceMan;
@ -36,10 +36,10 @@ namespace ASC.Web.Core.PublicResources {
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Resources.ResourceManager ResourceManager {
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ASC.Web.Studio.Core.Users.NamingPeopleResource", typeof(NamingPeopleResource).Assembly);
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ASC.Web.Core.PublicResources.NamingPeopleResource", typeof(NamingPeopleResource).Assembly);
resourceMan = temp;
}
return resourceMan;
@ -51,7 +51,7 @@ namespace ASC.Web.Core.PublicResources {
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Globalization.CultureInfo Culture {
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
@ -63,7 +63,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Add Users.
/// </summary>
public static string CommonAddUsers {
internal static string CommonAddUsers {
get {
return ResourceManager.GetString("CommonAddUsers", resourceCulture);
}
@ -72,7 +72,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Group.
/// </summary>
public static string CommonGroup {
internal static string CommonGroup {
get {
return ResourceManager.GetString("CommonGroup", resourceCulture);
}
@ -81,7 +81,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Head.
/// </summary>
public static string CommonGroupHead {
internal static string CommonGroupHead {
get {
return ResourceManager.GetString("CommonGroupHead", resourceCulture);
}
@ -90,7 +90,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Groups.
/// </summary>
public static string CommonGroups {
internal static string CommonGroups {
get {
return ResourceManager.GetString("CommonGroups", resourceCulture);
}
@ -99,7 +99,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Guest.
/// </summary>
public static string CommonGuest {
internal static string CommonGuest {
get {
return ResourceManager.GetString("CommonGuest", resourceCulture);
}
@ -108,7 +108,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Guests.
/// </summary>
public static string CommonGuests {
internal static string CommonGuests {
get {
return ResourceManager.GetString("CommonGuests", resourceCulture);
}
@ -117,7 +117,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Registration Date.
/// </summary>
public static string CommonRegDate {
internal static string CommonRegDate {
get {
return ResourceManager.GetString("CommonRegDate", resourceCulture);
}
@ -126,7 +126,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Common.
/// </summary>
public static string CommonSchemaName {
internal static string CommonSchemaName {
get {
return ResourceManager.GetString("CommonSchemaName", resourceCulture);
}
@ -135,7 +135,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to User.
/// </summary>
public static string CommonUser {
internal static string CommonUser {
get {
return ResourceManager.GetString("CommonUser", resourceCulture);
}
@ -144,7 +144,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Users.
/// </summary>
public static string CommonUsers {
internal static string CommonUsers {
get {
return ResourceManager.GetString("CommonUsers", resourceCulture);
}
@ -153,7 +153,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Title.
/// </summary>
public static string CommonUserTitle {
internal static string CommonUserTitle {
get {
return ResourceManager.GetString("CommonUserTitle", resourceCulture);
}
@ -162,7 +162,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Add Employees.
/// </summary>
public static string DefaultAddUsers {
internal static string DefaultAddUsers {
get {
return ResourceManager.GetString("DefaultAddUsers", resourceCulture);
}
@ -171,7 +171,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Department.
/// </summary>
public static string DefaultGroup {
internal static string DefaultGroup {
get {
return ResourceManager.GetString("DefaultGroup", resourceCulture);
}
@ -180,7 +180,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Head.
/// </summary>
public static string DefaultGroupHead {
internal static string DefaultGroupHead {
get {
return ResourceManager.GetString("DefaultGroupHead", resourceCulture);
}
@ -189,7 +189,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Departments.
/// </summary>
public static string DefaultGroups {
internal static string DefaultGroups {
get {
return ResourceManager.GetString("DefaultGroups", resourceCulture);
}
@ -198,7 +198,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Guest.
/// </summary>
public static string DefaultGuest {
internal static string DefaultGuest {
get {
return ResourceManager.GetString("DefaultGuest", resourceCulture);
}
@ -207,7 +207,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Guests.
/// </summary>
public static string DefaultGuests {
internal static string DefaultGuests {
get {
return ResourceManager.GetString("DefaultGuests", resourceCulture);
}
@ -216,7 +216,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Employed since.
/// </summary>
public static string DefaultRegDate {
internal static string DefaultRegDate {
get {
return ResourceManager.GetString("DefaultRegDate", resourceCulture);
}
@ -225,7 +225,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Corporate.
/// </summary>
public static string DefaultSchemaName {
internal static string DefaultSchemaName {
get {
return ResourceManager.GetString("DefaultSchemaName", resourceCulture);
}
@ -234,7 +234,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Employee.
/// </summary>
public static string DefaultUser {
internal static string DefaultUser {
get {
return ResourceManager.GetString("DefaultUser", resourceCulture);
}
@ -243,7 +243,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Employees.
/// </summary>
public static string DefaultUsers {
internal static string DefaultUsers {
get {
return ResourceManager.GetString("DefaultUsers", resourceCulture);
}
@ -252,7 +252,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Position.
/// </summary>
public static string DefaultUserTitle {
internal static string DefaultUserTitle {
get {
return ResourceManager.GetString("DefaultUserTitle", resourceCulture);
}
@ -261,7 +261,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Add Teachers/Students.
/// </summary>
public static string EducationAddUsers {
internal static string EducationAddUsers {
get {
return ResourceManager.GetString("EducationAddUsers", resourceCulture);
}
@ -270,7 +270,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Group.
/// </summary>
public static string EducationGroup {
internal static string EducationGroup {
get {
return ResourceManager.GetString("EducationGroup", resourceCulture);
}
@ -279,7 +279,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Group Lead.
/// </summary>
public static string EducationGroupHead {
internal static string EducationGroupHead {
get {
return ResourceManager.GetString("EducationGroupHead", resourceCulture);
}
@ -288,7 +288,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Groups.
/// </summary>
public static string EducationGroups {
internal static string EducationGroups {
get {
return ResourceManager.GetString("EducationGroups", resourceCulture);
}
@ -297,7 +297,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Guest.
/// </summary>
public static string EducationGuest {
internal static string EducationGuest {
get {
return ResourceManager.GetString("EducationGuest", resourceCulture);
}
@ -306,7 +306,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Guests.
/// </summary>
public static string EducationGuests {
internal static string EducationGuests {
get {
return ResourceManager.GetString("EducationGuests", resourceCulture);
}
@ -315,7 +315,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Registration Date.
/// </summary>
public static string EducationRegDate {
internal static string EducationRegDate {
get {
return ResourceManager.GetString("EducationRegDate", resourceCulture);
}
@ -324,7 +324,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Educational Institution.
/// </summary>
public static string EducationSchemaName {
internal static string EducationSchemaName {
get {
return ResourceManager.GetString("EducationSchemaName", resourceCulture);
}
@ -333,7 +333,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Teacher/Student.
/// </summary>
public static string EducationUser {
internal static string EducationUser {
get {
return ResourceManager.GetString("EducationUser", resourceCulture);
}
@ -342,7 +342,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Teachers/Students.
/// </summary>
public static string EducationUsers {
internal static string EducationUsers {
get {
return ResourceManager.GetString("EducationUsers", resourceCulture);
}
@ -351,7 +351,7 @@ namespace ASC.Web.Core.PublicResources {
/// <summary>
/// Looks up a localized string similar to Title.
/// </summary>
public static string EducationUserTitle {
internal static string EducationUserTitle {
get {
return ResourceManager.GetString("EducationUserTitle", resourceCulture);
}
@ -375,7 +375,7 @@ namespace ASC.Web.Core.PublicResources {
/// &lt;guest&gt;CommonGuest&lt;/guest&gt;
/// &lt;guests&gt;CommonGuests&lt; [rest of string was truncated]&quot;;.
/// </summary>
public static string PeopleNames {
internal static string PeopleNames {
get {
return ResourceManager.GetString("PeopleNames", resourceCulture);
}

View File

@ -0,0 +1,160 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<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="CommonAddUsers" xml:space="preserve">
<value>Benutzer hinzufügen</value>
</data>
<data name="CommonGroup" xml:space="preserve">
<value>Gruppe</value>
</data>
<data name="CommonGroupHead" xml:space="preserve">
<value>Leiter</value>
</data>
<data name="CommonGroups" xml:space="preserve">
<value>Gruppen</value>
</data>
<data name="CommonGuest" xml:space="preserve">
<value>Gast</value>
</data>
<data name="CommonGuests" xml:space="preserve">
<value>Gäste</value>
</data>
<data name="CommonRegDate" xml:space="preserve">
<value>Registrierungsdatum</value>
</data>
<data name="CommonSchemaName" xml:space="preserve">
<value>Allgemein</value>
</data>
<data name="CommonUser" xml:space="preserve">
<value>Benutzer</value>
</data>
<data name="CommonUsers" xml:space="preserve">
<value>Benutzer</value>
</data>
<data name="CommonUserTitle" xml:space="preserve">
<value>Position</value>
</data>
<data name="DefaultAddUsers" xml:space="preserve">
<value>Mitarbeiter hinzufügen</value>
</data>
<data name="DefaultGroup" xml:space="preserve">
<value>Abteilung</value>
</data>
<data name="DefaultGroupHead" xml:space="preserve">
<value>Leiter</value>
</data>
<data name="DefaultGroups" xml:space="preserve">
<value>Abteilungen</value>
</data>
<data name="DefaultGuest" xml:space="preserve">
<value>Gast</value>
</data>
<data name="DefaultGuests" xml:space="preserve">
<value>Gäste</value>
</data>
<data name="DefaultRegDate" xml:space="preserve">
<value>Einstellungsdatum</value>
</data>
<data name="DefaultSchemaName" xml:space="preserve">
<value>Korporativ</value>
</data>
<data name="DefaultUser" xml:space="preserve">
<value>Mitarbeiter</value>
</data>
<data name="DefaultUsers" xml:space="preserve">
<value>Mitarbeiter</value>
</data>
<data name="DefaultUserTitle" xml:space="preserve">
<value>Position</value>
</data>
<data name="EducationAddUsers" xml:space="preserve">
<value>Lehrer / Studenten hinzufügen</value>
</data>
<data name="EducationGroup" xml:space="preserve">
<value>Gruppe</value>
</data>
<data name="EducationGroupHead" xml:space="preserve">
<value>Gruppenleiter</value>
</data>
<data name="EducationGroups" xml:space="preserve">
<value>Gruppen</value>
</data>
<data name="EducationGuest" xml:space="preserve">
<value>Gast</value>
</data>
<data name="EducationGuests" xml:space="preserve">
<value>Gäste</value>
</data>
<data name="EducationRegDate" xml:space="preserve">
<value>Registrierungsdatum</value>
</data>
<data name="EducationSchemaName" xml:space="preserve">
<value>Bildungseinrichtung</value>
</data>
<data name="EducationUser" xml:space="preserve">
<value>Lehrer / Student</value>
</data>
<data name="EducationUsers" xml:space="preserve">
<value>Lehrer / Studenten</value>
</data>
<data name="EducationUserTitle" xml:space="preserve">
<value>Titel </value>
</data>
</root>

View File

@ -0,0 +1,160 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<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="CommonAddUsers" xml:space="preserve">
<value>Añadir usuarios</value>
</data>
<data name="CommonGroup" xml:space="preserve">
<value>Grupo</value>
</data>
<data name="CommonGroupHead" xml:space="preserve">
<value>Jefe</value>
</data>
<data name="CommonGroups" xml:space="preserve">
<value>Grupos</value>
</data>
<data name="CommonGuest" xml:space="preserve">
<value>Visitante</value>
</data>
<data name="CommonGuests" xml:space="preserve">
<value>Visitantes</value>
</data>
<data name="CommonRegDate" xml:space="preserve">
<value>Fecha de registro</value>
</data>
<data name="CommonSchemaName" xml:space="preserve">
<value>Común</value>
</data>
<data name="CommonUser" xml:space="preserve">
<value>Usuario</value>
</data>
<data name="CommonUsers" xml:space="preserve">
<value>Usuarios</value>
</data>
<data name="CommonUserTitle" xml:space="preserve">
<value>Título</value>
</data>
<data name="DefaultAddUsers" xml:space="preserve">
<value>Añadir empleados</value>
</data>
<data name="DefaultGroup" xml:space="preserve">
<value>Departamento</value>
</data>
<data name="DefaultGroupHead" xml:space="preserve">
<value>Jefe</value>
</data>
<data name="DefaultGroups" xml:space="preserve">
<value>Departamentos</value>
</data>
<data name="DefaultGuest" xml:space="preserve">
<value>Visitante</value>
</data>
<data name="DefaultGuests" xml:space="preserve">
<value>Visitantes</value>
</data>
<data name="DefaultRegDate" xml:space="preserve">
<value>Empleado desde</value>
</data>
<data name="DefaultSchemaName" xml:space="preserve">
<value>Corporativo</value>
</data>
<data name="DefaultUser" xml:space="preserve">
<value>Empleado</value>
</data>
<data name="DefaultUsers" xml:space="preserve">
<value>Empleados</value>
</data>
<data name="DefaultUserTitle" xml:space="preserve">
<value>Posición</value>
</data>
<data name="EducationAddUsers" xml:space="preserve">
<value>Añadir profesores/estudiantes</value>
</data>
<data name="EducationGroup" xml:space="preserve">
<value>Grupo</value>
</data>
<data name="EducationGroupHead" xml:space="preserve">
<value>Líder de grupo</value>
</data>
<data name="EducationGroups" xml:space="preserve">
<value>Grupos</value>
</data>
<data name="EducationGuest" xml:space="preserve">
<value>Visitante</value>
</data>
<data name="EducationGuests" xml:space="preserve">
<value>Visitantes</value>
</data>
<data name="EducationRegDate" xml:space="preserve">
<value>Fecha de registro</value>
</data>
<data name="EducationSchemaName" xml:space="preserve">
<value>Institución educativa</value>
</data>
<data name="EducationUser" xml:space="preserve">
<value>Profesor/Estudiante</value>
</data>
<data name="EducationUsers" xml:space="preserve">
<value>Profesores/Estudiantes</value>
</data>
<data name="EducationUserTitle" xml:space="preserve">
<value>Título</value>
</data>
</root>

View File

@ -0,0 +1,160 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<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="CommonAddUsers" xml:space="preserve">
<value>Ajouter utilisateurs</value>
</data>
<data name="CommonGroup" xml:space="preserve">
<value>Groupe</value>
</data>
<data name="CommonGroupHead" xml:space="preserve">
<value>Chef</value>
</data>
<data name="CommonGroups" xml:space="preserve">
<value>Groupes</value>
</data>
<data name="CommonGuest" xml:space="preserve">
<value>Invité</value>
</data>
<data name="CommonGuests" xml:space="preserve">
<value>Invités</value>
</data>
<data name="CommonRegDate" xml:space="preserve">
<value>Date d'inscription</value>
</data>
<data name="CommonSchemaName" xml:space="preserve">
<value>Commun</value>
</data>
<data name="CommonUser" xml:space="preserve">
<value>Utilisateur</value>
</data>
<data name="CommonUsers" xml:space="preserve">
<value>Utilisateurs</value>
</data>
<data name="CommonUserTitle" xml:space="preserve">
<value>Fonction</value>
</data>
<data name="DefaultAddUsers" xml:space="preserve">
<value>Ajouter employés</value>
</data>
<data name="DefaultGroup" xml:space="preserve">
<value>Département</value>
</data>
<data name="DefaultGroupHead" xml:space="preserve">
<value>Chef</value>
</data>
<data name="DefaultGroups" xml:space="preserve">
<value>Départements</value>
</data>
<data name="DefaultGuest" xml:space="preserve">
<value>Invité</value>
</data>
<data name="DefaultGuests" xml:space="preserve">
<value>Invités</value>
</data>
<data name="DefaultRegDate" xml:space="preserve">
<value>Date d'admission</value>
</data>
<data name="DefaultSchemaName" xml:space="preserve">
<value>Corporatif</value>
</data>
<data name="DefaultUser" xml:space="preserve">
<value>Employé</value>
</data>
<data name="DefaultUsers" xml:space="preserve">
<value>Employés</value>
</data>
<data name="DefaultUserTitle" xml:space="preserve">
<value>Poste</value>
</data>
<data name="EducationAddUsers" xml:space="preserve">
<value>Ajouter enseignants/étudiants</value>
</data>
<data name="EducationGroup" xml:space="preserve">
<value>Groupe</value>
</data>
<data name="EducationGroupHead" xml:space="preserve">
<value>Leader du groupe</value>
</data>
<data name="EducationGroups" xml:space="preserve">
<value>Groupes</value>
</data>
<data name="EducationGuest" xml:space="preserve">
<value>Invité</value>
</data>
<data name="EducationGuests" xml:space="preserve">
<value>Invités</value>
</data>
<data name="EducationRegDate" xml:space="preserve">
<value>Date d'inscription</value>
</data>
<data name="EducationSchemaName" xml:space="preserve">
<value>Établissement d'enseignement</value>
</data>
<data name="EducationUser" xml:space="preserve">
<value>Professeur/Étudiant</value>
</data>
<data name="EducationUsers" xml:space="preserve">
<value>Professeurs/Étudiants</value>
</data>
<data name="EducationUserTitle" xml:space="preserve">
<value>Fonction</value>
</data>
</root>

View File

@ -0,0 +1,160 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<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="CommonAddUsers" xml:space="preserve">
<value>Aggiungi utenti</value>
</data>
<data name="CommonGroup" xml:space="preserve">
<value>Gruppo</value>
</data>
<data name="CommonGroupHead" xml:space="preserve">
<value>Responsabile</value>
</data>
<data name="CommonGroups" xml:space="preserve">
<value>Gruppi</value>
</data>
<data name="CommonGuest" xml:space="preserve">
<value>Ospite</value>
</data>
<data name="CommonGuests" xml:space="preserve">
<value>Ospiti</value>
</data>
<data name="CommonRegDate" xml:space="preserve">
<value>Data di registrazione</value>
</data>
<data name="CommonSchemaName" xml:space="preserve">
<value>Comune</value>
</data>
<data name="CommonUser" xml:space="preserve">
<value>Utente</value>
</data>
<data name="CommonUsers" xml:space="preserve">
<value>Utenti</value>
</data>
<data name="CommonUserTitle" xml:space="preserve">
<value>Posizione</value>
</data>
<data name="DefaultAddUsers" xml:space="preserve">
<value>Aggiungi impiegati</value>
</data>
<data name="DefaultGroup" xml:space="preserve">
<value>Ufficio</value>
</data>
<data name="DefaultGroupHead" xml:space="preserve">
<value>Responsabile</value>
</data>
<data name="DefaultGroups" xml:space="preserve">
<value>Uffici</value>
</data>
<data name="DefaultGuest" xml:space="preserve">
<value>Ospite</value>
</data>
<data name="DefaultGuests" xml:space="preserve">
<value>Ospiti</value>
</data>
<data name="DefaultRegDate" xml:space="preserve">
<value>Data di assunzione</value>
</data>
<data name="DefaultSchemaName" xml:space="preserve">
<value>Aziendale</value>
</data>
<data name="DefaultUser" xml:space="preserve">
<value>Impiegato</value>
</data>
<data name="DefaultUsers" xml:space="preserve">
<value>Impiegati</value>
</data>
<data name="DefaultUserTitle" xml:space="preserve">
<value>Carica</value>
</data>
<data name="EducationAddUsers" xml:space="preserve">
<value>Aggiungi Insegnanti/Studenti</value>
</data>
<data name="EducationGroup" xml:space="preserve">
<value>Gruppo</value>
</data>
<data name="EducationGroupHead" xml:space="preserve">
<value>Direzione del Gruppo</value>
</data>
<data name="EducationGroups" xml:space="preserve">
<value>Gruppi</value>
</data>
<data name="EducationGuest" xml:space="preserve">
<value>Ospite</value>
</data>
<data name="EducationGuests" xml:space="preserve">
<value>Ospiti</value>
</data>
<data name="EducationRegDate" xml:space="preserve">
<value>Data di registrazione</value>
</data>
<data name="EducationSchemaName" xml:space="preserve">
<value>Istituto scolastico</value>
</data>
<data name="EducationUser" xml:space="preserve">
<value>Insegnante/Studente</value>
</data>
<data name="EducationUsers" xml:space="preserve">
<value>Insegnanti/Studenti</value>
</data>
<data name="EducationUserTitle" xml:space="preserve">
<value>Titolo</value>
</data>
</root>

View File

@ -183,10 +183,6 @@
<data name="DefaultUserTitle" xml:space="preserve">
<value>Position</value>
</data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="PeopleNames" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>PeopleNames.xml;System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
</data>
<data name="EducationAddUsers" xml:space="preserve">
<value>Add Teachers/Students</value>
</data>
@ -220,4 +216,8 @@
<data name="EducationUserTitle" xml:space="preserve">
<value>Title</value>
</data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="PeopleNames" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>PeopleNames.xml;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
</data>
</root>

View File

@ -0,0 +1,160 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<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="CommonAddUsers" xml:space="preserve">
<value>Добавить пользователей</value>
</data>
<data name="CommonGroup" xml:space="preserve">
<value>Группа</value>
</data>
<data name="CommonGroupHead" xml:space="preserve">
<value>Руководитель</value>
</data>
<data name="CommonGroups" xml:space="preserve">
<value>Группы</value>
</data>
<data name="CommonGuest" xml:space="preserve">
<value>Гость</value>
</data>
<data name="CommonGuests" xml:space="preserve">
<value>Гости</value>
</data>
<data name="CommonRegDate" xml:space="preserve">
<value>Дата регистрации</value>
</data>
<data name="CommonSchemaName" xml:space="preserve">
<value>Общий</value>
</data>
<data name="CommonUser" xml:space="preserve">
<value>Пользователь</value>
</data>
<data name="CommonUsers" xml:space="preserve">
<value>Пользователи</value>
</data>
<data name="CommonUserTitle" xml:space="preserve">
<value>Позиция</value>
</data>
<data name="DefaultAddUsers" xml:space="preserve">
<value>Добавить сотрудников</value>
</data>
<data name="DefaultGroup" xml:space="preserve">
<value>Отдел</value>
</data>
<data name="DefaultGroupHead" xml:space="preserve">
<value>Руководитель</value>
</data>
<data name="DefaultGroups" xml:space="preserve">
<value>Отделы</value>
</data>
<data name="DefaultGuest" xml:space="preserve">
<value>Гость</value>
</data>
<data name="DefaultGuests" xml:space="preserve">
<value>Гости</value>
</data>
<data name="DefaultRegDate" xml:space="preserve">
<value>Дата приема</value>
</data>
<data name="DefaultSchemaName" xml:space="preserve">
<value>Корпоративный</value>
</data>
<data name="DefaultUser" xml:space="preserve">
<value>Сотрудник</value>
</data>
<data name="DefaultUsers" xml:space="preserve">
<value>Сотрудники</value>
</data>
<data name="DefaultUserTitle" xml:space="preserve">
<value>Должность</value>
</data>
<data name="EducationAddUsers" xml:space="preserve">
<value>Добавить преподавателей/студентов</value>
</data>
<data name="EducationGroup" xml:space="preserve">
<value>Группа</value>
</data>
<data name="EducationGroupHead" xml:space="preserve">
<value>Руководитель группы</value>
</data>
<data name="EducationGroups" xml:space="preserve">
<value>Группы</value>
</data>
<data name="EducationGuest" xml:space="preserve">
<value>Гость</value>
</data>
<data name="EducationGuests" xml:space="preserve">
<value>Гости</value>
</data>
<data name="EducationRegDate" xml:space="preserve">
<value>Дата регистрации</value>
</data>
<data name="EducationSchemaName" xml:space="preserve">
<value>Учебное заведение</value>
</data>
<data name="EducationUser" xml:space="preserve">
<value>Преподаватель/Студент</value>
</data>
<data name="EducationUsers" xml:space="preserve">
<value>Преподаватели/Студенты</value>
</data>
<data name="EducationUserTitle" xml:space="preserve">
<value>Позиция</value>
</data>
</root>

View File

@ -0,0 +1,656 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<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="ActivateMobilePhoneEmptyPhoneNumber" xml:space="preserve">
<value>Mobiltelefonnummer eingeben</value>
</data>
<data name="ActivateTfaAppEmptyCode" xml:space="preserve">
<value>Das Feld mit dem Validierungscode darf nicht leer sein</value>
</data>
<data name="AdministratorNotifySenderTypeName" xml:space="preserve">
<value>Administratorbenachrichtigungen</value>
</data>
<data name="Consumersacesskey" xml:space="preserve">
<value>S3 Zugriffsschlüssel</value>
</data>
<data name="ConsumersapiKey" xml:space="preserve">
<value>API Schlüssel Rackspace</value>
</data>
<data name="ConsumersauthPwd" xml:space="preserve">
<value>authPwd Selectel</value>
</data>
<data name="ConsumersauthUser" xml:space="preserve">
<value>authUser Selectel</value>
</data>
<data name="ConsumersBitly" xml:space="preserve">
<value>Bitly</value>
</data>
<data name="ConsumersbitlyClientId" xml:space="preserve">
<value>login</value>
</data>
<data name="ConsumersbitlyClientSecret" xml:space="preserve">
<value>apiKey</value>
</data>
<data name="ConsumersBitlyDescription" xml:space="preserve">
<value>Verbinden Sie Bitly Service, um Einladungslinks und freigegebene Links zu dem Modul "Dokumente" zu verkürzen.</value>
</data>
<data name="ConsumersBitlyInstruction" xml:space="preserve">
<value>Wenn Sie den Bitly-Dienst hinzufügen, erhalten Sie verkürzte Links, um neue Nutzer zum ONLYOFFICE ™ -Portal einzuladen und verkürzte Links zu dem Modul "Dokumente", der mit externen Benutzern geteilt wurde.</value>
</data>
<data name="ConsumersBitlyKey" xml:space="preserve">
<value>login</value>
</data>
<data name="ConsumersBitlySecret" xml:space="preserve">
<value>apiKey</value>
</data>
<data name="ConsumersBox" xml:space="preserve">
<value>Box</value>
</data>
<data name="ConsumersboxClientId" xml:space="preserve">
<value>Box ID</value>
</data>
<data name="ConsumersboxClientSecret" xml:space="preserve">
<value>Box Schlüssel</value>
</data>
<data name="ConsumersBoxDescription" xml:space="preserve">
<value>Verbinden Sie die Anwendung, um Box-Dateien und Ordner zu verwalten.</value>
</data>
<data name="ConsumersBoxInstruction" xml:space="preserve">
<value>Wenn man die Anwendung des Box-Dienstes hinzufügt, kann man sein Box-Konto mit dem Modul "Dokumente" verknüpfen. Dies ermöglicht das Hochladen und Erstellen neuer Dateien in Box, Bearbeiten der bestehenden Dateien, Kopieren und Löschen, Freigabe von Dateien oder Ordnern mit ONLYOFFICE ™ Portalbenutzer.</value>
</data>
<data name="ConsumersBoxKey" xml:space="preserve">
<value>Box ID</value>
</data>
<data name="ConsumersBoxSecret" xml:space="preserve">
<value>Box Schlüssel</value>
</data>
<data name="ConsumersClickatell" xml:space="preserve">
<value>Clickatell</value>
</data>
<data name="ConsumersclickatellapiKey" xml:space="preserve">
<value>apiKey</value>
</data>
<data name="ConsumersClickatellDescription" xml:space="preserve">
<value>Aktivieren Sie die Anwendung für die Zwei-Faktor-Authentifizierung über Clickatell.</value>
</data>
<data name="ConsumersClickatellInstruction" xml:space="preserve">
<value>Durch Hinzufügen der Clickatell-Dienstanwendung können Sie die Zwei-Faktor-Authentifizierung aktivieren und eine SMS mit einem Code empfangen, der es dem Benutzer ermöglicht, das ONLYOFFICE-Portal zu betreten.</value>
</data>
<data name="ConsumersClickatellSecret" xml:space="preserve">
<value>apiKey</value>
</data>
<data name="ConsumersDocuSign" xml:space="preserve">
<value>DocuSign</value>
</data>
<data name="ConsumersdocuSignClientId" xml:space="preserve">
<value>DocuSign Schlüssel</value>
</data>
<data name="ConsumersdocuSignClientSecret" xml:space="preserve">
<value>Der geheime Schlüssel DocuSign</value>
</data>
<data name="ConsumersDocuSignDescription" xml:space="preserve">
<value>Verbinden Sie die Anwendung, um elektronische Signatur DocuSign den Dokumenten hinzufügen zu können.</value>
</data>
<data name="ConsumersdocuSignHost" xml:space="preserve">
<value>DocuSign Authentifizierungsendpunkt </value>
</data>
<data name="ConsumersDocuSignInstruction" xml:space="preserve">
<value>Wenn man die Anwendung des DocuSign-Dienstes hinzufügt, kann man Dateien aus dem Modul "Dokumente" signieren. Dies ermöglicht Ihnen, Dateien über DocuSugn für eine elektronische Signatur an die Mitarbeiter des ONLYOFFICE ™ Portals zu schicken. Die signierte Datei wird im ONLYOFFICE Modul gespeichert.
</value>
</data>
<data name="ConsumersDocuSignKey" xml:space="preserve">
<value>DocuSign Schlüssel</value>
</data>
<data name="ConsumersDocuSignKeyDefault" xml:space="preserve">
<value>DocuSign Authentifizierungsendpunkt </value>
</data>
<data name="ConsumersDocuSignSecret" xml:space="preserve">
<value>Der geheime Schlüssel DocuSign</value>
</data>
<data name="ConsumersDropBox" xml:space="preserve">
<value>Dropbox</value>
</data>
<data name="ConsumersdropboxClientId" xml:space="preserve">
<value>Dropbox ID</value>
</data>
<data name="ConsumersdropboxClientSecret" xml:space="preserve">
<value>Dropbox-Schlüssel</value>
</data>
<data name="ConsumersDropBoxDescription" xml:space="preserve">
<value>Verbinden Sie die Anwendung, um Dropbox-Dateien und Ordner zu verwalten.</value>
</data>
<data name="ConsumersDropBoxInstruction" xml:space="preserve">
<value>Wenn man die Anwendung des Dropbox-Dienstes hinzufügt, kann man sein Dropbox -Konto mit dem Modul "Dokumente" verknüpfen. Dies ermöglicht das Hochladen und Erstellen neuer Dateien in Dropbox, Bearbeiten der bestehenden Dateien, Kopieren und Löschen, Freigabe von Dateien oder Ordnern mit ONLYOFFICE ™ Portalbenutzer.</value>
</data>
<data name="ConsumersDropBoxKey" xml:space="preserve">
<value>Dropbox ID</value>
</data>
<data name="ConsumersDropBoxSecret" xml:space="preserve">
<value>Dropbox-Schlüssel</value>
</data>
<data name="ConsumersEasyBib" xml:space="preserve">
<value>EasyBib</value>
</data>
<data name="ConsumerseasyBibappkey" xml:space="preserve">
<value>App-Schlüssel</value>
</data>
<data name="ConsumersEasyBibDescription" xml:space="preserve">
<value>Verbinden Sie die EasyBib-Anwendung, um bibliographische Listen zu erstellen.</value>
</data>
<data name="ConsumersEasyBibInstruction" xml:space="preserve">
<value>Wenn Sie die EasyBib-Anwendung hinzufügen, können Sie auf einfache Weise bibliografische Listen in Ihren Dokumenten erstellen.</value>
</data>
<data name="ConsumersEasyBibKey" xml:space="preserve">
<value>App-Schlüssel</value>
</data>
<data name="ConsumersEasyBibSecret" xml:space="preserve">
<value>App-Schlüssel</value>
</data>
<data name="ConsumersFacebook" xml:space="preserve">
<value>Facebook</value>
</data>
<data name="ConsumersfacebookAccessToken_Default" xml:space="preserve">
<value>App Token</value>
</data>
<data name="ConsumersfacebookClientId" xml:space="preserve">
<value>Facebook ID</value>
</data>
<data name="ConsumersfacebookClientSecret" xml:space="preserve">
<value>Facebook-Schlüssel</value>
</data>
<data name="ConsumersFacebookCRM" xml:space="preserve">
<value>Facebook Schlüßel in CRM</value>
</data>
<data name="ConsumersFacebookCRMSecret" xml:space="preserve">
<value>App Token</value>
</data>
<data name="ConsumersFacebookDescription" xml:space="preserve">
<value>Verbinden Sie die Anwendung, um sich ins Portal via Facebook anzumelden und Kontakte zu suchen.</value>
</data>
<data name="ConsumersFacebookInstruction" xml:space="preserve">
<value>Wenn man die Anwendung des Facebook -Dienstes hinzufügt, kann man sein Facebook-Konto mit der Profilseite verknüpfen. So meldet man sich ins ONLYOFFICE™ Portal mit eigenen Facebook-Login-Daten an. Sie können auch ein Facebook-Konto des Kontakts im CRM-Modul finden und mit "Person / Firma bearbeiten" verknüpfen.
</value>
</data>
<data name="ConsumersFacebookKey" xml:space="preserve">
<value>Facebook ID</value>
</data>
<data name="ConsumersFacebookSecret" xml:space="preserve">
<value>Facebook-Schlüssel</value>
</data>
<data name="ConsumersFacebookSecretDefalt" xml:space="preserve">
<value>App Token</value>
</data>
<data name="ConsumersFirebase" xml:space="preserve">
<value>Firebase</value>
</data>
<data name="Consumersfirebase_apiKey" xml:space="preserve">
<value>Web API-Schlüssel</value>
</data>
<data name="Consumersfirebase_authorization" xml:space="preserve">
<value>Server-Schlüssel</value>
</data>
<data name="Consumersfirebase_messagingSenderId" xml:space="preserve">
<value>Sender ID</value>
</data>
<data name="Consumersfirebase_projectId" xml:space="preserve">
<value>Projekt ID</value>
</data>
<data name="ConsumersFirebaseDescription" xml:space="preserve">
<value>Schließen Sie Firebase Cloud Messaging-Service, um Benachrichtigungen über die gesendeten Nachrichten zu erhalten.</value>
</data>
<data name="ConsumersFirebaseInstruction" xml:space="preserve">
<value>Wenn Sie Firebase Cloud Messaging anschließen, können Sie Benachrichtigungen über die gesendeten Nachrichten erhalten, auch wenn Sie offline sind.</value>
</data>
<data name="ConsumersFirebaseKey" xml:space="preserve">
<value>Web API-Schlüssel</value>
</data>
<data name="ConsumersFirebaseKeyDefault" xml:space="preserve">
<value>Sender ID</value>
</data>
<data name="ConsumersFirebaseSecret" xml:space="preserve">
<value>Projekt ID</value>
</data>
<data name="ConsumersFirebaseSecretDefault" xml:space="preserve">
<value>Server-Schlüssel</value>
</data>
<data name="ConsumersGoogle" xml:space="preserve">
<value>Google</value>
</data>
<data name="ConsumersgoogleClientId" xml:space="preserve">
<value>Google ID</value>
</data>
<data name="ConsumersgoogleClientSecret" xml:space="preserve">
<value>Google-Schlüssel</value>
</data>
<data name="ConsumersGoogleCloud" xml:space="preserve">
<value>Google Cloud Storage</value>
</data>
<data name="ConsumersGoogleCloudbucket" xml:space="preserve">
<value>Bucket</value>
</data>
<data name="ConsumersGoogleCloudDescription" xml:space="preserve">
<value>Stellen Sie eine Verbindung mit dem Google Cloud Storage, um Daten Ihres Portals zu sichern und zu speichern.</value>
</data>
<data name="ConsumersGoogleCloudInstruction" xml:space="preserve">
<value>Wenn Sie den Google Cloud Storage-Service Ihrem Portal hinzufügen, können Sie mit ihm Backups Ihres Portals erstellen und sicherstellen, dass keine Daten verloren gehen. Verwenden Sie es auch zum Speichern von Daten und statischen Inhalten aus Ihrem Portal.</value>
</data>
<data name="ConsumersGoogleCloudjsonPath" xml:space="preserve">
<value>Google Cloud Storage jsonPath</value>
</data>
<data name="ConsumersGoogleDescription" xml:space="preserve">
<value>Verbinden Sie das Projekt mithilfe eines Google-Kontos und verwalten Sie Google Drive-Dateien und Ordner.</value>
</data>
<data name="ConsumersGoogleInstruction" xml:space="preserve">
<value>Wenn Sie ein Projekt des Google-Dienstes hinzufügen, können Sie Ihr Google-Konto mit Ihrer Profilseite verbinden, sodass Sie sich im ONLYOFFICE ™ -Portal anmelden und Ihr Google Drive-Konto im Modul Dokumente verbinden können. Dies ermöglicht Ihnen, neue Dateien in Google Drive hochzuladen und zu erstellen, bestehende zu bearbeiten, sie zu kopieren und zu löschen, Dateien und Ordner den ONLYOFFICE ™ Portalbenutzern freizugeben.
</value>
</data>
<data name="ConsumersGoogleKey" xml:space="preserve">
<value>Google ID</value>
</data>
<data name="ConsumersGoogleSecret" xml:space="preserve">
<value>Google-Schlüssel</value>
</data>
<data name="ConsumersLinkedIn" xml:space="preserve">
<value>LinkedIn</value>
</data>
<data name="ConsumersLinkedInDescription" xml:space="preserve">
<value>Verbinden Sie die Anwendung, um sich ins Portal via LinkedIn anzumelden.</value>
</data>
<data name="ConsumersLinkedInInstruction" xml:space="preserve">
<value>Wenn man die Anwendung des LinkedIn-Dienstes hinzufügt, kann man sein LinkedIn-Konto mit der Profilseite verknüpfen. So meldet man sich ins ONLYOFFICE™ Portal mit eigenen LinkedIn-Login-Daten an. </value>
</data>
<data name="ConsumersLinkedInKey" xml:space="preserve">
<value>Linkedin ID</value>
</data>
<data name="ConsumersLinkedInSecret" xml:space="preserve">
<value>Linkedin-Schlüssel</value>
</data>
<data name="ConsumersRackspace" xml:space="preserve">
<value>Rackspace Cloud Storage</value>
</data>
<data name="ConsumersRackspaceDescription" xml:space="preserve">
<value>Stellen Sie eine Verbindung mit dem Rackspace Cloud Storage Service, um Daten Ihres Portals zu sichern und zu speichern.</value>
</data>
<data name="ConsumersRackspaceInstruction" xml:space="preserve">
<value>Wenn Sie Ihrem Portal den Rackspace Cloud Storage-Service hinzufügen, können Sie mit diesem Backup Backups Ihres Portals erstellen und sicherstellen, dass keine Daten verloren gehen. Verwenden Sie es auch zum Speichern von Daten und statischen Inhalten aus Ihrem Portal.</value>
</data>
<data name="ConsumersRackspaceprivate_container" xml:space="preserve">
<value>Der private Container</value>
</data>
<data name="ConsumersRackspacepublic_container" xml:space="preserve">
<value>Der öffentliche Container</value>
</data>
<data name="ConsumersRackspaceregion" xml:space="preserve">
<value>Bereich</value>
</data>
<data name="ConsumersS3" xml:space="preserve">
<value>Amazon AWS S3</value>
</data>
<data name="ConsumersS3Description" xml:space="preserve">
<value>Stellen Sie eine Verbindung mit dem Amazon AWS S3, um Daten Ihres Portals zu sichern und zu speichern.</value>
</data>
<data name="ConsumersS3Instruction" xml:space="preserve">
<value>Wenn Sie Ihrem Portal Amazon AWS S3 hinzufügen, können Sie damit Backups Ihres Portals erstellen, um sicherzustellen, dass keine Daten verloren gehen. Verwenden Sie es auch zum Speichern von Daten und statischen Inhalten aus Ihrem Portal.</value>
</data>
<data name="Consumerssecretaccesskey" xml:space="preserve">
<value>S3 geheimer Zugriffsschlüssel</value>
</data>
<data name="ConsumersSelectel" xml:space="preserve">
<value>Selectel Cloud Storage</value>
</data>
<data name="ConsumersSelectelauthPwd" xml:space="preserve">
<value>Auth Kennwort</value>
</data>
<data name="ConsumersSelectelauthUser" xml:space="preserve">
<value>Auth Benutzer</value>
</data>
<data name="ConsumersSelectelCloudInstruction" xml:space="preserve">
<value>Wenn Sie den Selectel Cloud Storage-Service Ihrem Portal hinzufügen, können Sie mit ihm Backups Ihres Portals erstellen, um sicherzustellen, dass keine Daten verloren gehen. Verwenden Sie es auch zum Speichern von Daten und statischen Inhalten aus Ihrem Portal.</value>
</data>
<data name="ConsumersSelectelDescription" xml:space="preserve">
<value>Stellen Sie eine Verbindung mit dem Selectel Cloud Storage Service, um Daten Ihres Portals zu sichern und zu speichern.</value>
</data>
<data name="ConsumersSelectelprivate_container" xml:space="preserve">
<value>Der private Container</value>
</data>
<data name="ConsumersSelectelpublic_container" xml:space="preserve">
<value>Der öffentliche Container</value>
</data>
<data name="ConsumersSkyDrive" xml:space="preserve">
<value>OneDrive</value>
</data>
<data name="Consumersskydriveappkey" xml:space="preserve">
<value>OneDrive ID</value>
</data>
<data name="Consumersskydriveappsecret" xml:space="preserve">
<value>OneDrive-Schlüssel</value>
</data>
<data name="ConsumersSkyDriveDescription" xml:space="preserve">
<value>Verbinden Sie die Anwendung, um OneDrive-Dateien und Ordner zu verwalten.</value>
</data>
<data name="ConsumersSkyDriveInstruction" xml:space="preserve">
<value>Wenn man die Anwendung des OneDrive-Dienstes hinzufügt, kann man sein OneDrive-Konto mit dem Modul "Dokumente" verknüpfen. Dies ermöglicht das Hochladen und Erstellen neuer Dateien in OneDrive, Bearbeiten der bestehenden Dateien, Kopieren und Löschen, Freigabe von Dateien oder Ordnern mit ONLYOFFICE ™ Portalbenutzer.</value>
</data>
<data name="ConsumersSkyDriveKey" xml:space="preserve">
<value>OneDrive ID</value>
</data>
<data name="ConsumersSkyDriveSecret" xml:space="preserve">
<value>OneDrive-Schlüssel</value>
</data>
<data name="ConsumersSmsc" xml:space="preserve">
<value>SMS-Center</value>
</data>
<data name="ConsumersSmscDescription" xml:space="preserve">
<value>Aktivieren Sie die Anwendung für die Zwei-Faktor-Authentifizierung per SMS-Center.</value>
</data>
<data name="ConsumersSmscInstruction" xml:space="preserve">
<value>Durch Hinzufügen der SMS-Center-Dienstanwendung können Sie die Zwei-Faktor-Authentifizierung aktivieren und eine SMS mit einem Code empfangen, der es dem Benutzer ermöglicht, das ONLYOFFICE-Portal zu betreten. SMS-Center-Anwendung ist als Anbieter für die GUS-Staaten nützlich.</value>
</data>
<data name="ConsumersSmscKey" xml:space="preserve">
<value>Login</value>
</data>
<data name="Consumerssmsclogin" xml:space="preserve">
<value>Login</value>
</data>
<data name="Consumerssmscpsw" xml:space="preserve">
<value>Passwort oder Passwort MD5 Hash in Kleinbuchstaben</value>
</data>
<data name="ConsumersSmscSecret" xml:space="preserve">
<value>Passwort oder Passwort MD5 Hash in Kleinbuchstaben</value>
</data>
<data name="ConsumersTwilio" xml:space="preserve">
<value>Twilio</value>
</data>
<data name="ConsumerstwilioAccountSid" xml:space="preserve">
<value>Konto Sid</value>
</data>
<data name="ConsumerstwilioAuthToken" xml:space="preserve">
<value>Auth Token</value>
</data>
<data name="ConsumersTwilioDescription" xml:space="preserve">
<value>Fügen Sie Twilio hinzu, um CRM-Kontakte direkt aus dem Browser aufrufen zu können.</value>
</data>
<data name="ConsumersTwilioInstruction" xml:space="preserve">
<value>Nachdem Sie Twilio hinzugefügt haben, können Sie jeden CRM-Kontakt direkt aus dem Browser anrufen.</value>
</data>
<data name="ConsumersTwilioKey" xml:space="preserve">
<value>Konto Sid</value>
</data>
<data name="ConsumersTwilioKeyDefault" xml:space="preserve">
<value>Telefonnummer von Twilio (erforderlich für die SMS-Autorisierung)</value>
</data>
<data name="ConsumersTwilioSecret" xml:space="preserve">
<value>Auth Token</value>
</data>
<data name="Consumerstwiliosender" xml:space="preserve">
<value>Telefonnummer von Twilio (erforderlich für die SMS-Autorisierung)</value>
</data>
<data name="ConsumersTwitter" xml:space="preserve">
<value>Twitter</value>
</data>
<data name="ConsumerstwitterAccessToken_Default" xml:space="preserve">
<value>Zugriffstoken</value>
</data>
<data name="ConsumerstwitterAccessTokenSecret_Default" xml:space="preserve">
<value>Geheimer Zugriffstoken</value>
</data>
<data name="ConsumersTwitterCrm" xml:space="preserve">
<value>Twitter Schlüßel in CRM</value>
</data>
<data name="ConsumersTwitterCrmKey" xml:space="preserve">
<value>Twitter ID</value>
</data>
<data name="ConsumersTwitterCrmSecret" xml:space="preserve">
<value>Twitter-Schlüssel</value>
</data>
<data name="ConsumersTwitterDescription" xml:space="preserve">
<value>Verbinden Sie die Anwendung, um sich ins Portal via Twitter anzumelden und Kontakte zu suchen.</value>
</data>
<data name="ConsumersTwitterInstruction" xml:space="preserve">
<value>Wenn man die Anwendung des Twitter-Dienstes hinzufügt, kann man sein Twitter-Konto mit der Profilseite verknüpfen. So meldet man sich ins ONLYOFFICE™ Portal mit eigenen Twitter-Login-Daten an. Sie können auch ein Facebook-Konto der Person im CRM-Modul finden und mit "Person / Firma bearbeiten" verknüpfen und Twitter-Newsfeedaktualisierungen durchschauen.</value>
</data>
<data name="ConsumersTwitterKey" xml:space="preserve">
<value>Twitter ID</value>
</data>
<data name="ConsumersTwitterKeyDefault" xml:space="preserve">
<value>Zugriffstoken</value>
</data>
<data name="ConsumersTwitterSecret" xml:space="preserve">
<value>Twitter-Schlüssel</value>
</data>
<data name="ConsumersTwitterSecretDefault" xml:space="preserve">
<value>Geheimer Zugriffstoken</value>
</data>
<data name="Consumersusername" xml:space="preserve">
<value>Rackspace-Benutzername</value>
</data>
<data name="ConsumersWordpress" xml:space="preserve">
<value>WordPress</value>
</data>
<data name="ConsumersWordpressDescription" xml:space="preserve">
<value>Verbinden Sie die Anwendung zur Veröffentlichung von Dokumenten in WordPress.</value>
</data>
<data name="ConsumersWordpressInstruction" xml:space="preserve">
<value>Beim Hinzufügen von der WordPress-Anwendung kann man die Dokumente einfach auf Ihrer WordPress-Website veröffentlichen und deren Formatierung speichern.</value>
</data>
<data name="ConsumersWordpressKey" xml:space="preserve">
<value>Schlüssel von WordPress</value>
</data>
<data name="ConsumersWordpressSecret" xml:space="preserve">
<value>Geheimer Schlüssel von WordPress</value>
</data>
<data name="ConsumerswpClientId" xml:space="preserve">
<value>Schlüssel von WordPress</value>
</data>
<data name="ConsumerswpClientSecret" xml:space="preserve">
<value>Geheimer Schlüssel von WordPress</value>
</data>
<data name="ConsumersYahoo" xml:space="preserve">
<value>Yahoo</value>
</data>
<data name="ConsumersyahooClientId" xml:space="preserve">
<value>Client ID</value>
</data>
<data name="ConsumersyahooClientSecret" xml:space="preserve">
<value>Geheimer Clientschlüssel</value>
</data>
<data name="ConsumersYahooDescription" xml:space="preserve">
<value>Aktivieren Sie die Anwendung für den Import von Yahoo-Kontakten.</value>
</data>
<data name="ConsumersYahooInstruction" xml:space="preserve">
<value>Durch Hinzufügen der Yahoo-Dienstanwendung können Sie neue Benutzer des ONLYOFFICE-Portals aus der Kontaktliste hinzufügen.</value>
</data>
<data name="ConsumersYahooKey" xml:space="preserve">
<value>Client ID</value>
</data>
<data name="ConsumersYahooSecret" xml:space="preserve">
<value>Geheimer Clientschlüssel</value>
</data>
<data name="CouldNotRecoverPasswordForLdapUser" xml:space="preserve">
<value>Kennwortwiederherstellung für LDAP Benutzer ist verboten</value>
</data>
<data name="CouldNotRecoverPasswordForSsoUser" xml:space="preserve">
<value>Kennwortwiederherstellung ist für den SSO-Benutzer verboten</value>
</data>
<data name="CustomNamingPeopleSchema" xml:space="preserve">
<value>Einstellbar</value>
</data>
<data name="ErrorAccessDenied" xml:space="preserve">
<value>Keine Berechtigung zum Durchführen dieser Aktion</value>
</data>
<data name="ErrorAccessRestricted" xml:space="preserve">
<value>Der Zugriff auf das Portal ist eingeschränkt.</value>
</data>
<data name="ErrorDisabledProfile" xml:space="preserve">
<value>Ihr Profil ist gesperrt</value>
</data>
<data name="ErrorEmailAlreadyExists" xml:space="preserve">
<value>Ein Benutzer mit dieser E-Mail-Adresse ist bereits registriert</value>
</data>
<data name="ErrorEmailEmpty" xml:space="preserve">
<value>Das Feld für die E-Mail-Adresse ist leer</value>
</data>
<data name="ErrorIncorrectUserName" xml:space="preserve">
<value>Falscher Vor- oder Nachname</value>
</data>
<data name="ErrorNotAllowedOption" xml:space="preserve">
<value>Ihr Zahlungsplan unterstützt diese Option nicht</value>
</data>
<data name="ErrorNotCorrectEmail" xml:space="preserve">
<value>Ungültige E-Mail-Adresse</value>
</data>
<data name="ErrorPasswordEmpty" xml:space="preserve">
<value>Das Feld "Kennwort" ist leer.</value>
</data>
<data name="ErrorPasswordMessage" xml:space="preserve">
<value>Das Kennwort muss enthalten:</value>
</data>
<data name="ErrorPasswordMessageStart" xml:space="preserve">
<value>Das Kennwort muss enthalten</value>
</data>
<data name="ErrorPasswordNoDigits" xml:space="preserve">
<value>Zahlen</value>
</data>
<data name="ErrorPasswordNoSpecialSymbols" xml:space="preserve">
<value>spezielle Zeichen</value>
</data>
<data name="ErrorPasswordNoUpperCase" xml:space="preserve">
<value>Großbuchstaben</value>
</data>
<data name="ErrorUserNotFound" xml:space="preserve">
<value>Der Benutzer konnte nicht gefunden werden</value>
</data>
<data name="ErrorUserNotFoundByEmail" xml:space="preserve">
<value>Der Benutzer mit der Adresse {0} wurde nicht gefunden</value>
</data>
<data name="EuServerRegion" xml:space="preserve">
<value>Region EU (Irland)</value>
</data>
<data name="FileSizeMaxExceed" xml:space="preserve">
<value>Die maximale Dateigröße ist überschritten</value>
</data>
<data name="FileSizeNote" xml:space="preserve">
<value>Hinweis: Die Dateigröße darf {1}{0}{2} nicht überschreiten</value>
</data>
<data name="FileSizePostfix" xml:space="preserve">
<value>Byte,KB,MB,GB,TB</value>
</data>
<data name="LdapSettingsTooManyOperations" xml:space="preserve">
<value>Zu viele LDAP-Operationen.</value>
</data>
<data name="MessageYourPasswordSuccessfullySendedToEmail" xml:space="preserve">
<value>Die Hinweise für die Änderung des Kennworts wurden an die folgende E-Mail-Adresse versandt: {0}</value>
</data>
<data name="MobilePhoneMustErase" xml:space="preserve">
<value>Um die Nummer zu ändern, müssen Sie Ihre aktuelle Telefonnummer löschen</value>
</data>
<data name="OrgServerRegion" xml:space="preserve">
<value>ORG Region</value>
</data>
<data name="PersonalFreeSpaceException" xml:space="preserve">
<value>Der verfügbare Speicherplatz ist überschritten</value>
</data>
<data name="ProfileRemoved" xml:space="preserve">
<value>Das Profil wurde gelöscht</value>
</data>
<data name="ReassignDataRemoveUserError" xml:space="preserve">
<value>Die Neuzuweisung der Daten für {0} ist nicht abgeschlossen.</value>
</data>
<data name="SgServerRegion" xml:space="preserve">
<value>Asien-Pazifik (Singapur)</value>
</data>
<data name="SmsAuthenticationMessageError" xml:space="preserve">
<value>Falscher Code</value>
</data>
<data name="SmsAuthenticationMessageToUser" xml:space="preserve">
<value>Ihr Code: {0}</value>
</data>
<data name="SmsAuthenticationTimeout" xml:space="preserve">
<value>Die Zeit für die Nutzung des Codes ist abgelaufen. Bitte fordern Sie eine neue Text-Nachricht an.</value>
</data>
<data name="SmsNotAvailable" xml:space="preserve">
<value>SMS-Einstellungen sind nicht verfügbar</value>
</data>
<data name="SmsTooMuchError" xml:space="preserve">
<value>Sie haben zu viele Text-Nachrichten gesendet. Bitte versuchen Sie es später noch einmal.</value>
</data>
<data name="SuccessfullySaveSettingsMessage" xml:space="preserve">
<value>Die Einstellungen wurden erfolgreich aktualisiert</value>
</data>
<data name="SuccessfullySentNotificationDeleteUserInfoMessage" xml:space="preserve">
<value>Die Hinweise zum Löschen Ihres Profils wurden an Ihre E-Mail-Adresse {0} verschickt</value>
</data>
<data name="TfaAppAuthMessageError" xml:space="preserve">
<value>Falscher Code</value>
</data>
<data name="TfaAppNotAvailable" xml:space="preserve">
<value>TFA-Anwendungseinstellungen sind nicht verfügbar</value>
</data>
<data name="TfaTooMuchError" xml:space="preserve">
<value>Sie haben zu viele Kurzmitteilungen gesendet. Bitte versuchen Sie es später erneut.</value>
</data>
<data name="UsServerRegion" xml:space="preserve">
<value>Region US West (Oregon) </value>
</data>
<data name="WhatsNewSubscriptionName" xml:space="preserve">
<value>Neues</value>
</data>
</root>

View File

@ -0,0 +1,652 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<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="ActivateMobilePhoneEmptyPhoneNumber" xml:space="preserve">
<value>Introduzca el número de teléfono móvil</value>
</data>
<data name="ActivateTfaAppEmptyCode" xml:space="preserve">
<value>Campo de código de validación no puede estar vacío</value>
</data>
<data name="AdministratorNotifySenderTypeName" xml:space="preserve">
<value>Nofificaciones de administradores</value>
</data>
<data name="Consumersacesskey" xml:space="preserve">
<value>S3 accesskey</value>
</data>
<data name="ConsumersapiKey" xml:space="preserve">
<value>Clave api de Rackspace</value>
</data>
<data name="ConsumersauthPwd" xml:space="preserve">
<value>authPwd Selectel</value>
</data>
<data name="ConsumersauthUser" xml:space="preserve">
<value>authUser Selectel</value>
</data>
<data name="ConsumersBitly" xml:space="preserve">
<value>Bitly</value>
</data>
<data name="ConsumersbitlyClientId" xml:space="preserve">
<value>login</value>
</data>
<data name="ConsumersbitlyClientSecret" xml:space="preserve">
<value>apiKey</value>
</data>
<data name="ConsumersBitlyDescription" xml:space="preserve">
<value>Conectar el servicio Bitly para acortar los enlaces de invitación al portal y enlaces de acceso a los archivos en el módulo 'Documentos'.</value>
</data>
<data name="ConsumersBitlyInstruction" xml:space="preserve">
<value>Si Usted añade el servicio Bitly, Usted podrá recibir los enlaces acortados para invitar a nuevos usuarios al portal ONLYOFFICE™ y los enlaces acortados para los documentos en el módulo 'Documentos' compartidos con los usuarios externos.</value>
</data>
<data name="ConsumersBitlyKey" xml:space="preserve">
<value>login</value>
</data>
<data name="ConsumersBitlySecret" xml:space="preserve">
<value>apiKey</value>
</data>
<data name="ConsumersBox" xml:space="preserve">
<value>Clave</value>
</data>
<data name="ConsumersboxClientId" xml:space="preserve">
<value>Box ID</value>
</data>
<data name="ConsumersboxClientSecret" xml:space="preserve">
<value>Clave Box</value>
</data>
<data name="ConsumersBoxDescription" xml:space="preserve">
<value>Conectar la aplicación para manejar los archivos y carpetas de Box.</value>
</data>
<data name="ConsumersBoxInstruction" xml:space="preserve">
<value>Si Usted añade la aplicación del servicio Box, Usted podrá conectar su cuenta de Box en el módulo 'Documentos'. Este permite cargar y crear unos archivos nuevos en Box, editar unos archivos existentes, copiar y eliminarlos, compartir los archivos y carpetas con los usuarios de portal ONLYOFFICE™.</value>
</data>
<data name="ConsumersBoxKey" xml:space="preserve">
<value>Box ID</value>
</data>
<data name="ConsumersBoxSecret" xml:space="preserve">
<value>Clave Box</value>
</data>
<data name="ConsumersClickatell" xml:space="preserve">
<value>Clickatell</value>
</data>
<data name="ConsumersclickatellapiKey" xml:space="preserve">
<value>apiKey</value>
</data>
<data name="ConsumersClickatellDescription" xml:space="preserve">
<value>Habilitar la aplicación de autenticación de dos factores vía Clickatell</value>
</data>
<data name="ConsumersClickatellInstruction" xml:space="preserve">
<value>Al añadir la aplicación del servicio Clickatell usted podrá habilitar la autenticación de dos factores y recibir un SMS con un código que le permite ingresar al portal ONLYOFFICE.</value>
</data>
<data name="ConsumersClickatellSecret" xml:space="preserve">
<value>apiKey</value>
</data>
<data name="ConsumersDocuSign" xml:space="preserve">
<value>DocuSign</value>
</data>
<data name="ConsumersdocuSignClientId" xml:space="preserve">
<value>Clave de DocuSign</value>
</data>
<data name="ConsumersdocuSignClientSecret" xml:space="preserve">
<value>Clave secreta de DocuSign</value>
</data>
<data name="ConsumersDocuSignDescription" xml:space="preserve">
<value>Conectar la aplicación para añadir la firma electrónica DocuSign a los documentos.</value>
</data>
<data name="ConsumersdocuSignHost" xml:space="preserve">
<value>Punto final de autentificación de DocuSign</value>
</data>
<data name="ConsumersDocuSignInstruction" xml:space="preserve">
<value>Si Usted añade la aplicación del servicio DocuSign, Usted podrá firmar los documentos del módulo 'Documentos'. Este permite enviar el archivo para recibir una firma electrónica a los empleados de portal ONLYOFFICE™ por medio del servicio DocuSugn. El archivo firmado será guardado en el módulo 'Documentos' de portal ONLYOFFICE™.</value>
</data>
<data name="ConsumersDocuSignKey" xml:space="preserve">
<value>Clave de DocuSign</value>
</data>
<data name="ConsumersDocuSignKeyDefault" xml:space="preserve">
<value>Punto final de autentificación de DocuSign</value>
</data>
<data name="ConsumersDocuSignSecret" xml:space="preserve">
<value>Clave secreta de DocuSign</value>
</data>
<data name="ConsumersDropBox" xml:space="preserve">
<value>Dropbox</value>
</data>
<data name="ConsumersdropboxClientId" xml:space="preserve">
<value>ID de Dropbox</value>
</data>
<data name="ConsumersdropboxClientSecret" xml:space="preserve">
<value>Clave de Dropbox</value>
</data>
<data name="ConsumersDropBoxDescription" xml:space="preserve">
<value>Conectar la aplicación para manejar los archivos y carpetas de Dropbox.</value>
</data>
<data name="ConsumersDropBoxInstruction" xml:space="preserve">
<value>Si Usted añade la aplicación del servicio Dropbox, Usted podrá conectar su cuenta de Dropbox en el módulo 'Documentos'. Este permite cargar y crear unos archivos nuevos en Dropbox, editar unos archivos existentes, copiar y eliminarlos, compartir los archivos y carpetas con los usuarios de portal ONLYOFFICE™.</value>
</data>
<data name="ConsumersDropBoxKey" xml:space="preserve">
<value>ID de Dropbox</value>
</data>
<data name="ConsumersDropBoxSecret" xml:space="preserve">
<value>Clave de Dropbox</value>
</data>
<data name="ConsumersEasyBib" xml:space="preserve">
<value>EasyBib</value>
</data>
<data name="ConsumerseasyBibappkey" xml:space="preserve">
<value>Clave de aplicación</value>
</data>
<data name="ConsumersEasyBibDescription" xml:space="preserve">
<value>Conectar la aplicación EasyBib para crear listados bibliográficos.</value>
</data>
<data name="ConsumersEasyBibInstruction" xml:space="preserve">
<value>Después de añadir la aplicación EasyBib se puede fácilmente crear listados bibliográficos en documentos.</value>
</data>
<data name="ConsumersEasyBibKey" xml:space="preserve">
<value>Clave de aplicación</value>
</data>
<data name="ConsumersEasyBibSecret" xml:space="preserve">
<value>Clave de aplicación</value>
</data>
<data name="ConsumersFacebook" xml:space="preserve">
<value>Facebook</value>
</data>
<data name="ConsumersfacebookAccessToken_Default" xml:space="preserve">
<value>App Token</value>
</data>
<data name="ConsumersfacebookClientId" xml:space="preserve">
<value>ID de Facebook</value>
</data>
<data name="ConsumersfacebookClientSecret" xml:space="preserve">
<value>Clave de Facebook</value>
</data>
<data name="ConsumersFacebookCRM" xml:space="preserve">
<value>Clave Facebook en CRM</value>
</data>
<data name="ConsumersFacebookCRMSecret" xml:space="preserve">
<value>App Token</value>
</data>
<data name="ConsumersFacebookDescription" xml:space="preserve">
<value>Conectar la aplicación para acceder al portal usando la cuenta Facebook y buscar contactos.</value>
</data>
<data name="ConsumersFacebookInstruction" xml:space="preserve">
<value>Si Usted añade la aplicación del servicio Facebook, Usted podrá conectar el acceso al portal ONLYOFFICE™ en la página de su perfil con ayuda de la cuenta Facebook. También Usted podrá encontrar y enlazar la cuenta de Facebook en la página de 'Editar persona/empresa' en el módulo CRM.</value>
</data>
<data name="ConsumersFacebookKey" xml:space="preserve">
<value>ID de Facebook</value>
</data>
<data name="ConsumersFacebookSecret" xml:space="preserve">
<value>Clave de Facebook</value>
</data>
<data name="ConsumersFacebookSecretDefalt" xml:space="preserve">
<value>App Token</value>
</data>
<data name="ConsumersFirebase" xml:space="preserve">
<value>Firebase</value>
</data>
<data name="Consumersfirebase_apiKey" xml:space="preserve">
<value>Llave del API Web</value>
</data>
<data name="Consumersfirebase_authorization" xml:space="preserve">
<value>Llave del servidor</value>
</data>
<data name="Consumersfirebase_messagingSenderId" xml:space="preserve">
<value>ID del Remisor</value>
</data>
<data name="Consumersfirebase_projectId" xml:space="preserve">
<value>ID del Proyecto</value>
</data>
<data name="ConsumersFirebaseDescription" xml:space="preserve">
<value>Conecte el servicio Mensajería en Nube Firebase para recibir notificaciones de mensajes que le han sido enviados.</value>
</data>
<data name="ConsumersFirebaseInstruction" xml:space="preserve">
<value>Si se conecta a la Nube de Mensajería Firebase podrá recibir notificaciones de los mensajes que le han enviado incluso cuando no está en línea.</value>
</data>
<data name="ConsumersFirebaseKey" xml:space="preserve">
<value>Llave del API Web</value>
</data>
<data name="ConsumersFirebaseKeyDefault" xml:space="preserve">
<value>ID del Remisor</value>
</data>
<data name="ConsumersFirebaseSecret" xml:space="preserve">
<value>ID del Proyecto</value>
</data>
<data name="ConsumersFirebaseSecretDefault" xml:space="preserve">
<value>Llave del servidor</value>
</data>
<data name="ConsumersGoogle" xml:space="preserve">
<value>Google</value>
</data>
<data name="ConsumersgoogleClientId" xml:space="preserve">
<value>ID de Google</value>
</data>
<data name="ConsumersgoogleClientSecret" xml:space="preserve">
<value>Clave de Google</value>
</data>
<data name="ConsumersGoogleCloud" xml:space="preserve">
<value>Google Cloud Storage</value>
</data>
<data name="ConsumersGoogleCloudbucket" xml:space="preserve">
<value>Contenedor</value>
</data>
<data name="ConsumersGoogleCloudDescription" xml:space="preserve">
<value>Conecte el servicio Google Cloud Storage para crear copia de seguridad y almacenar datos de su portal.</value>
</data>
<data name="ConsumersGoogleCloudInstruction" xml:space="preserve">
<value>Cuando Usted agrega el servicio Google Cloud Storage a su portal, puede usarlo para crear copias de seguridad de su portal asegurándose de que no se perderá ningún dato. También úselo para almacenar datos y contenido estático de su portal.</value>
</data>
<data name="ConsumersGoogleCloudjsonPath" xml:space="preserve">
<value>Google Cloud Storage jsonPath</value>
</data>
<data name="ConsumersGoogleDescription" xml:space="preserve">
<value>Conectar el proyecto para acceder al portal usando la cuenta de Google y manejar los archivos y carpetas de Google Drive.</value>
</data>
<data name="ConsumersGoogleInstruction" xml:space="preserve">
<value>Si Usted añade un proyecto del servicio Google, Usted podrá conectar el acceso a su portal ONLYOFFICE™ con ayuda de la cuenta Google y conectar su cuenta de Google Drive en el módulo 'Documentos'. Este permite cargar y crear unos archivos nuevos en Google Drive, editar unos archivos existentes, copiar y eliminarlos, compartir los archivos y carpetas con los usuarios de portal ONLYOFFICE™.</value>
</data>
<data name="ConsumersGoogleKey" xml:space="preserve">
<value>ID de Google</value>
</data>
<data name="ConsumersGoogleSecret" xml:space="preserve">
<value>Clave de Google</value>
</data>
<data name="ConsumersLinkedIn" xml:space="preserve">
<value>LinkedIn</value>
</data>
<data name="ConsumersLinkedInDescription" xml:space="preserve">
<value>Conectar la aplicación para acceder al portal usando la cuenta LinkedIn.</value>
</data>
<data name="ConsumersLinkedInInstruction" xml:space="preserve">
<value>Si Usted añade la aplicación del servicio LinkedIn, Usted podrá conectar el acceso al portal ONLYOFFICE™ en la página de su perfil con ayuda de la cuenta LinkedIn.</value>
</data>
<data name="ConsumersLinkedInKey" xml:space="preserve">
<value>ID de Linkedin</value>
</data>
<data name="ConsumersLinkedInSecret" xml:space="preserve">
<value>Clave de Linkedin</value>
</data>
<data name="ConsumersRackspace" xml:space="preserve">
<value>Rackspace Cloud Storage</value>
</data>
<data name="ConsumersRackspaceDescription" xml:space="preserve">
<value>Conecte el servicio Rackspace Cloud Storage para crear copia de seguridad y almacenar datos de su portal.</value>
</data>
<data name="ConsumersRackspaceInstruction" xml:space="preserve">
<value>Cuando Usted agrega el servicio Rackspace Cloud Storage a su portal, puede usarlo para crear copias de seguridad de su portal asegurándose de que no se perderá ningún dato. También úselo para almacenar datos y contenido estático de su portal.</value>
</data>
<data name="ConsumersRackspaceprivate_container" xml:space="preserve">
<value>Contenedor privado</value>
</data>
<data name="ConsumersRackspacepublic_container" xml:space="preserve">
<value>Contenedor público</value>
</data>
<data name="ConsumersRackspaceregion" xml:space="preserve">
<value>Región</value>
</data>
<data name="ConsumersS3" xml:space="preserve">
<value>Amazon AWS S3</value>
</data>
<data name="ConsumersS3Description" xml:space="preserve">
<value>Conecte Amazon AWS S3 para crear copia de seguridad y almacenar datos de su portal.</value>
</data>
<data name="ConsumersS3Instruction" xml:space="preserve">
<value>Cuando Usted agrega Amazon AWS S3 a su portal, puede usarlo para crear copias de seguridad de su portal asegurándose de que no se perderá ningún dato. Úselo también para almacenar datos y contenido estático de su portal.</value>
</data>
<data name="Consumerssecretaccesskey" xml:space="preserve">
<value>Clave secreta de acceso S3</value>
</data>
<data name="ConsumersSelectel" xml:space="preserve">
<value>Selectel Cloud Storage</value>
</data>
<data name="ConsumersSelectelauthPwd" xml:space="preserve">
<value>Contraseña para autorización</value>
</data>
<data name="ConsumersSelectelauthUser" xml:space="preserve">
<value>Nombre de usuario para autorización</value>
</data>
<data name="ConsumersSelectelCloudInstruction" xml:space="preserve">
<value>Cuando Usted agrega el servicio Selectel Cloud Storage a su portal, puede usarlo para crear copias de seguridad de su portal asegurándose de que no se perderá ningún dato. También úselo para almacenar datos y contenido estático de su portal.</value>
</data>
<data name="ConsumersSelectelDescription" xml:space="preserve">
<value>Conecte el servicio Selectel Cloud Storage para crear copia de seguridad y almacenar datos de su portal.</value>
</data>
<data name="ConsumersSelectelprivate_container" xml:space="preserve">
<value>Contenedor privado</value>
</data>
<data name="ConsumersSelectelpublic_container" xml:space="preserve">
<value>Contenedor público</value>
</data>
<data name="ConsumersSkyDrive" xml:space="preserve">
<value>OneDrive</value>
</data>
<data name="Consumersskydriveappkey" xml:space="preserve">
<value>ID de OneDrive</value>
</data>
<data name="Consumersskydriveappsecret" xml:space="preserve">
<value>Clave de OneDrive</value>
</data>
<data name="ConsumersSkyDriveDescription" xml:space="preserve">
<value>Conectar la aplicación para manejar los archivos y carpetas de OneDrive.</value>
</data>
<data name="ConsumersSkyDriveInstruction" xml:space="preserve">
<value>Si Usted añade la aplicación del servicio OneDrive, Usted podrá conectar su cuenta de OneDrive en el módulo 'Documentos'. Este permite cargar y crear unos archivos nuevos en OneDrive, editar unos archivos existentes, copiar y eliminarlos, compartir los archivos y carpetas con los usuarios de portal ONLYOFFICE™.</value>
</data>
<data name="ConsumersSkyDriveKey" xml:space="preserve">
<value>ID de OneDrive</value>
</data>
<data name="ConsumersSkyDriveSecret" xml:space="preserve">
<value>Clave de OneDrive</value>
</data>
<data name="ConsumersSmsc" xml:space="preserve">
<value>Centro SMS</value>
</data>
<data name="ConsumersSmscDescription" xml:space="preserve">
<value>Habilitar la aplicación de autenticación de dos factores vía Centro SMS.</value>
</data>
<data name="ConsumersSmscInstruction" xml:space="preserve">
<value>Al añadir la aplicación del servicio Centro SMS usted podrá habilitar la autenticación de dos factores y recibir un SMS con un código que le permite ingresar al portal ONLYOFFICE. La aplicación Centro SMS es útil como proveedor para paises CIS.</value>
</data>
<data name="ConsumersSmscKey" xml:space="preserve">
<value>Ingreso</value>
</data>
<data name="Consumerssmsclogin" xml:space="preserve">
<value>Ingreso</value>
</data>
<data name="Consumerssmscpsw" xml:space="preserve">
<value>Condensando(s) MD5 de la clave o de las claves en minúsculas</value>
</data>
<data name="ConsumersSmscSecret" xml:space="preserve">
<value>Condensando(s) MD5 de la clave o de las claves en minúsculas</value>
</data>
<data name="ConsumersTwilio" xml:space="preserve">
<value>Twilio</value>
</data>
<data name="ConsumerstwilioAccountSid" xml:space="preserve">
<value>Cuenta Sid</value>
</data>
<data name="ConsumerstwilioAuthToken" xml:space="preserve">
<value>Auth Token</value>
</data>
<data name="ConsumersTwilioDescription" xml:space="preserve">
<value>Conectar Twilio para obtener la posibilidad de realizar llamadas a contactos del módulo CRM directamente de su navegador.</value>
</data>
<data name="ConsumersTwilioInstruction" xml:space="preserve">
<value>Después de añadir Twilio Usted podrá llamar a cualquier contacto del módulo CRM directamente de su navegador.</value>
</data>
<data name="ConsumersTwilioKey" xml:space="preserve">
<value>Cuenta Sid</value>
</data>
<data name="ConsumersTwilioKeyDefault" xml:space="preserve">
<value>Número telefónico de Twilio (se requiere para la autenticación SMS)</value>
</data>
<data name="ConsumersTwilioSecret" xml:space="preserve">
<value>Auth Token</value>
</data>
<data name="Consumerstwiliosender" xml:space="preserve">
<value>Número telefónico de Twilio (se requiere para la autenticación SMS)</value>
</data>
<data name="ConsumersTwitter" xml:space="preserve">
<value>Twitter</value>
</data>
<data name="ConsumerstwitterAccessToken_Default" xml:space="preserve">
<value>Token de acceso</value>
</data>
<data name="ConsumerstwitterAccessTokenSecret_Default" xml:space="preserve">
<value>Token de acceso secreto</value>
</data>
<data name="ConsumersTwitterCrm" xml:space="preserve">
<value>Clave de Twitter en CRM</value>
</data>
<data name="ConsumersTwitterCrmKey" xml:space="preserve">
<value>ID de Twitter </value>
</data>
<data name="ConsumersTwitterCrmSecret" xml:space="preserve">
<value>Clave de Twitter </value>
</data>
<data name="ConsumersTwitterDescription" xml:space="preserve">
<value>Conectar la aplicación para acceder al portal usando la cuenta Twitter y buscar contactos.</value>
</data>
<data name="ConsumersTwitterInstruction" xml:space="preserve">
<value>Si Usted añade la aplicación del servicio Twitter, Usted podrá conectar el acceso al portal ONLYOFFICE™ en la página de su perfil con ayuda de la cuenta Twitter. También Usted podrá enlazar la cuenta Twitter y leer noticias en la página de 'Editar persona/empresa' en el módulo CRM.</value>
</data>
<data name="ConsumersTwitterKey" xml:space="preserve">
<value>ID de Twitter </value>
</data>
<data name="ConsumersTwitterKeyDefault" xml:space="preserve">
<value>Token de acceso</value>
</data>
<data name="ConsumersTwitterSecret" xml:space="preserve">
<value>Clave de Twitter </value>
</data>
<data name="ConsumersTwitterSecretDefault" xml:space="preserve">
<value>Token de acceso secreto</value>
</data>
<data name="Consumersusername" xml:space="preserve">
<value>Nombre de usuario de Rackspace</value>
</data>
<data name="ConsumersWordpress" xml:space="preserve">
<value>WordPress</value>
</data>
<data name="ConsumersWordpressDescription" xml:space="preserve">
<value>Conectar la aplicación para publicar documentos en WordPress.</value>
</data>
<data name="ConsumersWordpressInstruction" xml:space="preserve">
<value>Después de añadir la aplicación WordPress se puede fácilmente publicar documentos en su sitio web WordPress guardando el formateo.</value>
</data>
<data name="ConsumersWordpressKey" xml:space="preserve">
<value>Clave de WordPress</value>
</data>
<data name="ConsumersWordpressSecret" xml:space="preserve">
<value>Clave secreta de WordPress</value>
</data>
<data name="ConsumerswpClientId" xml:space="preserve">
<value>Clave de WordPress</value>
</data>
<data name="ConsumerswpClientSecret" xml:space="preserve">
<value>Secreta de WordPress</value>
</data>
<data name="ConsumersYahoo" xml:space="preserve">
<value>Yahoo</value>
</data>
<data name="ConsumersyahooClientId" xml:space="preserve">
<value>ID de Cliente</value>
</data>
<data name="ConsumersyahooClientSecret" xml:space="preserve">
<value>Secreto del Cliente</value>
</data>
<data name="ConsumersYahooDescription" xml:space="preserve">
<value>Habilitar la aplicación para importar contactos de Yahoo.</value>
</data>
<data name="ConsumersYahooInstruction" xml:space="preserve">
<value>Al añadir la aplicación del servicio Yahoo podrá añadir usuarios al portal ONLYOFFICE de la lista de contactos.</value>
</data>
<data name="ConsumersYahooKey" xml:space="preserve">
<value>ID de Cliente</value>
</data>
<data name="ConsumersYahooSecret" xml:space="preserve">
<value>Secreto del Cliente</value>
</data>
<data name="CouldNotRecoverPasswordForLdapUser" xml:space="preserve">
<value>Operación de recuperación de contraseña está prohibida para un usuario LDAP</value>
</data>
<data name="CouldNotRecoverPasswordForSsoUser" xml:space="preserve">
<value>Operación de recuperación de contraseña está prohibida para un usuario SSO</value>
</data>
<data name="CustomNamingPeopleSchema" xml:space="preserve">
<value>Personalizado</value>
</data>
<data name="ErrorAccessDenied" xml:space="preserve">
<value>No hay permisos para realizar esta acción</value>
</data>
<data name="ErrorAccessRestricted" xml:space="preserve">
<value>El acceso al portal está restringido.</value>
</data>
<data name="ErrorDisabledProfile" xml:space="preserve">
<value>Su perfil está suspendido</value>
</data>
<data name="ErrorEmailAlreadyExists" xml:space="preserve">
<value>{!User} con este correo electrónico ya está registrado</value>
</data>
<data name="ErrorEmailEmpty" xml:space="preserve">
<value>Campo de correo electrónico está vacío</value>
</data>
<data name="ErrorIncorrectUserName" xml:space="preserve">
<value>Nombre o apellido incorrecto</value>
</data>
<data name="ErrorNotAllowedOption" xml:space="preserve">
<value>Su plan de precios no admite esta opción</value>
</data>
<data name="ErrorNotCorrectEmail" xml:space="preserve">
<value>E-mail inválido</value>
</data>
<data name="ErrorPasswordEmpty" xml:space="preserve">
<value>La contraseña está vacía.</value>
</data>
<data name="ErrorPasswordMessage" xml:space="preserve">
<value>Contraseña debe contener</value>
</data>
<data name="ErrorPasswordMessageStart" xml:space="preserve">
<value>La contraseña debe contener</value>
</data>
<data name="ErrorPasswordNoDigits" xml:space="preserve">
<value>dígitos</value>
</data>
<data name="ErrorPasswordNoSpecialSymbols" xml:space="preserve">
<value>caracteres especiales</value>
</data>
<data name="ErrorPasswordNoUpperCase" xml:space="preserve">
<value>letras mayúsculas</value>
</data>
<data name="ErrorUserNotFound" xml:space="preserve">
<value>Usuario no ha sido encontrado</value>
</data>
<data name="ErrorUserNotFoundByEmail" xml:space="preserve">
<value>Imposible encontrar usuario con el correo electrónico "{0}"</value>
</data>
<data name="EuServerRegion" xml:space="preserve">
<value>Región UE(Irlanda) </value>
</data>
<data name="FileSizeMaxExceed" xml:space="preserve">
<value>El tamaño de archivo máximo está superado</value>
</data>
<data name="FileSizeNote" xml:space="preserve">
<value>Nota: el tamaño del archivo no puede superar {1} {0} {2}</value>
</data>
<data name="FileSizePostfix" xml:space="preserve">
<value>bytes,KB,MB,GB,TB</value>
</data>
<data name="LdapSettingsTooManyOperations" xml:space="preserve">
<value>Demasiado muchas operaciones LDAP.</value>
</data>
<data name="MessageYourPasswordSuccessfullySendedToEmail" xml:space="preserve">
<value>La contraseña de usuario ha sido enviada al e-mail {0}</value>
</data>
<data name="MobilePhoneMustErase" xml:space="preserve">
<value>Para cambiar el número, usted necesita borrar su número de teléfono actual </value>
</data>
<data name="OrgServerRegion" xml:space="preserve">
<value>ORG Región</value>
</data>
<data name="PersonalFreeSpaceException" xml:space="preserve">
<value>Cuota de espacio en disco excedida </value>
</data>
<data name="ProfileRemoved" xml:space="preserve">
<value>Perfil ha sido eliminado</value>
</data>
<data name="ReassignDataRemoveUserError" xml:space="preserve">
<value>El proceso de reasignación de datos para {0} no se ha completado.</value>
</data>
<data name="SgServerRegion" xml:space="preserve">
<value>Asia Pacífico (Singapur)</value>
</data>
<data name="SmsAuthenticationMessageError" xml:space="preserve">
<value>Código incorrecto</value>
</data>
<data name="SmsAuthenticationMessageToUser" xml:space="preserve">
<value>Código: {0}</value>
</data>
<data name="SmsAuthenticationTimeout" xml:space="preserve">
<value>El tiempo de utilizar el código ha expirado. Por favor, solicite un mensaje nuevo</value>
</data>
<data name="SmsNotAvailable" xml:space="preserve">
<value>Los ajustes SSO no están disponibles</value>
</data>
<data name="SmsTooMuchError" xml:space="preserve">
<value>Usted ha enviado demasiados mensajes. Por favor, intente de nuevo más tarde.</value>
</data>
<data name="SuccessfullySaveSettingsMessage" xml:space="preserve">
<value>Ajustes se han actualizado con éxito</value>
</data>
<data name="SuccessfullySentNotificationDeleteUserInfoMessage" xml:space="preserve">
<value>Las instrucciones para borrar su perfil se han enviado al correo electrónico {0} </value>
</data>
<data name="TfaAppAuthMessageError" xml:space="preserve">
<value>Código incorrecto</value>
</data>
<data name="TfaAppNotAvailable" xml:space="preserve">
<value>Ajustes de aplicación para autenticación no están disponibles</value>
</data>
<data name="TfaTooMuchError" xml:space="preserve">
<value>Usted ha enviado demasiados mensajes de texto. Por favor, intente de nuevo más tarde.</value>
</data>
<data name="UsServerRegion" xml:space="preserve">
<value>Región EE.UU. Oeste (Oregón)</value>
</data>
<data name="WhatsNewSubscriptionName" xml:space="preserve">
<value>Qué hay de nuevo</value>
</data>
</root>

View File

@ -0,0 +1,654 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<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="ActivateMobilePhoneEmptyPhoneNumber" xml:space="preserve">
<value>Entrez le numéro de téléphone mobile</value>
</data>
<data name="ActivateTfaAppEmptyCode" xml:space="preserve">
<value>Le champ Code de validation ne peut pas être vide</value>
</data>
<data name="AdministratorNotifySenderTypeName" xml:space="preserve">
<value>Notifications d'administrateurs</value>
</data>
<data name="Consumersacesskey" xml:space="preserve">
<value>S3 accesskey</value>
</data>
<data name="ConsumersapiKey" xml:space="preserve">
<value>Clé API Rackspace </value>
</data>
<data name="ConsumersauthPwd" xml:space="preserve">
<value>authPwd Selectel </value>
</data>
<data name="ConsumersauthUser" xml:space="preserve">
<value>authUser Selectel</value>
</data>
<data name="ConsumersBitly" xml:space="preserve">
<value>Bitly</value>
</data>
<data name="ConsumersbitlyClientId" xml:space="preserve">
<value>Nom d'utilisateur</value>
</data>
<data name="ConsumersbitlyClientSecret" xml:space="preserve">
<value>Clé de l'API</value>
</data>
<data name="ConsumersBitlyDescription" xml:space="preserve">
<value>Se connecter au service Bitly pour raccourcir les liens d'invitation vers le portail et les liens d'accès aux fichiers du module Documents.</value>
</data>
<data name="ConsumersBitlyInstruction" xml:space="preserve">
<value>Si vous ajoutez le service Bitly, vous pouvez inviter de nouveaux utilisateurs au portail ONLYOFFICE™ en utilisant les liens raccourcis. En plus, ces liens peuvent être utilisés pour les documents disponibles dans le module Documents et qui ont été partagés avec des utilisateurs externes.</value>
</data>
<data name="ConsumersBitlyKey" xml:space="preserve">
<value>Nom d'utilisateur</value>
</data>
<data name="ConsumersBitlySecret" xml:space="preserve">
<value>Clé de l'API</value>
</data>
<data name="ConsumersBox" xml:space="preserve">
<value>Box</value>
</data>
<data name="ConsumersboxClientId" xml:space="preserve">
<value>ID de Box</value>
</data>
<data name="ConsumersboxClientSecret" xml:space="preserve">
<value>clé de Box</value>
</data>
<data name="ConsumersBoxDescription" xml:space="preserve">
<value>Connecter l'application pour gérer les fichiers et dossiers Box.</value>
</data>
<data name="ConsumersBoxInstruction" xml:space="preserve">
<value>Si vous ajoutez une application du service Box, vous pouvez connecter votre compte Box au module Documents. Cela vous permet de télécharger et créer de nouveaux fichiers dans Box, modifier ceux qui existent déjà, copier et supprimer, partager des fichiers et des dossiers avec les utilisateurs du portail ONLYOFFICE™.</value>
</data>
<data name="ConsumersBoxKey" xml:space="preserve">
<value>ID de Box</value>
</data>
<data name="ConsumersBoxSecret" xml:space="preserve">
<value>clé de Box</value>
</data>
<data name="ConsumersClickatell" xml:space="preserve">
<value>Clickatell</value>
</data>
<data name="ConsumersclickatellapiKey" xml:space="preserve">
<value>Clé de l'API</value>
</data>
<data name="ConsumersClickatellDescription" xml:space="preserve">
<value>Activer l'authentification à deux facteurs pour cette application via Clickatell.</value>
</data>
<data name="ConsumersClickatellInstruction" xml:space="preserve">
<value>En ajoutant l'application du service Clickatell, vous serez en mesure d'activer l'authentification à deux facteurs et de recevoir un SMS avec un code permettant à l'utilisateur d'entrer dans le portail ONLYOFFICE.</value>
</data>
<data name="ConsumersClickatellSecret" xml:space="preserve">
<value>Clé de l'API</value>
</data>
<data name="ConsumersDocuSign" xml:space="preserve">
<value>DocuSign</value>
</data>
<data name="ConsumersdocuSignClientId" xml:space="preserve">
<value>Clé de DocuSign</value>
</data>
<data name="ConsumersdocuSignClientSecret" xml:space="preserve">
<value>Clé secret DocuSign</value>
</data>
<data name="ConsumersDocuSignDescription" xml:space="preserve">
<value>Se connecter à l'application pour ajouter une signature électronique DocuSign aux documents.</value>
</data>
<data name="ConsumersdocuSignHost" xml:space="preserve">
<value>Point de terminaison d'authentification DocuSign</value>
</data>
<data name="ConsumersDocuSignInstruction" xml:space="preserve">
<value>Si vous ajoutez une application du service DocuSign vous pouvez signer des fichiers à partir du module Documents. Cela permet denvoyer un fichier pour la signature électronique aux employés du portail ONLYOFFICE™ via le service DocuSugn. Le fichier signé sera sauvegardé dans le module Documents de ONLYOFFICE™.</value>
</data>
<data name="ConsumersDocuSignKey" xml:space="preserve">
<value>Clé de DocuSign</value>
</data>
<data name="ConsumersDocuSignKeyDefault" xml:space="preserve">
<value>Point de terminaison d'authentification DocuSign</value>
</data>
<data name="ConsumersDocuSignSecret" xml:space="preserve">
<value>Clé secret DocuSign</value>
</data>
<data name="ConsumersDropBox" xml:space="preserve">
<value>Dropbox</value>
</data>
<data name="ConsumersdropboxClientId" xml:space="preserve">
<value>ID de Dropbox</value>
</data>
<data name="ConsumersdropboxClientSecret" xml:space="preserve">
<value>Clé de Dropbox</value>
</data>
<data name="ConsumersDropBoxDescription" xml:space="preserve">
<value>Connecter l'application pour gérer les fichiers et dossiers Dropbox.</value>
</data>
<data name="ConsumersDropBoxInstruction" xml:space="preserve">
<value>Si vous ajoutez une application du service Dropbox, vous pouvez connecter votre compte Dropbox au module Documents. Cela permet de télécharger et créer de nouveaux fichiers dans Dropbox, modifier ceux qui existent déjà, copier et supprimer, partager des fichiers et des dossiers avec les utilisateurs du portail ONLYOFFICE™.</value>
</data>
<data name="ConsumersDropBoxKey" xml:space="preserve">
<value>ID de Dropbox</value>
</data>
<data name="ConsumersDropBoxSecret" xml:space="preserve">
<value>Clé de Dropbox</value>
</data>
<data name="ConsumersEasyBib" xml:space="preserve">
<value>EasyBib</value>
</data>
<data name="ConsumerseasyBibappkey" xml:space="preserve">
<value>Clé de l'application</value>
</data>
<data name="ConsumersEasyBibDescription" xml:space="preserve">
<value>Connectez l'application EasyBib pour créer des listes bibliographiques.</value>
</data>
<data name="ConsumersEasyBibInstruction" xml:space="preserve">
<value>En ajoutant l'application EasyBib, vous pourrez facilement créer des listes bibliographiques dans vos documents.</value>
</data>
<data name="ConsumersEasyBibKey" xml:space="preserve">
<value>Clé de l'application</value>
</data>
<data name="ConsumersEasyBibSecret" xml:space="preserve">
<value>Clé de l'application</value>
</data>
<data name="ConsumersFacebook" xml:space="preserve">
<value>Facebook</value>
</data>
<data name="ConsumersfacebookAccessToken_Default" xml:space="preserve">
<value>Jeton d'utilisateur</value>
</data>
<data name="ConsumersfacebookClientId" xml:space="preserve">
<value>ID de Facebook</value>
</data>
<data name="ConsumersfacebookClientSecret" xml:space="preserve">
<value>Clé de Facebook</value>
</data>
<data name="ConsumersFacebookCRM" xml:space="preserve">
<value>Clé de Facebook dans CRM</value>
</data>
<data name="ConsumersFacebookCRMSecret" xml:space="preserve">
<value>Jeton d'utilisateur</value>
</data>
<data name="ConsumersFacebookDescription" xml:space="preserve">
<value>Connecter l'application pour accèder au portail en utilisant le compte Facebook et la recherche des contacts.</value>
</data>
<data name="ConsumersFacebookInstruction" xml:space="preserve">
<value>Si vous ajoutez une application du service Facebook, vous pouvez connecter votre compte Facebook sur votre page de profil en vue de l'utiliser pour accéder au portail ONLYOFFICE™. Cela vous permet également trouver un compte Facebook dun contact dans le module CRM et le lier sur la page « Modifier personne/entreprise ».</value>
</data>
<data name="ConsumersFacebookKey" xml:space="preserve">
<value>ID de Facebook</value>
</data>
<data name="ConsumersFacebookSecret" xml:space="preserve">
<value>Clé de Facebook</value>
</data>
<data name="ConsumersFacebookSecretDefalt" xml:space="preserve">
<value>Jeton d'utilisateur</value>
</data>
<data name="ConsumersFirebase" xml:space="preserve">
<value>Firebase</value>
</data>
<data name="Consumersfirebase_apiKey" xml:space="preserve">
<value>Clé de l'API Web</value>
</data>
<data name="Consumersfirebase_authorization" xml:space="preserve">
<value>Clé du serveur</value>
</data>
<data name="Consumersfirebase_messagingSenderId" xml:space="preserve">
<value>Identifiant de l'expéditeur</value>
</data>
<data name="Consumersfirebase_projectId" xml:space="preserve">
<value>Identifiant du projet</value>
</data>
<data name="ConsumersFirebaseDescription" xml:space="preserve">
<value>Connectez le service Firebase Cloud Messaging pour recevoir des notifications sur les messages qui vous sont envoyés.</value>
</data>
<data name="ConsumersFirebaseInstruction" xml:space="preserve">
<value>Si vous vous connectez à Firebase Cloud Messaging, vous serez en mesure de recevoir des notifications sur les messages qui vous sont envoyés même lorsque vous n'êtes pas connecté.</value>
</data>
<data name="ConsumersFirebaseKey" xml:space="preserve">
<value>Clé de l'API Web</value>
</data>
<data name="ConsumersFirebaseKeyDefault" xml:space="preserve">
<value>Identifiant de l'expéditeur</value>
</data>
<data name="ConsumersFirebaseSecret" xml:space="preserve">
<value>Identifiant du projet</value>
</data>
<data name="ConsumersFirebaseSecretDefault" xml:space="preserve">
<value>Clé du serveur</value>
</data>
<data name="ConsumersGoogle" xml:space="preserve">
<value>Google</value>
</data>
<data name="ConsumersgoogleClientId" xml:space="preserve">
<value>ID de Google</value>
</data>
<data name="ConsumersgoogleClientSecret" xml:space="preserve">
<value>Clé de Google</value>
</data>
<data name="ConsumersGoogleCloud" xml:space="preserve">
<value>Google Cloud Storage</value>
</data>
<data name="ConsumersGoogleCloudbucket" xml:space="preserve">
<value>Seau</value>
</data>
<data name="ConsumersGoogleCloudDescription" xml:space="preserve">
<value>Connecter service Google Cloud Storage pour créer des copies de sauvegarde et stocker des données de votre portail. </value>
</data>
<data name="ConsumersGoogleCloudInstruction" xml:space="preserve">
<value>Quand vous ajoutez le service Google Cloud à votre portail, vous pourrez l'utiliser pour créer des copies de sauvegarde de votre portail en vous assurant qu'aucune donnée ne sera jamais perdue. Utilisez-le aussi pour stocker les données et le contenu statique de votre portail.</value>
</data>
<data name="ConsumersGoogleCloudjsonPath" xml:space="preserve">
<value>Google Cloud Storage jsonPath</value>
</data>
<data name="ConsumersGoogleDescription" xml:space="preserve">
<value>Se connecter au projet pour accéder au portail en utilisant le compte Google et pour gérer les fichiers et les dossiers Google Drive.</value>
</data>
<data name="ConsumersGoogleInstruction" xml:space="preserve">
<value>En ajoutant un projet du service Google, vous pourrez connecter votre compte Google sur la page de votre profil en vue de l'utiliser pour l'accès au portail ONLYOFFICE™ et connecter votre compte Google Drive au module Documents. Cela vous permettra de télécharger et de créer de nouveaux fichiers dans Google Drive, modifier ceux qui existent déjà, copier et supprimer, partager des fichiers et des dossiers avec les utilisateurs du portail ONLYOFFICE™.</value>
</data>
<data name="ConsumersGoogleKey" xml:space="preserve">
<value>ID de Google</value>
</data>
<data name="ConsumersGoogleSecret" xml:space="preserve">
<value>Clé de Google</value>
</data>
<data name="ConsumersLinkedIn" xml:space="preserve">
<value>LinkedIn</value>
</data>
<data name="ConsumersLinkedInDescription" xml:space="preserve">
<value>Se connecter à l'application pour accéder au portail en utilisant le compte LinkedIn.</value>
</data>
<data name="ConsumersLinkedInInstruction" xml:space="preserve">
<value>Si vous ajoutez une application du service LinkedIn, vous pouvez connecter votre compte LinkedIn sur votre page de profil en vue de l'utiliser pour la connexion au portail ONLYOFFICE™.</value>
</data>
<data name="ConsumersLinkedInKey" xml:space="preserve">
<value>ID de LinkedIn</value>
</data>
<data name="ConsumersLinkedInSecret" xml:space="preserve">
<value>Clé de LinkedIn</value>
</data>
<data name="ConsumersRackspace" xml:space="preserve">
<value>Rackspace Cloud Storage</value>
</data>
<data name="ConsumersRackspaceDescription" xml:space="preserve">
<value>Connecter service Rackspace Cloud Storage pour créer des copies de sauvegarde et stocker des données de votre portail. </value>
</data>
<data name="ConsumersRackspaceInstruction" xml:space="preserve">
<value>Quand vous ajoutez le service Rackspace à votre portail, vous pourrez l'utiliser pour créer des copies de sauvegarde de votre portail en vous assurant qu'aucune donnée ne sera jamais perdue. Utilisez-le aussi pour stocker les données et le contenu statique de votre portail.</value>
</data>
<data name="ConsumersRackspaceprivate_container" xml:space="preserve">
<value>Conteneur Privé</value>
</data>
<data name="ConsumersRackspacepublic_container" xml:space="preserve">
<value>Conteneur public</value>
</data>
<data name="ConsumersRackspaceregion" xml:space="preserve">
<value>Région</value>
</data>
<data name="ConsumersS3" xml:space="preserve">
<value>Amazon AWS S3</value>
</data>
<data name="ConsumersS3Description" xml:space="preserve">
<value>Connecter Amazon AWS S3 pour créer des copies de sauvegarde et stocker des données de votre portail.</value>
</data>
<data name="ConsumersS3Instruction" xml:space="preserve">
<value>Quand vous ajoutez le service Amazon AWS S3 à votre portail, vous pourrez l'utiliser pour créer des copies de sauvegarde de votre portail en vous assurant qu'aucune donnée ne sera jamais perdue. Utilisez-le aussi pour stocker les données et le contenu statique de votre portail.</value>
</data>
<data name="Consumerssecretaccesskey" xml:space="preserve">
<value>Clé d'accès secrète S3</value>
</data>
<data name="ConsumersSelectel" xml:space="preserve">
<value>Selectel Cloud Storage</value>
</data>
<data name="ConsumersSelectelauthPwd" xml:space="preserve">
<value>Mot de passe</value>
</data>
<data name="ConsumersSelectelauthUser" xml:space="preserve">
<value>Authentification d'utilisateur</value>
</data>
<data name="ConsumersSelectelCloudInstruction" xml:space="preserve">
<value>Quand vous ajoutez le service Selectel à votre portail, vous pourrez l'utiliser pour créer des copies de sauvegarde de votre portail en vous assurant qu'aucune donnée ne sera jamais perdue. Utilisez-le aussi pour stocker les données et le contenu statique de votre portail.</value>
</data>
<data name="ConsumersSelectelDescription" xml:space="preserve">
<value>Connecter le service Selectel Cloud Storage pour créer des copies de sauvegarde et stocker des données de votre portail.</value>
</data>
<data name="ConsumersSelectelprivate_container" xml:space="preserve">
<value>Conteneur Privé</value>
</data>
<data name="ConsumersSelectelpublic_container" xml:space="preserve">
<value>Conteneur public</value>
</data>
<data name="ConsumersSkyDrive" xml:space="preserve">
<value>OneDrive</value>
</data>
<data name="Consumersskydriveappkey" xml:space="preserve">
<value>ID de OneDrive</value>
</data>
<data name="Consumersskydriveappsecret" xml:space="preserve">
<value>Clé de OneDrive</value>
</data>
<data name="ConsumersSkyDriveDescription" xml:space="preserve">
<value>Connecter l'application pour gérer les fichiers et dossiers OneDrive.</value>
</data>
<data name="ConsumersSkyDriveInstruction" xml:space="preserve">
<value>Si vous ajoutez une application du service OneDrive, vous pouvez connecter votre compte de OneDrive au module Documents. Cela permet de télécharger et créer de nouveaux fichiers dans OneDrive, modifier ceux qui existent déjà, copier et supprimer, partager des fichiers et des dossiers avec les utilisateurs du portail ONLYOFFICE™.</value>
</data>
<data name="ConsumersSkyDriveKey" xml:space="preserve">
<value>ID de OneDrive</value>
</data>
<data name="ConsumersSkyDriveSecret" xml:space="preserve">
<value>Clé de OneDrive</value>
</data>
<data name="ConsumersSmsc" xml:space="preserve">
<value>Centre SMS</value>
</data>
<data name="ConsumersSmscDescription" xml:space="preserve">
<value>Activer l'authentification à deux facteurs pour cette application via SMS Center.</value>
</data>
<data name="ConsumersSmscInstruction" xml:space="preserve">
<value>En ajoutant l'application de service SMS Center, vous pourrez activer l'authentification à deux facteurs et recevoir un SMS avec un code permettant à l'utilisateur d'accéder au portail ONLYOFFICE. L'application SMS Center est utile en tant que fournisseur pour les pays de la CEI.</value>
</data>
<data name="ConsumersSmscKey" xml:space="preserve">
<value>Login</value>
</data>
<data name="Consumerssmsclogin" xml:space="preserve">
<value>Login</value>
</data>
<data name="Consumerssmscpsw" xml:space="preserve">
<value>Mot de passe ou hash MD5 du mot de passe en minuscules</value>
</data>
<data name="ConsumersSmscSecret" xml:space="preserve">
<value>Mot de passe ou hash MD5 du mot de passe en minuscules</value>
</data>
<data name="ConsumersTwilio" xml:space="preserve">
<value>Twilio</value>
</data>
<data name="ConsumerstwilioAccountSid" xml:space="preserve">
<value>Compte SID</value>
</data>
<data name="ConsumerstwilioAuthToken" xml:space="preserve">
<value>Jeton dauthentification</value>
</data>
<data name="ConsumersTwilioDescription" xml:space="preserve">
<value>Ajoutez Twilio pour appeler les contacts CRM depuis votre navigateur.</value>
</data>
<data name="ConsumersTwilioInstruction" xml:space="preserve">
<value>Après avoir ajouté Twilio, vous pouvez appeler tout contaсt CRM depuis le navigateur.</value>
</data>
<data name="ConsumersTwilioKey" xml:space="preserve">
<value>Compte SID</value>
</data>
<data name="ConsumersTwilioKeyDefault" xml:space="preserve">
<value>Numéro de téléphone de Twilio (requis pour l'autorisation SMS)</value>
</data>
<data name="ConsumersTwilioSecret" xml:space="preserve">
<value>Jeton dauthentification</value>
</data>
<data name="Consumerstwiliosender" xml:space="preserve">
<value>Numéro de téléphone de Twilio (requis pour l'autorisation SMS)</value>
</data>
<data name="ConsumersTwitter" xml:space="preserve">
<value>Twitter</value>
</data>
<data name="ConsumerstwitterAccessToken_Default" xml:space="preserve">
<value>Jeton d'accès</value>
</data>
<data name="ConsumerstwitterAccessTokenSecret_Default" xml:space="preserve">
<value>Jeton d'accès secret</value>
</data>
<data name="ConsumersTwitterCrm" xml:space="preserve">
<value>Clé de Twitter dans CRM</value>
</data>
<data name="ConsumersTwitterCrmKey" xml:space="preserve">
<value>ID sur Twitter</value>
</data>
<data name="ConsumersTwitterCrmSecret" xml:space="preserve">
<value>Clé de Twitter</value>
</data>
<data name="ConsumersTwitterDescription" xml:space="preserve">
<value>Se connecter à l'application pour accéder au portail en utilisant le compte Twitter et rechercher des contacts.</value>
</data>
<data name="ConsumersTwitterInstruction" xml:space="preserve">
<value>Si vous ajoutez une application du service Twitter, vous pouvez connecter votre compte Twitter sur la page de votre profil en vue de l'utiliser pour la connexion au portail ONLYOFFICE™. Cela vous permet également de trouver un compte Twitter dune personne dans le module CRM et le lier sur la page « Modifier personne/entreprise », et ensuite afficher le fil d'actualités sur Twitter.</value>
</data>
<data name="ConsumersTwitterKey" xml:space="preserve">
<value>ID de Twitter</value>
</data>
<data name="ConsumersTwitterKeyDefault" xml:space="preserve">
<value>Jeton d'accès</value>
</data>
<data name="ConsumersTwitterSecret" xml:space="preserve">
<value>Clé de Twitter</value>
</data>
<data name="ConsumersTwitterSecretDefault" xml:space="preserve">
<value>Jeton d'accès secret</value>
</data>
<data name="Consumersusername" xml:space="preserve">
<value>Rackspace nom d'utilisateur</value>
</data>
<data name="ConsumersWordpress" xml:space="preserve">
<value>WordPress</value>
</data>
<data name="ConsumersWordpressDescription" xml:space="preserve">
<value>Connectez l'application pour publier des documents dans WordPress.</value>
</data>
<data name="ConsumersWordpressInstruction" xml:space="preserve">
<value>En rajoutant l'application WordPress vous pouvez facilement publier les documents sur votre site WordPress, en sauvegardant leur mise en forme.</value>
</data>
<data name="ConsumersWordpressKey" xml:space="preserve">
<value>Clé WordPress</value>
</data>
<data name="ConsumersWordpressSecret" xml:space="preserve">
<value>Clé secrète WordPress</value>
</data>
<data name="ConsumerswpClientId" xml:space="preserve">
<value>Clé WordPress</value>
</data>
<data name="ConsumerswpClientSecret" xml:space="preserve">
<value>Clé secrète WordPress</value>
</data>
<data name="ConsumersYahoo" xml:space="preserve">
<value>Yahoo</value>
</data>
<data name="ConsumersyahooClientId" xml:space="preserve">
<value>Identifiant du client</value>
</data>
<data name="ConsumersyahooClientSecret" xml:space="preserve">
<value>Clé secrète du client</value>
</data>
<data name="ConsumersYahooDescription" xml:space="preserve">
<value>Activer l'importation de contacts Yahoo pour cette application.</value>
</data>
<data name="ConsumersYahooInstruction" xml:space="preserve">
<value>En ajoutant l'application de service Yahoo, vous pourrez ajouter les nouveaux utilisateurs du portail ONLYOFFICE à partir de la liste de contacts.</value>
</data>
<data name="ConsumersYahooKey" xml:space="preserve">
<value>Identifiant du client</value>
</data>
<data name="ConsumersYahooSecret" xml:space="preserve">
<value>Clé secrète du client</value>
</data>
<data name="CouldNotRecoverPasswordForLdapUser" xml:space="preserve">
<value>La fonction de récupération du mot de passe est interdite à l'utilisateur LDAP</value>
</data>
<data name="CouldNotRecoverPasswordForSsoUser" xml:space="preserve">
<value>L'opération de récupération de mot de passe est interdite pour un utilisateur SSO</value>
</data>
<data name="CustomNamingPeopleSchema" xml:space="preserve">
<value>Personnel</value>
</data>
<data name="ErrorAccessDenied" xml:space="preserve">
<value>Pas d'autorisation pour effectuer cette action</value>
</data>
<data name="ErrorAccessRestricted" xml:space="preserve">
<value>L'accès au portail est limité</value>
</data>
<data name="ErrorDisabledProfile" xml:space="preserve">
<value>Votre profil est suspendu</value>
</data>
<data name="ErrorEmailAlreadyExists" xml:space="preserve">
<value>{!User} avec la même adresse e-mail est déjà inscrit</value>
</data>
<data name="ErrorEmailEmpty" xml:space="preserve">
<value>Le champ Email est vide</value>
</data>
<data name="ErrorIncorrectUserName" xml:space="preserve">
<value>Nom ou prénom invalide</value>
</data>
<data name="ErrorNotAllowedOption" xml:space="preserve">
<value>Votre plan de paiement ne prend pas en charge cette option</value>
</data>
<data name="ErrorNotCorrectEmail" xml:space="preserve">
<value>Adresse email non valide</value>
</data>
<data name="ErrorPasswordEmpty" xml:space="preserve">
<value>Le champ "Mot de passe" est vide.</value>
</data>
<data name="ErrorPasswordMessage" xml:space="preserve">
<value>Le mot de passe doit contenir</value>
</data>
<data name="ErrorPasswordMessageStart" xml:space="preserve">
<value>Le mot de passe doit comporter </value>
</data>
<data name="ErrorPasswordNoDigits" xml:space="preserve">
<value>chiffres</value>
</data>
<data name="ErrorPasswordNoSpecialSymbols" xml:space="preserve">
<value>symboles spéciaux</value>
</data>
<data name="ErrorPasswordNoUpperCase" xml:space="preserve">
<value>lettres majuscules</value>
</data>
<data name="ErrorUserNotFound" xml:space="preserve">
<value>Il est impossible de trouver l'utilisateur</value>
</data>
<data name="ErrorUserNotFoundByEmail" xml:space="preserve">
<value>L'utilisateur avec l'adresse email "{0}" ne peut pas être trouvé</value>
</data>
<data name="EuServerRegion" xml:space="preserve">
<value>Région EU (Irlande)</value>
</data>
<data name="FileSizeMaxExceed" xml:space="preserve">
<value>La taille de fichier maximale est dépassée</value>
</data>
<data name="FileSizeNote" xml:space="preserve">
<value>Remarque: la taille du fichier ne doit pas dépasser {1}{0}{2}</value>
</data>
<data name="FileSizePostfix" xml:space="preserve">
<value>octets,ko,Mo,Go,To
</value>
</data>
<data name="LdapSettingsTooManyOperations" xml:space="preserve">
<value>Trop d'opérations LDAP.</value>
</data>
<data name="MessageYourPasswordSuccessfullySendedToEmail" xml:space="preserve">
<value>Les instructions de changement de mot de passe ont été envoyées à {0}</value>
</data>
<data name="MobilePhoneMustErase" xml:space="preserve">
<value>Pour changer le numéro; vous avez besoin de supprimer le numéro de téléphone actuel.</value>
</data>
<data name="OrgServerRegion" xml:space="preserve">
<value>ORG Région</value>
</data>
<data name="PersonalFreeSpaceException" xml:space="preserve">
<value>Quota d'espace disque est dépassé</value>
</data>
<data name="ProfileRemoved" xml:space="preserve">
<value>Le profil a été supprimé</value>
</data>
<data name="ReassignDataRemoveUserError" xml:space="preserve">
<value>Le processus de réaffectation des données pour {0} n'est pas terminé.</value>
</data>
<data name="SgServerRegion" xml:space="preserve">
<value>Asie-Pacifique (Singapour)</value>
</data>
<data name="SmsAuthenticationMessageError" xml:space="preserve">
<value>Code incorrect</value>
</data>
<data name="SmsAuthenticationMessageToUser" xml:space="preserve">
<value>Code : {0}</value>
</data>
<data name="SmsAuthenticationTimeout" xml:space="preserve">
<value>Le temps d'utiliser le code est écoulé. S'il vous plaît, demandez un nouveau message.</value>
</data>
<data name="SmsNotAvailable" xml:space="preserve">
<value>Les paramètres SMS ne sont pas accessibles</value>
</data>
<data name="SmsTooMuchError" xml:space="preserve">
<value>Vous avez envoyé trop de messages. Essayez plus tard.</value>
</data>
<data name="SuccessfullySaveSettingsMessage" xml:space="preserve">
<value>Les paramètres ont été actualisés avec succès</value>
</data>
<data name="SuccessfullySentNotificationDeleteUserInfoMessage" xml:space="preserve">
<value>Instructions sur la suppression de votre profil ont été envoyées à l'adresse e-mail {0}</value>
</data>
<data name="TfaAppAuthMessageError" xml:space="preserve">
<value>Code incorrect</value>
</data>
<data name="TfaAppNotAvailable" xml:space="preserve">
<value>Paramètres d'application TFA ne sont pas disponibles</value>
</data>
<data name="TfaTooMuchError" xml:space="preserve">
<value>Vous avez envoyé trop de messages texte. Veuillez réessayer plus tard.</value>
</data>
<data name="UsServerRegion" xml:space="preserve">
<value>Région US West (Oregon)</value>
</data>
<data name="WhatsNewSubscriptionName" xml:space="preserve">
<value>Quoi de neuf</value>
</data>
</root>

View File

@ -0,0 +1,654 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<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="ActivateMobilePhoneEmptyPhoneNumber" xml:space="preserve">
<value>Inserisci numero di cellulare</value>
</data>
<data name="ActivateTfaAppEmptyCode" xml:space="preserve">
<value>Il campo Valida codice non può essere vuoto</value>
</data>
<data name="AdministratorNotifySenderTypeName" xml:space="preserve">
<value>Notifiche di amministratore</value>
</data>
<data name="Consumersacesskey" xml:space="preserve">
<value>S3 accesskey</value>
</data>
<data name="ConsumersapiKey" xml:space="preserve">
<value>Chiave api Rackspace</value>
</data>
<data name="ConsumersauthPwd" xml:space="preserve">
<value>authPwd Selectel </value>
</data>
<data name="ConsumersauthUser" xml:space="preserve">
<value>authUser Selectel</value>
</data>
<data name="ConsumersBitly" xml:space="preserve">
<value>Bitly</value>
</data>
<data name="ConsumersbitlyClientId" xml:space="preserve">
<value>Login</value>
</data>
<data name="ConsumersbitlyClientSecret" xml:space="preserve">
<value>apiKey</value>
</data>
<data name="ConsumersBitlyDescription" xml:space="preserve">
<value>Collega il servizio Bitly per abbreviare i collegamenti dell'invito al portale e i collegamenti condivisi nel modulo Documenti.</value>
</data>
<data name="ConsumersBitlyInstruction" xml:space="preserve">
<value>Se aggiungi il servizio Bitly otterrai link abbreviati per invitare nuovi utenti nel portale ONLYOFFICE® e link abbreviati ai documenti nel modulo Documenti che sono stati condivisi con utenti esterni</value>
</data>
<data name="ConsumersBitlyKey" xml:space="preserve">
<value>Login</value>
</data>
<data name="ConsumersBitlySecret" xml:space="preserve">
<value>apiKey</value>
</data>
<data name="ConsumersBox" xml:space="preserve">
<value>Box</value>
</data>
<data name="ConsumersboxClientId" xml:space="preserve">
<value>ID Box</value>
</data>
<data name="ConsumersboxClientSecret" xml:space="preserve">
<value>Chiave Box</value>
</data>
<data name="ConsumersBoxDescription" xml:space="preserve">
<value>Collega l'applicazione per gestire Box Files e cartelle</value>
</data>
<data name="ConsumersBoxInstruction" xml:space="preserve">
<value>Se aggiungi un'applicazione del servizio Box sarai in grado di collegare il tuo account Box al modulo Documenti. Ciò ti consentirà di caricare e creare nuovi documenti su Box, modificare quelli esistenti, copiarli e/o cancellarli. condividere i file e cartelle con gli utenti del portale ONLYOFFICE®</value>
</data>
<data name="ConsumersBoxKey" xml:space="preserve">
<value>ID Box</value>
</data>
<data name="ConsumersBoxSecret" xml:space="preserve">
<value>Chiave Box</value>
</data>
<data name="ConsumersClickatell" xml:space="preserve">
<value>Clickatell</value>
</data>
<data name="ConsumersclickatellapiKey" xml:space="preserve">
<value>apiKey</value>
</data>
<data name="ConsumersClickatellDescription" xml:space="preserve">
<value>Collegare l'applicazione per abilitare l'autenticazione a due fattori tramite Clickatell.</value>
</data>
<data name="ConsumersClickatellInstruction" xml:space="preserve">
<value>Aggiungendo l'applicazione per il servizio Clickatell è possibile attivare l'autorizzazione a due fattori per ricevere SMS con il codice di accesso dell'utente sul portale ONLYOFFICE®.</value>
</data>
<data name="ConsumersClickatellSecret" xml:space="preserve">
<value>apiKey</value>
</data>
<data name="ConsumersDocuSign" xml:space="preserve">
<value>DocuSign</value>
</data>
<data name="ConsumersdocuSignClientId" xml:space="preserve">
<value>Chiave DocuSign</value>
</data>
<data name="ConsumersdocuSignClientSecret" xml:space="preserve">
<value>DocuSign Secret</value>
</data>
<data name="ConsumersDocuSignDescription" xml:space="preserve">
<value>Collega l'applicazione per aggiungere la firma elettronica DocuSign ai documenti.</value>
</data>
<data name="ConsumersdocuSignHost" xml:space="preserve">
<value>autenticazione endpoint DocuSign</value>
</data>
<data name="ConsumersDocuSignInstruction" xml:space="preserve">
<value>Se aggiungi un'applicazione del servizio DocuSign sarai in grado di firmare i files dal modulo documenti. Ciò ti consentirà di inviare un file per la firma elettronica agli impiegati del portale ONLYOFFICE® tramite il servizio DocuSign. Il file firmato sarà salvato nel modulo Documenti di ONLYOFFICE®</value>
</data>
<data name="ConsumersDocuSignKey" xml:space="preserve">
<value>Chiave DocuSign</value>
</data>
<data name="ConsumersDocuSignKeyDefault" xml:space="preserve">
<value>autenticazione endpoint DocuSign</value>
</data>
<data name="ConsumersDocuSignSecret" xml:space="preserve">
<value>DocuSign Secret</value>
</data>
<data name="ConsumersDropBox" xml:space="preserve">
<value>Dropbox</value>
</data>
<data name="ConsumersdropboxClientId" xml:space="preserve">
<value>ID di Dropbox</value>
</data>
<data name="ConsumersdropboxClientSecret" xml:space="preserve">
<value>Chiave di Dropbox</value>
</data>
<data name="ConsumersDropBoxDescription" xml:space="preserve">
<value>Connetti l'applicazione per gestire file e cartelle di Dropbox</value>
</data>
<data name="ConsumersDropBoxInstruction" xml:space="preserve">
<value>Se aggiungi un'applicazione del servizio Dropbox sarai in grado di collegare il tuo account Dropbox al modulo Documenti. Ciò ti consentirà di caricare e creare nuovi documenti su Box, modificare quelli esistenti, copiarli e/o cancellarli. condividere i file e cartelle con gli utenti del portale ONLYOFFICE®</value>
</data>
<data name="ConsumersDropBoxKey" xml:space="preserve">
<value>ID di Dropbox</value>
</data>
<data name="ConsumersDropBoxSecret" xml:space="preserve">
<value>Chiave di Dropbox</value>
</data>
<data name="ConsumersEasyBib" xml:space="preserve">
<value>EasyBib</value>
</data>
<data name="ConsumerseasyBibappkey" xml:space="preserve">
<value>Chiave App</value>
</data>
<data name="ConsumersEasyBibDescription" xml:space="preserve">
<value>Collega l'applicazione EasyBib per creare elenchi bibliografici.</value>
</data>
<data name="ConsumersEasyBibInstruction" xml:space="preserve">
<value>Con l'aggiunta dell'applicazione EasyBib, puoi creare facilmente elenchi bibliografici nei tuoi documenti.</value>
</data>
<data name="ConsumersEasyBibKey" xml:space="preserve">
<value>Chiave App</value>
</data>
<data name="ConsumersEasyBibSecret" xml:space="preserve">
<value>Chiave App</value>
</data>
<data name="ConsumersFacebook" xml:space="preserve">
<value>Facebook</value>
</data>
<data name="ConsumersfacebookAccessToken_Default" xml:space="preserve">
<value>App Token</value>
</data>
<data name="ConsumersfacebookClientId" xml:space="preserve">
<value>ID di Facebook</value>
</data>
<data name="ConsumersfacebookClientSecret" xml:space="preserve">
<value>Chiave di Facebook</value>
</data>
<data name="ConsumersFacebookCRM" xml:space="preserve">
<value>Facebook in CRM Key</value>
</data>
<data name="ConsumersFacebookCRMSecret" xml:space="preserve">
<value>App Gettone</value>
</data>
<data name="ConsumersFacebookDescription" xml:space="preserve">
<value>Collega l'applicazione per registrarsi al portale usando l'account Facebook e cercare contatti.</value>
</data>
<data name="ConsumersFacebookInstruction" xml:space="preserve">
<value>Se aggiungi un'applicazione del servizio Facebook sarai in grado di collegare il tuo account Facebook al profilo così che tu possa entrare nel portale ONLYOFFICE® direttamente. Inoltre sarà possibile trovare il rispettivo profilo Facebook di un contatto nel modulo CRM e collegarlo alla pagina 'Modifica contatto/azienda'.</value>
</data>
<data name="ConsumersFacebookKey" xml:space="preserve">
<value>ID di Facebook</value>
</data>
<data name="ConsumersFacebookSecret" xml:space="preserve">
<value>Chiave di Facebook</value>
</data>
<data name="ConsumersFacebookSecretDefalt" xml:space="preserve">
<value>App Gettone</value>
</data>
<data name="ConsumersFirebase" xml:space="preserve">
<value>Firebase</value>
</data>
<data name="Consumersfirebase_apiKey" xml:space="preserve">
<value>chiave web API</value>
</data>
<data name="Consumersfirebase_authorization" xml:space="preserve">
<value>Chiave server</value>
</data>
<data name="Consumersfirebase_messagingSenderId" xml:space="preserve">
<value>ID Mittente</value>
</data>
<data name="Consumersfirebase_projectId" xml:space="preserve">
<value>ID progetto</value>
</data>
<data name="ConsumersFirebaseDescription" xml:space="preserve">
<value>Connetti il servizio Firebase Cloud Messagging per ricevere notifiche in merito ai messaggi che ti sono stati inviati.</value>
</data>
<data name="ConsumersFirebaseInstruction" xml:space="preserve">
<value>Se colleghi Firebase Cloud Messaging potrai ricevere notifiche dei messaggi a te inviati quando sei offline.</value>
</data>
<data name="ConsumersFirebaseKey" xml:space="preserve">
<value>chiave web API</value>
</data>
<data name="ConsumersFirebaseKeyDefault" xml:space="preserve">
<value>ID Mittente</value>
</data>
<data name="ConsumersFirebaseSecret" xml:space="preserve">
<value>ID progetto</value>
</data>
<data name="ConsumersFirebaseSecretDefault" xml:space="preserve">
<value>Chiave server</value>
</data>
<data name="ConsumersGoogle" xml:space="preserve">
<value>Google</value>
</data>
<data name="ConsumersgoogleClientId" xml:space="preserve">
<value>ID di Google</value>
</data>
<data name="ConsumersgoogleClientSecret" xml:space="preserve">
<value>Chiave di Google</value>
</data>
<data name="ConsumersGoogleCloud" xml:space="preserve">
<value>Google Cloud Storage</value>
</data>
<data name="ConsumersGoogleCloudbucket" xml:space="preserve">
<value>Bucket</value>
</data>
<data name="ConsumersGoogleCloudDescription" xml:space="preserve">
<value>Connetti Google Cloud Storage al backup e archivia i dati del tuo portale.</value>
</data>
<data name="ConsumersGoogleCloudInstruction" xml:space="preserve">
<value>Quando aggiungi il servizio Google Cloud Storage al tuo portale, puoi utilizzarlo per creare copie di backup del tuo portale assicurandoti così che nessun dato sia perso. Usalo anche per memorizzare dati e contenuti statici dal tuo portale.</value>
</data>
<data name="ConsumersGoogleCloudjsonPath" xml:space="preserve">
<value>Google Cloud Storage jsonPath</value>
</data>
<data name="ConsumersGoogleDescription" xml:space="preserve">
<value>Collega il progetto per registrarsi al portale usando l'account Google e gestire così file e cartelle in Google Drive</value>
</data>
<data name="ConsumersGoogleInstruction" xml:space="preserve">
<value>Se aggiungi un progetto del sevizio Google sarai successivamente in grado di collegare il tuo account Google nella tua pagina del profilo così che tu possa registrarti al portale ONLYOFFICE® inoltre utilizzando l'account Google Drive nel modulo Documenti. Ciò ti consentirà di caricare e creare nuovi files in Google Drive, modificare quelli esistenti, copiarli e/o cancellarli, condividere file e cartelle con gli utenti del portale ONLYOFFICE®.</value>
</data>
<data name="ConsumersGoogleKey" xml:space="preserve">
<value>ID di Google</value>
</data>
<data name="ConsumersGoogleSecret" xml:space="preserve">
<value>Chiave di Google</value>
</data>
<data name="ConsumersLinkedIn" xml:space="preserve">
<value>LinkedIn</value>
</data>
<data name="ConsumersLinkedInDescription" xml:space="preserve">
<value>Collega l'applicazione per registrarsi al portale usando l'account Linkedin</value>
</data>
<data name="ConsumersLinkedInInstruction" xml:space="preserve">
<value>Se aggiungi un'applicazione del servizio Linkedin sarai in grado di collegare il tuo account Linkedin al profilo così che tu possa entrare nel portale di ONLYOFFICE® direttamente. </value>
</data>
<data name="ConsumersLinkedInKey" xml:space="preserve">
<value>ID di LinkedIn</value>
</data>
<data name="ConsumersLinkedInSecret" xml:space="preserve">
<value>Chiave di LinkedIn</value>
</data>
<data name="ConsumersRackspace" xml:space="preserve">
<value>Rackspace Cloud Storage</value>
</data>
<data name="ConsumersRackspaceDescription" xml:space="preserve">
<value>Connetti Rackspace Cloud Storage al backup e archivia i dati del tuo portale.</value>
</data>
<data name="ConsumersRackspaceInstruction" xml:space="preserve">
<value>Quando aggiungi il servizio Rackspace Cloud Storage al tuo portale, puoi utilizzarlo per creare copie di backup del tuo portale assicurandoti così che nessun dato sia perso. Usalo anche per memorizzare dati e contenuti statici dal tuo portale.</value>
</data>
<data name="ConsumersRackspaceprivate_container" xml:space="preserve">
<value>Contenitore privato</value>
</data>
<data name="ConsumersRackspacepublic_container" xml:space="preserve">
<value>Contenitore pubblico</value>
</data>
<data name="ConsumersRackspaceregion" xml:space="preserve">
<value>Regione</value>
</data>
<data name="ConsumersS3" xml:space="preserve">
<value>Amazon AWS S3</value>
</data>
<data name="ConsumersS3Description" xml:space="preserve">
<value>Connetti Amazon AWS S3 al backup e archivia i dati del tuo portale.</value>
</data>
<data name="ConsumersS3Instruction" xml:space="preserve">
<value>Quando aggiungi Amazon Simple Storage Service al tuo portale, puoi utilizzarlo per creare copie di backup del tuo portale assicurandoti così che nessun dato sia perso. Usalo anche per memorizzare dati e contenuti statici dal tuo portale.</value>
</data>
<data name="Consumerssecretaccesskey" xml:space="preserve">
<value>Chiave segreta di accesso S3</value>
</data>
<data name="ConsumersSelectel" xml:space="preserve">
<value>Selectel Cloud Storage</value>
</data>
<data name="ConsumersSelectelauthPwd" xml:space="preserve">
<value>Auth Pwd</value>
</data>
<data name="ConsumersSelectelauthUser" xml:space="preserve">
<value>Auth User</value>
</data>
<data name="ConsumersSelectelCloudInstruction" xml:space="preserve">
<value>Quando aggiungi il servizio Selectel Cloud Storage al tuo portale, puoi utilizzarlo per creare copie di backup del tuo portale assicurandoti così che nessun dato sia perso. Usalo anche per memorizzare dati e contenuti statici dal tuo portale.</value>
</data>
<data name="ConsumersSelectelDescription" xml:space="preserve">
<value>Connetti Selectel Cloud Storage al backup e archivia i dati del tuo portale.</value>
</data>
<data name="ConsumersSelectelprivate_container" xml:space="preserve">
<value>Contenitore privato</value>
</data>
<data name="ConsumersSelectelpublic_container" xml:space="preserve">
<value>Contenitore pubblico</value>
</data>
<data name="ConsumersSkyDrive" xml:space="preserve">
<value>OneDrive</value>
</data>
<data name="Consumersskydriveappkey" xml:space="preserve">
<value>ID di OneDrive</value>
</data>
<data name="Consumersskydriveappsecret" xml:space="preserve">
<value>Chiave di OneDrive</value>
</data>
<data name="ConsumersSkyDriveDescription" xml:space="preserve">
<value>Collega l'applicazione per gestire file e cartelle in OneDrive</value>
</data>
<data name="ConsumersSkyDriveInstruction" xml:space="preserve">
<value>Se aggiungi un'applicazione del servizio OneDrive sarai in grado di collegare il tuo account OneDrive al modulo Documenti. Ciò ti consentirà di caricare e creare nuovi documenti su Box, modificare quelli esistenti, copiarli e/o cancellarli. condividere i file e cartelle con gli utenti del portale ONLYOFFICE®</value>
</data>
<data name="ConsumersSkyDriveKey" xml:space="preserve">
<value>ID di OneDrive</value>
</data>
<data name="ConsumersSkyDriveSecret" xml:space="preserve">
<value>Chiave di OneDrive</value>
</data>
<data name="ConsumersSmsc" xml:space="preserve">
<value>SMS-Center</value>
</data>
<data name="ConsumersSmscDescription" xml:space="preserve">
<value>Collegare l'applicazione per abilitare l'autenticazione a due fattori tramite l'SMS-Center.</value>
</data>
<data name="ConsumersSmscInstruction" xml:space="preserve">
<value>Aggiungendo l'applicazione del servizio SMS Center è possibile attivare l'autorizzazione a due fattori per ricevere SMS con il codice di accesso dell'utente sul portale SOLOOFFICE®. SMS-center è conveniente utilizzare come provider di SMS per i paesi CIS.</value>
</data>
<data name="ConsumersSmscKey" xml:space="preserve">
<value>Login</value>
</data>
<data name="Consumerssmsclogin" xml:space="preserve">
<value>Login</value>
</data>
<data name="Consumerssmscpsw" xml:space="preserve">
<value>Password o MD5 hash della password in lettere minuscole</value>
</data>
<data name="ConsumersSmscSecret" xml:space="preserve">
<value>Password o MD5 hash della password in lettere minuscole</value>
</data>
<data name="ConsumersTwilio" xml:space="preserve">
<value>Twilio</value>
</data>
<data name="ConsumerstwilioAccountSid" xml:space="preserve">
<value>Account SID</value>
</data>
<data name="ConsumerstwilioAuthToken" xml:space="preserve">
<value>Gettone di autenticazione</value>
</data>
<data name="ConsumersTwilioDescription" xml:space="preserve">
<value>Aggiungi Twilio per poter chiamare i contatti CRM direttamente dal browser.</value>
</data>
<data name="ConsumersTwilioInstruction" xml:space="preserve">
<value>Dopo aver aggiunto Twilio sarai in grado di chiamare i contatti CRM direttamente dal browser.</value>
</data>
<data name="ConsumersTwilioKey" xml:space="preserve">
<value>Account SID</value>
</data>
<data name="ConsumersTwilioKeyDefault" xml:space="preserve">
<value>Numero di telefono da Twilio (richiesto per l'autorizzazione SMS)</value>
</data>
<data name="ConsumersTwilioSecret" xml:space="preserve">
<value>Gettone di autenticazione</value>
</data>
<data name="Consumerstwiliosender" xml:space="preserve">
<value>Numero di telefono da Twilio (richiesto per l'autorizzazione SMS)</value>
</data>
<data name="ConsumersTwitter" xml:space="preserve">
<value>Twitter</value>
</data>
<data name="ConsumerstwitterAccessToken_Default" xml:space="preserve">
<value>Gettone d'accesso</value>
</data>
<data name="ConsumerstwitterAccessTokenSecret_Default" xml:space="preserve">
<value>Gettone d'accesso segreto</value>
</data>
<data name="ConsumersTwitterCrm" xml:space="preserve">
<value>Twitter in chiave CRM</value>
</data>
<data name="ConsumersTwitterCrmKey" xml:space="preserve">
<value>Twitter ID</value>
</data>
<data name="ConsumersTwitterCrmSecret" xml:space="preserve">
<value>Chiave di Twitter</value>
</data>
<data name="ConsumersTwitterDescription" xml:space="preserve">
<value>Collega l'applicazione per registrarsi al portale utilizzando l'account Twitter e cercare contatti.</value>
</data>
<data name="ConsumersTwitterInstruction" xml:space="preserve">
<value>Aggiungendo un'applicazione del servizio Twitter potrai collegare il tuo account Twitter alla pagina del profilo, così facendo potrai usarlo per entrare nel portale ONLYOFFICE®. Inoltre sarai in grado di trovare un account Twitter di una persona nel modulo CRM e collegarla nella pagina 'Modifica persona/azienda' e visualizzare i suoi Tweet</value>
</data>
<data name="ConsumersTwitterKey" xml:space="preserve">
<value>ID di Twitter</value>
</data>
<data name="ConsumersTwitterKeyDefault" xml:space="preserve">
<value>Gettone d'accesso</value>
</data>
<data name="ConsumersTwitterSecret" xml:space="preserve">
<value>Chiave di Twitter</value>
</data>
<data name="ConsumersTwitterSecretDefault" xml:space="preserve">
<value>Gettone d'accesso segreto</value>
</data>
<data name="Consumersusername" xml:space="preserve">
<value>Rackspace username</value>
</data>
<data name="ConsumersWordpress" xml:space="preserve">
<value>WordPress</value>
</data>
<data name="ConsumersWordpressDescription" xml:space="preserve">
<value>Collega l'applicazione per consentire la pubblicazione di documenti su WordPress.</value>
</data>
<data name="ConsumersWordpressInstruction" xml:space="preserve">
<value>Aggiungendo l'applicazione Wordpress potrai facilmente pubblicare documenti sul tuo sito Wordpress mantenendo la loro formattazione</value>
</data>
<data name="ConsumersWordpressKey" xml:space="preserve">
<value>Chiave WordPress</value>
</data>
<data name="ConsumersWordpressSecret" xml:space="preserve">
<value>WordPress Secret</value>
</data>
<data name="ConsumerswpClientId" xml:space="preserve">
<value>Chiave WordPress</value>
</data>
<data name="ConsumerswpClientSecret" xml:space="preserve">
<value>WordPress Secret</value>
</data>
<data name="ConsumersYahoo" xml:space="preserve">
<value>Yahoo</value>
</data>
<data name="ConsumersyahooClientId" xml:space="preserve">
<value>ID Client</value>
</data>
<data name="ConsumersyahooClientSecret" xml:space="preserve">
<value>Client Secret
</value>
</data>
<data name="ConsumersYahooDescription" xml:space="preserve">
<value>Collegare l'applicazione per importare i contatti di Yahoo.</value>
</data>
<data name="ConsumersYahooInstruction" xml:space="preserve">
<value>Aggiungendo l'applicazione del servizio Yahoo, è possibile aggiungere nuovi utenti del portale ONLYOFFICE® direttamente dall'elenco dei contatti.</value>
</data>
<data name="ConsumersYahooKey" xml:space="preserve">
<value>ID Client</value>
</data>
<data name="ConsumersYahooSecret" xml:space="preserve">
<value>Client Secret
</value>
</data>
<data name="CouldNotRecoverPasswordForLdapUser" xml:space="preserve">
<value>Il recupero della password è vietato per un utente LDAP</value>
</data>
<data name="CouldNotRecoverPasswordForSsoUser" xml:space="preserve">
<value>la procedura di recupero password è proibita per l'utente SSO</value>
</data>
<data name="CustomNamingPeopleSchema" xml:space="preserve">
<value>Personalizzato</value>
</data>
<data name="ErrorAccessDenied" xml:space="preserve">
<value>Non si dispone di permessi sufficienti per effettuare questa azione</value>
</data>
<data name="ErrorAccessRestricted" xml:space="preserve">
<value>L'accesso al portale è limitato.</value>
</data>
<data name="ErrorDisabledProfile" xml:space="preserve">
<value>Il tuo profilo è stato sospeso.</value>
</data>
<data name="ErrorEmailAlreadyExists" xml:space="preserve">
<value>Un {!user} con questo indirizzo email è già registrato</value>
</data>
<data name="ErrorEmailEmpty" xml:space="preserve">
<value>Il campo Email è vuoto</value>
</data>
<data name="ErrorIncorrectUserName" xml:space="preserve">
<value>Nome o Cognome errati</value>
</data>
<data name="ErrorNotAllowedOption" xml:space="preserve">
<value>Il tuo piano tariffario non supporta questa funzionalità</value>
</data>
<data name="ErrorNotCorrectEmail" xml:space="preserve">
<value>Indirizzo email non valido</value>
</data>
<data name="ErrorPasswordEmpty" xml:space="preserve">
<value>Il campo Password è vuoto.</value>
</data>
<data name="ErrorPasswordMessage" xml:space="preserve">
<value>La password deve contenere </value>
</data>
<data name="ErrorPasswordMessageStart" xml:space="preserve">
<value>la Password deve contenere</value>
</data>
<data name="ErrorPasswordNoDigits" xml:space="preserve">
<value>cifre</value>
</data>
<data name="ErrorPasswordNoSpecialSymbols" xml:space="preserve">
<value>simboli speciali</value>
</data>
<data name="ErrorPasswordNoUpperCase" xml:space="preserve">
<value>lettere maiuscole</value>
</data>
<data name="ErrorUserNotFound" xml:space="preserve">
<value>L'utente non è stato trovato</value>
</data>
<data name="ErrorUserNotFoundByEmail" xml:space="preserve">
<value>E' impossibile trovare l'utente con l'indirizzo email "{0}"</value>
</data>
<data name="EuServerRegion" xml:space="preserve">
<value>Regione UE (Irlanda)</value>
</data>
<data name="FileSizeMaxExceed" xml:space="preserve">
<value>E' stata superata la dimensione file massima</value>
</data>
<data name="FileSizeNote" xml:space="preserve">
<value>Nota: la dimensione file non può superare {1}{0}{2}</value>
</data>
<data name="FileSizePostfix" xml:space="preserve">
<value>byte,KB,MB,GB,TB</value>
</data>
<data name="LdapSettingsTooManyOperations" xml:space="preserve">
<value>Troppe operazioni LDAP</value>
</data>
<data name="MessageYourPasswordSuccessfullySendedToEmail" xml:space="preserve">
<value>Le istruzioni di modifica della password sono state inviate all'indirizzo email {0}.</value>
</data>
<data name="MobilePhoneMustErase" xml:space="preserve">
<value>Per modificare il numero, occorre eliminare il numero di telefono attuale</value>
</data>
<data name="OrgServerRegion" xml:space="preserve">
<value>Regione ORG</value>
</data>
<data name="PersonalFreeSpaceException" xml:space="preserve">
<value>Quota di spazio su disco superata</value>
</data>
<data name="ProfileRemoved" xml:space="preserve">
<value>Il profilo è stato eliminato</value>
</data>
<data name="ReassignDataRemoveUserError" xml:space="preserve">
<value>La riassegnazione dei dati in corso per {0} non è completa.</value>
</data>
<data name="SgServerRegion" xml:space="preserve">
<value>Asia Pacifico (Singapore)</value>
</data>
<data name="SmsAuthenticationMessageError" xml:space="preserve">
<value>Codice non corretto</value>
</data>
<data name="SmsAuthenticationMessageToUser" xml:space="preserve">
<value>Codice: {0}</value>
</data>
<data name="SmsAuthenticationTimeout" xml:space="preserve">
<value>Trascorso il tempo di utilizzazione del codice. Richiedi un altro messaggio di testo.</value>
</data>
<data name="SmsNotAvailable" xml:space="preserve">
<value>Impostazioni SMS non disponibili</value>
</data>
<data name="SmsTooMuchError" xml:space="preserve">
<value>Hai inviato troppi SMS. Prova più tardi.</value>
</data>
<data name="SuccessfullySaveSettingsMessage" xml:space="preserve">
<value>Le impostazioni sono state aggiornate con successo</value>
</data>
<data name="SuccessfullySentNotificationDeleteUserInfoMessage" xml:space="preserve">
<value>Le istruzioni di eliminazione del tuo profilo sono state inviate al tuo indirizzo email</value>
</data>
<data name="TfaAppAuthMessageError" xml:space="preserve">
<value>Codice non corretto</value>
</data>
<data name="TfaAppNotAvailable" xml:space="preserve">
<value>Le impostazioni dell'applicazione TFA non sono disponibili</value>
</data>
<data name="TfaTooMuchError" xml:space="preserve">
<value>Hai inviato troppi SMS. Prova più tardi.</value>
</data>
<data name="UsServerRegion" xml:space="preserve">
<value>Regione Ovest degli Stati Uniti (Oregon)</value>
</data>
<data name="WhatsNewSubscriptionName" xml:space="preserve">
<value>Cosa c'è di nuovo</value>
</data>
</root>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,652 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<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="ActivateMobilePhoneEmptyPhoneNumber" xml:space="preserve">
<value>Введите номер мобильного телефона</value>
</data>
<data name="ActivateTfaAppEmptyCode" xml:space="preserve">
<value>Поле кода подтверждения не может быть пустым</value>
</data>
<data name="AdministratorNotifySenderTypeName" xml:space="preserve">
<value>Извещения администраторов</value>
</data>
<data name="Consumersacesskey" xml:space="preserve">
<value>Ключ доступа S3</value>
</data>
<data name="ConsumersapiKey" xml:space="preserve">
<value>Ключ API Rackspace</value>
</data>
<data name="ConsumersauthPwd" xml:space="preserve">
<value>authPwd Selectel</value>
</data>
<data name="ConsumersauthUser" xml:space="preserve">
<value>authUser Selectel</value>
</data>
<data name="ConsumersBitly" xml:space="preserve">
<value>Bitly</value>
</data>
<data name="ConsumersbitlyClientId" xml:space="preserve">
<value>login</value>
</data>
<data name="ConsumersbitlyClientSecret" xml:space="preserve">
<value>apiKey</value>
</data>
<data name="ConsumersBitlyDescription" xml:space="preserve">
<value>Подключить сервис Bitly для сокращения пригласительных ссылок на портал и ссылок для доступа к файлам в модуле 'Документы'.</value>
</data>
<data name="ConsumersBitlyInstruction" xml:space="preserve">
<value>Добавив сервис Bitly, Вы будуте получать сокращенные ссылки для приглашения новых пользователей на портал ONLYOFFICE™ и сокращенные ссылки для документов в модуле 'Документы', к которым был предоставлен доступ для внешних пользователей.</value>
</data>
<data name="ConsumersBitlyKey" xml:space="preserve">
<value>login</value>
</data>
<data name="ConsumersBitlySecret" xml:space="preserve">
<value>apiKey</value>
</data>
<data name="ConsumersBox" xml:space="preserve">
<value>Box</value>
</data>
<data name="ConsumersboxClientId" xml:space="preserve">
<value>Box ID</value>
</data>
<data name="ConsumersboxClientSecret" xml:space="preserve">
<value>Ключ Box</value>
</data>
<data name="ConsumersBoxDescription" xml:space="preserve">
<value>Подключить приложение для управления файлами и папками Box.</value>
</data>
<data name="ConsumersBoxInstruction" xml:space="preserve">
<value>Добавив приложение сервиса Box, Вы сможете подключить свой аккаунт Box в модуле 'Документы'. Это позволит загружать и создавать новые файлы в Box, редактировать существующие, копировать и удалять их, предоставлять доступ к файлам и папкам для пользователей портала ONLYOFFICE™.</value>
</data>
<data name="ConsumersBoxKey" xml:space="preserve">
<value>Box ID</value>
</data>
<data name="ConsumersBoxSecret" xml:space="preserve">
<value>Ключ Box</value>
</data>
<data name="ConsumersClickatell" xml:space="preserve">
<value>Clickatell</value>
</data>
<data name="ConsumersclickatellapiKey" xml:space="preserve">
<value>apiKey</value>
</data>
<data name="ConsumersClickatellDescription" xml:space="preserve">
<value>Подключить приложение для включения двухфакторной аутентификации через Clickatell.</value>
</data>
<data name="ConsumersClickatellInstruction" xml:space="preserve">
<value>Добавив приложение сервиса Clickatell, Вы сможете включить двухфакторную аутентификацию для получения SMS с кодом входа пользователя на портал ONLYOFFICE.</value>
</data>
<data name="ConsumersClickatellSecret" xml:space="preserve">
<value>apiKey</value>
</data>
<data name="ConsumersDocuSign" xml:space="preserve">
<value>DocuSign</value>
</data>
<data name="ConsumersdocuSignClientId" xml:space="preserve">
<value>Ключ DocuSign</value>
</data>
<data name="ConsumersdocuSignClientSecret" xml:space="preserve">
<value>Секретный ключ DocuSign</value>
</data>
<data name="ConsumersDocuSignDescription" xml:space="preserve">
<value>Подключить приложение для добавления к документам электронной подписи DocuSign.</value>
</data>
<data name="ConsumersdocuSignHost" xml:space="preserve">
<value>Конечная точка авторизации DocuSign</value>
</data>
<data name="ConsumersDocuSignInstruction" xml:space="preserve">
<value>Добавив приложение сервиса DocuSign, Вы сможете подписывать файлы модуля 'Документы'. Это позволит Вам отправлять файл на получение электронной подписи сотрудникам портала ONLYOFFICE™ средствами сервиса DocuSugn. Подписанный файл будет сохранён в модуле 'Документы' портала ONLYOFFICE™.</value>
</data>
<data name="ConsumersDocuSignKey" xml:space="preserve">
<value>Ключ DocuSign</value>
</data>
<data name="ConsumersDocuSignKeyDefault" xml:space="preserve">
<value>Конечная точка авторизации DocuSign</value>
</data>
<data name="ConsumersDocuSignSecret" xml:space="preserve">
<value>Секретный ключ DocuSign</value>
</data>
<data name="ConsumersDropBox" xml:space="preserve">
<value>Dropbox</value>
</data>
<data name="ConsumersdropboxClientId" xml:space="preserve">
<value>Dropbox ID</value>
</data>
<data name="ConsumersdropboxClientSecret" xml:space="preserve">
<value>Ключ Dropbox</value>
</data>
<data name="ConsumersDropBoxDescription" xml:space="preserve">
<value>Подключить приложение для управления файлами и папками Dropbox.</value>
</data>
<data name="ConsumersDropBoxInstruction" xml:space="preserve">
<value>Добавив приложение сервиса Dropbox, Вы сможете подключить свой аккаунт Dropbox в модуле 'Документы'. Это позволит загружать и создавать новые файлы в Dropbox, редактировать существующие, копировать и удалять их, предоставлять доступ к файлам и папкам для пользователей портала ONLYOFFICE™.</value>
</data>
<data name="ConsumersDropBoxKey" xml:space="preserve">
<value>Dropbox ID</value>
</data>
<data name="ConsumersDropBoxSecret" xml:space="preserve">
<value>Ключ Dropbox</value>
</data>
<data name="ConsumersEasyBib" xml:space="preserve">
<value>EasyBib</value>
</data>
<data name="ConsumerseasyBibappkey" xml:space="preserve">
<value>Ключ приложения</value>
</data>
<data name="ConsumersEasyBibDescription" xml:space="preserve">
<value>Подключить приложение EasyBib для создания библиографических списков.</value>
</data>
<data name="ConsumersEasyBibInstruction" xml:space="preserve">
<value>Добавив приложение EasyBib, вы сможете легко создавать библиографические списки в документах.</value>
</data>
<data name="ConsumersEasyBibKey" xml:space="preserve">
<value>Ключ приложения</value>
</data>
<data name="ConsumersEasyBibSecret" xml:space="preserve">
<value>Ключ приложения</value>
</data>
<data name="ConsumersFacebook" xml:space="preserve">
<value>Facebook</value>
</data>
<data name="ConsumersfacebookAccessToken_Default" xml:space="preserve">
<value>App Token</value>
</data>
<data name="ConsumersfacebookClientId" xml:space="preserve">
<value>Facebook ID</value>
</data>
<data name="ConsumersfacebookClientSecret" xml:space="preserve">
<value>Ключ Facebook</value>
</data>
<data name="ConsumersFacebookCRM" xml:space="preserve">
<value>Ключ Facebook в CRM</value>
</data>
<data name="ConsumersFacebookCRMSecret" xml:space="preserve">
<value>App Token</value>
</data>
<data name="ConsumersFacebookDescription" xml:space="preserve">
<value>Подключить приложение для входа на портал по учетной записи Facebook и поиска контактов.</value>
</data>
<data name="ConsumersFacebookInstruction" xml:space="preserve">
<value>Добавив приложение сервиса Facebook, Вы сможете на странице своего профиля подключить вход на портал ONLYOFFICE™ с помощью аккаунта Facebook. Также Вы сможете на странице редактирования персоны или компании CRM находить и привязывать аккаунт Facebook.</value>
</data>
<data name="ConsumersFacebookKey" xml:space="preserve">
<value>Facebook ID</value>
</data>
<data name="ConsumersFacebookSecret" xml:space="preserve">
<value>Ключ Facebook</value>
</data>
<data name="ConsumersFacebookSecretDefalt" xml:space="preserve">
<value>App Token</value>
</data>
<data name="ConsumersFirebase" xml:space="preserve">
<value>Firebase</value>
</data>
<data name="Consumersfirebase_apiKey" xml:space="preserve">
<value>Ключ API для веб-приложения</value>
</data>
<data name="Consumersfirebase_authorization" xml:space="preserve">
<value>Ключ сервера</value>
</data>
<data name="Consumersfirebase_messagingSenderId" xml:space="preserve">
<value>Идентификатор отправителя</value>
</data>
<data name="Consumersfirebase_projectId" xml:space="preserve">
<value>Идентификатор проекта</value>
</data>
<data name="ConsumersFirebaseDescription" xml:space="preserve">
<value>Подключить сервис Firebase Cloud Messaging для получения оповещений об отправленных вам сообщениях.</value>
</data>
<data name="ConsumersFirebaseInstruction" xml:space="preserve">
<value>Подключив сервис Firebase Cloud Messaging, вы сможете получать оповещения об отправленных вам сообщениях, даже если вы не в сети.</value>
</data>
<data name="ConsumersFirebaseKey" xml:space="preserve">
<value>Ключ API для веб-приложения</value>
</data>
<data name="ConsumersFirebaseKeyDefault" xml:space="preserve">
<value>Идентификатор отправителя</value>
</data>
<data name="ConsumersFirebaseSecret" xml:space="preserve">
<value>Идентификатор проекта</value>
</data>
<data name="ConsumersFirebaseSecretDefault" xml:space="preserve">
<value>Ключ сервера</value>
</data>
<data name="ConsumersGoogle" xml:space="preserve">
<value>Google</value>
</data>
<data name="ConsumersgoogleClientId" xml:space="preserve">
<value>Google ID</value>
</data>
<data name="ConsumersgoogleClientSecret" xml:space="preserve">
<value>Ключ Google</value>
</data>
<data name="ConsumersGoogleCloud" xml:space="preserve">
<value>Google Cloud Storage</value>
</data>
<data name="ConsumersGoogleCloudbucket" xml:space="preserve">
<value>Контейнер</value>
</data>
<data name="ConsumersGoogleCloudDescription" xml:space="preserve">
<value>Подключить сервис Google Cloud Storage для резервного копирования и хранения данных портала.</value>
</data>
<data name="ConsumersGoogleCloudInstruction" xml:space="preserve">
<value>Добавив сервис Google Cloud Storage, вы сможете использовать его для создания резервных копий портала, чтобы предотвратить потерю данных. Также используйте его для хранения данных и статического содержимого портала.</value>
</data>
<data name="ConsumersGoogleCloudjsonPath" xml:space="preserve">
<value>Google Cloud Storage jsonPath</value>
</data>
<data name="ConsumersGoogleDescription" xml:space="preserve">
<value>Подключить проект для входа на портал по учетной записи Google и для управления файлами и папками Google Drive.</value>
</data>
<data name="ConsumersGoogleInstruction" xml:space="preserve">
<value>Добавив проект сервиса Google, Вы сможете на странице своего профиля подключить вход на портал ONLYOFFICE™ с помощью аккаунта Google и подключить свой аккаунт Google Drive в модуле 'Документы'. Это позволит загружать и создавать новые файлы в Google Drive, редактировать существующие, копировать и удалять их, предоставлять доступ к файлам и папкам для пользователей портала ONLYOFFICE™.</value>
</data>
<data name="ConsumersGoogleKey" xml:space="preserve">
<value>Google ID</value>
</data>
<data name="ConsumersGoogleSecret" xml:space="preserve">
<value>Ключ Google</value>
</data>
<data name="ConsumersLinkedIn" xml:space="preserve">
<value>LinkedIn</value>
</data>
<data name="ConsumersLinkedInDescription" xml:space="preserve">
<value>Подключить приложение для входа на портал по учетной записи LinkedIn.</value>
</data>
<data name="ConsumersLinkedInInstruction" xml:space="preserve">
<value>Добавив приложение сервиса LinkedIn, Вы сможете на странице своего профиля подключить вход на портал ONLYOFFICE™ с помощью аккаунта LinkedIn.</value>
</data>
<data name="ConsumersLinkedInKey" xml:space="preserve">
<value>Linkedin ID</value>
</data>
<data name="ConsumersLinkedInSecret" xml:space="preserve">
<value>Ключ Linkedin</value>
</data>
<data name="ConsumersRackspace" xml:space="preserve">
<value>Rackspace Cloud Storage</value>
</data>
<data name="ConsumersRackspaceDescription" xml:space="preserve">
<value>Подключить сервис Rackspace Cloud Storage для резервного копирования и хранения данных портала.</value>
</data>
<data name="ConsumersRackspaceInstruction" xml:space="preserve">
<value>Добавив сервис Rackspace Cloud Storage, вы сможете использовать его для создания резервных копий портала, чтобы предотвратить потерю данных. Также используйте его для хранения данных и статического содержимого портала.</value>
</data>
<data name="ConsumersRackspaceprivate_container" xml:space="preserve">
<value>Приватный контейнер</value>
</data>
<data name="ConsumersRackspacepublic_container" xml:space="preserve">
<value>Публичный контейнер</value>
</data>
<data name="ConsumersRackspaceregion" xml:space="preserve">
<value>Регион</value>
</data>
<data name="ConsumersS3" xml:space="preserve">
<value>Amazon AWS S3</value>
</data>
<data name="ConsumersS3Description" xml:space="preserve">
<value>Подключить Amazon AWS S3 для резервного копирования и хранения данных портала.</value>
</data>
<data name="ConsumersS3Instruction" xml:space="preserve">
<value>Добавив Amazon AWS S3, вы сможете использовать его для создания резервных копий портала, чтобы предотвратить потерю данных. Также используйте его для хранения данных и статического содержимого портала.</value>
</data>
<data name="Consumerssecretaccesskey" xml:space="preserve">
<value>Секретный ключ доступа S3</value>
</data>
<data name="ConsumersSelectel" xml:space="preserve">
<value>Selectel Облачное хранилище</value>
</data>
<data name="ConsumersSelectelauthPwd" xml:space="preserve">
<value>Пароль для авторизации</value>
</data>
<data name="ConsumersSelectelauthUser" xml:space="preserve">
<value>Имя пользователя для авторизации</value>
</data>
<data name="ConsumersSelectelCloudInstruction" xml:space="preserve">
<value>Добавив сервис Selectel, вы сможете использовать его для создания резервных копий портала, чтобы предотвратить потерю данных. Также используйте его для хранения данных и статического содержимого портала.</value>
</data>
<data name="ConsumersSelectelDescription" xml:space="preserve">
<value>Подключить сервис Selectel Облачное хранилище для резервного копирования и хранения данных портала.</value>
</data>
<data name="ConsumersSelectelprivate_container" xml:space="preserve">
<value>Приватный контейнер</value>
</data>
<data name="ConsumersSelectelpublic_container" xml:space="preserve">
<value>Публичный контейнер</value>
</data>
<data name="ConsumersSkyDrive" xml:space="preserve">
<value>OneDrive</value>
</data>
<data name="Consumersskydriveappkey" xml:space="preserve">
<value>OneDrive ID</value>
</data>
<data name="Consumersskydriveappsecret" xml:space="preserve">
<value>Ключ OneDrive</value>
</data>
<data name="ConsumersSkyDriveDescription" xml:space="preserve">
<value>Подключить приложение для управления файлами и папками OneDrive.</value>
</data>
<data name="ConsumersSkyDriveInstruction" xml:space="preserve">
<value>Добавив приложение сервиса OneDrive, Вы сможете подключить свой аккаунт OneDrive в модуле 'Документы'. Это позволит загружать и создавать новые файлы в OneDrive, редактировать существующие, копировать и удалять их, предоставлять доступ к файлам и папкам для пользователей портала ONLYOFFICE™.</value>
</data>
<data name="ConsumersSkyDriveKey" xml:space="preserve">
<value>OneDrive ID</value>
</data>
<data name="ConsumersSkyDriveSecret" xml:space="preserve">
<value>Ключ OneDrive</value>
</data>
<data name="ConsumersSmsc" xml:space="preserve">
<value>SMS-центр</value>
</data>
<data name="ConsumersSmscDescription" xml:space="preserve">
<value>Подключить приложение для включения двухфакторной аутентификации через SMS-центр.</value>
</data>
<data name="ConsumersSmscInstruction" xml:space="preserve">
<value>Добавив приложение сервиса SMS-центр, Вы сможете включить двухфакторную аутентификацию для получения SMS с кодом входа пользователя на портал ONLYOFFICE. SMS-центр удобно использовать как SMS-провайдер для стран СНГ.</value>
</data>
<data name="ConsumersSmscKey" xml:space="preserve">
<value>Логин</value>
</data>
<data name="Consumerssmsclogin" xml:space="preserve">
<value>Логин</value>
</data>
<data name="Consumerssmscpsw" xml:space="preserve">
<value>Пароль или MD5 хэш от пароля в нижнем регистре</value>
</data>
<data name="ConsumersSmscSecret" xml:space="preserve">
<value>Пароль или MD5 хэш от пароля в нижнем регистре</value>
</data>
<data name="ConsumersTwilio" xml:space="preserve">
<value>Twilio</value>
</data>
<data name="ConsumerstwilioAccountSid" xml:space="preserve">
<value>Account Sid</value>
</data>
<data name="ConsumerstwilioAuthToken" xml:space="preserve">
<value>Auth Token</value>
</data>
<data name="ConsumersTwilioDescription" xml:space="preserve">
<value>Подключить Twilio, чтобы можно было звонить контактам CRM прямо из браузера.</value>
</data>
<data name="ConsumersTwilioInstruction" xml:space="preserve">
<value>После добавления Twilio вы сможете звонить любому контакту CRM прямо из браузера.</value>
</data>
<data name="ConsumersTwilioKey" xml:space="preserve">
<value>Account Sid</value>
</data>
<data name="ConsumersTwilioKeyDefault" xml:space="preserve">
<value>Номер телефона из Twilio (требуется для SMS-авторизации)</value>
</data>
<data name="ConsumersTwilioSecret" xml:space="preserve">
<value>Auth Token</value>
</data>
<data name="Consumerstwiliosender" xml:space="preserve">
<value>Номер телефона из Twilio (требуется для SMS-авторизации)</value>
</data>
<data name="ConsumersTwitter" xml:space="preserve">
<value>Twitter</value>
</data>
<data name="ConsumerstwitterAccessToken_Default" xml:space="preserve">
<value>Токен доступа</value>
</data>
<data name="ConsumerstwitterAccessTokenSecret_Default" xml:space="preserve">
<value>Секретный токен доступа</value>
</data>
<data name="ConsumersTwitterCrm" xml:space="preserve">
<value>Ключ Twitter в CRM</value>
</data>
<data name="ConsumersTwitterCrmKey" xml:space="preserve">
<value>Twitter ID</value>
</data>
<data name="ConsumersTwitterCrmSecret" xml:space="preserve">
<value>Ключ Twitter</value>
</data>
<data name="ConsumersTwitterDescription" xml:space="preserve">
<value>Подключить приложение для входа на портал по учетной записи Twitter и поиска контактов.</value>
</data>
<data name="ConsumersTwitterInstruction" xml:space="preserve">
<value>Добавив приложение сервиса Twitter, Вы сможете на странице своего профиля подключить вход на портал ONLYOFFICE™ с помощью аккаунта Twitter. Также Вы сможете на странице персоны или компании CRM привязывать аккаунт и читать новости Twitter.</value>
</data>
<data name="ConsumersTwitterKey" xml:space="preserve">
<value>Twitter ID</value>
</data>
<data name="ConsumersTwitterKeyDefault" xml:space="preserve">
<value>Токен доступа</value>
</data>
<data name="ConsumersTwitterSecret" xml:space="preserve">
<value>Ключ Twitter</value>
</data>
<data name="ConsumersTwitterSecretDefault" xml:space="preserve">
<value>Секретный токен доступа</value>
</data>
<data name="Consumersusername" xml:space="preserve">
<value>Имя пользователя Rackspace</value>
</data>
<data name="ConsumersWordpress" xml:space="preserve">
<value>WordPress</value>
</data>
<data name="ConsumersWordpressDescription" xml:space="preserve">
<value>Подключить приложение для публикации документов в WordPress.</value>
</data>
<data name="ConsumersWordpressInstruction" xml:space="preserve">
<value>Добавив приложение WordPress Вы сможете легко, сохраняя форматирование, публиковать документы на своем сайте WordPress.</value>
</data>
<data name="ConsumersWordpressKey" xml:space="preserve">
<value>Ключ WordPress</value>
</data>
<data name="ConsumersWordpressSecret" xml:space="preserve">
<value>Секретный ключ WordPress</value>
</data>
<data name="ConsumerswpClientId" xml:space="preserve">
<value>Ключ WordPress</value>
</data>
<data name="ConsumerswpClientSecret" xml:space="preserve">
<value>Секретный ключ WordPress</value>
</data>
<data name="ConsumersYahoo" xml:space="preserve">
<value>Yahoo</value>
</data>
<data name="ConsumersyahooClientId" xml:space="preserve">
<value>Client ID</value>
</data>
<data name="ConsumersyahooClientSecret" xml:space="preserve">
<value>Client Secret</value>
</data>
<data name="ConsumersYahooDescription" xml:space="preserve">
<value>Подключить приложение для импорта контактов Yahoo.</value>
</data>
<data name="ConsumersYahooInstruction" xml:space="preserve">
<value>Добавив приложение сервиса Yahoo, Вы сможете добавлять новых пользователей на портал ONLYOFFICE из списка контактов.</value>
</data>
<data name="ConsumersYahooKey" xml:space="preserve">
<value>Client ID</value>
</data>
<data name="ConsumersYahooSecret" xml:space="preserve">
<value>Client Secret</value>
</data>
<data name="CouldNotRecoverPasswordForLdapUser" xml:space="preserve">
<value>Операция восстановления пароля запрещена для пользователя LDAP</value>
</data>
<data name="CouldNotRecoverPasswordForSsoUser" xml:space="preserve">
<value>Операция восстановления пароля запрещена для SSO-пользователя</value>
</data>
<data name="CustomNamingPeopleSchema" xml:space="preserve">
<value>Пользовательский</value>
</data>
<data name="ErrorAccessDenied" xml:space="preserve">
<value>Недостаточно прав для выполнения данной операции</value>
</data>
<data name="ErrorAccessRestricted" xml:space="preserve">
<value>Доступ к порталу ограничен.</value>
</data>
<data name="ErrorDisabledProfile" xml:space="preserve">
<value>Действие Вашего профиля приостановлено</value>
</data>
<data name="ErrorEmailAlreadyExists" xml:space="preserve">
<value>{!User} с таким адресом email уже зарегистрирован</value>
</data>
<data name="ErrorEmailEmpty" xml:space="preserve">
<value>Не заполнено поле адреса электронной почты</value>
</data>
<data name="ErrorIncorrectUserName" xml:space="preserve">
<value>Некорректное имя или фамилия</value>
</data>
<data name="ErrorNotAllowedOption" xml:space="preserve">
<value>Ваш тарифный план не поддерживает эту возможность</value>
</data>
<data name="ErrorNotCorrectEmail" xml:space="preserve">
<value>Неправильный email</value>
</data>
<data name="ErrorPasswordEmpty" xml:space="preserve">
<value>Поле Пароль не заполнено.</value>
</data>
<data name="ErrorPasswordMessage" xml:space="preserve">
<value>Пароль должен содержать</value>
</data>
<data name="ErrorPasswordMessageStart" xml:space="preserve">
<value>Пароль должен содержать</value>
</data>
<data name="ErrorPasswordNoDigits" xml:space="preserve">
<value>цифры</value>
</data>
<data name="ErrorPasswordNoSpecialSymbols" xml:space="preserve">
<value>специальные символы</value>
</data>
<data name="ErrorPasswordNoUpperCase" xml:space="preserve">
<value>заглавные буквы</value>
</data>
<data name="ErrorUserNotFound" xml:space="preserve">
<value>Пользователь не найден</value>
</data>
<data name="ErrorUserNotFoundByEmail" xml:space="preserve">
<value>Пользователь с e-mail "{0}" не найден</value>
</data>
<data name="EuServerRegion" xml:space="preserve">
<value>Европа (Ирландия)</value>
</data>
<data name="FileSizeMaxExceed" xml:space="preserve">
<value>Превышен максимальный размер файла</value>
</data>
<data name="FileSizeNote" xml:space="preserve">
<value>Примечание: размер файла должен быть не более {1}{0}{2}</value>
</data>
<data name="FileSizePostfix" xml:space="preserve">
<value>байт,Кб,Мб,Гб,Тб</value>
</data>
<data name="LdapSettingsTooManyOperations" xml:space="preserve">
<value>Слишком много операций LDAP.</value>
</data>
<data name="MessageYourPasswordSuccessfullySendedToEmail" xml:space="preserve">
<value>Инструкции по изменению пароля были высланы на email {0}</value>
</data>
<data name="MobilePhoneMustErase" xml:space="preserve">
<value>Для смены номера телефона необходимо удалить текущий номер</value>
</data>
<data name="OrgServerRegion" xml:space="preserve">
<value>Регион ORG</value>
</data>
<data name="PersonalFreeSpaceException" xml:space="preserve">
<value>Превышена квота на размер дискового пространства</value>
</data>
<data name="ProfileRemoved" xml:space="preserve">
<value>Профиль удален</value>
</data>
<data name="ReassignDataRemoveUserError" xml:space="preserve">
<value>Процесс передачи данных для {0} не завершен.</value>
</data>
<data name="SgServerRegion" xml:space="preserve">
<value>АТР (Сингапур)</value>
</data>
<data name="SmsAuthenticationMessageError" xml:space="preserve">
<value>Неправильный код</value>
</data>
<data name="SmsAuthenticationMessageToUser" xml:space="preserve">
<value>Код: {0}</value>
</data>
<data name="SmsAuthenticationTimeout" xml:space="preserve">
<value>Время использования кода истекло. Пожалуйста, запросите новое текстовое сообщение.</value>
</data>
<data name="SmsNotAvailable" xml:space="preserve">
<value>Настройки SMS недоступны</value>
</data>
<data name="SmsTooMuchError" xml:space="preserve">
<value>Вы отправили слишком много текстовых сообщений. Пожалуйста, повторите попытку позже.</value>
</data>
<data name="SuccessfullySaveSettingsMessage" xml:space="preserve">
<value>Настройки успешно обновлены</value>
</data>
<data name="SuccessfullySentNotificationDeleteUserInfoMessage" xml:space="preserve">
<value>Инструкции по удалению профиля были отправлены на адрес {0}</value>
</data>
<data name="TfaAppAuthMessageError" xml:space="preserve">
<value>Неправильный код</value>
</data>
<data name="TfaAppNotAvailable" xml:space="preserve">
<value>Настройки приложения для аутентификации недоступны</value>
</data>
<data name="TfaTooMuchError" xml:space="preserve">
<value>Вы отправили слишком много текстовых сообщений. Повторите попытку позже.</value>
</data>
<data name="UsServerRegion" xml:space="preserve">
<value>Запад США (Орегон)</value>
</data>
<data name="WhatsNewSubscriptionName" xml:space="preserve">
<value>Новенькое</value>
</data>
</root>

File diff suppressed because it is too large Load Diff

View File

@ -1,786 +0,0 @@
<?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="ActivateMobilePhoneEmptyCode" xml:space="preserve">
<value>Validation code field cannot be empty</value>
</data>
<data name="ActivateMobilePhoneEmptyPhoneNumber" xml:space="preserve">
<value>Enter mobile phone number</value>
</data>
<data name="AddButton" xml:space="preserve">
<value>Add</value>
</data>
<data name="AdvansedFilterInfoText" xml:space="preserve">
<value>Use the {0}?{1} and {0}*{1} symbols to perform a single/multiple-character search. For example, to search for all the words beginning with {0}O{1}, use the {0}O*{1} query. To search for the exact phrase use the quotation marks.{2}Learn more...{3}</value>
</data>
<data name="BackupMakeCopySuccess" xml:space="preserve">
<value>The backup copy has been successfully created.</value>
</data>
<data name="BusyStatus" xml:space="preserve">
<value>Busy</value>
</data>
<data name="BuyNumberSuccessMsg" xml:space="preserve">
<value>Successful purchase of number</value>
</data>
<data name="CancelButton" xml:space="preserve">
<value>Cancel</value>
</data>
<data name="CancelConfirmMessage" xml:space="preserve">
<value>All the data you entered will be lost. Are you sure you want to continue?</value>
</data>
<data name="ChangesApplied" xml:space="preserve">
<value>Changes are applied</value>
</data>
<data name="ChangesSuccessfullyAppliedMsg" xml:space="preserve">
<value>Changes are successfully applied.</value>
</data>
<data name="ChooseOwner" xml:space="preserve">
<value>Choose owner</value>
</data>
<data name="ChooseUser" xml:space="preserve">
<value>Choose user</value>
</data>
<data name="ClearFilterButton" xml:space="preserve">
<value>Clear Filter</value>
</data>
<data name="CloseButton" xml:space="preserve">
<value>Close</value>
</data>
<data name="CommonJSErrorMsg" xml:space="preserve">
<value>An error has been encountered. Please contact your administrator.</value>
</data>
<data name="ConfirmMessage" xml:space="preserve">
<value>Do you want to continue?</value>
</data>
<data name="ContactSelectorAddText" xml:space="preserve">
<value>Create new contact</value>
</data>
<data name="ContactSelectorEmptyList" xml:space="preserve">
<value>No contacts in this list</value>
</data>
<data name="ContactSelectorEmptyNameError" xml:space="preserve">
<value>Enter the company title</value>
</data>
<data name="ContactSelectorNoItems" xml:space="preserve">
<value>There are no contacts</value>
</data>
<data name="ContactSelectorNoResult" xml:space="preserve">
<value>No such contact</value>
</data>
<data name="ContactSelectorNotFoundError" xml:space="preserve">
<value>There is no such company</value>
</data>
<data name="ContinueButton" xml:space="preserve">
<value>Continue</value>
</data>
<data name="CreateButton" xml:space="preserve">
<value>Create</value>
</data>
<data name="CreateReportError" xml:space="preserve">
<value>Error while generating report</value>
</data>
<data name="DeleteButton" xml:space="preserve">
<value>Delete</value>
</data>
<data name="EditButton" xml:space="preserve">
<value>Edit</value>
</data>
<data name="Empty" xml:space="preserve">
<value>Empty</value>
</data>
<data name="EmptyCommentErrorMessage" xml:space="preserve">
<value>Comment cannot be empty</value>
</data>
<data name="ErrorEmptyEmail" xml:space="preserve">
<value>Enter the email</value>
</data>
<data name="ErrorEmptyField" xml:space="preserve">
<value>Please fill in this field</value>
</data>
<data name="ErrorEmptyGroupTitle" xml:space="preserve">
<value>Enter the group title</value>
</data>
<data name="ErrorEmptyUserFirstName" xml:space="preserve">
<value>Enter the first name</value>
</data>
<data name="ErrorEmptyUserLastName" xml:space="preserve">
<value>Enter the last name</value>
</data>
<data name="ErrorGroupNotExist" xml:space="preserve">
<value>There is no such group</value>
</data>
<data name="ErrorHeadNotExist" xml:space="preserve">
<value>There is not such person</value>
</data>
<data name="ErrorMesLongField64" xml:space="preserve">
<value>64 chars maximum</value>
</data>
<data name="ErrorMessage_InvalidDate" xml:space="preserve">
<value>Registration date must be later than birth date</value>
</data>
<data name="ErrorMessageContactsDuplicated" xml:space="preserve">
<value>Cannot add the same account and contact twice.</value>
</data>
<data name="ErrorMessageLongField64" xml:space="preserve">
<value>You can only enter up to 64 characters for this field.</value>
</data>
<data name="ErrorNotCorrectEmail" xml:space="preserve">
<value>Incorrect email</value>
</data>
<data name="ErrorPortalNameExist" xml:space="preserve">
<value>Portal name is already taken</value>
</data>
<data name="ErrorPortalNameIncorrect" xml:space="preserve">
<value>Not allowed characters in portal name</value>
</data>
<data name="ErrorPortalNameTooShort" xml:space="preserve">
<value>Portal name is too short</value>
</data>
<data name="ErrorPortalNameWasNotChanged" xml:space="preserve">
<value>Portal name has not been changed</value>
</data>
<data name="FinishImportUserTitle" xml:space="preserve">
<value>The users have been successfully added.</value>
</data>
<data name="GreetingRingtones" xml:space="preserve">
<value>Greeting ringtones</value>
</data>
<data name="GroupSelectorAddSuccess" xml:space="preserve">
<value>Group {0} was created successfully.</value>
</data>
<data name="GroupSelectorAddText" xml:space="preserve">
<value>Create new group</value>
</data>
<data name="GroupSelectorEmptyList" xml:space="preserve">
<value>No groups in this list</value>
</data>
<data name="GroupSelectorNoResults" xml:space="preserve">
<value>No such group</value>
</data>
<data name="ImportContactsIncorrectFields" xml:space="preserve">
<value>Make sure that all user fields including first name, last name and email address are filled correctly</value>
</data>
<data name="ImportUserOverlimitHeader" xml:space="preserve">
<value>Your pricing plan does not allow you to add any more users</value>
</data>
<data name="ImportUserOverlimitReason" xml:space="preserve">
<value>The selected users will be added as guests. You will be able to change their roles later in the 'People' module.</value>
</data>
<data name="IncorrectIPAddressFormatError" xml:space="preserve">
<value>Incorrect IP address format</value>
</data>
<data name="InviteButton" xml:space="preserve">
<value>Invite</value>
</data>
<data name="IPRestrictionsSettingsSuccessfullyUpdated" xml:space="preserve">
<value>Settings have been successfully updated</value>
</data>
<data name="LdapSettingsEmptyField" xml:space="preserve">
<value>Empty field</value>
</data>
<data name="LdapSettingsIncorrectPortNumber" xml:space="preserve">
<value>Incorrect port number</value>
</data>
<data name="LicenseAgreementsError" xml:space="preserve">
<value>You need to read and agree with the License Agreement</value>
</data>
<data name="LicenseKeyError" xml:space="preserve">
<value>License is not correct</value>
</data>
<data name="LinkCopySuccess" xml:space="preserve">
<value>Link has been copied to the clipboard</value>
</data>
<data name="LoadingDescription" xml:space="preserve">
<value>Please wait...</value>
</data>
<data name="LoadingPleaseWait" xml:space="preserve">
<value>Loading, please wait.</value>
</data>
<data name="LoadingProcessing" xml:space="preserve">
<value>Loading...</value>
</data>
<data name="MagnificContentError" xml:space="preserve">
<value>{0}The content{1} could not be loaded.</value>
</data>
<data name="MagnificImageError" xml:space="preserve">
<value>{0}The image{1} could not be loaded.</value>
</data>
<data name="MailIcsCalendarAllDayEventLabel" xml:space="preserve">
<value>all day</value>
</data>
<data name="MailIcsCancelDescription" xml:space="preserve">
<value>Event has been canceled.</value>
</data>
<data name="MailIcsCancelDescriptionMerged" xml:space="preserve">
<value>Event "{0}" has been canceled.</value>
</data>
<data name="MailIcsCancelSubject" xml:space="preserve">
<value>Canceled: {0}</value>
</data>
<data name="MailIcsFinishDescription" xml:space="preserve">
<value>Event has been finished.</value>
</data>
<data name="MailIcsReplyMaybeDescription" xml:space="preserve">
<value>{0} tentatively accepted the invitation to</value>
</data>
<data name="MailIcsReplyNoDescription" xml:space="preserve">
<value>{0} declined the invitation to</value>
</data>
<data name="MailIcsReplySubject" xml:space="preserve">
<value>Reply: {0}</value>
</data>
<data name="MailIcsReplyYesDescription" xml:space="preserve">
<value>{0} accepted the invitation to</value>
</data>
<data name="MailIcsRequestDescription" xml:space="preserve">
<value>{0} invites you to</value>
</data>
<data name="MailIcsRequestSubject" xml:space="preserve">
<value>Invitation: {0}</value>
</data>
<data name="MailIcsRRuleAndLabel" xml:space="preserve">
<value>and</value>
</data>
<data name="MailIcsRRuleApproximateLabel" xml:space="preserve">
<value>approximate</value>
</data>
<data name="MailIcsRRuleAtLabel" xml:space="preserve">
<value>at</value>
</data>
<data name="MailIcsRRuleDayLabel" xml:space="preserve">
<value>day</value>
</data>
<data name="MailIcsRRuleDaysLabel" xml:space="preserve">
<value>days</value>
</data>
<data name="MailIcsRRuleEveryLabel" xml:space="preserve">
<value>every</value>
</data>
<data name="MailIcsRRuleForLabel" xml:space="preserve">
<value>for</value>
</data>
<data name="MailIcsRRuleHourLabel" xml:space="preserve">
<value>hour</value>
</data>
<data name="MailIcsRRuleHoursLabel" xml:space="preserve">
<value>hours</value>
</data>
<data name="MailIcsRRuleInLabel" xml:space="preserve">
<value>in</value>
</data>
<data name="MailIcsRRuleLastLabel" xml:space="preserve">
<value>last</value>
</data>
<data name="MailIcsRRuleMonthLabel" xml:space="preserve">
<value>month</value>
</data>
<data name="MailIcsRRuleMonthsLabel" xml:space="preserve">
<value>months</value>
</data>
<data name="MailIcsRRuleNdLabel" xml:space="preserve">
<value>nd</value>
</data>
<data name="MailIcsRRuleOnLabel" xml:space="preserve">
<value>on</value>
</data>
<data name="MailIcsRRuleOnTheLabel" xml:space="preserve">
<value>on the</value>
</data>
<data name="MailIcsRRuleOrLabel" xml:space="preserve">
<value>or</value>
</data>
<data name="MailIcsRRuleParseErrorLabel" xml:space="preserve">
<value>unknown format</value>
</data>
<data name="MailIcsRRuleRdLabel" xml:space="preserve">
<value>rd</value>
</data>
<data name="MailIcsRRuleStLabel" xml:space="preserve">
<value>st</value>
</data>
<data name="MailIcsRRuleTheLabel" xml:space="preserve">
<value>the</value>
</data>
<data name="MailIcsRRuleThLabel" xml:space="preserve">
<value>th</value>
</data>
<data name="MailIcsRRuleTimeLabel" xml:space="preserve">
<value>time</value>
</data>
<data name="MailIcsRRuleTimesLabel" xml:space="preserve">
<value>times</value>
</data>
<data name="MailIcsRRuleUntilLabel" xml:space="preserve">
<value>until</value>
</data>
<data name="MailIcsRRuleWeekdayLabel" xml:space="preserve">
<value>weekday</value>
</data>
<data name="MailIcsRRuleWeekdaysLabel" xml:space="preserve">
<value>weekdays</value>
</data>
<data name="MailIcsRRuleWeekLabel" xml:space="preserve">
<value>week</value>
</data>
<data name="MailIcsRRuleWeeksLabel" xml:space="preserve">
<value>weeks</value>
</data>
<data name="MailIcsRRuleYearLabel" xml:space="preserve">
<value>year</value>
</data>
<data name="MailIcsRRuleYearsLabel" xml:space="preserve">
<value>years</value>
</data>
<data name="MailIcsUpdateDescription" xml:space="preserve">
<value>Event has been changed.</value>
</data>
<data name="MailIcsUpdateSubject" xml:space="preserve">
<value>Update: {0}</value>
</data>
<data name="MailIcsYouReplyMaybeDescription" xml:space="preserve">
<value>You tentatively accepted the invitation to</value>
</data>
<data name="MailIcsYouReplyNoDescription" xml:space="preserve">
<value>You declined the invitation to</value>
</data>
<data name="MailIcsYouReplyYesDescription" xml:space="preserve">
<value>You accepted the invitation to</value>
</data>
<data name="MailIcsYouSentRequestDescription" xml:space="preserve">
<value>You sent the invitation to</value>
</data>
<data name="MailSendMessageError" xml:space="preserve">
<value>A problem has occurred while trying to send this message.</value>
</data>
<data name="MailSentIcalCancelText" xml:space="preserve">
<value>Event cancellation notification has been sent to attendees.</value>
</data>
<data name="MailSentIcalRequestText" xml:space="preserve">
<value>Your request has been sent to attendees.</value>
</data>
<data name="MailSentIcalResponseText" xml:space="preserve">
<value>Your response has been sent to the organizer.</value>
</data>
<data name="MailSentMessageText" xml:space="preserve">
<value>Message has been sent.</value>
</data>
<data name="MeLabel" xml:space="preserve">
<value>Me</value>
</data>
<data name="MilestoneSelectorAddText" xml:space="preserve">
<value>Create new milestone</value>
</data>
<data name="MilestoneSelectorEmptyDueDateError" xml:space="preserve">
<value>Choose the due date</value>
</data>
<data name="MilestoneSelectorEmptyList" xml:space="preserve">
<value>No milestones in this list</value>
</data>
<data name="MilestoneSelectorEmptyProjectError" xml:space="preserve">
<value>Choose the project</value>
</data>
<data name="MilestoneSelectorEmptyResponsibleError" xml:space="preserve">
<value>Choose the responsible</value>
</data>
<data name="MilestoneSelectorEmptyTitleError" xml:space="preserve">
<value>Each milestone must have a title</value>
</data>
<data name="MilestoneSelectorNoItems" xml:space="preserve">
<value>No milestone in this project</value>
</data>
<data name="MilestoneSelectorNoResult" xml:space="preserve">
<value>No such milestone</value>
</data>
<data name="MilestoneSelectorPersonNotFoundError" xml:space="preserve">
<value>No such person</value>
</data>
<data name="MilestoneSelectorProjectNotFoundError" xml:space="preserve">
<value>No such project</value>
</data>
<data name="NeverShow" xml:space="preserve">
<value>Never Show</value>
</data>
<data name="OfflineStatus" xml:space="preserve">
<value>Offline</value>
</data>
<data name="OnlineStatus" xml:space="preserve">
<value>Online</value>
</data>
<data name="OperationFailedMsg" xml:space="preserve">
<value>Error while executing the operation.</value>
</data>
<data name="OperationSuccededMsg" xml:space="preserve">
<value>Operation has been successfully completed.</value>
</data>
<data name="People" xml:space="preserve">
<value>People</value>
</data>
<data name="PortalRenameConfirmationPopup" xml:space="preserve">
<value>{0}You are about to rename your portal.{1}{0}Are you sure you want to continue?{1}</value>
</data>
<data name="PortalRenameConfirmationTitle" xml:space="preserve">
<value>Portal renaming confirmation</value>
</data>
<data name="ProjectSelectorAddText" xml:space="preserve">
<value>Create new project</value>
</data>
<data name="ProjectSelectorEmptyList" xml:space="preserve">
<value>No projects in this list</value>
</data>
<data name="ProjectSelectorEmptyManagerError" xml:space="preserve">
<value>Each project must have a manager</value>
</data>
<data name="ProjectSelectorEmptyTitleError" xml:space="preserve">
<value>Each project must have a title</value>
</data>
<data name="ProjectSelectorNoItems" xml:space="preserve">
<value>No projects in this group</value>
</data>
<data name="ProjectSelectorNoResult" xml:space="preserve">
<value>No such project</value>
</data>
<data name="ProjectSelectorNotPersonError" xml:space="preserve">
<value>No such person</value>
</data>
<data name="QueueRingtones" xml:space="preserve">
<value>Queue ringtones</value>
</data>
<data name="SameIPRestrictionError" xml:space="preserve">
<value>Same restrictions</value>
</data>
<data name="SavedTitle" xml:space="preserve">
<value>The settings are successfully saved</value>
</data>
<data name="SelectFile" xml:space="preserve">
<value>Select file</value>
</data>
<data name="SelectFolder" xml:space="preserve">
<value>Select folder</value>
</data>
<data name="SelectorCompany" xml:space="preserve">
<value>Company</value>
</data>
<data name="SelectorCompanyName" xml:space="preserve">
<value>Company name</value>
</data>
<data name="SelectorContactType" xml:space="preserve">
<value>Contact type</value>
</data>
<data name="SelectorDueDate" xml:space="preserve">
<value>Due Date</value>
</data>
<data name="SelectorEmail" xml:space="preserve">
<value>Email</value>
</data>
<data name="SelectorFirstName" xml:space="preserve">
<value>First Name</value>
</data>
<data name="SelectorGroup" xml:space="preserve">
<value>Group</value>
</data>
<data name="SelectorHead" xml:space="preserve">
<value>Head</value>
</data>
<data name="SelectorLastName" xml:space="preserve">
<value>Last Name</value>
</data>
<data name="SelectorManager" xml:space="preserve">
<value>Manager</value>
</data>
<data name="SelectorMilestone" xml:space="preserve">
<value>Milestones title</value>
</data>
<data name="SelectorPerson" xml:space="preserve">
<value>Person</value>
</data>
<data name="SelectorProject" xml:space="preserve">
<value>Project</value>
</data>
<data name="SelectorResponsible" xml:space="preserve">
<value>Responsible</value>
</data>
<data name="SelectorSelectedItems" xml:space="preserve">
<value>selected</value>
</data>
<data name="SelectorTitle" xml:space="preserve">
<value>Title</value>
</data>
<data name="SelectorType" xml:space="preserve">
<value>Type</value>
</data>
<data name="SelectorUser" xml:space="preserve">
<value>User</value>
</data>
<data name="SelectorVisitor" xml:space="preserve">
<value>Guest</value>
</data>
<data name="SendTariffRequest" xml:space="preserve">
<value>Request was sent successfully</value>
</data>
<data name="ShareInviteLinkDscr" xml:space="preserve">
<value>I created my own web-office. Join me here: {0} #ONLYOFFICE #WebOffice</value>
</data>
<data name="ShowNext" xml:space="preserve">
<value>Show Next</value>
</data>
<data name="SuccessfullyImportCountUsers" xml:space="preserve">
<value>{0} user(s) were successfully added to the portal</value>
</data>
<data name="SuccessfullySaveSettingsMessage" xml:space="preserve">
<value>Settings have been successfully updated</value>
</data>
<data name="UnsubscribeProductMessage" xml:space="preserve">
<value>You are about to unsubscribe from all notifications of the "{0}" module. Are you sure you want to continue?</value>
</data>
<data name="UploadHttpsFileTypeError" xml:space="preserve">
<value>File extension error</value>
</data>
<data name="UploadVoipRingtoneEmptyFileErrorMsg" xml:space="preserve">
<value>Empty file</value>
</data>
<data name="UploadVoipRingtoneFileErrorMsg" xml:space="preserve">
<value>Error while uploading file</value>
</data>
<data name="UploadVoipRingtoneFileFormatErrorMsg" xml:space="preserve">
<value>Supported file format: mp3</value>
</data>
<data name="UploadVoipRingtoneFileSizeErrorMsg" xml:space="preserve">
<value>File size cannot exceed 5MB </value>
</data>
<data name="UserSelectorAddSuccess" xml:space="preserve">
<value>The profile for {0} was created successfully</value>
</data>
<data name="UserSelectorAddText" xml:space="preserve">
<value>Create new profile</value>
</data>
<data name="UserSelectorEmptyList" xml:space="preserve">
<value>No users in this list</value>
</data>
<data name="UserSelectorErrorLimitUsers" xml:space="preserve">
<value>Exceeds the number of maximum active users</value>
</data>
<data name="UserSelectorNoGroups" xml:space="preserve">
<value>No groups have been created at the portal so far. Go to the People module to group users.</value>
</data>
<data name="UserSelectorNoItems" xml:space="preserve">
<value>No users in this group</value>
</data>
<data name="UserSelectorNoResults" xml:space="preserve">
<value>No such user</value>
</data>
<data name="VoicemailRingtones" xml:space="preserve">
<value>Voice mail ringtones</value>
</data>
<data name="WaitingRingtones" xml:space="preserve">
<value>Waiting ringtones</value>
</data>
<data name="WarningMessageBeforeUnload" xml:space="preserve">
<value>If you leave now all the entered or unsaved data will be lost.</value>
</data>
<data name="WelcomeCollaboratorCan" xml:space="preserve">
<value>{0}This means that you can: {1}view portal content open for all portal users,{2}leave comments,{3}attach and download files.{4}</value>
</data>
<data name="WelcomeCollaboratorOtherActions" xml:space="preserve">
<value>In case you need some additional rights please contact your portal administrator.</value>
</data>
<data name="WelcomeCollaboratorPopupHeader" xml:space="preserve">
<value>Welcome to ONLYOFFICE</value>
</data>
<data name="WelcomeCollaboratorRole" xml:space="preserve">
<value>The portal administrator invited you as guest user to the portal.</value>
</data>
<data name="WelcomeCollaboratorStartWork" xml:space="preserve">
<value>Start work</value>
</data>
<data name="WelcomeToTeamlab" xml:space="preserve">
<value>Welcome to ONLYOFFICE!</value>
</data>
<data name="WizardCancelConfirmMessage" xml:space="preserve">
<value>You haven't set up any password. You will be able to do it later using the 'Forgot your password?' link at the portal login page. Are you sure you want to continue?</value>
</data>
<data name="CallIncoming" xml:space="preserve">
<value>Incoming call</value>
</data>
<data name="CallMissed" xml:space="preserve">
<value>Missed call</value>
</data>
<data name="StorageButtonEnable" xml:space="preserve">
<value>Подключить</value>
</data>
<data name="StorageButtonResetToDefault" xml:space="preserve">
<value>Reset to Default</value>
</data>
<data name="StorageCdnTitle" xml:space="preserve">
<value>Настройки CDN</value>
</data>
<data name="StorageStorageTitle" xml:space="preserve">
<value>Настройки хранилища</value>
</data>
<data name="EmptySelectedArea" xml:space="preserve">
<value>Select an area for avatar</value>
</data>
<data name="RestoreConsumerPath" xml:space="preserve">
<value>Path</value>
</data>
<data name="TipsAndTricksSubscribeBtn" xml:space="preserve">
<value>Subscribe to Tips&amp;Tricks</value>
</data>
<data name="TipsAndTricksUnsubscribeBtn" xml:space="preserve">
<value>Unsubscribe from Tips&amp;Tricks</value>
</data>
<data name="FirstName" xml:space="preserve">
<value>First Name</value>
</data>
<data name="LastName" xml:space="preserve">
<value>Last Name</value>
</data>
<data name="Complete" xml:space="preserve">
<value>Complete</value>
</data>
<data name="Error" xml:space="preserve">
<value>Error</value>
</data>
<data name="Open" xml:space="preserve">
<value>Open</value>
</data>
<data name="NotAddedAnyTemplates" xml:space="preserve">
<value>You have not added any templates</value>
</data>
<data name="TemplateNotFound" xml:space="preserve">
<value>Template not found</value>
</data>
<data name="UserPending" xml:space="preserve">
<value>pending</value>
</data>
<data name="ImportOf" xml:space="preserve">
<value>of</value>
</data>
<data name="OpenTalk" xml:space="preserve">
<value>Open Talk</value>
</data>
<data name="MailNoSubject" xml:space="preserve">
<value>no subject</value>
</data>
<data name="ErrorInvalidUserFirstName" xml:space="preserve">
<value>Invalid first name</value>
</data>
<data name="ErrorInvalidUserLastName" xml:space="preserve">
<value>Invalid last name</value>
</data>
</root>

File diff suppressed because it is too large Load Diff

View File

@ -1,822 +0,0 @@
<?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="Afghanistan" xml:space="preserve">
<value>Afghanistan (‫افغانستان‬&amp;lrm;)</value>
</data>
<data name="Albania" xml:space="preserve">
<value>Albania (Shqipëria)</value>
</data>
<data name="Algeria" xml:space="preserve">
<value>Algeria (‫الجزائر‬&amp;lrm;)</value>
</data>
<data name="AmericanSamoa" xml:space="preserve">
<value>American Samoa (American Samoa)</value>
</data>
<data name="Andorra" xml:space="preserve">
<value>Andorra (Andorra)</value>
</data>
<data name="Angola" xml:space="preserve">
<value>Angola (Angola)</value>
</data>
<data name="Anguilla" xml:space="preserve">
<value>Anguilla (Anguilla)</value>
</data>
<data name="AntiguaAndBarbuda" xml:space="preserve">
<value>Antigua and Barbuda (Antigua and Barbuda)</value>
</data>
<data name="Argentina" xml:space="preserve">
<value>Argentina (Argentina)</value>
</data>
<data name="Armenia" xml:space="preserve">
<value>Armenia (Հայաստանի Հանրապետություն)</value>
</data>
<data name="Aruba" xml:space="preserve">
<value>Aruba (Aruba)</value>
</data>
<data name="AscensionIsland" xml:space="preserve">
<value>Ascension Island (Ascension Island)</value>
</data>
<data name="Australia" xml:space="preserve">
<value>Australia (Australia)</value>
</data>
<data name="Austria" xml:space="preserve">
<value>Austria (Österreich)</value>
</data>
<data name="Azerbaijan" xml:space="preserve">
<value>Azerbaijan (Azərbaycan)</value>
</data>
<data name="Bahamas" xml:space="preserve">
<value>Bahamas (Bahamas)</value>
</data>
<data name="Bahrain" xml:space="preserve">
<value>Bahrain (‫البحرين‬&amp;lrm;)</value>
</data>
<data name="Bangladesh" xml:space="preserve">
<value>Bangladesh (বাংলাদেশ)</value>
</data>
<data name="Barbados" xml:space="preserve">
<value>Barbados (Barbados)</value>
</data>
<data name="Belarus" xml:space="preserve">
<value>Belarus (Беларусь)</value>
</data>
<data name="Belgium" xml:space="preserve">
<value>Belgium (België)</value>
</data>
<data name="Belize" xml:space="preserve">
<value>Belize (Belize)</value>
</data>
<data name="Benin" xml:space="preserve">
<value>Benin (Bénin)</value>
</data>
<data name="Bermuda" xml:space="preserve">
<value>Bermuda (Bermuda)</value>
</data>
<data name="Bhutan" xml:space="preserve">
<value>Bhutan (འབྲུག)</value>
</data>
<data name="Bolivia" xml:space="preserve">
<value>Bolivia (Bolivia)</value>
</data>
<data name="BonaireSintEustatiusAndSaba" xml:space="preserve">
<value>Bonaire, Sint Eustatius and Saba (Caribbean Netherlands)</value>
</data>
<data name="BosniaAndHerzegovina" xml:space="preserve">
<value>Bosnia and Herzegovina (Bosna i Hercegovina)</value>
</data>
<data name="Botswana" xml:space="preserve">
<value>Botswana (Botswana)</value>
</data>
<data name="Brazil" xml:space="preserve">
<value>Brazil (Brasil)</value>
</data>
<data name="BritishIndianOceanTerritory" xml:space="preserve">
<value>British Indian Ocean Territory (British Indian Ocean Territory)</value>
</data>
<data name="BritishVirginIslands" xml:space="preserve">
<value>British Virgin Islands (British Virgin Islands)</value>
</data>
<data name="BruneiDarussalam" xml:space="preserve">
<value>Brunei Darussalam (Brunei)</value>
</data>
<data name="Bulgaria" xml:space="preserve">
<value>Bulgaria (България)</value>
</data>
<data name="BurkinaFaso" xml:space="preserve">
<value>Burkina Faso (Burkina Faso)</value>
</data>
<data name="Burundi" xml:space="preserve">
<value>Burundi (Uburundi)</value>
</data>
<data name="Cambodia" xml:space="preserve">
<value>Cambodia (កម្ពុជា)</value>
</data>
<data name="Cameroon" xml:space="preserve">
<value>Cameroon (Cameroun)</value>
</data>
<data name="Canada" xml:space="preserve">
<value>Canada (Canada)</value>
</data>
<data name="CapeVerde" xml:space="preserve">
<value>Cape Verde (Kabu Verdi)</value>
</data>
<data name="CaymanIslands" xml:space="preserve">
<value>Cayman Islands (Cayman Islands)</value>
</data>
<data name="CentralAfricanRepublic" xml:space="preserve">
<value>Central African Republic (République centrafricaine)</value>
</data>
<data name="Chad" xml:space="preserve">
<value>Chad (Tchad)</value>
</data>
<data name="Chile" xml:space="preserve">
<value>Chile (Chile)</value>
</data>
<data name="China" xml:space="preserve">
<value>China (中国)</value>
</data>
<data name="Colombia" xml:space="preserve">
<value>Colombia (Colombia)</value>
</data>
<data name="Comoros" xml:space="preserve">
<value>Comoros (‫جزر القمر‬&amp;lrm;)</value>
</data>
<data name="CongoBrazzaville" xml:space="preserve">
<value>Congo-Brazzaville (Congo-Brazzaville)</value>
</data>
<data name="CookIslands" xml:space="preserve">
<value>Cook Islands (Cook Islands)</value>
</data>
<data name="CostaRica" xml:space="preserve">
<value>Costa Rica (Costa Rica)</value>
</data>
<data name="Croatia" xml:space="preserve">
<value>Croatia (Hrvatska)</value>
</data>
<data name="Cuba" xml:space="preserve">
<value>Cuba (Cuba)</value>
</data>
<data name="Curacao" xml:space="preserve">
<value>Curacao (Curaçao)</value>
</data>
<data name="Cyprus" xml:space="preserve">
<value>Cyprus (Κύπρος)</value>
</data>
<data name="CzechRepublic" xml:space="preserve">
<value>Czech Republic (Česká republika)</value>
</data>
<data name="Denmark" xml:space="preserve">
<value>Denmark (Danmark)</value>
</data>
<data name="Djibouti" xml:space="preserve">
<value>Djibouti (Djibouti)</value>
</data>
<data name="Dominica" xml:space="preserve">
<value>Dominica (Dominica)</value>
</data>
<data name="DominicanRepublic" xml:space="preserve">
<value>Dominican Republic (República Dominicana)</value>
</data>
<data name="Ecuador" xml:space="preserve">
<value>Ecuador (Ecuador)</value>
</data>
<data name="Egypt" xml:space="preserve">
<value>Egypt (‫مصر‬&amp;lrm;)</value>
</data>
<data name="ElSalvador" xml:space="preserve">
<value>El Salvador (El Salvador)</value>
</data>
<data name="EquatorialGuinea" xml:space="preserve">
<value>Equatorial Guinea (Guinea Ecuatorial)</value>
</data>
<data name="Eritrea" xml:space="preserve">
<value>Eritrea (Eritrea)</value>
</data>
<data name="Estonia" xml:space="preserve">
<value>Estonia (Eesti)</value>
</data>
<data name="Ethiopia" xml:space="preserve">
<value>Ethiopia (Ethiopia)</value>
</data>
<data name="FaroeIslands" xml:space="preserve">
<value>Faroe Islands (Føroyar)</value>
</data>
<data name="Fiji" xml:space="preserve">
<value>Fiji (Fiji)</value>
</data>
<data name="Finland" xml:space="preserve">
<value>Finland (Suomi)</value>
</data>
<data name="France" xml:space="preserve">
<value>France (France)</value>
</data>
<data name="FrenchGuiana" xml:space="preserve">
<value>French Guiana (Guyane française)</value>
</data>
<data name="FrenchPolynesia" xml:space="preserve">
<value>French Polynesia (Polynésie française)</value>
</data>
<data name="Gabon" xml:space="preserve">
<value>Gabon (Gabon)</value>
</data>
<data name="Gambia" xml:space="preserve">
<value>Gambia (Gambia)</value>
</data>
<data name="Georgia" xml:space="preserve">
<value>Georgia (საქართველო)</value>
</data>
<data name="Germany" xml:space="preserve">
<value>Germany (Deutschland)</value>
</data>
<data name="Ghana" xml:space="preserve">
<value>Ghana (Gaana)</value>
</data>
<data name="Gibraltar" xml:space="preserve">
<value>Gibraltar (Gibraltar)</value>
</data>
<data name="Greece" xml:space="preserve">
<value>Greece (Ελλάδα)</value>
</data>
<data name="Greenland" xml:space="preserve">
<value>Greenland (Greenland)</value>
</data>
<data name="Grenada" xml:space="preserve">
<value>Grenada (Grenada)</value>
</data>
<data name="Guadeloupe" xml:space="preserve">
<value>Guadeloupe (Guadeloupe)</value>
</data>
<data name="Guam" xml:space="preserve">
<value>Guam (Guam)</value>
</data>
<data name="Guatemala" xml:space="preserve">
<value>Guatemala (Guatemala)</value>
</data>
<data name="Guinea" xml:space="preserve">
<value>Guinea (Guinée)</value>
</data>
<data name="GuineaBissau" xml:space="preserve">
<value>Guinea-Bissau (Guiné Bissau)</value>
</data>
<data name="Guyana" xml:space="preserve">
<value>Guyana (Guyana)</value>
</data>
<data name="Haiti" xml:space="preserve">
<value>Haiti (Haiti)</value>
</data>
<data name="Honduras" xml:space="preserve">
<value>Honduras (Honduras)</value>
</data>
<data name="HongKong" xml:space="preserve">
<value>Hong Kong (香港)</value>
</data>
<data name="Hungary" xml:space="preserve">
<value>Hungary (Magyarország)</value>
</data>
<data name="Iceland" xml:space="preserve">
<value>Iceland (Ísland)</value>
</data>
<data name="India" xml:space="preserve">
<value>India (भारत)</value>
</data>
<data name="Indonesia" xml:space="preserve">
<value>Indonesia (Indonesia)</value>
</data>
<data name="Iran" xml:space="preserve">
<value>Iran (‫ایران‬&amp;lrm;)</value>
</data>
<data name="Iraq" xml:space="preserve">
<value>Iraq (‫العراق‬&amp;lrm;)</value>
</data>
<data name="Ireland" xml:space="preserve">
<value>Ireland (Ireland)</value>
</data>
<data name="Israel" xml:space="preserve">
<value>Israel (‫ישראל‬&amp;lrm;)</value>
</data>
<data name="Italy" xml:space="preserve">
<value>Italy (Italia)</value>
</data>
<data name="IvoryCoast" xml:space="preserve">
<value>Ivory Coast (Côte dIvoire)</value>
</data>
<data name="Jamaica" xml:space="preserve">
<value>Jamaica (Jamaica)</value>
</data>
<data name="Japan" xml:space="preserve">
<value>Japan (日本)</value>
</data>
<data name="Jordan" xml:space="preserve">
<value>Jordan (‫الأردن‬&amp;lrm;)</value>
</data>
<data name="Kazakhstan" xml:space="preserve">
<value>Kazakhstan (Казахстан)</value>
</data>
<data name="Kenya" xml:space="preserve">
<value>Kenya (Kenya)</value>
</data>
<data name="Kiribati" xml:space="preserve">
<value>Kiribati (Kiribati)</value>
</data>
<data name="Kuwait" xml:space="preserve">
<value>Kuwait (‫الكويت‬&amp;lrm;)</value>
</data>
<data name="Kyrgyzstan" xml:space="preserve">
<value>Kyrgyzstan (Kyrgyzstan)</value>
</data>
<data name="Laos" xml:space="preserve">
<value>Laos (ສ.ປ.ປ ລາວ)</value>
</data>
<data name="Latvia" xml:space="preserve">
<value>Latvia (Latvija)</value>
</data>
<data name="Lebanon" xml:space="preserve">
<value>Lebanon (‫لبنان‬&amp;lrm;)</value>
</data>
<data name="Lesotho" xml:space="preserve">
<value>Lesotho (Lesotho)</value>
</data>
<data name="Liberia" xml:space="preserve">
<value>Liberia (Liberia)</value>
</data>
<data name="Libya" xml:space="preserve">
<value>Libya (‫ليبيا‬&amp;lrm;)</value>
</data>
<data name="Liechtenstein" xml:space="preserve">
<value>Liechtenstein (Liechtenstein)</value>
</data>
<data name="Lithuania" xml:space="preserve">
<value>Lithuania (Lietuva)</value>
</data>
<data name="Luxembourg" xml:space="preserve">
<value>Luxembourg (Luxembourg)</value>
</data>
<data name="Macau" xml:space="preserve">
<value>Macau (澳門)</value>
</data>
<data name="Macedonia" xml:space="preserve">
<value>Macedonia (Македонија)</value>
</data>
<data name="Madagascar" xml:space="preserve">
<value>Madagascar (Madagasikara)</value>
</data>
<data name="Malawi" xml:space="preserve">
<value>Malawi (Malawi)</value>
</data>
<data name="Malaysia" xml:space="preserve">
<value>Malaysia (Malaysia)</value>
</data>
<data name="Maldives" xml:space="preserve">
<value>Maldives (Maldives)</value>
</data>
<data name="Mali" xml:space="preserve">
<value>Mali (Mali)</value>
</data>
<data name="Malta" xml:space="preserve">
<value>Malta (Malta)</value>
</data>
<data name="Malvinas" xml:space="preserve">
<value>Malvinas (Falkland Islands [Islas Malvinas])</value>
</data>
<data name="MarshallIslands" xml:space="preserve">
<value>Marshall Islands (Marshall Islands)</value>
</data>
<data name="Martinique" xml:space="preserve">
<value>Martinique (Martinique)</value>
</data>
<data name="Mauritania" xml:space="preserve">
<value>Mauritania (‫موريتانيا‬&amp;lrm;)</value>
</data>
<data name="Mauritius" xml:space="preserve">
<value>Mauritius (Moris)</value>
</data>
<data name="Mexico" xml:space="preserve">
<value>Mexico (México)</value>
</data>
<data name="Micronesia" xml:space="preserve">
<value>Micronesia (Micronesia)</value>
</data>
<data name="Moldova" xml:space="preserve">
<value>Moldova (Republica Moldova)</value>
</data>
<data name="Monaco" xml:space="preserve">
<value>Monaco (Monaco)</value>
</data>
<data name="Mongolia" xml:space="preserve">
<value>Mongolia (Mongolia)</value>
</data>
<data name="Montenegro" xml:space="preserve">
<value>Montenegro (Crna Gora)</value>
</data>
<data name="Montserrat" xml:space="preserve">
<value>Montserrat (Montserrat)</value>
</data>
<data name="Morocco" xml:space="preserve">
<value>Morocco (‫المغرب‬&amp;lrm;)</value>
</data>
<data name="Mozambique" xml:space="preserve">
<value>Mozambique (Moçambique)</value>
</data>
<data name="Myanmar" xml:space="preserve">
<value>Myanmar [Burma] (မြန်မာ)</value>
</data>
<data name="Namibia" xml:space="preserve">
<value>Namibia (Namibia)</value>
</data>
<data name="Nauru" xml:space="preserve">
<value>Nauru (Nauru)</value>
</data>
<data name="Nepal" xml:space="preserve">
<value>Nepal (नेपाल)</value>
</data>
<data name="Netherlands" xml:space="preserve">
<value>Netherlands (Nederland)</value>
</data>
<data name="NewCaledonia" xml:space="preserve">
<value>New Caledonia (Nouvelle-Calédonie)</value>
</data>
<data name="NewZealand" xml:space="preserve">
<value>New Zealand (New Zealand)</value>
</data>
<data name="Nicaragua" xml:space="preserve">
<value>Nicaragua (Nicaragua)</value>
</data>
<data name="Niger" xml:space="preserve">
<value>Niger (Nijar)</value>
</data>
<data name="Nigeria" xml:space="preserve">
<value>Nigeria (Nigeria)</value>
</data>
<data name="Niue" xml:space="preserve">
<value>Niue (Niue)</value>
</data>
<data name="NorfolkIsland" xml:space="preserve">
<value>Norfolk Island (Norfolk Island)</value>
</data>
<data name="NorthernMarianaIslands" xml:space="preserve">
<value>Northern Mariana Islands (Northern Mariana Islands)</value>
</data>
<data name="NorthKorea" xml:space="preserve">
<value>North Korea (조선 민주주의 인민 공화국)</value>
</data>
<data name="Norway" xml:space="preserve">
<value>Norway (Norge)</value>
</data>
<data name="Oman" xml:space="preserve">
<value>Oman (‫عُمان‬&amp;lrm;)</value>
</data>
<data name="Pakistan" xml:space="preserve">
<value>Pakistan (‫پاکستان‬&amp;lrm;)</value>
</data>
<data name="Palau" xml:space="preserve">
<value>Palau (Palau)</value>
</data>
<data name="Palestine" xml:space="preserve">
<value>Palestine (‫فلسطين‬&amp;lrm;)</value>
</data>
<data name="Panama" xml:space="preserve">
<value>Panama (Panamá)</value>
</data>
<data name="PapuaNewGuinea" xml:space="preserve">
<value>Papua New Guinea (Papua New Guinea)</value>
</data>
<data name="Paraguay" xml:space="preserve">
<value>Paraguay (Paraguay)</value>
</data>
<data name="Peru" xml:space="preserve">
<value>Peru (Perú)</value>
</data>
<data name="Philippines" xml:space="preserve">
<value>Philippines (Philippines)</value>
</data>
<data name="Poland" xml:space="preserve">
<value>Poland (Polska)</value>
</data>
<data name="Portugal" xml:space="preserve">
<value>Portugal (Portugal)</value>
</data>
<data name="PuertoRico" xml:space="preserve">
<value>Puerto Rico (Puerto Rico)</value>
</data>
<data name="Qatar" xml:space="preserve">
<value>Qatar (‫قطر‬&amp;lrm;)</value>
</data>
<data name="RepublicOfKorea" xml:space="preserve">
<value>Republic of Korea (대한민국)</value>
</data>
<data name="Reunion" xml:space="preserve">
<value>Reunion (Réunion)</value>
</data>
<data name="Romania" xml:space="preserve">
<value>Romania (România)</value>
</data>
<data name="Russia" xml:space="preserve">
<value>Russia (Россия)</value>
</data>
<data name="Rwanda" xml:space="preserve">
<value>Rwanda (Rwanda)</value>
</data>
<data name="SaintBarthelemy" xml:space="preserve">
<value>Saint Barthélemy (Saint-Barthélémy)</value>
</data>
<data name="SaintHelena" xml:space="preserve">
<value>Saint Helena (Saint Helena)</value>
</data>
<data name="SaintKittsAndNevis" xml:space="preserve">
<value>Saint Kitts and Nevis (Saint Kitts and Nevis)</value>
</data>
<data name="SaintLucia" xml:space="preserve">
<value>Saint Lucia (Saint Lucia)</value>
</data>
<data name="SaintMartinIsland" xml:space="preserve">
<value>Saint Martin Island (Saint-Martin [partie française])</value>
</data>
<data name="SaintPierreAndMiquelon" xml:space="preserve">
<value>Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)</value>
</data>
<data name="SaintVincentAndTheGrenadines" xml:space="preserve">
<value>Saint Vincent and the Grenadines (Saint Vincent and the Grenadines)</value>
</data>
<data name="Samoa" xml:space="preserve">
<value>Samoa (Samoa)</value>
</data>
<data name="SanMarino" xml:space="preserve">
<value>San Marino (San Marino)</value>
</data>
<data name="SaoTomeAndPrincipe" xml:space="preserve">
<value>Sao Tome and Principe (São Tomé e Príncipe)</value>
</data>
<data name="SaudiArabia" xml:space="preserve">
<value>Saudi Arabia (‫المملكة العربية السعودية‬&amp;lrm;)</value>
</data>
<data name="Senegal" xml:space="preserve">
<value>Senegal (Sénégal)</value>
</data>
<data name="Serbia" xml:space="preserve">
<value>Serbia (Србија)</value>
</data>
<data name="Seychelles" xml:space="preserve">
<value>Seychelles (Seychelles)</value>
</data>
<data name="SierraLeone" xml:space="preserve">
<value>Sierra Leone (Sierra Leone)</value>
</data>
<data name="Singapore" xml:space="preserve">
<value>Singapore (Singapore)</value>
</data>
<data name="SintMaarten" xml:space="preserve">
<value>Sint Maarten (Sint Maarten)</value>
</data>
<data name="Slovakia" xml:space="preserve">
<value>Slovakia (Slovensko)</value>
</data>
<data name="Slovenia" xml:space="preserve">
<value>Slovenia (Slovenija)</value>
</data>
<data name="SolomonIslands" xml:space="preserve">
<value>Solomon Islands (Solomon Islands)</value>
</data>
<data name="Somalia" xml:space="preserve">
<value>Somalia (Soomaaliya)</value>
</data>
<data name="SouthAfrica" xml:space="preserve">
<value>South Africa (South Africa)</value>
</data>
<data name="SouthSudan" xml:space="preserve">
<value>South Sudan (‫جنوب السودان‬&amp;lrm;)</value>
</data>
<data name="Spain" xml:space="preserve">
<value>Spain (España)</value>
</data>
<data name="SriLanka" xml:space="preserve">
<value>Sri Lanka (ශ්&amp;zwj;රී ලංකාව)</value>
</data>
<data name="Sudan" xml:space="preserve">
<value>Sudan (‫السودان‬&amp;lrm;)</value>
</data>
<data name="Suriname" xml:space="preserve">
<value>Suriname (Suriname)</value>
</data>
<data name="Swaziland" xml:space="preserve">
<value>Swaziland (Swaziland)</value>
</data>
<data name="Sweden" xml:space="preserve">
<value>Sweden (Sverige)</value>
</data>
<data name="Switzerland" xml:space="preserve">
<value>Switzerland (Schweiz)</value>
</data>
<data name="Syria" xml:space="preserve">
<value>Syria (‫سوريا‬&amp;lrm;)</value>
</data>
<data name="Taiwan" xml:space="preserve">
<value>Taiwan (台灣)</value>
</data>
<data name="Tajikistan" xml:space="preserve">
<value>Tajikistan (Tajikistan)</value>
</data>
<data name="Tanzania" xml:space="preserve">
<value>Tanzania (Tanzania)</value>
</data>
<data name="Thailand" xml:space="preserve">
<value>Thailand (ไทย)</value>
</data>
<data name="TheDemocraticRepublicOfTheCongo" xml:space="preserve">
<value>The Democratic Republic of the Congo (Jamhuri ya Kidemokrasia ya Kongo)</value>
</data>
<data name="TimorLeste" xml:space="preserve">
<value>Timor-Leste (Timor-Leste)</value>
</data>
<data name="Togo" xml:space="preserve">
<value>Togo (Togo)</value>
</data>
<data name="Tokelau" xml:space="preserve">
<value>Tokelau (Tokelau)</value>
</data>
<data name="Tonga" xml:space="preserve">
<value>Tonga (Tonga)</value>
</data>
<data name="TrinidadAndTobago" xml:space="preserve">
<value>Trinidad and Tobago (Trinidad and Tobago)</value>
</data>
<data name="Tunisia" xml:space="preserve">
<value>Tunisia (‫تونس‬&amp;lrm;)</value>
</data>
<data name="Turkey" xml:space="preserve">
<value>Turkey (Türkiye)</value>
</data>
<data name="Turkmenistan" xml:space="preserve">
<value>Turkmenistan (Turkmenistan)</value>
</data>
<data name="TurksAndCaicosIslands" xml:space="preserve">
<value>Turks and Caicos Islands (Turks and Caicos Islands)</value>
</data>
<data name="Tuvalu" xml:space="preserve">
<value>Tuvalu (Tuvalu)</value>
</data>
<data name="Uganda" xml:space="preserve">
<value>Uganda (Uganda)</value>
</data>
<data name="UK" xml:space="preserve">
<value>UK (United Kingdom)</value>
</data>
<data name="Ukraine" xml:space="preserve">
<value>Ukraine (Україна)</value>
</data>
<data name="UnitedArabEmirates" xml:space="preserve">
<value>United Arab Emirates (‫الإمارات العربية المتحدة‬&amp;lrm;)</value>
</data>
<data name="UnitedStates" xml:space="preserve">
<value>United States (United States)</value>
</data>
<data name="Uruguay" xml:space="preserve">
<value>Uruguay (Uruguay)</value>
</data>
<data name="USVirginIslands" xml:space="preserve">
<value>US Virgin Islands (US Virgin Islands)</value>
</data>
<data name="Uzbekistan" xml:space="preserve">
<value>Uzbekistan (Ўзбекистон)</value>
</data>
<data name="Vanuatu" xml:space="preserve">
<value>Vanuatu (Vanuatu)</value>
</data>
<data name="VaticanCity" xml:space="preserve">
<value>Vatican City (Città del Vaticano)</value>
</data>
<data name="Venezuela" xml:space="preserve">
<value>Venezuela (Venezuela)</value>
</data>
<data name="Vietnam" xml:space="preserve">
<value>Vietnam (Việt Nam)</value>
</data>
<data name="WallisAndFutuna" xml:space="preserve">
<value>Wallis and Futuna (Wallis and Futuna)</value>
</data>
<data name="Yemen" xml:space="preserve">
<value>Yemen (‫اليمن‬&amp;lrm;)</value>
</data>
<data name="Zambia" xml:space="preserve">
<value>Zambia (Zambia)</value>
</data>
<data name="Zimbabwe" xml:space="preserve">
<value>Zimbabwe (Zimbabwe)</value>
</data>
</root>

View File

@ -1,189 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace ASC.Web.Core.PublicResources {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class WhiteLabelResource {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal WhiteLabelResource() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ASC.Web.Core.PublicResources.WhiteLabelResource", typeof(WhiteLabelResource).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Your browser does not support the HTML5 canvas tag..
/// </summary>
internal static string BrowserNoCanvasSupport {
get {
return ResourceManager.GetString("BrowserNoCanvasSupport", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Company name.
/// </summary>
internal static string CompanyNameForCanvasLogo {
get {
return ResourceManager.GetString("CompanyNameForCanvasLogo", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unknown image file type.
/// </summary>
internal static string ErrorFileNotImage {
get {
return ResourceManager.GetString("ErrorFileNotImage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Image size exceed the allowed parameters.
/// </summary>
internal static string ErrorImageSize {
get {
return ResourceManager.GetString("ErrorImageSize", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The sizes are shown for the Retina displays. For the displays with standard resolutions the logo width and height will be resized accordingly upon upload..
/// </summary>
internal static string HelpAnswerWhiteLabelSettings {
get {
return ResourceManager.GetString("HelpAnswerWhiteLabelSettings", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0}Portal Logo Settings{1} feature is available for paid portals only..
/// </summary>
internal static string HelpAnswerWhiteLabelSettingsForPaid {
get {
return ResourceManager.GetString("HelpAnswerWhiteLabelSettingsForPaid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Logo for the About/Login page.
/// </summary>
internal static string LogoDark {
get {
return ResourceManager.GetString("LogoDark", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Logo for the editors header.
/// </summary>
internal static string LogoDocsEditor {
get {
return ResourceManager.GetString("LogoDocsEditor", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Favicon.
/// </summary>
internal static string LogoFavicon {
get {
return ResourceManager.GetString("LogoFavicon", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Logo for the portal header.
/// </summary>
internal static string LogoLightSmall {
get {
return ResourceManager.GetString("LogoLightSmall", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Portal Logo Settings.
/// </summary>
internal static string LogoSettings {
get {
return ResourceManager.GetString("LogoSettings", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to We recommended that you use images in {0}PNG{1} format with transparent background.
/// </summary>
internal static string LogoUploadRecommendation {
get {
return ResourceManager.GetString("LogoUploadRecommendation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to White label settings have been successfully saved.
/// </summary>
internal static string SuccessfullySaveWhiteLabelSettingsMessage {
get {
return ResourceManager.GetString("SuccessfullySaveWhiteLabelSettingsMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use as logo.
/// </summary>
internal static string UseAsLogoButton {
get {
return ResourceManager.GetString("UseAsLogoButton", resourceCulture);
}
}
}
}

View File

@ -1,162 +0,0 @@
<?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="BrowserNoCanvasSupport" xml:space="preserve">
<value>Your browser does not support the HTML5 canvas tag.</value>
</data>
<data name="CompanyNameForCanvasLogo" xml:space="preserve">
<value>Company name</value>
</data>
<data name="ErrorFileNotImage" xml:space="preserve">
<value>Unknown image file type</value>
</data>
<data name="ErrorImageSize" xml:space="preserve">
<value>Image size exceed the allowed parameters</value>
</data>
<data name="HelpAnswerWhiteLabelSettings" xml:space="preserve">
<value>The sizes are shown for the Retina displays. For the displays with standard resolutions the logo width and height will be resized accordingly upon upload.</value>
</data>
<data name="HelpAnswerWhiteLabelSettingsForPaid" xml:space="preserve">
<value>{0}Portal Logo Settings{1} feature is available for paid portals only.</value>
</data>
<data name="LogoDark" xml:space="preserve">
<value>Logo for the About/Login page</value>
</data>
<data name="LogoDocsEditor" xml:space="preserve">
<value>Logo for the editors header</value>
</data>
<data name="LogoFavicon" xml:space="preserve">
<value>Favicon</value>
</data>
<data name="LogoLightSmall" xml:space="preserve">
<value>Logo for the portal header</value>
</data>
<data name="LogoSettings" xml:space="preserve">
<value>Portal Logo Settings</value>
</data>
<data name="LogoUploadRecommendation" xml:space="preserve">
<value>We recommended that you use images in {0}PNG{1} format with transparent background</value>
</data>
<data name="SuccessfullySaveWhiteLabelSettingsMessage" xml:space="preserve">
<value>White label settings have been successfully saved</value>
</data>
<data name="UseAsLogoButton" xml:space="preserve">
<value>Use as logo</value>
</data>
</root>

View File

@ -9,6 +9,7 @@
"bootstrap": "^4.3.1",
"lodash": "4.17.14",
"lodash-es": "4.17.14",
"moment": "^2.24.0",
"node-sass": "^4.12.0",
"rc-tree": "^2.1.0",
"react": "^16.8.6",

View File

@ -1,18 +1,18 @@
import React from 'react';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import { withKnobs, boolean, text, color, select, date } from '@storybook/addon-knobs/react';
import { withKnobs, boolean, text, color, select, date } from '@storybook/addon-knobs/react';
import withReadme from 'storybook-readme/with-readme';
import Readme from './README.md';
import { Calendar } from 'asc-web-components';
import Section from '../../../.storybook/decorators/section';
import moment from 'moment/min/moment-with-locales';
function myDateKnob(name, defaultValue) {
const stringTimestamp = date(name, defaultValue)
return new Date(stringTimestamp)
}
storiesOf('Components|Input', module)
.addDecorator(withKnobs)
.addDecorator(withReadme(Readme))
@ -20,15 +20,16 @@ storiesOf('Components|Input', module)
<Section>
<Calendar
onChange={date => {
action('onChange')(date);
action('Selected date')(date);
}}
dateFormat={text('dateFormat', 'dd.MM.yyyy')}
startDate={myDateKnob('startDate', new Date())}
//dateFormat={text('dateFormat', 'dd.MM.yyyy')}
disabled={boolean('disabled', false)}
themeColor={color('themeColor', '#ED7309')}
selectedDate={myDateKnob('selectedDate', new Date())}
openToDate={myDateKnob('openToDate', new Date())}
minDate = {myDateKnob('minDate', new Date("2018/01/01"))}
maxDate = {myDateKnob('maxDate', new Date("2020/01/01"))}
minDate={myDateKnob('minDate', new Date("2018/02/01"))}
maxDate={myDateKnob('maxDate', new Date("2019/09/01"))}
location={select('location', moment.locales(), 'en')}
/>
</Section>
));

View File

@ -2470,6 +2470,7 @@ asap@~2.0.3, asap@~2.0.6:
bootstrap "^4.3.1"
lodash "4.17.14"
lodash-es "4.17.14"
moment "^2.24.0"
postcss "^7.0.16"
prop-types "^15.7.2"
rc-tree "^2.1.0"
@ -8488,6 +8489,11 @@ mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdi
dependencies:
minimist "0.0.8"
moment@^2.24.0:
version "2.24.0"
resolved "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b"
integrity sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg==
move-concurrently@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"