Merged V4.1-BUG-FIX to HEAD

40347: GERMAN: Translation update based on EN 40202
   40348: SPANISH: Translation update based on EN 40202, fixes: ALF-15360 and ALF-15361
   40353: RUSSIAN: Adds official support for Russian (locale: ru) to Alfresco. Initial translation based on EN r38926.
   40361: ALF-15453: Incorrect manage permissions working for a file/folder
   40362: CHINESE: renames an incorrectly named file.
   40382: Fix for ALF-15491 SOLR is generating queries for lucene style cross-language support
   40389: ALF-14399 : Added method removeTimeZoneIfIsAllDay to AbstractCalendarWebScript. Used to strip time zone information from all day events, was forced to handle date patterns in the same method due to legacy date format requirements. java.util.Date has been replaced with iso8061 date String in the FTL model to ensure local server time zone is not added when we have explicitly removed it.
   40401: Part for for ALF-15406 Index Tracker seems not to gracefully stop upon shutdown keeping all other threads in waiting
   40406: A slash was missing (the sites in the folder picker couldn't be shown)
   40410: ALF-13190 and ALF-13287: both bugs related to the iCal SETPOS attribute. SETPOS (for outlook) specifies the week number with in a month. Possible values are -1 to 4. The positive values count forward while negative count backwards, -1 should represent the last week in a month. The method toDayOfWeekInMonth within CalendarReccurenceHelper was not setup to handle -1, this has been corrected. buildRecurrenceString within CalendarEntryGet was incorrectly using SETPOS to lookup day name.
   40412: GERMAN: Translation updates based on EN r40357
   40413: SPANISH: Translation updates based on EN r40357
   40414: FRENCH: Translation updates based on EN r40357
   40415: ITALIAN: Translation updates based on EN r40357
   40416: JAPANESE: Translation updates based on EN r40357
   40417: DUTCH: Translation updates based on EN r40357
   40418: CHINESE: Translation updates based on EN r40357
   40420: First half of fix for ALF-12803 - No user feedback: Cannot transformed content with password. (Failure of synchronous rule causes upload to fail with unhelpful message)
    - reporting error information inline when DnD upload is used
    - TODO: push JSON error response through the Flash Adaptor uploader component (requires swf uploader modifications)
   40428: Merged V4.1 to V4.1-BUG-FIX
      40349: CloudSync: fix move out (=> target delete) - add unit tests ( ALF-14655 / ALF-15011 )
      40364: Testcase for ALF-15178, which is not reproduced.
      40381: ALF-15295: Cannot access folders beyond first page of document library
      40393: BDE-93 cleanup notice file, especially updating outdated URLs
      40419: Fix for the MLText parts of ALF-15502.
      40427: Merged DEV/COMMUNITY-4.0-BUGFIX to V4.1
         40425: ALF-15470: Solr distribution changes
         - Added scripts for regenerating keystores to repository keystore directory
         - Included this directory in the solr distribution zip under alf_data/keystore for easier installation to tomcat


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@40429 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Dave Ward
2012-08-14 19:17:45 +00:00
parent 9e49eaf03f
commit 6555179a7a
77 changed files with 3561 additions and 18 deletions

View File

@@ -0,0 +1,76 @@
@rem Please edit the variables below to suit your installation
@rem Note: for an installation created by the Alfresco installer, you only need to edit ALFRESCO_HOME
@rem Alfresco installation directory
set ALFRESCO_HOME=C:\Alfresco-4.1
@rem The directory containing the alfresco keystores, as referenced by keystoreFile and truststoreFile attributes in tomcat\conf\server.xml
set ALFRESCO_KEYSTORE_HOME=%ALFRESCO_HOME%\alf_data\keystore
@rem SOLR installation directory
set SOLR_HOME=%ALFRESCO_HOME%\alf_data\solr
@rem Java installation directory
set JAVA_HOME=%ALFRESCO_HOME%\java
@rem Location in which new keystore files will be generated
set CERTIFICATE_HOME=%USERPROFILE%
@rem The repository server certificate subject name, as specified in tomcat\conf\tomcat-users.xml with roles="repository"
set REPO_CERT_DNAME=CN=Alfresco Repository, OU=Unknown, O=Alfresco Software Ltd., L=Maidenhead, ST=UK, C=GB
@rem The SOLR client certificate subject name, as specified in tomcat\conf\tomcat-users.xml with roles="repoclient"
set SOLR_CLIENT_CERT_DNAME=CN=Alfresco Repository Client, OU=Unknown, O=Alfresco Software Ltd., L=Maidenhead, ST=UK, C=GB
@rem The number of days before the certificate expires
set CERTIFICATE_VALIDITY=36525
@rem Ensure certificate output dir exists
@if not exist "%CERTIFICATE_HOME%" mkdir "%CERTIFICATE_HOME%"
@rem Remove old output files (note they are backed up elsewhere)
@if exist "%CERTIFICATE_HOME%\ssl.keystore" del "%CERTIFICATE_HOME%\ssl.keystore"
@if exist "%CERTIFICATE_HOME%\ssl.truststore" del "%CERTIFICATE_HOME%\ssl.truststore"
@if exist "%CERTIFICATE_HOME%\browser.p12" del "%CERTIFICATE_HOME%\browser.p12"
@if exist "%CERTIFICATE_HOME%\ssl.repo.client.keystore" del "%CERTIFICATE_HOME%\ssl.repo.client.keystore"
@if exist "%CERTIFICATE_HOME%\ssl.repo.client.truststore" del "%CERTIFICATE_HOME%\ssl.repo.client.truststore"
@rem Generate new self-signed certificates for the repository and solr
"%JAVA_HOME%\bin\keytool" -genkeypair -keyalg RSA -dname "%REPO_CERT_DNAME%" -validity %CERTIFICATE_VALIDITY% -alias ssl.repo -keypass kT9X6oe68t -keystore "%CERTIFICATE_HOME%\ssl.keystore" -storetype JCEKS -storepass kT9X6oe68t
"%JAVA_HOME%\bin\keytool" -exportcert -alias ssl.repo -file "%CERTIFICATE_HOME%\ssl.repo.crt" -keystore "%CERTIFICATE_HOME%\ssl.keystore" -storetype JCEKS -storepass kT9X6oe68t
"%JAVA_HOME%\bin\keytool" -genkeypair -keyalg RSA -dname "%SOLR_CLIENT_CERT_DNAME%" -validity %CERTIFICATE_VALIDITY% -alias ssl.repo.client -keypass kT9X6oe68t -keystore "%CERTIFICATE_HOME%\ssl.repo.client.keystore" -storetype JCEKS -storepass kT9X6oe68t
"%JAVA_HOME%\bin\keytool" -exportcert -alias ssl.repo.client -file "%CERTIFICATE_HOME%\ssl.repo.client.crt" -keystore "%CERTIFICATE_HOME%\ssl.repo.client.keystore" -storetype JCEKS -storepass kT9X6oe68t
@rem Create trust relationship between repository and solr
"%JAVA_HOME%\bin\keytool" -importcert -noprompt -alias ssl.repo.client -file "%CERTIFICATE_HOME%\ssl.repo.client.crt" -keystore "%CERTIFICATE_HOME%\ssl.truststore" -storetype JCEKS -storepass kT9X6oe68t
@rem Create trust relationship between repository and itself - used for searches
"%JAVA_HOME%\bin\keytool" -importcert -noprompt -alias ssl.repo -file "%CERTIFICATE_HOME%\ssl.repo.crt" -keystore "%CERTIFICATE_HOME%\ssl.truststore" -storetype JCEKS -storepass kT9X6oe68t
@rem Create trust relationship between solr and repository
"%JAVA_HOME%\bin\keytool" -importcert -noprompt -alias ssl.repo -file "%CERTIFICATE_HOME%\ssl.repo.crt" -keystore "%CERTIFICATE_HOME%\ssl.repo.client.truststore" -storetype JCEKS -storepass kT9X6oe68t
@rem Export repository keystore to pkcs12 format for browser compatibility
"%JAVA_HOME%\bin\keytool" -importkeystore -srckeystore "%CERTIFICATE_HOME%\ssl.keystore" -srcstorepass kT9X6oe68t -srcstoretype JCEKS -srcalias ssl.repo -srckeypass kT9X6oe68t -destkeystore "%CERTIFICATE_HOME%\browser.p12" -deststoretype pkcs12 -deststorepass alfresco -destalias ssl.repo -destkeypass alfresco
@rem Ensure keystore dir actually exists
@if not exist "%ALFRESCO_KEYSTORE_HOME%" mkdir "%ALFRESCO_KEYSTORE_HOME%"
@rem Back up old files
copy /Y "%ALFRESCO_KEYSTORE_HOME%\ssl.keystore" "%ALFRESCO_KEYSTORE_HOME%\ssl.keystore.old"
copy /Y "%ALFRESCO_KEYSTORE_HOME%\ssl.truststore" "%ALFRESCO_KEYSTORE_HOME%\ssl.truststore.old"
copy /Y "%ALFRESCO_KEYSTORE_HOME%\browser.p12" "%ALFRESCO_KEYSTORE_HOME%\browser.p12.old"
copy /Y "%SOLR_HOME%\workspace-SpacesStore\conf\ssl.repo.client.keystore" "%SOLR_HOME%\workspace-SpacesStore\conf\ssl.repo.client.keystore.old"
copy /Y "%SOLR_HOME%\workspace-SpacesStore\conf\ssl.repo.client.truststore" "%SOLR_HOME%\workspace-SpacesStore\conf\ssl.repo.client.truststore.old"
copy /Y "%SOLR_HOME%\archive-SpacesStore\conf\ssl.repo.client.keystore" "%SOLR_HOME%\archive-SpacesStore\conf\ssl.repo.client.keystore.old"
copy /Y "%SOLR_HOME%\archive-SpacesStore\conf\ssl.repo.client.truststore" "%SOLR_HOME%\archive-SpacesStore\conf\ssl.repo.client.truststore.old"
copy /Y "%SOLR_HOME%\templates\test\conf\ssl.repo.client.keystore" "%SOLR_HOME%\templates\test\conf\ssl.repo.client.keystore.old"
copy /Y "%SOLR_HOME%\templates\test\conf\ssl.repo.client.truststore" "%SOLR_HOME%\templates\test\conf\ssl.repo.client.truststore.old"
copy /Y "%SOLR_HOME%\templates\store\conf\ssl.repo.client.keystore" "%SOLR_HOME%\templates\store\conf\ssl.repo.client.keystore.old"
copy /Y "%SOLR_HOME%\templates\store\conf\ssl.repo.client.truststore" "%SOLR_HOME%\templates\store\conf\ssl.repo.client.truststore.old"
@rem Install the new files
copy /Y "%CERTIFICATE_HOME%\ssl.keystore" "%ALFRESCO_KEYSTORE_HOME%\ssl.keystore"
copy /Y "%CERTIFICATE_HOME%\ssl.truststore" "%ALFRESCO_KEYSTORE_HOME%\ssl.truststore"
copy /Y "%CERTIFICATE_HOME%\browser.p12" "%ALFRESCO_KEYSTORE_HOME%\browser.p12"
copy /Y "%CERTIFICATE_HOME%\ssl.repo.client.keystore" "%SOLR_HOME%\workspace-SpacesStore\conf\ssl.repo.client.keystore"
copy /Y "%CERTIFICATE_HOME%\ssl.repo.client.truststore" "%SOLR_HOME%\workspace-SpacesStore\conf\ssl.repo.client.truststore"
copy /Y "%CERTIFICATE_HOME%\ssl.repo.client.keystore" "%SOLR_HOME%\archive-SpacesStore\conf\ssl.repo.client.keystore"
copy /Y "%CERTIFICATE_HOME%\ssl.repo.client.truststore" "%SOLR_HOME%\archive-SpacesStore\conf\ssl.repo.client.truststore"
copy /Y "%CERTIFICATE_HOME%\ssl.repo.client.keystore" "%SOLR_HOME%\templates\test\conf\ssl.repo.client.keystore"
copy /Y "%CERTIFICATE_HOME%\ssl.repo.client.truststore" "%SOLR_HOME%\templates\test\conf\ssl.repo.client.truststore"
copy /Y "%CERTIFICATE_HOME%\ssl.repo.client.keystore" "%SOLR_HOME%\templates\store\conf\ssl.repo.client.keystore"
copy /Y "%CERTIFICATE_HOME%\ssl.repo.client.truststore" "%SOLR_HOME%\templates\store\conf\ssl.repo.client.truststore"
@echo Certificate update complete
@echo Please ensure that you set dir.keystore=%ALFRESCO_KEYSTORE_HOME% in alfresco-global.properties

View File

@@ -0,0 +1,80 @@
#! /bin/sh
# Please edit the variables below to suit your installation
# Note: for an installation created by the Alfresco installer, you only need to edit ALFRESCO_HOME
# Alfresco installation directory
ALFRESCO_HOME=/opt/alfresco-4.1
# The directory containing the alfresco keystores, as referenced by keystoreFile and truststoreFile attributes in tomcat/conf/server.xml
ALFRESCO_KEYSTORE_HOME=$ALFRESCO_HOME/alf_data/keystore
# SOLR installation directory
SOLR_HOME=$ALFRESCO_HOME/alf_data/solr
# Java installation directory
JAVA_HOME=$ALFRESCO_HOME/java
# Location in which new keystore files will be generated
CERTIFICATE_HOME=$HOME
# The repository server certificate subject name, as specified in tomcat/conf/tomcat-users.xml with roles="repository"
REPO_CERT_DNAME="CN=Alfresco Repository, OU=Unknown, O=Alfresco Software Ltd., L=Maidenhead, ST=UK, C=GB"
# The SOLR client certificate subject name, as specified in tomcat/conf/tomcat-users.xml with roles="repoclient"
SOLR_CLIENT_CERT_DNAME="CN=Alfresco Repository Client, OU=Unknown, O=Alfresco Software Ltd., L=Maidenhead, ST=UK, C=GB"
# The number of days before the certificate expires
CERTIFICATE_VALIDITY=36525
# Stop alfresco
"$ALFRESCO_HOME/alfresco.sh" stop
# Ensure certificate output dir exists
mkdir -p "$CERTIFICATE_HOME"
# Remove old output files (note they are backed up elsewhere)
if [ -f "$CERTIFICATE_HOME/ssl.keystore" ]; then rm "$CERTIFICATE_HOME/ssl.keystore"; fi
if [ -f "$CERTIFICATE_HOME/ssl.truststore" ]; then rm "$CERTIFICATE_HOME/ssl.truststore"; fi
if [ -f "$CERTIFICATE_HOME/browser.p12" ]; then rm "$CERTIFICATE_HOME/browser.p12"; fi
if [ -f "$CERTIFICATE_HOME/ssl.repo.client.keystore" ]; then rm "$CERTIFICATE_HOME/ssl.repo.client.keystore"; fi
if [ -f "$CERTIFICATE_HOME/ssl.repo.client.truststore" ]; then rm "$CERTIFICATE_HOME/ssl.repo.client.truststore"; fi
# Generate new self-signed certificates for the repository and solr
"$JAVA_HOME/bin/keytool" -genkeypair -keyalg RSA -dname "$REPO_CERT_DNAME" -validity $CERTIFICATE_VALIDITY -alias ssl.repo -keypass kT9X6oe68t -keystore "$CERTIFICATE_HOME/ssl.keystore" -storetype JCEKS -storepass kT9X6oe68t
"$JAVA_HOME/bin/keytool" -exportcert -alias ssl.repo -file "$CERTIFICATE_HOME/ssl.repo.crt" -keystore "$CERTIFICATE_HOME/ssl.keystore" -storetype JCEKS -storepass kT9X6oe68t
"$JAVA_HOME/bin/keytool" -genkeypair -keyalg RSA -dname "$SOLR_CLIENT_CERT_DNAME" -validity $CERTIFICATE_VALIDITY -alias ssl.repo.client -keypass kT9X6oe68t -keystore "$CERTIFICATE_HOME/ssl.repo.client.keystore" -storetype JCEKS -storepass kT9X6oe68t
"$JAVA_HOME/bin/keytool" -exportcert -alias ssl.repo.client -file "$CERTIFICATE_HOME/ssl.repo.client.crt" -keystore "$CERTIFICATE_HOME/ssl.repo.client.keystore" -storetype JCEKS -storepass kT9X6oe68t
# Create trust relationship between repository and solr
"$JAVA_HOME/bin/keytool" -importcert -noprompt -alias ssl.repo.client -file "$CERTIFICATE_HOME/ssl.repo.client.crt" -keystore "$CERTIFICATE_HOME/ssl.truststore" -storetype JCEKS -storepass kT9X6oe68t
# Create trust relationship between repository and itself - used for searches
"$JAVA_HOME/bin/keytool" -importcert -noprompt -alias ssl.repo -file "$CERTIFICATE_HOME/ssl.repo.crt" -keystore "$CERTIFICATE_HOME/ssl.truststore" -storetype JCEKS -storepass kT9X6oe68t
# Create trust relationship between solr and repository
"$JAVA_HOME/bin/keytool" -importcert -noprompt -alias ssl.repo -file "$CERTIFICATE_HOME/ssl.repo.crt" -keystore "$CERTIFICATE_HOME/ssl.repo.client.truststore" -storetype JCEKS -storepass kT9X6oe68t
# Export repository keystore to pkcs12 format for browser compatibility
"$JAVA_HOME/bin/keytool" -importkeystore -srckeystore "$CERTIFICATE_HOME/ssl.keystore" -srcstorepass kT9X6oe68t -srcstoretype JCEKS -srcalias ssl.repo -srckeypass kT9X6oe68t -destkeystore "$CERTIFICATE_HOME/browser.p12" -deststoretype pkcs12 -deststorepass alfresco -destalias ssl.repo -destkeypass alfresco
# Ensure keystore dir actually exists
mkdir -p "$ALFRESCO_KEYSTORE_HOME"
# Back up old files
cp "$ALFRESCO_KEYSTORE_HOME/ssl.keystore" "$ALFRESCO_KEYSTORE_HOME/ssl.keystore.old"
cp "$ALFRESCO_KEYSTORE_HOME/ssl.truststore" "$ALFRESCO_KEYSTORE_HOME/ssl.truststore.old"
cp "$ALFRESCO_KEYSTORE_HOME/browser.p12" "$ALFRESCO_KEYSTORE_HOME/browser.p12.old"
cp "$SOLR_HOME/workspace-SpacesStore/conf/ssl.repo.client.keystore" "$SOLR_HOME/workspace-SpacesStore/conf/ssl.repo.client.keystore.old"
cp "$SOLR_HOME/workspace-SpacesStore/conf/ssl.repo.client.truststore" "$SOLR_HOME/workspace-SpacesStore/conf/ssl.repo.client.truststore.old"
cp "$SOLR_HOME/archive-SpacesStore/conf/ssl.repo.client.keystore" "$SOLR_HOME/archive-SpacesStore/conf/ssl.repo.client.keystore.old"
cp "$SOLR_HOME/archive-SpacesStore/conf/ssl.repo.client.truststore" "$SOLR_HOME/archive-SpacesStore/conf/ssl.repo.client.truststore.old"
cp "$SOLR_HOME/templates/test/conf/ssl.repo.client.keystore" "$SOLR_HOME/templates/test/conf/ssl.repo.client.keystore.old"
cp "$SOLR_HOME/templates/test/conf/ssl.repo.client.truststore" "$SOLR_HOME/templates/test/conf/ssl.repo.client.truststore.old"
cp "$SOLR_HOME/templates/store/conf/ssl.repo.client.keystore" "$SOLR_HOME/templates/store/conf/ssl.repo.client.keystore.old"
cp "$SOLR_HOME/templates/store/conf/ssl.repo.client.truststore" "$SOLR_HOME/templates/store/conf/ssl.repo.client.truststore.old"
# Install the new files
cp "$CERTIFICATE_HOME/ssl.keystore" "$ALFRESCO_KEYSTORE_HOME/ssl.keystore"
cp "$CERTIFICATE_HOME/ssl.truststore" "$ALFRESCO_KEYSTORE_HOME/ssl.truststore"
cp "$CERTIFICATE_HOME/browser.p12" "$ALFRESCO_KEYSTORE_HOME/browser.p12"
cp "$CERTIFICATE_HOME/ssl.repo.client.keystore" "$SOLR_HOME/workspace-SpacesStore/conf/ssl.repo.client.keystore"
cp "$CERTIFICATE_HOME/ssl.repo.client.truststore" "$SOLR_HOME/workspace-SpacesStore/conf/ssl.repo.client.truststore"
cp "$CERTIFICATE_HOME/ssl.repo.client.keystore" "$SOLR_HOME/archive-SpacesStore/conf/ssl.repo.client.keystore"
cp "$CERTIFICATE_HOME/ssl.repo.client.truststore" "$SOLR_HOME/archive-SpacesStore/conf/ssl.repo.client.truststore"
cp "$CERTIFICATE_HOME/ssl.repo.client.keystore" "$SOLR_HOME/templates/test/conf/ssl.repo.client.keystore"
cp "$CERTIFICATE_HOME/ssl.repo.client.truststore" "$SOLR_HOME/templates/test/conf/ssl.repo.client.truststore"
cp "$CERTIFICATE_HOME/ssl.repo.client.keystore" "$SOLR_HOME/templates/store/conf/ssl.repo.client.keystore"
cp "$CERTIFICATE_HOME/ssl.repo.client.truststore" "$SOLR_HOME/templates/store/conf/ssl.repo.client.truststore"
echo "Certificate update complete"
echo "Please ensure that you set dir.keystore=$ALFRESCO_KEYSTORE_HOME in alfresco-global.properties"

View File

@@ -0,0 +1,233 @@
# Action parameter constraints
ac-compare-operations.equals=\u0420\u0430\u0432\u043d\u043e
ac-compare-operations.contains=\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u0442
ac-compare-operations.begins=\u041d\u0430\u0447\u0438\u043d\u0430\u0435\u0442\u0441\u044f \u0441
ac-compare-operations.ends=\u0417\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f
ac-compare-operations.greater_than=\u0411\u043e\u043b\u044c\u0448\u0435 \u0447\u0435\u043c
ac-compare-operations.greater_than_equal=\u0411\u043e\u043b\u044c\u0448\u0435 \u0438\u043b\u0438 \u0440\u0430\u0432\u043d\u043e
ac-compare-operations.less_than=\u041c\u0435\u043d\u044c\u0448\u0435 \u0447\u0435\u043c
ac-compare-operations.less_than_equal=\u041c\u0435\u043d\u044c\u0448\u0435 \u0438\u043b\u0438 \u0440\u0430\u0432\u043d\u043e
ac-content-properties.mime_type=\u0422\u0438\u043f MIME
ac-content-properties.encoding=\u041a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430
ac-content-properties.size=\u0420\u0430\u0437\u043c\u0435\u0440
# Action conditions
no-condition.title=\u0412\u0441\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b
no-condition.description=\u042d\u0442\u043e \u0443\u0441\u043b\u043e\u0432\u0438\u0435 \u0443\u0434\u043e\u0432\u043b\u0435\u0442\u0432\u043e\u0440\u044f\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u043b\u044e\u0431\u043e\u0433\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0432 \u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0435\u0433\u043e, \u043a\u043e\u0433\u0434\u0430 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043a \u043b\u044e\u0431\u043e\u043c\u0443 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0443 \u043f\u0440\u0438 \u0435\u0433\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0432 \u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e.
compare-property-value.title=\u0418\u043c\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435
compare-property-value.description=\u0414\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u043a\u043e \u0432\u0441\u0435\u043c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u043c \u0441 \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u044b\u043c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u043c \u0432 \u0441\u0432\u043e\u0435\u043c \u0438\u043c\u0435\u043d\u0438.
compare-property-value.property.display-label=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u043e
compare-property-value.content-property.display-label=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430
compare-property-value.value.display-label=\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435
compare-property-value.operation.display-label=\u041e\u043f\u0435\u0440\u0430\u0446\u0438\u044f \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044f
in-category.title=\u0418\u043c\u0435\u0435\u0442 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044e
in-category.description=\u0414\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u043a\u043e \u0432\u0441\u0435\u043c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u043c \u0441 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u043c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u043c \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438.
in-category.category-aspect.display-label=\u0410\u0441\u043f\u0435\u043a\u0442 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438
in-category.category-value.display-label=\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438
is-subtype.title=\u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u0442\u0438\u043f\u0430 \u0438\u043b\u0438 \u043f\u043e\u0434\u0442\u0438\u043f\u0430
is-subtype.description=\u0414\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u043a\u043e \u0432\u0441\u0435\u043c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u043c \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0433\u043e \u0442\u0438\u043f\u0430 \u0438\u043b\u0438 \u0435\u0433\u043e \u043f\u043e\u0434\u0442\u0438\u043f\u043e\u0432
is-subtype.type.display-label=\u0422\u0438\u043f
has-aspect.title=\u0418\u043c\u0435\u0435\u0442 \u0430\u0441\u043f\u0435\u043a\u0442
has-aspect.description=\u0414\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u043a\u043e \u0432\u0441\u0435\u043c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u043c, \u043a \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u0430\u0441\u043f\u0435\u043a\u0442.
has-aspect.aspect.display-label=\u0410\u0441\u043f\u0435\u043a\u0442
compare-mime-type.title=\u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u0442\u0438\u043f\u0430 MIME
compare-mime-type.description=\u0414\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u043a\u043e \u0432\u0441\u0435\u043c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u043c \u0441 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u043e\u043c \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0433\u043e \u0442\u0438\u043f\u0430 MIME.
compare-mime-type.property.display-label=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u043e
compare-mime-type.value.display-label=\u0422\u0438\u043f MIME
composite-condition.title=\u0421\u043e\u0441\u0442\u0430\u0432\u043d\u043e\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u0435
composite-condition.description=\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u0443\u0441\u043b\u043e\u0432\u0438\u0439 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0431\u043e\u043b\u0435\u0435 \u0441\u043b\u043e\u0436\u043d\u043e\u0433\u043e \u0443\u0441\u043b\u043e\u0432\u0438\u044f.
compare-date-property.title=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u043e \u0441\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u043c \u0434\u0430\u0442\u044b
compare-date-property.description=\u0421\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u0430\u0442\u044b \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445, \u0430\u0441\u043f\u0435\u043a\u0442\u0430 \u0438\u043b\u0438 \u0442\u0438\u043f\u0430
compare-integer-property.title=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u043e \u0441 \u0447\u0438\u0441\u043b\u043e\u0432\u044b\u043c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u043c
compare-integer-property.description=\u0421\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435 \u0447\u0438\u0441\u043b\u043e\u0432\u043e\u0433\u043e \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445, \u0430\u0441\u043f\u0435\u043a\u0442\u0430 \u0438\u043b\u0438 \u0442\u0438\u043f\u0430
compare-text-property.title=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u043e \u0441 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u043c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u043c
compare-text-property.description=\u0421\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0433\u043e \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445, \u0430\u0441\u043f\u0435\u043a\u0442\u0430 \u0438\u043b\u0438 \u0442\u0438\u043f\u0430
has-tag.title=\u0418\u043c\u0435\u0435\u0442 \u043c\u0435\u0442\u043a\u0443
has-tag.description=\u0418\u043c\u0435\u0435\u0442 \u043c\u0435\u0442\u043a\u0443, \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u043d\u0443\u044e \u043a \u0443\u0437\u043b\u0443.
has-tag.tag.display-label=\u041c\u0435\u0442\u043a\u0430
# Actions
add-features.title=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0430\u0441\u043f\u0435\u043a\u0442
add-features.description=\u0414\u043e\u0431\u0430\u0432\u043b\u044f\u0435\u0442 \u0430\u0441\u043f\u0435\u043a\u0442 \u043a \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0443, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u043c\u0443 \u0443\u0441\u043b\u043e\u0432\u0438\u044e.
add-features.aspect-name.display-label=\u0410\u0441\u043f\u0435\u043a\u0442
remove-features.title=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0430\u0441\u043f\u0435\u043a\u0442
remove-features.description=\u0423\u0434\u0430\u043b\u044f\u0435\u0442 \u0430\u0441\u043f\u0435\u043a\u0442 \u0438\u0437 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0433\u043e \u0443\u0441\u043b\u043e\u0432\u0438\u044e.
remove-features.aspect-name.display-label=\u0410\u0441\u043f\u0435\u043a\u0442
simple-workflow.title=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0441\u0442\u043e\u0439 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441
simple-workflow.description=\u0414\u043e\u0431\u0430\u0432\u043b\u044f\u0435\u0442 \u043f\u0440\u043e\u0441\u0442\u043e\u0439 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043a \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0443, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u043c\u0443 \u0443\u0441\u043b\u043e\u0432\u0438\u044e. \u042d\u0442\u043e \u043f\u043e\u0437\u0432\u043e\u043b\u0438\u0442 \u043f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0442\u0430\u043a\u043e\u0439 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0432 \u0434\u0440\u0443\u0433\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0433\u043e \u0448\u0430\u0433\u0430 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430. \u0422\u0430\u043a\u0436\u0435 \u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e, \u0432 \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043e\u043d \u0431\u0443\u0434\u0435\u0442 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d, \u0435\u0441\u043b\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c \u0448\u0430\u0433.
simple-workflow.approve-step.display-label=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
simple-workflow.approve-folder.display-label=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u043f\u0430\u043f\u043a\u0443
simple-workflow.approve-move.display-label=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435
simple-workflow.reject-step.display-label=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c \u0448\u0430\u0433
simple-workflow.reject-folder.display-label=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0448\u0430\u0433\u0430
simple-workflow.reject-move.display-label=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435
link-category.title=\u041f\u0440\u0438\u0432\u044f\u0437\u0430\u0442\u044c \u043a \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438
link-category.description=\u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u043a \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0443, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u043c\u0443 \u0443\u0441\u043b\u043e\u0432\u0438\u044e, \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f.
link-category.category-aspect.display-label=\u0410\u0441\u043f\u0435\u043a\u0442 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438
link-category.category-value.display-label=\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438
transform.title=\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0438 \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u043e\u043d\u0442\u0435\u043d\u0442
transform.description=\u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u0443\u0441\u043b\u043e\u0432\u0438\u044e \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0435\u0442\u0441\u044f, \u0430 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u043a\u043e\u043f\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0432 \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e
transform.mime-type.display-label=\u0422\u0438\u043f MIME
transform.destination-folder.display-label=\u041f\u0430\u043f\u043a\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f
transform.assoc-type.display-label=\u0422\u0438\u043f \u0441\u0432\u044f\u0437\u0438
transform.assoc-name.display-label=\u0418\u043c\u044f \u0441\u0432\u044f\u0437\u0438
transform.overwrite-copy.display-label=\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u043a\u043e\u043f\u0438\u044e
transform-image.title=\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0438 \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435
transform-image.description=\u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0435\u0442\u0441\u044f, \u0430 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u043a\u043e\u043f\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0432 \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e
transform-image.mime-type.display-label=\u0422\u0438\u043f MIME
transform-image.destination-folder.display-label=\u041f\u0430\u043f\u043a\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f
transform-image.assoc-type.display-label=\u0422\u0438\u043f \u0441\u0432\u044f\u0437\u0438
transform-image.assoc-name.display-label=\u0418\u043c\u044f \u0441\u0432\u044f\u0437\u0438
transform-image.overwrite-copy.display-label=\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u043a\u043e\u043f\u0438\u044e
transform-image.convert-command.display-label=\u041a\u043e\u043c\u0430\u043d\u0434\u0430 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f
copy.title=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c
copy.description=\u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u0443\u0441\u043b\u043e\u0432\u0438\u044e \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043a\u043e\u043f\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0432 \u0434\u0440\u0443\u0433\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e.
copy.destination-folder.display-label=\u041f\u0430\u043f\u043a\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f
copy.assoc-type.display-label=\u0422\u0438\u043f \u0441\u0432\u044f\u0437\u0438
copy.assoc-name.display-label=\u0418\u043c\u044f \u0441\u0432\u044f\u0437\u0438
copy.deep-copy.display-label=\u0413\u043b\u0443\u0431\u043e\u043a\u043e\u0435 \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435
copy.overwrite-copy.display-label=\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u043a\u043e\u043f\u0438\u044e
move.title=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c
move.description=\u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u0443\u0441\u043b\u043e\u0432\u0438\u044e \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0430\u0435\u0442\u0441\u044f \u0432 \u0434\u0440\u0443\u0433\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e.
move.destination-folder.display-label=\u041f\u0430\u043f\u043a\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f
move.assoc-type.display-label=\u0422\u0438\u043f \u0441\u0432\u044f\u0437\u0438
move.assoc-name.display-label=\u0418\u043c\u044f \u0441\u0432\u044f\u0437\u0438
mail.title=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0443\u044e \u043f\u043e\u0447\u0442\u0443
mail.description=\u0415\u0441\u043b\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0443\u0441\u043b\u043e\u0432\u0438\u044e, \u0441\u043f\u0438\u0441\u043a\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u044f \u043f\u043e\u0447\u0442\u0430.
mail.to.display-label=\u041a\u043e\u043c\u0443
mail.to_many.display-label=\u041a\u043e\u043c\u0443
mail.subject.display-label=\u0422\u0435\u043c\u0430
mail.text.display-label=\u0422\u0435\u043a\u0441\u0442 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f
mail.from.display-label=\u041e\u0442
mail.template.display-label=\u0428\u0430\u0431\u043b\u043e\u043d \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
mail.template_model.display-label=\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0434\u043b\u044f \u0448\u0430\u0431\u043b\u043e\u043d\u0430 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
mail.ignore_send_failure.display-label=\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0431\u043e\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438
check-in.title=\u0418\u0437\u0432\u043b\u0435\u0447\u044c \u0438\u0437
check-in.description=\u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0438\u0437\u0432\u043b\u0435\u043a\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u0443\u0441\u043b\u043e\u0432\u0438\u044e \u043a\u043e\u043d\u0442\u0435\u043d\u0442.
check-in.description.display-label=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435
check-in.minorChange.display-label=\u041d\u0435\u0437\u043d\u0430\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435
check-out.title=\u0412\u044b\u0433\u0440\u0443\u0437\u0438\u0442\u044c
check-out.description=\u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u044b\u0433\u0440\u0443\u0436\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u0443\u0441\u043b\u043e\u0432\u0438\u044e \u043a\u043e\u043d\u0442\u0435\u043d\u0442.
check-out.destination-folder.display-label=\u041f\u0430\u043f\u043a\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f
check-out.assoc-type.display-label=\u0422\u0438\u043f \u0441\u0432\u044f\u0437\u0438
check-out.assoc-name.display-label=\u0418\u043c\u044f \u0441\u0432\u044f\u0437\u0438
set-property-value.title=\u0417\u0430\u0434\u0430\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430
set-property-value.description=\u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0443 \u043f\u0440\u0438\u0441\u0432\u0430\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435.
set-property-value.property.display-label=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u043e
set-property-value.value.display-label=\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435
import.title=\u0418\u043c\u043f\u043e\u0440\u0442
import.description=\u0412 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u043a\u043e\u043f\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u043f\u0430\u043a\u0435\u0442 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432 Alfresco.
import.encoding.display-label=\u041a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430
import.destination.display-label=\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435
extract-metadata.title=\u0418\u0437\u0432\u043b\u0435\u0447\u044c \u043e\u0431\u0449\u0438\u0435 \u043f\u043e\u043b\u044f \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445
extract-metadata.description=\u0418\u0437 \u043e\u0431\u0449\u0438\u0445 \u0442\u0438\u043f\u043e\u0432 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u044e\u0442\u0441\u044f \u043f\u043e\u043b\u044f \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0434\u043b\u044f \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430, \u0430\u0432\u0442\u043e\u0440\u0430 \u0438 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f.
specialise-type.title=\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0438\u043f
specialise-type.description=\u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u0443\u0441\u043b\u043e\u0432\u0438\u044e \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u043f\u043e \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u043c\u0443 \u0442\u0438\u043f\u0443.
specialise-type.type-name.display-label=\u0422\u0438\u043f
export.title=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e
export.description=\u041f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0438, \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e, \u0435\u0433\u043e \u0434\u043e\u0447\u0435\u0440\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u044d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u044e\u0442\u0441\u044f \u0432 \u043f\u0430\u043a\u0435\u0442 \u044d\u043a\u0441\u043f\u043e\u0440\u0442\u0430 Alfresco.
export.package.description=\u041f\u0430\u043a\u0435\u0442 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432 Alfresco \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430 ''{0}''.
export.root.package.description=\u041f\u0430\u043a\u0435\u0442 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432 Alfresco \u0434\u043b\u044f \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f.
export.store.package.description=\u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f Alfresco \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430 ''{0}''.
export.generic.package.description=\u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f Alfresco.
export.package.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043d\u0430\u0439\u0442\u0438 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439 \u0444\u0430\u0439\u043b \u0434\u043b\u044f \u044d\u043a\u0441\u043f\u043e\u0440\u0442\u0430
script.title=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0439
script.description=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u0435 \u0444\u0430\u0439\u043b JavaScript \u0434\u043b\u044f \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u0442\u0430\u043a\u0438\u0445 \u0437\u0430\u0434\u0430\u0447, \u043a\u0430\u043a \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043d\u043e\u0432\u044b\u0445 \u0444\u0430\u0439\u043b\u043e\u0432 \u0438\u043b\u0438 \u043f\u0430\u043f\u043e\u043a.
script.script-ref.display-label=\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0439
counter.title=\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u0441\u0447\u0435\u0442\u0447\u0438\u043a
counter.counter=\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0432\u0430\u0435\u0442 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u043e \u0441\u0447\u0435\u0442\u0447\u0438\u043a\u0430 \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430.
execute-all-rules.title=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u0430
execute-all-rules.description=\u041f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442 \u0432\u0441\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u0430 \u043a \u0434\u043e\u0447\u0435\u0440\u043d\u0438\u043c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u043c.
start-workflow.title=\u041d\u0430\u0447\u0430\u0442\u044c \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441
start-workflow.description=\u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u0434\u043b\u044f \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u0443\u0441\u043b\u043e\u0432\u0438\u044e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432.
start-workflow.workflowName.display-label=\u0418\u043c\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
start-workflow.endStartTask.display-label=\u0417\u0430\u0434\u0430\u0447\u0430
start-workflow.startTaskTransition.display-label=\u041f\u0435\u0440\u0435\u0445\u043e\u0434
cancel-workflow.title=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u044b
cancel-workflow.description=\u041e\u0442\u043c\u0435\u043d\u044f\u0435\u0442 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u044b \u0441 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0430\u043c\u0438 \u0438\u0437 \u0441\u043f\u0438\u0441\u043a\u0430.
cancel-workflow.workflow-id-list.display-label=\u0421\u043f\u0438\u0441\u043e\u043a \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u043e\u0432 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432
# WCM Actions
simple-avm-submit.title=\u041f\u0440\u043e\u0441\u0442\u0430\u044f \u043f\u0440\u044f\u043c\u0430\u044f \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0430
simple-avm-submit.description=\u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u0441\u0435 \u0431\u043e\u043b\u0435\u0435 \u043d\u043e\u0432\u044b\u0435 \u0443\u0437\u043b\u044b \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u043c \u0443\u0441\u043b\u043e\u0432\u0438\u044e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0435 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u043f\u0440\u043e\u043c\u0435\u0436\u0443\u0442\u043e\u0447\u043d\u043e\u0435 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435.
simple-avm-promote.title=\u041f\u0440\u043e\u0434\u0432\u0438\u0436\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0441\u0442\u043e\u0439 \u043f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u044b
simple-avm-promote.description=\u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u0441\u0435 \u0431\u043e\u043b\u0435\u0435 \u043d\u043e\u0432\u044b\u0435 \u0443\u0437\u043b\u044b \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u043c \u0443\u0441\u043b\u043e\u0432\u0438\u044e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0435 \u043f\u0440\u043e\u0434\u0432\u0438\u0433\u0430\u044e\u0442\u0441\u044f \u0432 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u0443\u044e \u0446\u0435\u043b\u0435\u0432\u0443\u044e \u043f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u0443.
simple-avm-promote.target-store.display-label=\u0418\u043c\u044f \u0446\u0435\u043b\u0435\u0432\u043e\u0433\u043e \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430 AVM.
avm-revert-store.title=\u041e\u0431\u0440\u0430\u0442\u0438\u0442\u044c \u043e\u0434\u0438\u043d \u0443\u0437\u0435\u043b \u0432 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435.
avm-revert-store.description=\u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u043a \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 \u043e\u0431\u0440\u0430\u0449\u0430\u044e\u0442\u0441\u044f \u0432\u0441\u0435 \u0443\u0437\u043b\u044b, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u0443\u0437\u0435\u043b \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u0438 \u043d\u0438\u0436\u0435.
avm-revert-store.version.display-label=\u0412\u0435\u0440\u0441\u0438\u044f, \u043a \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0432\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f.
avm-revert-list.title=\u041e\u0431\u0440\u0430\u0442\u0438\u0442\u044c \u0432 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u0443\u0437\u043b\u044b \u0438\u0437 \u0441\u043f\u0438\u0441\u043a\u0430.
avm-revert-list.description=\u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u043e\u0431\u0440\u0430\u0449\u0430\u044e\u0442\u0441\u044f \u0432\u0441\u0435 \u0443\u0437\u043b\u044b, \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043d\u044b\u0435 \u0432 \u0437\u0430\u0434\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a.
avm-revert-list.version.display-label=\u0412\u0435\u0440\u0441\u0438\u044f, \u043a \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0432\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f.
avm-revert-list.node-list.display-label=\u0417\u0430\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u0442\u0440\u043e\u043a\u043e\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0443\u0437\u043b\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u044c.
avm-revert-list.flatten.display-label=\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043b\u0438 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u043c\u0435\u0436\u0443\u0442\u043e\u0447\u043d\u043e\u0435 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u043f\u043e\u0441\u043b\u0435 \u043e\u0431\u0440\u0430\u0449\u0435\u043d\u0438\u044f.
avm-revert-list.store.display-label=\u0418\u043c\u044f \u043e\u0431\u0440\u0430\u0449\u0430\u0435\u043c\u043e\u0433\u043e \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u0441\u043b\u0443\u0447\u0430\u0435 \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u044f.
avm-revert-list.staging.display-label=\u0418\u043c\u044f \u043f\u0440\u043e\u043c\u0435\u0436\u0443\u0442\u043e\u0447\u043d\u043e\u0433\u043e \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u043e\u0433\u043e \u0434\u043b\u044f \u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u044f.
avm-revert-list.flatten-path.display-label=\u041e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u0443\u0442\u044c \u043a \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0443, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0432\u044b\u0440\u043e\u0432\u043d\u044f\u0442\u044c.
avm-revert-to-version.title=\u041e\u0431\u0440\u0430\u0442\u0438\u0442\u044c \u0443\u0437\u0435\u043b \u043a \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438.
avm-revert-to-version.description=\u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0443\u0437\u0435\u043b \u043e\u0431\u0440\u0430\u0449\u0430\u0435\u0442\u0441\u044f \u043a \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 \u044d\u0442\u043e\u0433\u043e \u0443\u0437\u043b\u0430.
avm-revert-to-version.to-revert.display-label=\u0414\u0435\u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0440 \u0443\u0437\u043b\u0430 AVM \u0432\u0435\u0440\u0441\u0438\u0438, \u043a \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0432\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f.
avm-undo-list.title=\u0421\u0434\u0435\u043b\u0430\u0439\u0442\u0435 \u0441\u043f\u0438\u0441\u043e\u043a \u0443\u0437\u043b\u043e\u0432 \u0432 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u043f\u0440\u043e\u0437\u0440\u0430\u0447\u043d\u044b\u043c \u0434\u043b\u044f \u043f\u0440\u043e\u043c\u0435\u0436\u0443\u0442\u043e\u0447\u043d\u043e\u0433\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f.
avm-undo-list.description=\u0414\u043b\u044f \u043f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u044b \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u044d\u0442\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u0435\u0442 \u043a\u0430\u043a \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044f \u043e\u0448\u0438\u0431\u043e\u043a.
avm-undo-list.node-list.display-label=\u0417\u0430\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u0442\u0440\u043e\u043a\u043e\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0443\u0437\u043b\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u044c.
avm-deploy-website.title=\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0432\u0435\u0431-\u0441\u0430\u0439\u0442 \u043d\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u043e\u043c \u0441\u0435\u0440\u0432\u0435\u0440\u0435.
avm-deploy-website.description=\u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442 \u0440\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u043d\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u043e\u043c \u0441\u0435\u0440\u0432\u0435\u0440\u0435.
avm-deploy-website.webproject.display-label=NodeRef \u0432\u0435\u0431-\u043f\u0440\u043e\u0435\u043a\u0442\u0430, \u0438\u0437 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0440\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d\u0438\u0435.
avm-deploy-website.server.display-label=NodeRef \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0440\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d\u0438\u044f, \u0432 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0440\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d\u0438\u0435.
avm-deploy-website.attempt.display-label=NodeRef \u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u0440\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d\u0438\u044f, \u0447\u0430\u0441\u0442\u044c\u044e \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u0430\u043d\u043d\u043e\u0435 \u0440\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d\u0438\u0435.
avm-deploy-website.callback.display-label=\u041e\u0431\u044a\u0435\u043a\u0442 \u043f\u0440\u043e\u0441\u043b\u0443\u0448\u0438\u0432\u0430\u0442\u0435\u043b\u044f DeploymentCallback.
avm-deploy-website.delay.display-label=\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u0437\u0430\u0434\u0435\u0440\u0436\u043a\u0430, \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u043c\u0430\u044f \u043a \u043d\u0430\u0447\u0430\u043b\u0443 \u0440\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d\u0438\u044f.
start-avm-workflow.title=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441 WCM
start-avm-workflow.description=\u0417\u0430\u043f\u0443\u0441\u043a\u0430\u0435\u0442 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441, \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u044f \u043f\u0430\u043a\u0435\u0442 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 AVM
start-avm-workflow.store-name.display-label=\u0418\u043c\u044f \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430 \u0434\u043b\u044f \u0437\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u043f\u0443\u0441\u043a\u0430
start-avm-workflow.workflow-name.display-label=\u0418\u043c\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 WCM, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0432\u044b\u0437\u0432\u0430\u0442\u044c.
copy-to-web-project.title=\u0421\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0432 \u043f\u0430\u043f\u043a\u0443 \u0432 \u0432\u0435\u0431-\u043f\u0440\u043e\u0435\u043a\u0442\u0435
copy-to-web-project.description=\u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u0443\u0441\u043b\u043e\u0432\u0438\u044e \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043a\u043e\u043f\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0432 \u043f\u0430\u043f\u043a\u0443 \u0432 \u0432\u0435\u0431-\u043f\u0440\u043e\u0435\u043a\u0442\u0435.
create-version.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e
create-version.description=\u0421\u043e\u0437\u0434\u0430\u0435\u0442 \u043d\u043e\u0432\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e
create-version.description.display-label=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0432\u0435\u0440\u0441\u0438\u0438
create-version.minor-change.display-label=\u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435

View File

@@ -0,0 +1,9 @@
# Action service externalised display strings
compare_property_value_evaluator.invalid_operation=\u041e\u043f\u0435\u0440\u0430\u0446\u0438\u044e {0} \u043d\u0435\u043b\u044c\u0437\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u043a \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0443 \u0442\u0438\u043f\u0430 {1}.
compare_property_value_evaluator.no_content_property=\u041f\u0440\u0438 \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0438 \u0441\u043e \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u043e\u043c \u0442\u0438\u043f\u0430 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u043e \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430.
numeric_property_value_comparator.invalid_operation=\u041e\u043f\u0435\u0440\u0430\u0446\u0438\u044e {0} \u043d\u0435\u043b\u044c\u0437\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u043a \u0447\u0438\u0441\u043b\u043e\u0432\u043e\u043c\u0443 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0443.
text_property_value_comparator.invalid_operation=\u041e\u043f\u0435\u0440\u0430\u0446\u0438\u044e {0} \u043d\u0435\u043b\u044c\u0437\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u043a \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u043c\u0443 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0443.
date_property_value_comparator.invalid_operation=\u041e\u043f\u0435\u0440\u0430\u0446\u0438\u044e {0} \u043d\u0435\u043b\u044c\u0437\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u043a \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0443 \u0434\u0430\u0442\u044b.
compare_mime_type_evaluator.not_a_content_type=\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u043e \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u0442\u0438\u043f \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043d\u0435\u043b\u044c\u0437\u044f \u0441\u0440\u0430\u0432\u043d\u0438\u0442\u044c \u0442\u0438\u043f MIME.
compare_mime_type_evaluator.no_property_definition_found=\u0414\u043b\u044f \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0433\u043e \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043d\u0430\u0439\u0442\u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043d\u0435\u043b\u044c\u0437\u044f \u0441\u0440\u0430\u0432\u043d\u0438\u0442\u044c \u0442\u0438\u043f MIME.

View File

@@ -0,0 +1,54 @@
activiti.engine.mandatory.properties.missing=\u041e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0437\u0430\u0434\u0430\u0447\u0438 \u043d\u0435 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u044b! {0}
activiti.engine.deploy.workflow.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0440\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430.
activiti.engine.is.workflow.deployed.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0438\u0442\u044c, \u0440\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u043e \u043b\u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430.
activiti.engine.undeploy.workflow.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0440\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d\u0438\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0}.
activiti.engine.undeploy.workflow.unexisting.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0440\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d\u0438\u0435 \u043d\u0435\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0433\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0}.
activiti.engine.get.workflow.definition.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430.
activiti.engine.get.workflow.definition.by.id.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0434\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0430 {0}.
activiti.engine.get.workflow.definition.by.name.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0434\u043b\u044f \u0438\u043c\u0435\u043d\u0438 {0}.
activiti.engine.get.all.workflow.definitions.by.name.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u0432\u0441\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0}.
activiti.engine.get.workflow.definition.image.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u043e\u0431\u0440\u0430\u0437 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0434\u043b\u044f {0}.
activiti.engine.get.workflow.definition.unexisting.image.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u043e\u0431\u0440\u0430\u0437 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0434\u043b\u044f {0}, \u0442\u0430\u043a\u043e\u0433\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.
activiti.engine.get.task.definitions.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u0434\u0430\u0447 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432 \u0434\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0}.
activiti.engine.get.process.definition.error=\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0} \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.
activiti.engine.start.workflow.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441 {0}.
activiti.engine.start.workflow.no.start.task.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441 {0}, \u0432 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0438 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 \u0437\u0430\u043f\u0443\u0441\u043a\u0430.
activiti.engine.get.workflows.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0434\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f {0}.
activiti.engine.get.active.workflows.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0434\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f {0}.
activiti.engine.get.completed.workflows.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0434\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f {0}.
activiti.engine.get.workflow.instance.by.id.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0441 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u043e\u043c {0}.
activiti.engine.get.process.instance.error=\u0414\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0430 {0} \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u0430 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430.
activiti.engine.get.workflow.paths.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u043f\u0443\u0442\u0438 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0434\u043b\u044f \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u0430 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0}.
activiti.engine.get.path.properties.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u0443\u0442\u0438 {0}.
activiti.engine.cancel.workflow.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0}.
activiti.engine.cancel.unexisting.workflow.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0435\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0}.
activiti.engine.delete.workflow.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0}.
activiti.engine.delete.unexisting.workflow.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u043d\u0435\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0}.
activiti.engine.signal.transition.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0432\u044b\u0434\u0430\u0442\u044c \u0441\u0438\u0433\u043d\u0430\u043b \u043e \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0435 {0} \u0438\u0437 \u043f\u0443\u0442\u0438 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {1}.
activiti.engine.event.unsupported=\u0418\u043d\u0438\u0446\u0438\u0430\u0446\u0438\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0432 WorkflowPaths, \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u044e\u0449\u0435\u043c\u0441\u044f \u0432 \u043c\u043e\u0434\u0443\u043b\u0435 Activiti.
activiti.engine.fire.event.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u043d\u0438\u0446\u0438\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435 {0} \u043f\u043e \u043f\u0443\u0442\u0438 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {1}.
activiti.engine.get.tasks.for.path.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u0437\u0430\u0434\u0430\u0447\u0438, \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u043f\u0443\u0442\u0438 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0}.
activiti.engine.get.timers.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u0442\u0430\u0439\u043c\u0435\u0440\u044b \u0434\u043b\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0}.
activiti.engine.find.completed.task.instances.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u043f\u043e\u043b\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u043e\u0432 \u0437\u0430\u0434\u0430\u0447 \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044f {0}.
activiti.engine.get.assigned.tasks.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u0437\u0430\u0434\u0430\u0447\u0438, \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a\u0435 {0} \u0432 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0438 {1}.
activiti.engine.get.pooled.tasks.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u0437\u0430\u0434\u0430\u0447\u0438 \u0432 \u043f\u0443\u043b\u0435 \u0434\u043b\u044f \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043a {0}.
activiti.engine.query.tasks.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u044c \u0437\u0430\u0434\u0430\u0447\u0438. \u0417\u0430\u043f\u0440\u043e\u0441: {0}.
activiti.engine.get.task.instance.error=\u042d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u0430 \u0437\u0430\u0434\u0430\u0447\u0438 {0} \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.
activiti.engine.update.task.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0437\u0430\u0434\u0430\u0447\u0443 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0}.
activiti.engine.update.task.unexisting.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0437\u0430\u0434\u0430\u0447\u0443 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0}. \u0422\u0430\u043a\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0438 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.
activiti.engine.update.starttask.illegal.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0437\u0430\u0434\u0430\u0447\u0443 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0}, \u0437\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043d\u0435\u043b\u044c\u0437\u044f \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0432 Activiti.
activiti.engine.end.task.invalid.transition={0} - \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u0430\u044f \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u0434\u043b\u044f \u0437\u0430\u0434\u0430\u0447\u0438 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {1}, \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d \u043b\u0438\u0448\u044c \u043f\u0435\u0440\u0435\u0445\u043e\u0434 {2}.
activiti.engine.end.task.unexisting.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0432\u044b\u0434\u0430\u0442\u044c \u0441\u0438\u0433\u043d\u0430\u043b \u043e \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0435 \u0432 \u0437\u0430\u0434\u0430\u0447\u0435 {0}, \u0442\u0430\u043a\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0438 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.
activiti.engine.end.task.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u043e\u0434\u0430\u0442\u044c \u0441\u0438\u0433\u043d\u0430\u043b \u043e \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0435 {0} \u0438\u0437 \u0437\u0430\u0434\u0430\u0447\u0438 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {1}.
activiti.engine.get.task.by.id.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u0437\u0430\u0434\u0430\u0447\u0443 {0}.
activiti.engine.compile.process.definition.zip.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u0440\u043e\u0430\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0434\u043b\u044f \u043f\u043e\u0442\u043e\u043a\u0430 ZIP-\u0430\u0440\u0445\u0438\u0432\u043e\u0432 Activiti.
activiti.engine.compile.process.definition.xml.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u0440\u043e\u0430\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0434\u043b\u044f XML-\u043f\u043e\u0442\u043e\u043a\u0430 Activiti.
activiti.engine.compile.process.definition.unsupported.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u0440\u043e\u0430\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 - \u043d\u0435\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0439 \u0442\u0438\u043f MIME {0}
activiti.engine.get.activiti.id.error=\u041d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0444\u043e\u0440\u043c\u0430\u0442 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0430 {0}.
activiti.engine.get.workflow.token.invalid=\u041d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u043f\u0443\u0442\u044c \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0}.
activiti.engine.get.workflow.token.is.null=\u041f\u0443\u0442\u0438 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0} \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.
activiti.engine.set.task.properties.invalid.value={0} - \u043d\u0435\u0432\u0435\u0440\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0437\u0430\u0434\u0430\u0447\u0438 {1}.
activiti.engine.package.already.associated.error=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0441\u0432\u044f\u0437\u0430\u0442\u044c \u043f\u0430\u043a\u0435\u0442 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0} \u0441 \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u043e\u043c \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {1}, \u0442\u0430\u043a \u043a\u0430\u043a \u043e\u043d \u0443\u0436\u0435 \u0441\u0432\u044f\u0437\u0430\u043d \u0441 \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u043e\u043c \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {2}.
activiti.engine.convert.value.error=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 Activiti {0} \u0432 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 Alfresco, \u0442\u0430\u043a \u043a\u0430\u043a \u0435\u0433\u043e \u043d\u0435\u043b\u044c\u0437\u044f \u0441\u0435\u0440\u0438\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u0442\u044c.
activiti.engine.get.company.home.invalid=\u041d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u043f\u0443\u0442\u044c \u043a \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 {0}.
activiti.engine.get.company.home.multiple=\u041d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u043f\u0443\u0442\u044c \u043a \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 {0}. \u041e\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044f 1 \u0441\u043e\u0432\u043f\u0430\u0434\u0435\u043d\u0438\u0435, \u043d\u043e \u043d\u0430\u0439\u0434\u0435\u043d\u043e {1}.

View File

@@ -0,0 +1,3 @@
# Activities (Activity Service / Feeds)
activities.feed.notifier.email.subject=Alfresco {0}: \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043d\u043e\u0432\u043e\u0441\u0442\u0438

View File

@@ -0,0 +1 @@
# dummy file to allow repository context (activities feed notification) to start without slingshot - will be overwritten by build

View File

@@ -0,0 +1,42 @@
# Display labels for System Model
app_applicationmodel.description=\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f Alfresco
app_applicationmodel.type.app_glossary.title=\u0421\u043b\u043e\u0432\u0430\u0440\u044c \u0434\u0430\u043d\u043d\u044b\u0445
app_applicationmodel.type.app_glossary.description=\u0421\u043b\u043e\u0432\u0430\u0440\u044c \u0434\u0430\u043d\u043d\u044b\u0445
app_applicationmodel.type.app_configurations.title=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438
app_applicationmodel.type.app_configurations.description=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438
app_applicationmodel.aspect.app_uifacets.title=\u0410\u0441\u043f\u0435\u043a\u0442\u044b \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430
app_applicationmodel.aspect.app_uifacets.description=\u0410\u0441\u043f\u0435\u043a\u0442\u044b \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430
app_applicationmodel.property.app_icon.title=\u0417\u043d\u0430\u0447\u043e\u043a
app_applicationmodel.property.app_icon.description=\u0417\u043d\u0430\u0447\u043e\u043a
app_applicationmodel.aspect.app_inlineeditable.title=\u0421 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u043e\u0439 \u043f\u0440\u0430\u0432\u043a\u0438
app_applicationmodel.aspect.app_inlineeditable.description=\u0421 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u043e\u0439 \u043f\u0440\u0430\u0432\u043a\u0438
app_applicationmodel.property.app_editInline.title=\u0412\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u043f\u0440\u0430\u0432\u043a\u0430
app_applicationmodel.property.app_editInline.description=\u0412\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u043f\u0440\u0430\u0432\u043a\u0430
app_applicationmodel.aspect.app_workflow.title=\u0411\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441
app_applicationmodel.aspect.app_workflow.description=\u0411\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441
app_applicationmodel.aspect.app_simpleworkflow.title=\u0411\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441
app_applicationmodel.aspect.app_simpleworkflow.description=\u0411\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441
app_applicationmodel.property.app_approveStep.title=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
app_applicationmodel.property.app_approveStep.description=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
app_applicationmodel.property.app_approveFolder.title=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u043f\u0430\u043f\u043a\u0443
app_applicationmodel.property.app_approveFolder.description=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u043f\u0430\u043f\u043a\u0443
app_applicationmodel.property.app_approveMove.title=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0438\u043b\u0438 \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c
app_applicationmodel.property.app_approveMove.description=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0438\u043b\u0438 \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c
app_applicationmodel.property.app_rejectStep.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c \u0448\u0430\u0433
app_applicationmodel.property.app_rejectStep.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c \u0448\u0430\u0433
app_applicationmodel.property.app_rejectFolder.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c \u043f\u0430\u043f\u043a\u0443
app_applicationmodel.property.app_rejectFolder.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c \u043f\u0430\u043f\u043a\u0443
app_applicationmodel.property.app_rejectMove.title=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0438\u043b\u0438 \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c
app_applicationmodel.property.app_rejectMove.description=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0438\u043b\u0438 \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c
app_applicationmodel.aspect.app_configurable.title=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0443\u0435\u043c\u044b\u0439
app_applicationmodel.aspect.app_configurable.description=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0443\u0435\u043c\u044b\u0439
app_applicationmodel.association.app_configurations.title=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438
app_applicationmodel.association.app_configurations.description=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438

View File

@@ -0,0 +1,9 @@
# AVM related messages
expiredcontent.workflow.title=\u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u0441 \u0438\u0441\u0442\u0435\u043a\u0448\u0438\u043c \u0441\u0440\u043e\u043a\u043e\u043c \u0432 ''{0}''
avmlockservice.locked=\u041d\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a ''{0}'', \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c ''{1}''.
avmlockservice.accessdenied=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c ''{0}'' \u043f\u044b\u0442\u0430\u043b\u0441\u044f \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0443\u0437\u0435\u043b \u0432 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0431\u0435\u0437 \u043f\u0440\u0430\u0432\u0430 \u043d\u0430 \u0437\u0430\u043f\u0438\u0441\u044c.
testserver.taken=\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0439 \u0442\u0435\u0441\u0442\u043e\u0432\u044b\u0439 \u0441\u0435\u0440\u0432\u0435\u0440 ''{0}'' \u0432\u044b\u0434\u0435\u043b\u0435\u043d \u0434\u0440\u0443\u0433\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e. \u0415\u0441\u043b\u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0439 \u0441\u0435\u0440\u0432\u0435\u0440 \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.
avm.cycle.create=\u0411\u044b\u043b \u0431\u044b \u0441\u043e\u0437\u0434\u0430\u043d \u0446\u0438\u043a\u043b.
avm.cycle.lookup=\u0426\u0438\u043a\u043b \u0432 \u043f\u043e\u0438\u0441\u043a\u0435.

View File

@@ -0,0 +1,14 @@
content.template.calculates_if_the_document=\u0412\u044b\u0447\u0438\u0441\u043b\u044f\u0435\u0442, \u0435\u0441\u0442\u044c \u043b\u0438 \u0443 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u043d\u044b\u0439 \u0430\u0441\u043f\u0435\u043a\u0442 \u043b\u043e\u043a\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438
content.template.displays_useful_information=\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u043f\u043e\u043b\u0435\u0437\u043d\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u0442\u0435\u043a\u0443\u0449\u0435\u043c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0435
content.template.displays_a_list_of_the_documents=\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u0441\u043f\u0438\u0441\u043e\u043a \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u0432 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u043c \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0435 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f
content.template.displays_a_list_of_spaces=\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u0441\u043f\u0438\u0441\u043e\u043a \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432 \u0432 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u043c \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0435 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f
content.template.shows_a_simple_summary_page=\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u043f\u0440\u043e\u0441\u0442\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443 \u0441\u043e \u0441\u0432\u043e\u0434\u043d\u044b\u043c\u0438 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f\u043c\u0438 \u043e\u0442 \u0442\u0435\u043a\u0443\u0449\u0435\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435 \u0438 \u0435\u0433\u043e \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u043c \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0435
content.template.calculates_if_the_document_has=\u0412\u044b\u0447\u0438\u0441\u043b\u044f\u0435\u0442, \u0435\u0441\u0442\u044c \u043b\u0438 \u0443 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u043d\u044b\u0439 \u0430\u0441\u043f\u0435\u043a\u0442 \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u0430
content.template.displays_a_list_of_the_documents_in_the_current_space=\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u0441\u043f\u0438\u0441\u043e\u043a \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u0432 \u0442\u0435\u043a\u0443\u0449\u0435\u043c \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0435, \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u043b\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u043d\u044b\u0445 \u0437\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 7 \u0434\u043d\u0435\u0439
content.template.example_of_various_lists=\u041f\u0440\u0438\u043c\u0435\u0440 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432, \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432 \u0438 \u0441\u0432\u043e\u0434\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u0442\u0435\u043a\u0443\u0449\u0435\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435
content.template.displays_a_list_of_the_documents_in_the_current_user_Home_Space=\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u0441\u043f\u0438\u0441\u043e\u043a \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u0432 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u043c \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0435 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f. \u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0445 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442\u0441\u044f \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u043c, \u043a\u0430\u043a \u0432 JPG-\u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0435, \u0432 \u0432\u0438\u0434\u0435 \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u0438\u0445 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439 \u044d\u0441\u043a\u0438\u0437\u043e\u0432.
content.template.displays_the_audit_trail=\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c\u043d\u044b\u0439 \u0436\u0443\u0440\u043d\u0430\u043b \u0434\u043b\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430.
email.template.email_template_for_notifying_users=\u0428\u0430\u0431\u043b\u043e\u043d \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u0434\u043b\u044f \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u0430\u0432\u0438\u043b \u0438\u043b\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439
email.template.email_template_for_notifying_users_of_an_Invite=\u0428\u0430\u0431\u043b\u043e\u043d \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u0434\u043b\u044f \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u043e \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0438 \u043a \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0443 \u0438\u043b\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443
rss.template.renders_a_valid_rss=\u041e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0435\u0442 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 XML-\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 RSS2.0, \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u044e\u0449\u0438\u0439 \u0432 \u0442\u0435\u043a\u0443\u0449\u0435\u043c \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b, \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0435 \u0438\u043b\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u043d\u044b\u0435 \u0437\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 7 \u0434\u043d\u0435\u0439. \u041f\u0435\u0440\u0435\u0434 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u0435\u043c \u0434\u0430\u043d\u043d\u044b\u0439 \u0448\u0430\u0431\u043b\u043e\u043d \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0433\u043e \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0438 \u043f\u043e\u0440\u0442\u0430.
rss.template.rss_recent_docs=\u041d\u0435\u0434\u0430\u0432\u043d\u0438\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b RSS-\u043a\u0430\u043d\u0430\u043b\u0430

View File

@@ -0,0 +1,14 @@
# Javascript Exapmples Localization
javascripts.example.backup.title=\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0439 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f
javascripts.example.backup.description=\u041f\u0440\u043e\u0441\u0442\u043e\u0439 \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0439 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432
javascripts.example.test.title=\u041f\u0440\u0438\u043c\u0435\u0440 \u0442\u0435\u0441\u0442\u043e\u0432\u043e\u0433\u043e \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u044f
javascripts.example.test.description=\u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u0437\u043e\u0432\u043e\u0432 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 API
javascripts.example.backupandlog.title=\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0439 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438 \u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0436\u0443\u0440\u043d\u0430\u043b\u0430
javascripts.example.backupandlog.description=\u0420\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0435 \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u043e\u0432 \u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0434\u0430\u0442\u044b \u0438 \u0432\u0440\u0435\u043c\u0435\u043d\u0438
javascripts.example.appendcopyright.title=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u0444\u0430\u0439\u043b \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0445 \u043f\u0440\u0430\u0432\u0430\u0445
javascripts.example.appendcopyright.description=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0435 \u0438\u043b\u0438 HTML-\u0444\u0430\u0439\u043b\u044b \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u043e \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f\u043c\u0438 \u043e\u0431 \u0430\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0445 \u043f\u0440\u0430\u0432\u0430\u0445
javascripts.example.testreturnvalue.title=\u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0435\u043c\u043e\u0433\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f
javascripts.example.testreturnvalue.description=\u0412\u0435\u0440\u043d\u0443\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0438\u0437 \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u044f - \u0434\u043b\u044f \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u043e\u0433\u043e \u0441\u0435\u0440\u0432\u043b\u0435\u0442\u0430
javascripts.example.alfrescodocs.title=\u041f\u043e\u0438\u0441\u043a Alfresco Lucene
javascripts.example.alfrescodocs.description=\u041f\u043e\u0438\u0441\u043a \u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0432\u0441\u0435\u0445 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0445 \u0442\u0435\u043a\u0441\u0442 Alfresco

View File

@@ -0,0 +1,12 @@
imap.command_processor.name=command-processor.js
imap.command_processor.title=\u041a\u043e\u043c\u0430\u043d\u0434\u043d\u044b\u0439 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440
imap.command_processor.description=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0439 \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u0430 \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435
imap.command_search.name=command-search.js
imap.command_search.title=\u041a\u043e\u043c\u0430\u043d\u0434\u0430 \u043f\u043e\u0438\u0441\u043a\u0430
imap.command_search.description=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0439 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u043f\u043e\u0438\u0441\u043a\u0430 \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435
imap.command_utils.name=command-utils.js
imap.command_utils.title=\u041a\u043e\u043c\u0430\u043d\u0434\u043d\u044b\u0435 \u0443\u0442\u0438\u043b\u0438\u0442\u044b
imap.command_utils.description=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u044b\u0435 \u0443\u0442\u0438\u043b\u0438\u0442\u044b \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435

View File

@@ -0,0 +1,17 @@
javascripts.backup.description=\u041f\u0440\u043e\u0441\u0442\u043e\u0439 \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0439 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432
javascripts.backup.title=\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0439 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f
javascripts.examle_test.description=\u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u044b\u0437\u043e\u0432\u043e\u0432 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 Alfresco API
javascripts.examle_test.title=\u041f\u0440\u0438\u043c\u0435\u0440 \u0442\u0435\u0441\u0442\u043e\u0432\u043e\u0433\u043e \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u044f
javascripts.backup_and_log.description=\u0420\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0435 \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u043e\u0432 \u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0434\u0430\u0442\u044b \u0438 \u0432\u0440\u0435\u043c\u0435\u043d\u0438
javascripts.backup_and_log.title=\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0439 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438 \u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0436\u0443\u0440\u043d\u0430\u043b\u0430
javascripts.append_copyright.description=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0435 \u0438\u043b\u0438 HTML-\u0444\u0430\u0439\u043b\u044b \u0441\u0442\u0440\u043e\u043a\u0443 \u0441\u043e \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f\u043c\u0438 \u043e\u0431 \u0430\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0445 \u043f\u0440\u0430\u0432\u0430\u0445
javascripts.append_copyright.title=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u0444\u0430\u0439\u043b \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0445 \u043f\u0440\u0430\u0432\u0430\u0445
javascripts.lucene_search.description=\u041f\u043e\u0438\u0441\u043a \u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0432\u0441\u0435\u0445 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0445 \u0442\u0435\u043a\u0441\u0442 Alfresco
javascripts.lucene_search.title=\u041f\u043e\u0438\u0441\u043a Alfresco Lucene
javascripts.return_value.description=\u0412\u0435\u0440\u043d\u0443\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0438\u0437 \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u044f - \u0434\u043b\u044f \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u043e\u0433\u043e \u0441\u0435\u0440\u0432\u043b\u0435\u0442\u0430
javascripts.return_value.title=\u041f\u0440\u0438\u043c\u0435\u0440 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0435\u043c\u043e\u0433\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f

View File

@@ -0,0 +1,2 @@
readme.template.description=\u041e\u0442\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u0444\u0430\u0439\u043b\u0430 (\u043d\u0430\u0437\u044b\u0432\u0430\u0435\u0442\u0441\u044f readme.html \u0438\u043b\u0438 readme.ftl)
readme.template.title=readme.ftl

View File

@@ -0,0 +1,169 @@
# Labels used in bootstrap Space definitions
spaces.company_home.name=\u0414\u043e\u043c\u0430\u0448\u043d\u044f\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438
spaces.company_home.description=\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438
spaces.dictionary.name=\u0421\u043b\u043e\u0432\u0430\u0440\u044c \u0434\u0430\u043d\u043d\u044b\u0445
spaces.dictionary.description=\u0423\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u043c\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f
spaces.imapConfig.name=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 Imap
spaces.imapConfig.description=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 Imap
spaces.imap_templates.name=\u0428\u0430\u0431\u043b\u043e\u043d\u044b
spaces.imap_templates.description=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u0434\u043b\u044f \u0433\u0435\u043d\u0435\u0440\u0438\u0440\u0443\u0435\u043c\u044b\u0445 \u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u043e\u043c IMAP \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439
spaces.imap_templates.emailbody_textplain.description=\u0428\u0430\u0431\u043b\u043e\u043d \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0439 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0442\u0435\u043b\u0430 IMAP-\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f "multipart/alternative" (\u0447\u0430\u0441\u0442\u044c "text/plain").
spaces.imap_templates.emailbody_texthtml.description=\u0428\u0430\u0431\u043b\u043e\u043d \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0439 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0442\u0435\u043b\u0430 IMAP-\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f "multipart/alternative" (\u0447\u0430\u0441\u0442\u044c "text/html").
spaces.emailActions.name=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0434\u043b\u044f \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
spaces.emailActions.description=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0434\u043b\u044f \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
spaces.searchAction.name=\u043f\u043e\u0438\u0441\u043a
spaces.searchAction.description=\u043f\u043e\u0438\u0441\u043a
spaces.templates.name=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u043f\u043e\u0438\u0441\u043a\u0430
spaces.templates.description=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u043f\u0430\u043f\u043e\u043a \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430
spaces.templates.content.name=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u043f\u0440\u0435\u0437\u0435\u043d\u0442\u0430\u0446\u0438\u0439
spaces.templates.content.description=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u043f\u0440\u0435\u0437\u0435\u043d\u0442\u0430\u0446\u0438\u0439
spaces.templates.email.name=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
spaces.templates.email.description=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
spaces.invite_templates.email.name=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0439 \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435
spaces.invite_templates.email.description=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0439 \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435
spaces.notify_templates.email.name=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0439 \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435
spaces.notify_templates.email.description=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0439 \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435
spaces.templates.rss.name=\u0428\u0430\u0431\u043b\u043e\u043d\u044b RSS-\u043a\u0430\u043d\u0430\u043b\u043e\u0432
spaces.templates.rss.description=\u0428\u0430\u0431\u043b\u043e\u043d\u044b RSS-\u043a\u0430\u043d\u0430\u043b\u043e\u0432
spaces.actions.scheduled_actions.name=\u0417\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438
spaces.actions.scheduled_actions.description=\u0420\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u044b\u0445 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439
spaces.publishing.root.name=\u041a\u043e\u0440\u0435\u043d\u044c \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438
spaces.publishing.root.description=\u041a\u043e\u0440\u043d\u0435\u0432\u0430\u044f \u043f\u0430\u043f\u043a\u0430 \u0434\u043b\u044f PublishingService.
spaces.remote_credentials.root.name=\u0423\u0447\u0435\u0442\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430
spaces.remote_credentials.root.description=\u041a\u043e\u0440\u043d\u0435\u0432\u0430\u044f \u043f\u0430\u043f\u043a\u0430 \u0434\u043b\u044f \u043e\u0431\u0449\u0438\u0445 \u0443\u0447\u0435\u0442\u043d\u044b\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430
spaces.rendition.rendering_actions.name=\u041f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438
spaces.rendition.rendering_actions.description=\u041f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u043e\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u043e\u0439 \u0434\u043b\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438.
spaces.replication.replication_actions.name=\u041f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439 \u0440\u0435\u043f\u043b\u0438\u043a\u0430\u0446\u0438\u0438
spaces.replication.replication_actions.description=\u041f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u043e\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u043e\u0439 \u0434\u043b\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439 \u0440\u0435\u043f\u043b\u0438\u043a\u0430\u0446\u0438\u0438.
spaces.syncset_definitions.root.name=\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f SyncSet
spaces.syncset_definitions.root.description=\u041a\u043e\u0440\u043d\u0435\u0432\u0430\u044f \u043f\u0430\u043f\u043a\u0430 \u0434\u043b\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0439 SyncSet.
spaces.savedsearches.name=\u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0435 \u043f\u043e\u0438\u0441\u043a\u0438
spaces.savedsearches.description=\u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0435 \u043f\u043e\u0438\u0441\u043a\u0438
spaces.guest_home.name=\u0414\u043e\u043c\u0430\u0448\u043d\u044f\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u0433\u043e\u0441\u0442\u044f
spaces.guest_home.description=\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0433\u043e\u0441\u0442\u044f
spaces.scripts.name=\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0438
spaces.scripts.description=\u0424\u0430\u0439\u043b\u044b JavaScript
spaces.scripts.example.workflow.name=start-pooled-review-workflow.js
spaces.scripts.example.workflow.title=\u041d\u0430\u0447\u0430\u0442\u044c \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0438 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f \u0432 \u043f\u0443\u043b\u0435
spaces.scripts.example.workflow.description=\u0417\u0430\u043f\u0443\u0441\u043a\u0430\u0435\u0442 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0438 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f \u0432 \u043f\u0443\u043b\u0435 \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u0447\u043b\u0435\u043d\u043e\u0432 \u0441\u0430\u0439\u0442\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0438\u0442 \u0434\u0430\u043d\u043d\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442
spaces.wcm.name=\u0412\u0435\u0431-\u043f\u0440\u043e\u0435\u043a\u0442\u044b
spaces.wcm.description=\u041f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0432\u0435\u0431-\u043a\u043e\u043d\u0442\u0435\u043d\u0442\u043e\u043c
spaces.wcm_content_forms.name=\u0412\u0435\u0431-\u0444\u043e\u0440\u043c\u044b
spaces.wcm_content_forms.description=\u0424\u043e\u0440\u043c\u044b \u0432\u0435\u0431-\u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430
spaces.user_homes.name=\u0414\u043e\u043c\u0430\u0448\u043d\u0438\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439
spaces.user_homes.description=\u0414\u043e\u043c\u0430\u0448\u043d\u0438\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439
spaces.content_forms.name=\u0424\u043e\u0440\u043c\u044b
spaces.content_forms.description=\u0424\u043e\u0440\u043c\u044b \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430
spaces.sites.name=\u0421\u0430\u0439\u0442\u044b
spaces.sites.description=\u041f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430 \u0434\u043b\u044f \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e\u0439 \u0440\u0430\u0431\u043e\u0442\u044b \u043d\u0430 \u0441\u0430\u0439\u0442\u0435
spaces.templates.email.invite.name=\u043f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0442\u044c
spaces.templates.email.invite.description=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0439 \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435
spaces.imap_home.name=\u0414\u043e\u043c\u0430\u0448\u043d\u0435\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e IMAP
spaces.imap_home.description=\u0414\u043e\u043c\u0430\u0448\u043d\u0435\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e IMAP
spaces.templates.email.invite1.name=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0439 \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435
spaces.templates.email.invite1.description=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0439 \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435
spaces.templates.email.notify.name=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0439 \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435
spaces.templates.email.notify.description=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0439 \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435
spaces.templates.email.generate_the_invite_email.description=\u0428\u0430\u0431\u043b\u043e\u043d \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0439 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435 \u0434\u043b\u044f Alfresco Share
spaces.templates.email.generate_the_wf_notification_email.description=\u0428\u0430\u0431\u043b\u043e\u043d \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u0434\u043b\u044f \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u043e \u043d\u043e\u0432\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0435 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
email.template.email_template_for_notifying_users=\u0428\u0430\u0431\u043b\u043e\u043d \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u0434\u043b\u044f \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u0430\u0432\u0438\u043b \u0438\u043b\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439
email.template.email_template_for_notifying_users.sample=\u041f\u0440\u0438\u043c\u0435\u0440 \u0448\u0430\u0431\u043b\u043e\u043d\u0430 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u0434\u043b\u044f \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u0430\u0432\u0438\u043b \u0438\u043b\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439
email.template.email_template_for_notifying_users_of_an_Invite=\u0428\u0430\u0431\u043b\u043e\u043d \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u0434\u043b\u044f \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u043e \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0438 \u043a \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0443 \u0438\u043b\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443
email.templates.email_template_for_notifying_new_users=\u0428\u0430\u0431\u043b\u043e\u043d \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0439 \u0434\u043b\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043d\u043e\u0432\u044b\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u043e\u0431 \u0438\u0445 \u0443\u0447\u0435\u0442\u043d\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u044f\u0445
spaces.templates.email.following.name=\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0448\u0430\u0431\u043b\u043e\u043d\u044b \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
spaces.templates.email.following.description=\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0448\u0430\u0431\u043b\u043e\u043d\u044b \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
email.templates.email_template_for_following_notifications=\u0428\u0430\u0431\u043b\u043e\u043d \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0439 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0439 \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435
version.default=\u0412\u0435\u0440\u0441\u0438\u044f \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e
version.french=\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f
version.german=\u041d\u0435\u043c\u0435\u0446\u043a\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f
version.italian=\u0418\u0442\u0430\u043b\u044c\u044f\u043d\u0441\u043a\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f
version.japanese=\u042f\u043f\u043e\u043d\u0441\u043a\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f
version.spanish=\u0418\u0441\u043f\u0430\u043d\u0441\u043a\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f
version.dutch=\u0413\u043e\u043b\u043b\u0430\u043d\u0434\u0441\u043a\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f
spaces.web.client.extension.name=\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435 \u0432\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442\u0430
spaces.web.client.extension.title=\u041d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0439 \u0432\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442
spaces.web.client.extension.description=\u041d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0439 \u0432\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442
spaces.models.name=\u041c\u043e\u0434\u0435\u043b\u0438
spaces.models.title=\u041d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0435 \u043c\u043e\u0434\u0435\u043b\u0438
spaces.models.description=\u041d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0435 \u043c\u043e\u0434\u0435\u043b\u0438
spaces.messages.name=\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f
spaces.messages.title=\u041d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f
spaces.messages.description=\u041d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f
spaces.workflow.definitions.name=\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432
spaces.workflow.definitions.title=\u041d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432
spaces.workflow.definitions.description=\u041d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432
spaces.templates.email.activities.name=\u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438
spaces.templates.email.activities.description=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u043e\u0431 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f\u0445
spaces.templates.email.generate_the_activities_email.description=\u0428\u0430\u0431\u043b\u043e\u043d \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0439 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435 \u043e\u0431 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f\u0445 \u0434\u043b\u044f Alfresco Share
spaces.transfers.name=\u041f\u0435\u0440\u0435\u043d\u043e\u0441\u044b
spaces.transfers.title=\u041f\u0435\u0440\u0435\u043d\u043e\u0441\u044b
spaces.transfers.description=\u041f\u0430\u043f\u043a\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u0430\u044f \u043f\u043e\u0434\u0441\u0438\u0441\u0442\u0435\u043c\u043e\u0439 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
spaces.transfer_groups.name=\u0426\u0435\u043b\u0435\u0432\u044b\u0435 \u0433\u0440\u0443\u043f\u043f\u044b \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
spaces.transfer_groups.title=\u0426\u0435\u043b\u0435\u0432\u044b\u0435 \u0433\u0440\u0443\u043f\u043f\u044b \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
spaces.transfer_groups.description=\u041f\u0430\u043f\u043a\u0430, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0430\u044f \u0433\u0440\u0443\u043f\u043f\u044b \u0446\u0435\u043b\u0435\u0439 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
spaces.transfer_groups_default.name=\u0413\u0440\u0443\u043f\u043f\u0430 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e
spaces.transfer_groups_default.title=\u0413\u0440\u0443\u043f\u043f\u0430 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e
spaces.transfer_groups_default.description=\u041f\u043e\u043c\u0435\u0441\u0442\u0438\u0442\u0435 \u0441\u0432\u043e\u0438 \u0446\u0435\u043b\u0438 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 \u0432 \u044d\u0442\u0443 \u043f\u0430\u043f\u043a\u0443
spaces.transfer_temp.name=Temp
spaces.transfer_temp.title=Temp
spaces.transfer_temp.description=\u041f\u0430\u043f\u043a\u0430 \u0434\u043b\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445 \u0443\u0437\u043b\u043e\u0432 \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
spaces.inbound_transfer_records.name=\u0417\u0430\u043f\u0438\u0441\u0438 \u0432\u0445\u043e\u0434\u044f\u0449\u0435\u0433\u043e \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
spaces.inbound_transfer_records.title=\u0417\u0430\u043f\u0438\u0441\u0438 \u0432\u0445\u043e\u0434\u044f\u0449\u0435\u0433\u043e \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
spaces.inbound_transfer_records.description=\u041f\u0430\u043f\u043a\u0430, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u0438 \u0432\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u043e\u0432
spaces.templates.email.workflowNotification.name=\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u043e \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435
spaces.templates.email.workflowNotification.description=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u0441 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f\u043c\u0438 \u043e \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435
spaces.nodeTemplatesSpace.name=\u0428\u0430\u0431\u043b\u043e\u043d\u044b \u0443\u0437\u043b\u043e\u0432
spaces.nodeTemplatesSpace.description=\u0423\u0437\u043b\u044b \u0448\u0430\u0431\u043b\u043e\u043d\u0430 \u0434\u043b\u044f Share - \u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442

View File

@@ -0,0 +1,14 @@
# Labels used in bootstrap Template definitions
templates.space.project=\u041f\u0440\u043e\u0435\u043a\u0442 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f
templates.space.documentation=\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f
templates.space.drafts=\u0427\u0435\u0440\u043d\u043e\u0432\u0438\u043a\u0438
templates.space.pending_approval=\u041e\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044f \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435
templates.space.published=\u041e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043e
templates.space.samples=\u041f\u0440\u0438\u043c\u0435\u0440\u044b
templates.document.system_overview.title=\u041e\u0431\u0437\u043e\u0440 \u0441\u0438\u0441\u0442\u0435\u043c\u044b
templates.document.system_overview.name=system-overview.html
templates.space.discussions=\u041e\u0431\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u044f
templates.space.ui_design=\u041f\u0440\u043e\u0435\u043a\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430
templates.space.presentations=\u041f\u0440\u0435\u0437\u0435\u043d\u0442\u0430\u0446\u0438\u0438
templates.space.quality_assurance=\u041e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430

View File

@@ -0,0 +1,9 @@
# Labels used in bootstrap Tutorial definitions
tutorial.space.name=\u0423\u0447\u0435\u0431\u043d\u043e\u0435 \u043f\u043e\u0441\u043e\u0431\u0438\u0435 \u043f\u043e Alfresco
tutorial.space.description=\u041f\u043e\u0448\u0430\u0433\u043e\u0432\u043e\u0435 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e \u043f\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044e Alfresco
tutorial.document.name=Alfresco-Tutorial.pdf
tutorial.document.title=\u0423\u0447\u0435\u0431\u043d\u043e\u0435 \u043f\u043e\u0441\u043e\u0431\u0438\u0435 \u043f\u043e Alfresco
tutorial.document.description=\u0420\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e \u043f\u043e \u043d\u0430\u0447\u0430\u043b\u0443 \u0440\u0430\u0431\u043e\u0442\u044b

View File

@@ -0,0 +1,5 @@
webscriptsextentions.customized_web_scripts=\u041d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u044b\u0435 \u0432\u0435\u0431-\u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0438
webscriptsextentions.url_addressable_web_service_extensions=\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f URL-\u0430\u0434\u0440\u0435\u0441\u0443\u0435\u043c\u044b\u0445 \u0432\u0435\u0431-\u0441\u043b\u0443\u0436\u0431
webscriptsextentions.web_scripts_extensions=\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f \u0432\u0435\u0431-\u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0435\u0432
webscriptsextentions.how_to_customize_an_existing_web_script=\u041a\u0430\u043a \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u0432\u0435\u0431-\u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0439

View File

@@ -0,0 +1,4 @@
webscripts.url_addressable_web_services=URL-\u0430\u0434\u0440\u0435\u0441\u0443\u0435\u043c\u044b\u0435 \u0432\u0435\u0431-\u0441\u043b\u0443\u0436\u0431\u044b
webscripts.web_scripts=\u0412\u0435\u0431-\u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0438
webscripts.what_are_web_scripts=\u0427\u0442\u043e \u0442\u0430\u043a\u043e\u0435 \u0432\u0435\u0431-\u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0438 \u0438 \u043a\u0430\u043a \u0438\u0445 \u0440\u0430\u0437\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0442\u044c?

View File

@@ -0,0 +1,91 @@
# Display labels for base Business Process Model
bpm_businessprocessmodel.title=\u041c\u043e\u0434\u0435\u043b\u044c \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432
bpm_businessprocessmodel.description=\u041e\u0441\u043d\u043e\u0432\u043d\u044b\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0432\u0441\u0435\u0445 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432
# Default transition
bpm_businessprocessmodel.transition.title=\u0417\u0430\u0434\u0430\u0447\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0430
bpm_businessprocessmodel.transition.description=\u0417\u0430\u0434\u0430\u0447\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0430
# Base Task
bpm_businessprocessmodel.type.bpm_task.title=\u0417\u0430\u0434\u0430\u0447\u0430
bpm_businessprocessmodel.type.bpm_task.description=\u0417\u0430\u0434\u0430\u0447\u0430
bpm_businessprocessmodel.property.bpm_taskId.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440
bpm_businessprocessmodel.property.bpm_taskId.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440
bpm_businessprocessmodel.property.bpm_startDate.title=\u0414\u0430\u0442\u0430 \u043d\u0430\u0447\u0430\u043b\u0430
bpm_businessprocessmodel.property.bpm_startDate.description=\u0414\u0430\u0442\u0430 \u043d\u0430\u0447\u0430\u043b\u0430
bpm_businessprocessmodel.property.bpm_completionDate.title=\u0414\u0430\u0442\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f
bpm_businessprocessmodel.property.bpm_completionDate.description=\u0414\u0430\u0442\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f
bpm_businessprocessmodel.property.bpm_dueDate.title=\u0421\u0440\u043e\u043a
bpm_businessprocessmodel.property.bpm_dueDate.description=\u0421\u0440\u043e\u043a
bpm_businessprocessmodel.property.bpm_status.title=\u0421\u0442\u0430\u0442\u0443\u0441
bpm_businessprocessmodel.property.bpm_status.description=\u0421\u0442\u0430\u0442\u0443\u0441
bpm_businessprocessmodel.property.bpm_priority.title=\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442
bpm_businessprocessmodel.property.bpm_priority.description=\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442
bpm_businessprocessmodel.property.bpm_percentComplete.title=\u041f\u0440\u043e\u0446\u0435\u043d\u0442 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f
bpm_businessprocessmodel.property.bpm_percentComplete.description=\u041f\u0440\u043e\u0446\u0435\u043d\u0442 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f
bpm_businessprocessmodel.property.bpm_comment.title=\u041a\u043e\u043c\u043c\u0435\u043d\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
bpm_businessprocessmodel.property.bpm_comment.description=\u041a\u043e\u043c\u043c\u0435\u043d\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
bpm_businessprocessmodel.association.bpm_pooledActors.title=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0432 \u043f\u0443\u043b\u0435
bpm_businessprocessmodel.association.bpm_pooledActors.description=\u041f\u0443\u043b
# Workflow Task
bpm_businessprocessmodel.type.bpm_workflowTask.title=\u0417\u0430\u0434\u0430\u0447\u0430 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.type.bpm_workflowTask.description=\u0417\u0430\u0434\u0430\u0447\u0430, \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u0430\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u043c
bpm_businessprocessmodel.property.bpm_workflowDefinitionId.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.property.bpm_workflowDefinitionId.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.property.bpm_workflowInstanceId.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u0430 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.property.bpm_workflowInstanceId.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u0430 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.property.bpm_context.title=\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442 \u0437\u0430\u0434\u0430\u0447\u0438
bpm_businessprocessmodel.property.bpm_context.description=\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442, \u0432 \u0440\u0430\u043c\u043a\u0430\u0445 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0430 \u0434\u0430\u043d\u043d\u0430\u044f \u0437\u0430\u0434\u0430\u0447\u0430
bpm_businessprocessmodel.property.bpm_description.title=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435
bpm_businessprocessmodel.property.bpm_description.description=\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0442\u043e\u0433\u043e, \u0447\u0442\u043e \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0434\u043e\u0441\u0442\u0438\u0433\u043d\u0443\u0442\u044c
bpm_businessprocessmodel.property.bpm_outcome.title=\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442
bpm_businessprocessmodel.property.bpm_outcome.description=\u0420\u0435\u0448\u0435\u043d\u0438\u0435, \u043f\u0440\u0438\u043d\u044f\u0442\u043e\u0435 \u043f\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044e \u0437\u0430\u0434\u0430\u0447\u0438
bpm_businessprocessmodel.property.bpm_completedItems.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u044b\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b
bpm_businessprocessmodel.property.bpm_completedItems.description=\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u043f\u0430\u043a\u0435\u0442\u0430, \u043f\u043e\u043c\u0435\u0447\u0435\u043d\u043d\u044b\u0435 \u043a\u0430\u043a \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u044b\u0435
bpm_businessprocessmodel.property.bpm_packageActionGroup.title=\u041e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 \u043f\u0430\u043a\u0435\u0442\u0430
bpm_businessprocessmodel.property.bpm_packageActionGroup.description=\u041e\u043f\u0435\u0440\u0430\u0446\u0438\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c \u0441 \u043f\u0430\u043a\u0435\u0442\u043e\u043c \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.property.bpm_packageItemActionGroup.title=\u041e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u043f\u0430\u043a\u0435\u0442\u0430
bpm_businessprocessmodel.property.bpm_packageItemActionGroup.description=\u041e\u043f\u0435\u0440\u0430\u0446\u0438\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c \u0441 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u043c\u0438 \u043f\u0430\u043a\u0435\u0442\u0430 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.association.bpm_package.title=\u041f\u0430\u043a\u0435\u0442 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432
bpm_businessprocessmodel.association.bpm_package.description=\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044f \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0445 \u0432 \u0440\u0430\u043c\u043a\u0430\u0445 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.aspect.bpm_workflowPackage.title=\u041f\u0430\u043a\u0435\u0442 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.aspect.bpm_workflowPackage.description=\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044f \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0445 \u0432 \u0440\u0430\u043c\u043a\u0430\u0445 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
#Activiti Workflow Start Task
bpm_businessprocessmodel.type.bpm_activitiStartTask.title=\u0417\u0430\u0434\u0430\u0447\u0430 \u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.type.bpm_activitiStartTask.description=\u0417\u0430\u0434\u0430\u0447\u0430, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0441\u0431\u043e\u0440\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438, \u0442\u0440\u0435\u0431\u0443\u0435\u043c\u043e\u0439 \u0434\u043b\u044f \u0438\u043d\u0438\u0446\u0438\u0430\u0446\u0438\u0438 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.type.bpm_startTask.title=\u0417\u0430\u0434\u0430\u0447\u0430 \u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.type.bpm_startTask.description=\u0417\u0430\u0434\u0430\u0447\u0430, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0441\u0431\u043e\u0440\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438, \u0442\u0440\u0435\u0431\u0443\u0435\u043c\u043e\u0439 \u0434\u043b\u044f \u0438\u043d\u0438\u0446\u0438\u0430\u0446\u0438\u0438 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.property.bpm_workflowDescription.title=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435
bpm_businessprocessmodel.property.bpm_workflowDescription.description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435
bpm_businessprocessmodel.property.bpm_workflowDueDate.title=\u0421\u0440\u043e\u043a \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.property.bpm_workflowDueDate.description=\u0421\u0440\u043e\u043a \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.property.bpm_workflowPriority.title=\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.property.bpm_workflowPriority.description=\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.property.bpm_sendEMailNotifications.title=\u041e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435
bpm_businessprocessmodel.property.bpm_sendEMailNotifications.description=\u041e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435
bpm_businessprocessmodel.association.bpm_assignee.title=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.association.bpm_assignee.description=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.association.bpm_assignees.title=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.association.bpm_assignees.description=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
bpm_businessprocessmodel.association.bpm_groupAssignee.title=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c \u0433\u0440\u0443\u043f\u043f\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432
bpm_businessprocessmodel.association.bpm_groupAssignee.description=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c \u0433\u0440\u0443\u043f\u043f\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432
bpm_businessprocessmodel.association.bpm_groupAssignees.title=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0433\u0440\u0443\u043f\u043f\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432
bpm_businessprocessmodel.association.bpm_groupAssignees.description=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0433\u0440\u0443\u043f\u043f\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432
# Error Messages
workflow.get.task.definition.metadata.error=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043d\u0430\u0439\u0442\u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0442\u0438\u043f\u0430 \u0437\u0430\u0434\u0430\u0447\u0438 {0}.
workflow.package.already.associated.error=\u042d\u0442\u043e\u0442 \u0443\u0437\u0435\u043b \u0443\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u043a\u0430\u043a \u043f\u0430\u043a\u0435\u0442 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430! NodeRef: {0}
# List constraint display labels
listconstraint.bpm_allowedPriority.1=\u0412\u044b\u0441\u043e\u043a\u0438\u0439
listconstraint.bpm_allowedPriority.2=\u0421\u0440\u0435\u0434\u043d\u0438\u0439
listconstraint.bpm_allowedPriority.3=\u041d\u0438\u0437\u043a\u0438\u0439
listconstraint.bpm_allowedStatus.Not Yet Started=\u0415\u0449\u0435 \u043d\u0435 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430
listconstraint.bpm_allowedStatus.In Progress=\u0412 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435
listconstraint.bpm_allowedStatus.On Hold= \u0423\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f
listconstraint.bpm_allowedStatus.Cancelled=\u041e\u0442\u043c\u0435\u043d\u0435\u043d\u0430
listconstraint.bpm_allowedStatus.Completed=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e

View File

@@ -0,0 +1,6 @@
message.changeCategoryName.success=\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u043e \u0438\u043c\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438
message.changeCategoryName.solr.success=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u043c\u0435\u0449\u0435\u043d\u043e \u0432 \u043e\u0447\u0435\u0440\u0435\u0434\u044c \u0441 SOLR \u0434\u043b\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439. \u041e\u0431\u0440\u0430\u0442\u0438\u0442\u0435 \u0432\u043d\u0438\u043c\u0430\u043d\u0438\u0435, \u0447\u0442\u043e \u0434\u043b\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f. \u0427\u0442\u043e\u0431\u044b \u0443\u0432\u0438\u0434\u0435\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f, \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u0441\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435
message.addCategory.success=\u0423\u0441\u043f\u0435\u0448\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f
message.addCategory.solr.success=\u041d\u043e\u0432\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u043c\u0435\u0449\u0435\u043d\u0430 \u0432 \u043e\u0447\u0435\u0440\u0435\u0434\u044c \u0441 SOLR \u0434\u043b\u044f \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f. \u041e\u0431\u0440\u0430\u0442\u0438\u0442\u0435 \u0432\u043d\u0438\u043c\u0430\u043d\u0438\u0435, \u0447\u0442\u043e \u0434\u043b\u044f \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f. \u0427\u0442\u043e\u0431\u044b \u0443\u0432\u0438\u0434\u0435\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f, \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u0441\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435
message.removeCategory.success=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u0430.
message.removeCategory.solr.success=\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043f\u043e\u043c\u0435\u0449\u0435\u043d\u043e \u0432 \u043e\u0447\u0435\u0440\u0435\u0434\u044c \u0441 SOLR \u0434\u043b\u044f \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044f. \u041e\u0431\u0440\u0430\u0442\u0438\u0442\u0435 \u0432\u043d\u0438\u043c\u0430\u043d\u0438\u0435, \u0447\u0442\u043e \u0434\u043b\u044f \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044f \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f. \u0427\u0442\u043e\u0431\u044b \u0443\u0432\u0438\u0434\u0435\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f, \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u0441\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435

View File

@@ -0,0 +1,11 @@
# coci service externalised display strings
coci_service.working_copy_label=(\u0420\u0430\u0431\u043e\u0447\u0430\u044f \u043a\u043e\u043f\u0438\u044f)
coci_service.err_bad_copy=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043d\u0430\u0439\u0442\u0438 \u0438\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u0443\u0437\u0435\u043b. \u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u0434\u0430\u043d\u043d\u0430\u044f \u043a\u043e\u043f\u0438\u044f \u043f\u043e\u0432\u0440\u0435\u0436\u0434\u0435\u043d\u0430 \u043b\u0438\u0431\u043e \u043e\u0440\u0438\u0433\u0438\u043d\u0430\u043b \u0443\u0434\u0430\u043b\u0435\u043d \u0438\u043b\u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d.
coci_service.err_not_owner=\u042d\u0442\u043e\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0435\u043c \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u043a\u043e\u043f\u0438\u0438 \u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0435\u0435 \u0438\u0437\u0432\u043b\u0435\u0447\u044c.
coci_service.err_workingcopy_checkout=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0432\u044b\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0447\u0443\u044e \u043a\u043e\u043f\u0438\u044e
coci_service.err_not_authenticated=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043d\u0430\u0439\u0442\u0438 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e\u0431 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435, \u0442\u0440\u0435\u0431\u0443\u0435\u043c\u044b\u0435 \u0441\u043b\u0443\u0436\u0431\u043e\u0439 CheckOutCheckIn.
coci_service.err_workingcopy_has_no_mimetype=\u0423 \u0443\u0437\u043b\u0430 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u043a\u043e\u043f\u0438\u0438 ({0}) \u043d\u0435\u0442 \u0442\u0438\u043f\u0430 MIME
coci_service.err_already_checkedout=\u042d\u0442\u043e\u0442 \u0443\u0437\u0435\u043b \u0443\u0436\u0435 \u0432\u044b\u0433\u0440\u0443\u0436\u0435\u043d.
coci_service.err_cannot_rename={0} \u043d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c \u0432 {1}.
coci_service.discussion_for=\u041e\u0431\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u0435 {0}

View File

@@ -0,0 +1,194 @@
## Translations of ISO 639-1 languages codes
content_filter_lang.aa=\u0410\u0444\u0430\u0440
content_filter_lang.ab=\u0410\u0431\u0445\u0430\u0437\u0441\u043a\u0438\u0439
content_filter_lang.ae=\u0410\u0432\u0435\u0441\u0442\u0438\u0439\u0441\u043a\u0438\u0439
content_filter_lang.af=\u0410\u0444\u0440\u0438\u043a\u0430\u0430\u043d\u0441
content_filter_lang.ak=\u0410\u043a\u0430\u043d
content_filter_lang.am=\u0410\u043c\u0445\u0430\u0440\u0441\u043a\u0438\u0439
content_filter_lang.an=\u0410\u0440\u0430\u0433\u043e\u043d\u0441\u043a\u0438\u0439
content_filter_lang.ar=\u0410\u0440\u0430\u0431\u0441\u043a\u0438\u0439
content_filter_lang.as=\u0410\u0441\u0441\u0430\u043c\u0441\u043a\u0438\u0439
content_filter_lang.av=\u0410\u0432\u0430\u0440\u0441\u043a\u0438\u0439
content_filter_lang.ay=\u0410\u0439\u043c\u0430\u0440\u0441\u043a\u0438\u0439
content_filter_lang.az=\u0410\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043d\u0441\u043a\u0438\u0439
content_filter_lang.ba=\u0411\u0430\u0448\u043a\u0438\u0440\u0441\u043a\u0438\u0439
content_filter_lang.be=\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u0441\u043a\u0438\u0439
content_filter_lang.bg=\u0411\u043e\u043b\u0433\u0430\u0440\u0441\u043a\u0438\u0439
content_filter_lang.bh=\u0411\u0438\u0445\u0430\u0440\u0441\u043a\u0438\u0439
content_filter_lang.bi=\u0411\u0438\u0441\u043b\u0430\u043c\u0430
content_filter_lang.bm=\u0411\u0430\u043c\u0430\u043d\u0430
content_filter_lang.bn=\u0411\u0435\u043d\u0433\u0430\u043b\u044c\u0441\u043a\u0438\u0439
content_filter_lang.bo=\u0422\u0438\u0431\u0435\u0442\u0441\u043a\u0438\u0439
content_filter_lang.br=\u0411\u0440\u0435\u0442\u043e\u043d\u0441\u043a\u0438\u0439
content_filter_lang.bs=\u0411\u043e\u0441\u043d\u0438\u0439\u0441\u043a\u0438\u0439
content_filter_lang.ca=\u041a\u0430\u0442\u0430\u043b\u0430\u043d\u0441\u043a\u0438\u0439; \u0432\u0430\u043b\u0435\u043d\u0441\u0438\u0439\u0441\u043a\u0438\u0439
content_filter_lang.ce=\u0427\u0435\u0447\u0435\u043d\u0441\u043a\u0438\u0439
content_filter_lang.ch=\u0427\u0430\u043c\u043e\u0440\u0440\u043e
content_filter_lang.co=\u041a\u043e\u0440\u0441\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439
content_filter_lang.cr=\u041a\u0440\u0438
content_filter_lang.cs=\u0427\u0435\u0448\u0441\u043a\u0438\u0439
content_filter_lang.cu=\u0421\u043b\u0430\u0432\u044f\u043d\u0441\u043a\u0438\u0439
content_filter_lang.cv=\u0427\u0443\u0432\u0430\u0448\u0441\u043a\u0438\u0439
content_filter_lang.cy=\u0412\u0430\u043b\u043b\u0438\u0439\u0441\u043a\u0438\u0439
content_filter_lang.da=\u0414\u0430\u0442\u0441\u043a\u0438\u0439
content_filter_lang.de=\u041d\u0435\u043c\u0435\u0446\u043a\u0438\u0439
content_filter_lang.dv=\u041c\u0430\u043b\u044c\u0434\u0438\u0432\u0441\u043a\u0438\u0439
content_filter_lang.dz=\u0414\u0437\u043e\u043d\u0433-\u043a\u044d
content_filter_lang.ee=\u042d\u0432\u0435
content_filter_lang.el=\u0413\u0440\u0435\u0447\u0435\u0441\u043a\u0438\u0439
content_filter_lang.en=\u0410\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438\u0439
content_filter_lang.eo=\u042d\u0441\u043f\u0435\u0440\u0430\u043d\u0442\u043e
content_filter_lang.es=\u0418\u0441\u043f\u0430\u043d\u0441\u043a\u0438\u0439
content_filter_lang.et=\u042d\u0441\u0442\u043e\u043d\u0441\u043a\u0438\u0439
content_filter_lang.eu=\u0411\u0430\u0441\u043a\u0441\u043a\u0438\u0439
content_filter_lang.fa=\u041f\u0435\u0440\u0441\u0438\u0434\u0441\u043a\u0438\u0439
content_filter_lang.ff=\u0424\u0443\u043b\u0430
content_filter_lang.fi=\u0424\u0438\u043d\u0441\u043a\u0438\u0439
content_filter_lang.fj=\u0424\u0438\u0434\u0436\u0438\u0439\u0441\u043a\u0438\u0439
content_filter_lang.fo=\u0424\u0430\u0440\u0435\u0440\u0441\u043a\u0438\u0439
content_filter_lang.fr=\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0438\u0439
content_filter_lang.fy=\u0417\u0430\u043f\u0430\u0434\u043d\u044b\u0439 \u0444\u0440\u0438\u0437\u0441\u043a\u0438\u0439
content_filter_lang.ga=\u0418\u0440\u043b\u0430\u043d\u0434\u0441\u043a\u0438\u0439
content_filter_lang.gd=\u0413\u0430\u044d\u043b\u044c\u0441\u043a\u0438\u0439
content_filter_lang.gl=\u0413\u0430\u043b\u0438\u0441\u0438\u0439\u0441\u043a\u0438\u0439
content_filter_lang.gn=\u0413\u0443\u0430\u0440\u0430\u043d\u0438
content_filter_lang.gu=\u0413\u0443\u0434\u0436\u0430\u0440\u0430\u0442\u0438
content_filter_lang.gv=\u041c\u044d\u043d\u0441\u043a\u0438\u0439
content_filter_lang.ha=\u0425\u0430\u0443\u0441\u0430
content_filter_lang.he=\u0418\u0432\u0440\u0438\u0442
content_filter_lang.hi=\u0425\u0438\u043d\u0434\u0438
content_filter_lang.ho=\u0425\u0438\u0440\u0438-\u043c\u043e\u0442\u0443
content_filter_lang.hr=\u0425\u043e\u0440\u0432\u0430\u0442\u0441\u043a\u0438\u0439
content_filter_lang.ht=\u0413\u0430\u0438\u0442\u044f\u043d\u0441\u043a\u0438\u0439
content_filter_lang.hu=\u0412\u0435\u043d\u0433\u0435\u0440\u0441\u043a\u0438\u0439
content_filter_lang.hy=\u0410\u0440\u043c\u044f\u043d\u0441\u043a\u0438\u0439
content_filter_lang.hz=\u0413\u0435\u0440\u0435\u0440\u043e
content_filter_lang.ia=\u0418\u043d\u0442\u0435\u0440\u043b\u0438\u043d\u0433\u0432\u0430
content_filter_lang.id=\u0418\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u0439\u0441\u043a\u0438\u0439
content_filter_lang.ie=\u0418\u043d\u0442\u0435\u0440\u043b\u0438\u043d\u0433\u0432\u0435
content_filter_lang.ig=\u0418\u0433\u0431\u043e
content_filter_lang.ii=\u041d\u043e\u0441\u0443
content_filter_lang.ik=\u0418\u043d\u0443\u043f\u0438\u0430\u043a
content_filter_lang.io=\u0418\u0434\u043e
content_filter_lang.is=\u0418\u0441\u043b\u0430\u043d\u0434\u0441\u043a\u0438\u0439
content_filter_lang.it=\u0418\u0442\u0430\u043b\u044c\u044f\u043d\u0441\u043a\u0438\u0439
content_filter_lang.iu=\u0418\u043d\u0443\u043a\u0442\u0438\u0442\u0443\u0442
content_filter_lang.ja=\u042f\u043f\u043e\u043d\u0441\u043a\u0438\u0439
content_filter_lang.jv=\u042f\u0432\u0430\u043d\u0441\u043a\u0438\u0439
content_filter_lang.ka=\u0413\u0440\u0443\u0437\u0438\u043d\u0441\u043a\u0438\u0439
content_filter_lang.kg=\u041a\u043e\u043d\u0433\u043e
content_filter_lang.ki=\u041a\u0438\u043a\u0443\u0439\u044e
content_filter_lang.kj=\u041a\u0432\u0430\u043d\u044c\u044f\u043c\u0430
content_filter_lang.kk=\u041a\u0430\u0437\u0430\u0445\u0441\u043a\u0438\u0439
content_filter_lang.kl=\u0413\u0440\u0435\u043d\u043b\u0430\u043d\u0434\u0441\u043a\u0438\u0439
content_filter_lang.km=\u041a\u0445\u043c\u0435\u0440\u0441\u043a\u0438\u0439
content_filter_lang.kn=\u041a\u0430\u043d\u043d\u0430\u0434\u0430
content_filter_lang.ko=\u041a\u043e\u0440\u0435\u0439\u0441\u043a\u0438\u0439
content_filter_lang.kr=\u041a\u0430\u043d\u0443\u0440\u0438
content_filter_lang.ks=\u041a\u0430\u0448\u043c\u0438\u0440\u0441\u043a\u0438\u0439
content_filter_lang.ku=\u041a\u0443\u0440\u0434\u0441\u043a\u0438\u0439
content_filter_lang.kv=\u041a\u043e\u043c\u0438
content_filter_lang.kw=\u041a\u043e\u0440\u043d\u0443\u043e\u043b\u043b\u0441\u043a\u0438\u0439
content_filter_lang.ky=\u041a\u0438\u0440\u0433\u0438\u0437\u0441\u043a\u0438\u0439
content_filter_lang.la=\u041b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0439
content_filter_lang.lb=\u041b\u044e\u043a\u0441\u0435\u043c\u0431\u0443\u0440\u0433\u0441\u043a\u0438\u0439
content_filter_lang.lg=\u0413\u0430\u043d\u0434\u0430
content_filter_lang.li=\u041b\u0438\u043c\u0431\u0443\u0440\u0433\u0441\u043a\u0438\u0439
content_filter_lang.ln=\u041b\u0438\u043d\u0433\u0430\u043b\u0430
content_filter_lang.lo=\u041b\u0430\u043e\u0441\u0441\u043a\u0438\u0439
content_filter_lang.lt=\u041b\u0438\u0442\u043e\u0432\u0441\u043a\u0438\u0439
content_filter_lang.lu=\u041b\u0443\u0431\u0430-\u043a\u0430\u0442\u0430\u043d\u0433\u0430
content_filter_lang.lv=\u041b\u0430\u0442\u0432\u0438\u0439\u0441\u043a\u0438\u0439
content_filter_lang.mg=\u041c\u0430\u043b\u0430\u0433\u0430\u0441\u0438\u0439\u0441\u043a\u0438\u0439
content_filter_lang.mh=\u041c\u0430\u0440\u0448\u0430\u043b\u043b\u044c\u0441\u043a\u0438\u0439
content_filter_lang.mi=\u041c\u0430\u043e\u0440\u0438
content_filter_lang.mk=\u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0441\u043a\u0438\u0439
content_filter_lang.ml=\u041c\u0430\u043b\u0430\u0439\u044f\u043b\u0430\u043c
content_filter_lang.mn=\u041c\u043e\u043d\u0433\u043e\u043b\u044c\u0441\u043a\u0438\u0439
content_filter_lang.mo=\u041c\u043e\u043b\u0434\u0430\u0432\u0441\u043a\u0438\u0439
content_filter_lang.mr=\u041c\u0430\u0440\u0430\u0442\u0445\u0438
content_filter_lang.ms=\u041c\u0430\u043b\u0430\u0439\u0441\u043a\u0438\u0439
content_filter_lang.mt=\u041c\u0430\u043b\u044c\u0442\u0438\u0439\u0441\u043a\u0438\u0439
content_filter_lang.my=\u0411\u0438\u0440\u043c\u0430\u043d\u0441\u043a\u0438\u0439
content_filter_lang.na=\u041d\u0430\u0443\u0440\u0443
content_filter_lang.nb=\u041d\u043e\u0440\u0432\u0435\u0436\u0441\u043a\u0438\u0439 \u0431\u0443\u043a\u043c\u043e\u043b
content_filter_lang.nd=\u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u043d\u0434\u0435\u0431\u0435\u043b\u0435
content_filter_lang.ne=\u041d\u0435\u043f\u0430\u043b\u044c\u0441\u043a\u0438\u0439
content_filter_lang.ng=\u041d\u0434\u043e\u043d\u0433\u0430
content_filter_lang.nl=\u0413\u043e\u043b\u043b\u0430\u043d\u0434\u0441\u043a\u0438\u0439
content_filter_lang.nn=\u041d\u043e\u0432\u043e\u043d\u043e\u0440\u0432\u0435\u0436\u0441\u043a\u0438\u0439 \u043d\u044e\u043d\u043e\u0440\u0441\u043a
content_filter_lang.no=\u041d\u043e\u0432\u043e\u043d\u043e\u0440\u0432\u0435\u0436\u0441\u043a\u0438\u0439
content_filter_lang.nr=\u042e\u0436\u043d\u044b\u0439 \u043d\u0434\u0435\u0431\u0435\u043b\u0435
content_filter_lang.nv=\u041d\u0430\u0432\u0430\u0445\u043e
content_filter_lang.ny=\u041d\u044c\u044f\u043d\u0434\u0436\u0430
content_filter_lang.oc=\u041e\u043a\u0441\u0438\u0442\u0430\u043d\u0441\u043a\u0438\u0439 (\u0437\u0430\u043f\u0438\u0441\u044c 1500); \u043f\u0440\u043e\u0432\u0430\u043d\u0441\u0430\u043b\u044c\u0441\u043a\u0438\u0439
content_filter_lang.oj=\u041e\u0434\u0436\u0438\u0431\u0432\u0435
content_filter_lang.om=\u041e\u0440\u043e\u043c\u043e
content_filter_lang.or=\u041e\u0440\u0438\u044f
content_filter_lang.os=\u041e\u0441\u0435\u0442\u0438\u043d\u0441\u043a\u0438\u0439
content_filter_lang.pa=\u041f\u0435\u043d\u0434\u0436\u0430\u0431\u0441\u043a\u0438\u0439
content_filter_lang.pi=\u041f\u0430\u043b\u0438
content_filter_lang.pl=\u041f\u043e\u043b\u044c\u0441\u043a\u0438\u0439
content_filter_lang.ps=\u041f\u0443\u0448\u0442\u0443
content_filter_lang.pt=\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u044c\u0441\u043a\u0438\u0439
content_filter_lang.qu=\u041a\u0435\u0447\u0443\u0430
content_filter_lang.rm=\u0420\u0435\u0442\u043e\u0440\u043e\u043c\u0430\u043d\u0441\u043a\u0438\u0439
content_filter_lang.rn=\u0420\u0443\u043d\u0434\u0438
content_filter_lang.ro=\u0420\u0443\u043c\u044b\u043d\u0441\u043a\u0438\u0439
content_filter_lang.ru=\u0420\u0443\u0441\u0441\u043a\u0438\u0439
content_filter_lang.rw=\u0420\u0443\u0430\u043d\u0434\u0430
content_filter_lang.sa=\u0421\u0430\u043d\u0441\u043a\u0440\u0438\u0442
content_filter_lang.sc=\u0421\u0430\u0440\u0434\u0438\u043d\u0441\u043a\u0438\u0439
content_filter_lang.sd=\u0421\u0438\u043d\u0434\u0445\u0438
content_filter_lang.se=\u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0441\u0430\u0430\u043c\u0441\u043a\u0438\u0439
content_filter_lang.sg=\u0421\u0430\u043d\u0433\u043e
content_filter_lang.si=\u0421\u0438\u043d\u0433\u0430\u043b\u044c\u0441\u043a\u0438\u0439
content_filter_lang.sk=\u0421\u043b\u043e\u0432\u0430\u0446\u043a\u0438\u0439
content_filter_lang.sl=\u0421\u043b\u043e\u0432\u0435\u043d\u0441\u043a\u0438\u0439
content_filter_lang.sm=\u0421\u0430\u043c\u043e\u0430\u043d\u0441\u043a\u0438\u0439
content_filter_lang.sn=\u0428\u043e\u043d\u0430
content_filter_lang.so=\u0421\u043e\u043c\u0430\u043b\u0438\u0439\u0441\u043a\u0438\u0439
content_filter_lang.sq=\u0410\u043b\u0431\u0430\u043d\u0441\u043a\u0438\u0439
content_filter_lang.sr=\u0421\u0435\u0440\u0431\u0441\u043a\u0438\u0439
content_filter_lang.ss=\u0421\u0432\u0430\u0437\u0438
content_filter_lang.st=\u0421\u0443\u0442\u043e, \u044e\u0436\u043d\u044b\u0439
content_filter_lang.su=\u0421\u0443\u043d\u0434\u0430\u043d\u0441\u043a\u0438\u0439
content_filter_lang.sv=\u0428\u0432\u0435\u0434\u0441\u043a\u0438\u0439
content_filter_lang.sw=\u0421\u0443\u0430\u0445\u0438\u043b\u0438
content_filter_lang.ta=\u0422\u0430\u043c\u0438\u043b\u044c\u0441\u043a\u0438\u0439
content_filter_lang.te=\u0422\u0435\u043b\u0443\u0433\u0443
content_filter_lang.tg=\u0422\u0430\u0434\u0436\u0438\u043a\u0441\u043a\u0438\u0439
content_filter_lang.th=\u0422\u0430\u0439\u0441\u043a\u0438\u0439
content_filter_lang.ti=\u0422\u0438\u0433\u0440\u0438\u043d\u044c\u044f
content_filter_lang.tk=\u0422\u0443\u0440\u043a\u043c\u0435\u043d\u0441\u043a\u0438\u0439
content_filter_lang.tl=\u0422\u0430\u0433\u0430\u043b\u044c\u0441\u043a\u0438\u0439
content_filter_lang.tn=\u0422\u0441\u0432\u0430\u043d\u0430
content_filter_lang.to=\u0422\u043e\u043d\u0433\u0430 (\u043e-\u0432\u0430 \u0422\u043e\u043d\u0433\u0430)
content_filter_lang.tr=\u0422\u0443\u0440\u0435\u0446\u043a\u0438\u0439
content_filter_lang.tr=\u0422\u0443\u0440\u0435\u0446\u043a\u0438\u0439
content_filter_lang.ts=\u0422\u0441\u043e\u043d\u0433\u0430
content_filter_lang.tt=\u0422\u0430\u0442\u0430\u0440\u0441\u043a\u0438\u0439
content_filter_lang.tw=\u0422\u0432\u0438
content_filter_lang.ty=\u0422\u0430\u0438\u0442\u044f\u043d\u0441\u043a\u0438\u0439
content_filter_lang.ug=\u0423\u0439\u0433\u0443\u0440\u0441\u043a\u0438\u0439
content_filter_lang.uk=\u0423\u043a\u0440\u0430\u0438\u043d\u0441\u043a\u0438\u0439
content_filter_lang.ur=\u0423\u0440\u0434\u0443
content_filter_lang.uz=\u0423\u0437\u0431\u0435\u043a\u0441\u043a\u0438\u0439
content_filter_lang.ve=\u0412\u0435\u043d\u0434\u0430
content_filter_lang.vi=\u0412\u044c\u0435\u0442\u043d\u0430\u043c\u0441\u043a\u0438\u0439
content_filter_lang.vo=\u0412\u043e\u043b\u0430\u043f\u044e\u043a
content_filter_lang.wa=\u0412\u0430\u043b\u043b\u043e\u043d\u0441\u043a\u0438\u0439
content_filter_lang.wo=\u0412\u043e\u043b\u043e\u0444
content_filter_lang.xh=\u041a\u0445\u043e\u0441\u0430
content_filter_lang.yi=\u0418\u0434\u0438\u0448
content_filter_lang.yo=\u0419\u043e\u0440\u0443\u0431\u0430
content_filter_lang.za=\u0427\u0436\u0443\u0430\u043d\u0441\u043a\u0438\u0439
content_filter_lang.zh=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439
content_filter_lang.zu=\u0417\u0443\u043b\u0443\u0441\u0441\u043a\u0438\u0439
## Duplicate messages to take in account the old
## ISO code.
content_filter_lang.iw=\u0418\u0432\u0440\u0438\u0442
content_filter_lang.in=\u0418\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u0439\u0441\u043a\u0438\u0439
content_filter_lang.ji=\u0418\u0434\u0438\u0448

View File

@@ -0,0 +1,363 @@
# Display labels for Content Domain Model
cm_contentmodel.description=\u041c\u043e\u0434\u0435\u043b\u044c \u0434\u043e\u043c\u0435\u043d\u0430 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 Alfresco
cm_contentmodel.type.cm_object.title=\u041e\u0431\u044a\u0435\u043a\u0442
cm_contentmodel.type.cm_object.description=\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u043e\u0431\u044a\u0435\u043a\u0442 \u0434\u043e\u043c\u0435\u043d\u0430 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430
cm_contentmodel.property.cm_name.title=\u0418\u043c\u044f
cm_contentmodel.property.cm_name.description=\u0418\u043c\u044f
cm_contentmodel.type.cm_folder.title=\u041f\u0430\u043f\u043a\u0430
cm_contentmodel.type.cm_folder.description=\u041f\u0430\u043f\u043a\u0430
cm_contentmodel.property.cm_orderedchildren.title=\u0423\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0435\u043d\u043d\u044b\u0435 \u0434\u043e\u0447\u0435\u0440\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b
cm_contentmodel.property.cm_orderedchildren.description=\u0423\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442, \u0443\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0435\u043d\u044b \u043b\u0438 \u0434\u043e\u0447\u0435\u0440\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0432 \u0434\u0430\u043d\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u0435
cm_contentmodel.association.cm_contains.title=\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u0442
cm_contentmodel.association.cm_contains.description=\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u0442
cm_contentmodel.type.cm_content.title=\u041a\u043e\u043d\u0442\u0435\u043d\u0442
cm_contentmodel.type.cm_content.description=\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u043e\u0431\u044a\u0435\u043a\u0442 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430
cm_contentmodel.property.cm_content.title=\u041a\u043e\u043d\u0442\u0435\u043d\u0442
cm_contentmodel.property.cm_content.description=\u041a\u043e\u043d\u0442\u0435\u043d\u0442
cm_contentmodel.type.cm_linkfile.title=\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u0444\u0430\u0439\u043b
cm_contentmodel.type.cm_linkfile.description=\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u0434\u0440\u0443\u0433\u043e\u0439 \u0444\u0430\u0439\u043b
cm_contentmodel.property.cm_path.title=\u041f\u0443\u0442\u044c \u043a \u0444\u0430\u0439\u043b\u0443 \u0441\u0441\u044b\u043b\u043a\u0438
cm_contentmodel.property.cm_path.description=\u041f\u0443\u0442\u044c \u043a \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u043e\u043c\u0443 \u0444\u0430\u0439\u043b\u0443
cm_contentmodel.type.cm_savedquery.title=\u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441
cm_contentmodel.type.cm_savedquery.description=\u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0439 \u0437\u0430\u043f\u0440\u043e\u0441
cm_contentmodel.type.cm_systemfolder.title=\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u0430\u044f \u043f\u0430\u043f\u043a\u0430
cm_contentmodel.type.cm_systemfolder.description=\u041f\u0430\u043f\u043a\u0430, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0430\u044f \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0443\u0440\u043e\u0432\u043d\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u044b
cm_contentmodel.type.cm_person.title=\u041b\u0438\u0446\u043e
cm_contentmodel.type.cm_person.description=\u041b\u0438\u0446\u043e
cm_contentmodel.property.cm_userName.title=\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f
cm_contentmodel.property.cm_userName.description=\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_homeFolder.title=\u0414\u043e\u043c\u0430\u0448\u043d\u044f\u044f \u043f\u0430\u043f\u043a\u0430
cm_contentmodel.property.cm_homeFolder.description=\u0414\u043e\u043c\u0430\u0448\u043d\u044f\u044f \u043f\u0430\u043f\u043a\u0430 \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_firstName.title=\u0418\u043c\u044f
cm_contentmodel.property.cm_firstName.description=\u0418\u043c\u044f \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_lastName.title=\u0424\u0430\u043c\u0438\u043b\u0438\u044f
cm_contentmodel.property.cm_lastName.description=\u0424\u0430\u043c\u0438\u043b\u0438\u044f \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_middleName.title=\u041e\u0442\u0447\u0435\u0441\u0442\u0432\u043e
cm_contentmodel.property.cm_middleName.description=\u041e\u0442\u0447\u0435\u0441\u0442\u0432\u043e \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_email.title=\u0410\u0434\u0440\u0435\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
cm_contentmodel.property.cm_email.description=\u0410\u0434\u0440\u0435\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_homeFolderProvider.title=\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u043f\u0430\u043f\u043a\u0438
cm_contentmodel.property.cm_homeFolderProvider.description=\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u043f\u0430\u043f\u043a\u0438
cm_contentmodel.property.cm_defaultHomeFolderPath.title=\u041f\u0443\u0442\u044c \u043a \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u043f\u0430\u043f\u043a\u0435
cm_contentmodel.property.cm_defaultHomeFolderPath.description=\u041f\u0443\u0442\u044c \u043a \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u043f\u0430\u043f\u043a\u0435 \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_presenceProvider.title=\u041f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430
cm_contentmodel.property.cm_presenceProvider.description=\u041f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430
cm_contentmodel.property.cm_presenceUsername.title=\u041f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 \u0438\u043c\u0435\u043d\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f
cm_contentmodel.property.cm_presenceUsername.description=\u041f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 \u0438\u043c\u0435\u043d\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f
cm_contentmodel.property.cm_jobtitle.title=\u0414\u043e\u043b\u0436\u043d\u043e\u0441\u0442\u044c
cm_contentmodel.property.cm_jobtitle.description=\u0414\u043e\u043b\u0436\u043d\u043e\u0441\u0442\u044c \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_location.title=\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435
cm_contentmodel.property.cm_location.description=\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_persondescription.title=\u0421\u0432\u043e\u0434\u043a\u0430
cm_contentmodel.property.cm_persondescription.description=\u0421\u0432\u043e\u0434\u043d\u044b\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u043b\u0438\u0446\u0435
cm_contentmodel.property.cm_telephone.title=\u0422\u0435\u043b\u0435\u0444\u043e\u043d
cm_contentmodel.property.cm_telephone.description=\u041d\u043e\u043c\u0435\u0440 \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u0430 \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_mobile.title=\u041c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0439
cm_contentmodel.property.cm_mobile.description=\u041d\u043e\u043c\u0435\u0440 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u043e\u0433\u043e \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u0430 \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_organizationId.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438
cm_contentmodel.property.cm_organizationId.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_organization.title=\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f
cm_contentmodel.property.cm_organization.description=\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_companyaddress1.title=\u0410\u0434\u0440\u0435\u0441
cm_contentmodel.property.cm_companyaddress1.description=\u041f\u0435\u0440\u0432\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 \u0430\u0434\u0440\u0435\u0441\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_companyaddress2.title=\u0410\u0434\u0440\u0435\u0441\u043d\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 2
cm_contentmodel.property.cm_companyaddress2.description=\u0412\u0442\u043e\u0440\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 \u0430\u0434\u0440\u0435\u0441\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_companyaddress3.title=\u0410\u0434\u0440\u0435\u0441\u043d\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 3
cm_contentmodel.property.cm_companyaddress3.description=\u0422\u0440\u0435\u0442\u044c\u044f \u0441\u0442\u0440\u043e\u043a\u0430 \u0430\u0434\u0440\u0435\u0441\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_companypostcode.title=\u041f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u0438\u043d\u0434\u0435\u043a\u0441
cm_contentmodel.property.cm_companypostcode.description=\u041f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u0438\u043d\u0434\u0435\u043a\u0441 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_companytelephone.title=\u0422\u0435\u043b\u0435\u0444\u043e\u043d
cm_contentmodel.property.cm_companytelephone.description=\u041d\u043e\u043c\u0435\u0440 \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_companyfax.title=\u0424\u0430\u043a\u0441
cm_contentmodel.property.cm_companyfax.description=\u041d\u043e\u043c\u0435\u0440 \u0444\u0430\u043a\u0441\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_companyemail.title=\u042d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u044f \u043f\u043e\u0447\u0442\u0430
cm_contentmodel.property.cm_companyemail.description=\u0410\u0434\u0440\u0435\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_skype.title=Skype
cm_contentmodel.property.cm_skype.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f Skype \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_instantmsg.title=IM
cm_contentmodel.property.cm_instantmsg.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0441\u043b\u0443\u0436\u0431\u044b \u043c\u0433\u043d\u043e\u0432\u0435\u043d\u043d\u044b\u0445 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_userStatus.title=\u0421\u0442\u0430\u0442\u0443\u0441
cm_contentmodel.property.cm_userStatus.description=\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u0441\u0442\u0430\u0442\u0443\u0441 \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_userStatusTime.title=\u0412\u0440\u0435\u043c\u044f \u0441\u0442\u0430\u0442\u0443\u0441\u0430
cm_contentmodel.property.cm_userStatusTime.description=\u0412\u0440\u0435\u043c\u044f \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u0442\u0430\u0442\u0443\u0441\u0430 \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_googleusername.title=\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f Google
cm_contentmodel.property.cm_googleusername.description=\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f Google \u043b\u0438\u0446\u0430
cm_contentmodel.property.cm_sizeCurrent.title=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435
cm_contentmodel.property.cm_sizeCurrent.description=\u041e\u0431\u044a\u0435\u043c \u0434\u0438\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0439 \u043b\u0438\u0446\u043e\u043c
cm_contentmodel.property.cm_sizeQuota.title=\u041a\u0432\u043e\u0442\u0430
cm_contentmodel.property.cm_sizeQuota.description=\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u044b\u0439 \u043e\u0431\u044a\u0435\u043c \u0434\u0438\u0441\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043c\u043e\u0436\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043b\u0438\u0446\u043e
cm_contentmodel.property.cm_emailFeedId.title=\u041a\u0430\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
cm_contentmodel.property.cm_emailFeedId.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u0430\u043d\u0430\u043b\u0430 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u043b\u0438\u0446\u0430
cm_contentmodel.association.cm_avatar.title=\u0410\u0432\u0430\u0442\u0430\u0440
cm_contentmodel.association.cm_avatar.description=\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0430\u0432\u0430\u0442\u0430\u0440\u0430 \u043b\u0438\u0446\u0430
cm_contentmodel.type.cm_category_root.title=\u041a\u043e\u0440\u0435\u043d\u044c \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0439
cm_contentmodel.type.cm_category_root.description=\u041a\u043e\u0440\u043d\u0435\u0432\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f
cm_contentmodel.association.cm_categories.title=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438
cm_contentmodel.association.cm_categories.description=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0432 \u043a\u043e\u0440\u043d\u0435 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0439
cm_contentmodel.type.cm_category.title=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f
cm_contentmodel.type.cm_category.description=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f
cm_contentmodel.association.cm_subcategories.title=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438
cm_contentmodel.association.cm_subcategories.description=\u041f\u043e\u0434\u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438
cm_contentmodel.aspect.cm_titled.title=\u0421 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u043e\u043c
cm_contentmodel.aspect.cm_titled.description=\u0421 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u043e\u043c
cm_contentmodel.property.cm_title.title=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a
cm_contentmodel.property.cm_title.description=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430
cm_contentmodel.property.cm_description.title=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435
cm_contentmodel.property.cm_description.description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430
cm_contentmodel.aspect.cm_auditable.title=\u041f\u0440\u043e\u0432\u0435\u0440\u044f\u0435\u043c\u044b\u0439
cm_contentmodel.aspect.cm_auditable.description=\u041f\u0440\u043e\u0432\u0435\u0440\u044f\u0435\u043c\u044b\u0439
cm_contentmodel.property.cm_created.title=\u0414\u0430\u0442\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f
cm_contentmodel.property.cm_created.description=\u0414\u0430\u0442\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f
cm_contentmodel.property.cm_creator.title=\u0421\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u044c
cm_contentmodel.property.cm_creator.description=\u041a\u0442\u043e \u0441\u043e\u0437\u0434\u0430\u043b \u0434\u0430\u043d\u043d\u044b\u0439 \u044d\u043b\u0435\u043c\u0435\u043d\u0442
cm_contentmodel.property.cm_modified.title=\u0414\u0430\u0442\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f
cm_contentmodel.property.cm_modified.description=\u0414\u0430\u0442\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430
cm_contentmodel.property.cm_modifier.title=\u041c\u043e\u0434\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440
cm_contentmodel.property.cm_modifier.description=\u041a\u0442\u043e \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u043c \u0438\u0437\u043c\u0435\u043d\u0438\u043b \u0434\u0430\u043d\u043d\u044b\u0439 \u044d\u043b\u0435\u043c\u0435\u043d\u0442
cm_contentmodel.property.cm_accessed.title=\u0414\u0430\u0442\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430
cm_contentmodel.property.cm_accessed.description=\u0412\u0440\u0435\u043c\u044f \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0434\u0430\u043d\u043d\u043e\u043c\u0443 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0443
cm_contentmodel.aspect.cm_author.title=\u0410\u0432\u0442\u043e\u0440
cm_contentmodel.aspect.cm_author.description=\u0410\u0432\u0442\u043e\u0440
cm_contentmodel.property.cm_author.title=\u0410\u0432\u0442\u043e\u0440
cm_contentmodel.property.cm_author.description=\u0410\u0432\u0442\u043e\u0440
cm_contentmodel.aspect.cm_localizable.title=\u041b\u043e\u043a\u0430\u043b\u0438\u0437\u0443\u0435\u043c\u044b\u0439
cm_contentmodel.aspect.cm_localizable.description=\u041b\u043e\u043a\u0430\u043b\u0438\u0437\u0443\u0435\u043c\u044b\u0439
cm_contentmodel.property.cm_locale.title=\u042f\u0437\u044b\u043a\u043e\u0432\u043e\u0439 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442
cm_contentmodel.property.cm_locale.description=\u042f\u0437\u044b\u043a\u043e\u0432\u043e\u0439 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442
cm_contentmodel.aspect.cm_translatable.title=\u041f\u0435\u0440\u0435\u0432\u043e\u0434\u0438\u043c\u044b\u0439
cm_contentmodel.aspect.cm_translatable.description=\u041f\u0435\u0440\u0435\u0432\u043e\u0434\u0438\u043c\u044b\u0439
cm_contentmodel.association.cm_translations.title=\u041f\u0435\u0440\u0435\u0432\u043e\u0434\u044b
cm_contentmodel.association.cm_translations.description=\u041f\u0435\u0440\u0435\u0432\u043e\u0434\u044b
cm_contentmodel.aspect.cm_transformable.title=\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0435\u043c\u044b\u0439
cm_contentmodel.aspect.cm_transformable.description=\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0435\u043c\u044b\u0439
cm_contentmodel.association.cm_formats.title=\u0424\u043e\u0440\u043c\u0430\u0442\u044b
cm_contentmodel.association.cm_formats.description=\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b
cm_contentmodel.aspect.cm_templatable.title=\u0421 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0448\u0430\u0431\u043b\u043e\u043d\u043e\u0432
cm_contentmodel.aspect.cm_templatable.description=\u0421 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0448\u0430\u0431\u043b\u043e\u043d\u043e\u0432
cm_contentmodel.property.cm_template.title=\u0428\u0430\u0431\u043b\u043e\u043d
cm_contentmodel.property.cm_template.description=\u0428\u0430\u0431\u043b\u043e\u043d
cm_contentmodel.aspect.cm_complianceable.title=\u0421 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u0438
cm_contentmodel.aspect.cm_complianceable.description=\u0421 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u0438
cm_contentmodel.property.cm_removeAfter.title=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u043e\u0441\u043b\u0435
cm_contentmodel.property.cm_removeAfter.description=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u043e\u0441\u043b\u0435
cm_contentmodel.aspect.cm_ownable.title=\u0421 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u043e\u0439 \u0432\u043b\u0430\u0434\u0435\u043d\u0438\u044f
cm_contentmodel.aspect.cm_ownable.description=\u0421 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u043e\u0439 \u0432\u043b\u0430\u0434\u0435\u043d\u0438\u044f
cm_contentmodel.property.cm_owner.title=\u0412\u043b\u0430\u0434\u0435\u043b\u0435\u0446
cm_contentmodel.property.cm_owner.description=\u0412\u043b\u0430\u0434\u0435\u043b\u0435\u0446
cm_contentmodel.aspect.cm_dublincore.title=\u0414\u0443\u0431\u043b\u0438\u043d\u0441\u043a\u043e\u0435 \u044f\u0434\u0440\u043e
cm_contentmodel.aspect.cm_dublincore.description=\u0414\u0443\u0431\u043b\u0438\u043d\u0441\u043a\u043e\u0435 \u044f\u0434\u0440\u043e
cm_contentmodel.property.cm_publisher.title=\u0418\u0437\u0434\u0430\u0442\u0435\u043b\u044c
cm_contentmodel.property.cm_publisher.description=\u0418\u0437\u0434\u0430\u0442\u0435\u043b\u044c
cm_contentmodel.property.cm_contributor.title=\u0410\u0432\u0442\u043e\u0440
cm_contentmodel.property.cm_contributor.description=\u0410\u0432\u0442\u043e\u0440
cm_contentmodel.property.cm_type.title=\u0422\u0438\u043f
cm_contentmodel.property.cm_type.description=\u0422\u0438\u043f
cm_contentmodel.property.cm_identifier.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440
cm_contentmodel.property.cm_identifier.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440
cm_contentmodel.property.cm_dcsource.title=\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a
cm_contentmodel.property.cm_dcsource.description=\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a
cm_contentmodel.property.cm_coverage.title=\u0421\u0444\u0435\u0440\u0430 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f
cm_contentmodel.property.cm_coverage.description=\u0421\u0444\u0435\u0440\u0430 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f
cm_contentmodel.property.cm_rights.title=\u041f\u0440\u0430\u0432\u0430
cm_contentmodel.property.cm_rights.description=\u041f\u0440\u0430\u0432\u0430
cm_contentmodel.property.cm_subject.title=\u0422\u0435\u043c\u0430
cm_contentmodel.property.cm_subject.description=\u0422\u0435\u043c\u0430
cm_contentmodel.aspect.cm_basable.title=\u0411\u0430\u0437\u0438\u0440\u0443\u0435\u043c\u044b\u0439
cm_contentmodel.aspect.cm_basable.description=\u0411\u0430\u0437\u0438\u0440\u0443\u0435\u043c\u044b\u0439
cm_contentmodel.association.cm_basis.title=\u0411\u0430\u0437\u0438\u0441
cm_contentmodel.association.cm_basis.description=\u0411\u0430\u0437\u0438\u0441
cm_contentmodel.aspect.cm_partable.title=\u0414\u0435\u043b\u0438\u043c\u044b\u0439 \u043d\u0430 \u0447\u0430\u0441\u0442\u0438
cm_contentmodel.aspect.cm_partable.description=\u0414\u0435\u043b\u0438\u043c\u044b\u0439 \u043d\u0430 \u0447\u0430\u0441\u0442\u0438
cm_contentmodel.association.cm_parts.title=\u0427\u0430\u0441\u0442\u0438
cm_contentmodel.association.cm_parts.description=\u0427\u0430\u0441\u0442\u0438
cm_contentmodel.aspect.cm_referencing.title=\u0421\u0441\u044b\u043b\u0430\u044e\u0449\u0438\u0439\u0441\u044f
cm_contentmodel.aspect.cm_referencing.description=\u0421\u0441\u044b\u043b\u0430\u044e\u0449\u0438\u0439\u0441\u044f
cm_contentmodel.association.cm_references.title=\u0421\u0441\u044b\u043b\u043a\u0438
cm_contentmodel.association.cm_references.description=\u0421\u0441\u044b\u043b\u043a\u0438
cm_contentmodel.aspect.cm_replacable.title=\u0417\u0430\u043c\u0435\u0449\u0430\u0435\u043c\u044b\u0439
cm_contentmodel.aspect.cm_replacable.description=\u0417\u0430\u043c\u0435\u0449\u0430\u0435\u043c\u044b\u0439
cm_contentmodel.association.cm_replaces.title=\u0417\u0430\u043c\u0435\u0449\u0435\u043d\u0438\u044f
cm_contentmodel.association.cm_replaces.description=\u0417\u0430\u043c\u0435\u0449\u0435\u043d\u0438\u044f
cm_contentmodel.aspect.cm_effectivity.title=\u042d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c
cm_contentmodel.aspect.cm_effectivity.description=\u042d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c
cm_contentmodel.property.cm_from.title=\u0414\u0435\u0439\u0441\u0442\u0432\u0443\u0435\u0442 \u0441
cm_contentmodel.property.cm_from.description=\u0414\u0435\u0439\u0441\u0442\u0432\u0443\u0435\u0442 \u0441
cm_contentmodel.property.cm_to.title=\u0414\u0435\u0439\u0441\u0442\u0432\u0443\u0435\u0442 \u043f\u043e
cm_contentmodel.property.cm_to.description=\u0414\u0435\u0439\u0441\u0442\u0432\u0443\u0435\u0442 \u043f\u043e
cm_contentmodel.aspect.cm_summarizable.title=\u0421 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e \u0441\u0443\u043c\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f
cm_contentmodel.aspect.cm_summarizable.description=\u0421 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e \u0441\u0443\u043c\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f
cm_contentmodel.property.cm_summary.title=\u0421\u0432\u043e\u0434\u043a\u0430
cm_contentmodel.property.cm_summary.description=\u0421\u0432\u043e\u0434\u043a\u0430
cm_contentmodel.aspect.cm_countable.title=\u0418\u0441\u0447\u0438\u0441\u043b\u0438\u043c\u044b\u0439
cm_contentmodel.aspect.cm_countable.description=\u0418\u0441\u0447\u0438\u0441\u043b\u0438\u043c\u044b\u0439
cm_contentmodel.property.cm_hits.title=\u041f\u043e\u043f\u0430\u0434\u0430\u043d\u0438\u044f
cm_contentmodel.property.cm_hits.description=\u041f\u043e\u043f\u0430\u0434\u0430\u043d\u0438\u044f
cm_contentmodel.aspect.cm_copiedFrom.title=\u0421\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d \u0438\u0437
cm_contentmodel.aspect.cm_copiedFrom.description=\u0421\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d \u0438\u0437
cm_contentmodel.property.cm_source.title=\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a
cm_contentmodel.property.cm_source.description=\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a
cm_contentmodel.aspect.cm_workingcopy.title=\u0420\u0430\u0431\u043e\u0447\u0430\u044f \u043a\u043e\u043f\u0438\u044f
cm_contentmodel.aspect.cm_workingcopy.description=\u0420\u0430\u0431\u043e\u0447\u0430\u044f \u043a\u043e\u043f\u0438\u044f
cm_contentmodel.property.cm_workingCopyOwner.title=\u0412\u043b\u0430\u0434\u0435\u043b\u0435\u0446 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u043a\u043e\u043f\u0438\u0438
cm_contentmodel.property.cm_workingCopyOwner.description=\u0412\u043b\u0430\u0434\u0435\u043b\u0435\u0446 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u043a\u043e\u043f\u0438\u0438
cm_contentmodel.aspect.cm_versionable.title=\u0421 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432\u0435\u0440\u0441\u0438\u0439
cm_contentmodel.aspect.cm_versionable.description=\u0421 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432\u0435\u0440\u0441\u0438\u0439
cm_contentmodel.property.cm_versionLabel.title=\u042f\u0440\u043b\u044b\u043a \u0432\u0435\u0440\u0441\u0438\u0438
cm_contentmodel.property.cm_versionLabel.description=\u042f\u0440\u043b\u044b\u043a \u0432\u0435\u0440\u0441\u0438\u0438
cm_contentmodel.property.cm_autoVersion.title=\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f
cm_contentmodel.property.cm_autoVersion.description=\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f
cm_contentmodel.property.cm_initialVersion.title=\u041f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f
cm_contentmodel.property.cm_initialVersion.description=\u041f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f
cm_contentmodel.aspect.cm_lockable.title=\u0411\u043b\u043e\u043a\u0438\u0440\u0443\u0435\u043c\u044b\u0439
cm_contentmodel.aspect.cm_lockable.description=\u0411\u043b\u043e\u043a\u0438\u0440\u0443\u0435\u043c\u044b\u0439
cm_contentmodel.property.cm_lockOwner.title=\u0412\u043b\u0430\u0434\u0435\u043b\u0435\u0446 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
cm_contentmodel.property.cm_lockOwner.description=\u0412\u043b\u0430\u0434\u0435\u043b\u0435\u0446 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
cm_contentmodel.property.cm_lockType.title=\u0422\u0438\u043f \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
cm_contentmodel.property.cm_lockType.description=\u0422\u0438\u043f \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
cm_contentmodel.property.cm_expiryDate.title=\u0414\u0430\u0442\u0430 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f
cm_contentmodel.property.cm_expiryDate.description=\u0414\u0430\u0442\u0430 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f
cm_contentmodel.property.cm_lockIsDeep.title=\u0413\u043b\u0443\u0431\u043e\u043a\u0430\u044f \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430
cm_contentmodel.property.cm_lockIsDeep.description=\u0413\u043b\u0443\u0431\u043e\u043a\u0430\u044f \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430
cm_contentmodel.aspect.cm_subscribable.title=\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0443
cm_contentmodel.aspect.cm_subscribable.description=\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u0435\u0442 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0443
cm_contentmodel.association.cm_subscribedBy.title=\u041a\u0435\u043c \u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d
cm_contentmodel.association.cm_subscribedBy.description=\u041a\u0435\u043c \u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d
cm_contentmodel.aspect.cm_classifiable.title=\u0421 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438
cm_contentmodel.aspect.cm_classifiable.description=\u0421 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438
cm_contentmodel.aspect.cm_generalclassifiable.title=\u0421 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438
cm_contentmodel.aspect.cm_generalclassifiable.description=\u0421 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438
cm_contentmodel.property.cm_categories.title=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438
cm_contentmodel.property.cm_categories.description=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438
cm_contentmodel.aspect.cm_taggable.title=\u0421 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e \u043f\u0440\u0438\u0441\u0432\u0430\u0438\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0442\u043e\u043a
cm_contentmodel.aspect.cm_taggable.description=\u0421 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e \u043f\u0440\u0438\u0441\u0432\u0430\u0438\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0442\u043e\u043a
cm_contentmodel.property.cm_taggable.title=\u041c\u0435\u0442\u043a\u0438
cm_contentmodel.property.cm_taggable.description=\u041c\u0435\u0442\u043a\u0438
cm_contentmodel.aspect.cm_attachable.title=\u0412\u043a\u043b\u0430\u0434\u044b\u0432\u0430\u0435\u043c\u044b\u0439
cm_contentmodel.aspect.cm_attachable.description=\u0420\u0430\u0437\u0440\u0435\u0448\u0430\u0435\u0442 \u0434\u0440\u0443\u0433\u0438\u043c \u043e\u0431\u044a\u0435\u043a\u0442\u0430\u043c \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f \u0431\u044b\u0442\u044c \u0432\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u043c\u0438
cm_contentmodel.association.cm_attachments.title=\u0412\u043b\u043e\u0436\u0435\u043d\u0438\u044f
cm_contentmodel.association.cm_attachments.description=\u0412\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u0435 \u043e\u0431\u044a\u0435\u043a\u0442\u044b \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f
cm_contentmodel.aspect.cm_emailed.title=\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u043e \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435
cm_contentmodel.aspect.cm_emailed.description=\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u043e \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435
cm_contentmodel.property.cm_originator.title=\u0418\u043d\u0438\u0446\u0438\u0430\u0442\u043e\u0440
cm_contentmodel.property.cm_originator.description=\u0418\u043d\u0438\u0446\u0438\u0430\u0442\u043e\u0440
cm_contentmodel.property.cm_addressee.title=\u0410\u0434\u0440\u0435\u0441\u0430\u0442
cm_contentmodel.property.cm_addressee.description=\u0410\u0434\u0440\u0435\u0441\u0430\u0442
cm_contentmodel.property.cm_addressees.title=\u0410\u0434\u0440\u0435\u0441\u0430\u0442\u044b
cm_contentmodel.property.cm_addressees.description=\u0410\u0434\u0440\u0435\u0441\u0430\u0442\u044b
cm_contentmodel.property.cm_subjectline.title=\u0422\u0435\u043c\u0430
cm_contentmodel.property.cm_subjectline.description=\u0422\u0435\u043c\u0430
cm_contentmodel.property.cm_sentdate.title=\u0414\u0430\u0442\u0430 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438
cm_contentmodel.property.cm_sentdate.description=\u0414\u0430\u0442\u0430 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438
cm_contentmodel.aspect.cm_geographic.title=\u0413\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0439
cm_contentmodel.aspect.cm_geographic.description=\u0413\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0439
cm_contentmodel.property.cm_latitude.title=\u0428\u0438\u0440\u043e\u0442\u0430
cm_contentmodel.property.cm_latitude.description=\u0428\u0438\u0440\u043e\u0442\u0430
cm_contentmodel.property.cm_longitude.title=\u0414\u043e\u043b\u0433\u043e\u0442\u0430
cm_contentmodel.property.cm_longitude.description=\u0414\u043e\u043b\u0433\u043e\u0442\u0430
cm_contentmodel.aspect.exif_exif.title=EXIF
cm_contentmodel.aspect.exif_exif.description=\u041f\u043e\u0434\u043c\u043d\u043e\u0436\u0435\u0441\u0442\u0432\u043e \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0445 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 EXIF
cm_contentmodel.property.exif_dateTimeOriginal.title=\u0414\u0430\u0442\u0430 \u0438 \u0432\u0440\u0435\u043c\u044f
cm_contentmodel.property.exif_dateTimeOriginal.description=\u0414\u0430\u0442\u0430 \u0438 \u0432\u0440\u0435\u043c\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
cm_contentmodel.property.exif_pixelXDimension.title=\u0428\u0438\u0440\u0438\u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
cm_contentmodel.property.exif_pixelXDimension.description=\u0428\u0438\u0440\u0438\u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0432 \u043f\u0438\u043a\u0441\u0435\u043b\u0430\u0445
cm_contentmodel.property.exif_pixelYDimension.title=\u0412\u044b\u0441\u043e\u0442\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
cm_contentmodel.property.exif_pixelYDimension.description=\u0412\u044b\u0441\u043e\u0442\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0432 \u043f\u0438\u043a\u0441\u0435\u043b\u0430\u0445
cm_contentmodel.property.exif_exposureTime.title=\u0412\u044b\u0434\u0435\u0440\u0436\u043a\u0430
cm_contentmodel.property.exif_exposureTime.description=\u0412\u044b\u0434\u0435\u0440\u0436\u043a\u0430 \u0432 \u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445
cm_contentmodel.property.exif_fNumber.title=\u0414\u0438\u0430\u0444\u0440\u0430\u0433\u043c\u0435\u043d\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e
cm_contentmodel.property.exif_fNumber.description=\u0414\u0438\u0430\u0444\u0440\u0430\u0433\u043c\u0435\u043d\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e
cm_contentmodel.property.exif_flash.title=\u0412\u0441\u043f\u044b\u0448\u043a\u0430 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430
cm_contentmodel.property.exif_flash.description=\u0412\u044b\u043a\u043b\u044e\u0447\u0430\u0435\u0442\u0441\u044f \u043b\u0438 \u0432\u0441\u043f\u044b\u0448\u043a\u0430 \u043f\u0440\u0438 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0438 \u0441\u043d\u0438\u043c\u043a\u0430
cm_contentmodel.property.exif_focalLength.title=\u0424\u043e\u043a\u0443\u0441\u043d\u043e\u0435 \u0440\u0430\u0441\u0441\u0442\u043e\u044f\u043d\u0438\u0435
cm_contentmodel.property.exif_focalLength.description=\u0424\u043e\u043a\u0443\u0441\u043d\u043e\u0435 \u0440\u0430\u0441\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043e\u0431\u044a\u0435\u043a\u0442\u0438\u0432\u0430 \u0432 \u043c\u0438\u043b\u043b\u0438\u043c\u0435\u0442\u0440\u0430\u0445
cm_contentmodel.property.exif_isoSpeedRatings.title=\u0427\u0443\u0432\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c ISO
cm_contentmodel.property.exif_isoSpeedRatings.description=\u0427\u0443\u0432\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c ISO
cm_contentmodel.property.exif_manufacturer.title=\u0418\u0437\u0433\u043e\u0442\u043e\u0432\u0438\u0442\u0435\u043b\u044c \u043a\u0430\u043c\u0435\u0440\u044b
cm_contentmodel.property.exif_manufacturer.description=\u0418\u0437\u0433\u043e\u0442\u043e\u0432\u0438\u0442\u0435\u043b\u044c \u043a\u0430\u043c\u0435\u0440\u044b, \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043e \u0434\u0430\u043d\u043d\u043e\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435
cm_contentmodel.property.exif_model.title=\u041c\u043e\u0434\u0435\u043b\u044c \u043a\u0430\u043c\u0435\u0440\u044b
cm_contentmodel.property.exif_model.description=\u041c\u043e\u0434\u0435\u043b\u044c \u043a\u0430\u043c\u0435\u0440\u044b, \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043e \u0434\u0430\u043d\u043d\u043e\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435
cm_contentmodel.property.exif_software.title=\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0435 \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u0435 \u043a\u0430\u043c\u0435\u0440\u044b
cm_contentmodel.property.exif_software.description=\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0435 \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u0435 \u043a\u0430\u043c\u0435\u0440\u044b, \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043e \u0434\u0430\u043d\u043d\u043e\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435
cm_contentmodel.property.exif_orientation.title=\u041e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f
cm_contentmodel.property.exif_orientation.description=\u041e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
cm_contentmodel.property.exif_xResolution.title=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u043f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0438
cm_contentmodel.property.exif_xResolution.description=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u043f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0438 \u0432 \u043f\u0438\u043a\u0441\u0435\u043b\u0430\u0445 \u043d\u0430 \u0435\u0434\u0438\u043d\u0438\u0446\u0443 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0438\u044f
cm_contentmodel.property.exif_yResolution.title=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u043f\u043e \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0438
cm_contentmodel.property.exif_yResolution.description=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u043f\u043e \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0438 \u0432 \u043f\u0438\u043a\u0441\u0435\u043b\u0430\u0445 \u043d\u0430 \u0435\u0434\u0438\u043d\u0438\u0446\u0443 \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0438\u044f
cm_contentmodel.property.exif_resolutionUnit.title=\u0415\u0434\u0438\u043d\u0438\u0446\u0430 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f
cm_contentmodel.property.exif_resolutionUnit.description=\u0415\u0434\u0438\u043d\u0438\u0446\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u0430\u044f \u0432 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0438 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f \u043f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0438 \u0438 \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0438
cm_contentmodel.aspect.audio_audio.title=\u0410\u0443\u0434\u0438\u043e
cm_contentmodel.aspect.audio_audio.description=\u041f\u043e\u0434\u043c\u043d\u043e\u0436\u0435\u0441\u0442\u0432\u043e \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0445 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0430\u0443\u0434\u0438\u043e xmpDM
cm_contentmodel.property.audio_album.title=\u0410\u043b\u044c\u0431\u043e\u043c
cm_contentmodel.property.audio_album.description=\u0410\u043b\u044c\u0431\u043e\u043c
cm_contentmodel.property.audio_artist.title=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c
cm_contentmodel.property.audio_artist.description=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c \u0434\u0430\u043d\u043d\u043e\u0439 \u0440\u0430\u0431\u043e\u0442\u044b
cm_contentmodel.property.audio_composer.title=\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0442\u043e\u0440
cm_contentmodel.property.audio_composer.description=\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0442\u043e\u0440 \u0434\u0430\u043d\u043d\u043e\u0439 \u0440\u0430\u0431\u043e\u0442\u044b
cm_contentmodel.property.audio_engineer.title=\u0418\u043d\u0436\u0435\u043d\u0435\u0440
cm_contentmodel.property.audio_engineer.description=\u0418\u043d\u0436\u0435\u043d\u0435\u0440 \u043f\u043e \u0437\u0432\u0443\u043a\u043e\u0437\u0430\u043f\u0438\u0441\u0438
cm_contentmodel.property.audio_genre.title=\u0416\u0430\u043d\u0440
cm_contentmodel.property.audio_genre.description=\u0416\u0430\u043d\u0440 \u043c\u0443\u0437\u044b\u043a\u0438
cm_contentmodel.property.audio_trackNumber.title=\u041d\u043e\u043c\u0435\u0440 \u0442\u0440\u0435\u043a\u0430
cm_contentmodel.property.audio_trackNumber.description=\u041d\u043e\u043c\u0435\u0440 \u0442\u0440\u0435\u043a\u0430 \u0440\u0430\u0431\u043e\u0442\u044b \u0432 \u0434\u0430\u043d\u043d\u043e\u043c \u0430\u043b\u044c\u0431\u043e\u043c\u0435
cm_contentmodel.property.audio_releaseDate.title=\u0414\u0430\u0442\u0430 \u0432\u044b\u043f\u0443\u0441\u043a\u0430
cm_contentmodel.property.audio_releaseDate.description=\u0414\u0430\u0442\u0430 \u0432\u044b\u043f\u0443\u0441\u043a\u0430
cm_contentmodel.property.audio_sampleRate.title=\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u0434\u0438\u0441\u043a\u0440\u0435\u0442\u0438\u0437\u0430\u0446\u0438\u0438
cm_contentmodel.property.audio_sampleRate.description=\u0427\u0430\u0441\u0442\u043e\u0442\u0430 \u0434\u0438\u0441\u043a\u0440\u0435\u0442\u0438\u0437\u0430\u0446\u0438\u0438
cm_contentmodel.property.audio_sampleType.title=\u0422\u0438\u043f \u0432\u044b\u0431\u043e\u0440\u043a\u0438
cm_contentmodel.property.audio_sampleType.description=\u0422\u0438\u043f \u0432\u044b\u0431\u043e\u0440\u043a\u0438 \u0430\u0443\u0434\u0438\u043e, \u043e\u0431\u044b\u0447\u043d\u043e 8Int, 16Int, 32Int \u0438\u043b\u0438 32Float
cm_contentmodel.property.audio_channelType.title=\u0422\u0438\u043f \u043a\u0430\u043d\u0430\u043b\u0430
cm_contentmodel.property.audio_channelType.description=\u0422\u0438\u043f \u0437\u0432\u0443\u043a\u043e\u0432\u043e\u0433\u043e \u043a\u0430\u043d\u0430\u043b\u0430, \u043e\u0431\u044b\u0447\u043d\u043e \u043c\u043e\u043d\u043e, \u0441\u0442\u0435\u0440\u0435\u043e, 5.1 \u0438\u043b\u0438 7.1
cm_contentmodel.property.audio_compressor.title=\u041a\u043e\u043c\u043f\u0440\u0435\u0441\u0441\u043e\u0440
cm_contentmodel.property.audio_compressor.description=\u041a\u043e\u0434\u0435\u043a, \u0442\u0430\u043a\u043e\u0439 \u043a\u0430\u043a MP3 \u0438\u043b\u0438 FLAC
cm_contentmodel.aspect.cm_indexControl.title=\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0438\u043d\u0434\u0435\u043a\u0441\u043e\u0432
cm_contentmodel.aspect.cm_indexControl.description=\u041f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c\u043d\u043e\u0433\u043e \u0438\u043d\u0434\u0435\u043a\u0441\u0430
cm_contentmodel.property.cm_isIndexed.title=\u0418\u043d\u0434\u0435\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d
cm_contentmodel.property.cm_isIndexed.description=\u0418\u043d\u0434\u0435\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d \u043b\u0438 \u0443\u0437\u0435\u043b \u0438 \u043c\u043e\u0436\u043d\u043e \u043b\u0438 \u0435\u0433\u043e \u043d\u0430\u0439\u0442\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u043e\u0438\u0441\u043a\u0430.
cm_contentmodel.property.cm_isContentIndexed.title=\u041a\u043e\u043d\u0442\u0435\u043d\u0442 \u0438\u043d\u0434\u0435\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d
cm_contentmodel.property.cm_isContentIndexed.description=\u0418\u043d\u0434\u0435\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043b\u0438 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 d:content \u0443\u0437\u043b\u0430?
cm_contentmodel.property.cm_tagScopeSummary.title=\u0421\u0432\u043e\u0434\u043a\u0430 \u043f\u043e \u0442\u0435\u0433\u0430\u043c
cm_contentmodel.property.cm_tagScopeSummary.description=\u0421\u0432\u043e\u0434\u043a\u0430 \u043f\u043e \u0442\u0435\u0433\u0430\u043c

View File

@@ -0,0 +1,26 @@
# Content-related messages
content.content_missing=The node''s content is missing: \n node: {0} \n reader: {1} \n Please contact your system administrator.
content.runtime_exec.property_moved=The property ''errorCodes'' has moved down onto the RuntimeExec class
index.recovery.out_of_date=The indexes are not synchronized with the database.
index.tracking.starting=Index recovery started.
index.tracking.complete=Index recovery completed.
index.tracking.progress=\tProcessing transactions around {0}.
index.recovery.starting=Index recovery started: {0} transactions.
index.recovery.complete=Index recovery completed.
index.recovery.progress=\t{0} % complete.
index.recovery.terminated=Index recovery terminated.
node.archive.msg.busy=A bulk purge or restore operation is currently in progress
content.http_reader.err.no_connection=Unable to connect to remote Alfresco server via HTTP: {0}
content.http_reader.err.no_authentication=The HTTP reader was unable to authenticate on the remote server: {0} \n
content.http_reader.err.check_cluster=Please ensure that 'replicateUpdates' and 'replicateUpdatesViaCopy' is enabled for the cache 'org.alfresco.cache.ticketsCache'. Check that the general cluster configuration is correct and working.
content.http_reader.err.unrecognized=An unrecognized error occurred when attempting to download content from remote server:\n Server: {0} \n Content: {1} \n HTTP Response: {2}
metadata.extraction.err.type_conversion=Metadata extraction failed because an extracted value failed to convert to the required type: \n Extractor: {0} \n Target Property QName: {1} \n Required Type: {2} \n Extracted Value: {3}
transform.err.format_or_password=Failed to convert content, possibly due to an incorrectly formatted or password protected file.
content.routing.err.invalid_default_store=The ''defaultStoreName'', ''{0}'' does not refer to a store in ''storesByName'' ({1}).

View File

@@ -0,0 +1,3 @@
# copy service externalised display strings
copy_service.copy_of_label=\u041a\u043e\u043f\u0438\u044f {0}

View File

@@ -0,0 +1,114 @@
# Display labels for Share Data Lists Model
dl_datalistmodel.description=\u041c\u043e\u0434\u0435\u043b\u044c \u0441\u043f\u0438\u0441\u043a\u0430 \u0434\u0430\u043d\u043d\u044b\u0445 Alfresco Share
dl_datalistmodel.type.dl_dataList.title=\u0422\u0438\u043f \u043f\u0430\u043f\u043a\u0438 \u0441\u043e \u0441\u043f\u0438\u0441\u043a\u043e\u043c \u0434\u0430\u043d\u043d\u044b\u0445
dl_datalistmodel.type.dl_dataList.description=\u0412\u043a\u043b\u044e\u0447\u0430\u0435\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0441\u043f\u0438\u0441\u043a\u0430 \u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u0430, \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0433\u043e \u0432 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0435 dl:dataListItemType.
dl_datalistmodel.property.dl_dataListItemType.title=\u0422\u0438\u043f \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0441\u043f\u0438\u0441\u043a\u0430 \u0434\u0430\u043d\u043d\u044b\u0445
dl_datalistmodel.property.dl_dataListItemType.description=\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442, \u043a\u0430\u043a\u043e\u0439 \u043f\u043e\u0434\u0442\u0438\u043f dl:dataListItem \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043f\u0440\u0438 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0438 \u043d\u043e\u0432\u044b\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0441\u043f\u0438\u0441\u043a\u0430 \u0434\u0430\u043d\u043d\u044b\u0445.
dl_datalistmodel.type.dl_dataListItem.title=\u0420\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0442\u0438\u043f \u0441\u043f\u0438\u0441\u043a\u0430 \u0434\u0430\u043d\u043d\u044b\u0445
dl_datalistmodel.type.dl_dataListItem.description=\u0420\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0442\u0438\u043f, \u043e\u0442 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u043d\u044b \u043f\u0440\u0438\u043c\u0435\u0440\u044b \u0442\u0438\u043f\u043e\u0432 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0441\u043f\u0438\u0441\u043a\u0430 \u0434\u0430\u043d\u043d\u044b\u0445.
## Simple "To do" List
dl_datalistmodel.type.dl_todoList.title=\u0421\u043f\u0438\u0441\u043e\u043a \u0434\u0435\u043b
dl_datalistmodel.type.dl_todoList.description=\u041f\u0440\u043e\u0441\u0442\u043e\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0434\u0435\u043b \u0441 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044f\u043c\u0438.
dl_datalistmodel.property.dl_todoTitle.title=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a
dl_datalistmodel.property.dl_todoDueDate.title=\u0421\u0440\u043e\u043a
dl_datalistmodel.property.dl_todoPriority.title=\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442
dl_datalistmodel.property.dl_todoStatus.title=\u0421\u0442\u0430\u0442\u0443\u0441
dl_datalistmodel.property.dl_todoNotes.title=\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044f
dl_datalistmodel.association.dl_assignee.title=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c
dl_datalistmodel.association.dl_attachments.title=\u0412\u043b\u043e\u0436\u0435\u043d\u0438\u044f
# Gantt Aspect
dl_datalistmodel.property.dl_ganttStartDate.title=\u0414\u0430\u0442\u0430 \u043d\u0430\u0447\u0430\u043b\u0430
dl_datalistmodel.property.dl_ganttEndDate.title=\u0414\u0430\u0442\u0430 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f
dl_datalistmodel.property.dl_ganttPercentComplete.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e %
# Task List (Advanced)
dl_datalistmodel.type.dl_task.title=\u0421\u043f\u0438\u0441\u043e\u043a \u0437\u0430\u0434\u0430\u0447 (\u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0439)
dl_datalistmodel.type.dl_task.description=\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0437\u0430\u0434\u0430\u0447, \u0432\u043a\u043b\u044e\u0447\u0430\u044e\u0449\u0438\u0439 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a, \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435, \u0434\u0430\u0442\u044b \u043d\u0430\u0447\u0430\u043b\u0430 \u0438 \u043a\u043e\u043d\u0446\u0430, \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442, \u0441\u0442\u0430\u0442\u0443\u0441, \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b, \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0435\u0439 \u0438 \u0432\u043b\u043e\u0436\u0435\u043d\u0438\u044f.
dl_datalistmodel.property.dl_taskPriority.title=\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442
dl_datalistmodel.property.dl_taskStatus.title=\u0421\u0442\u0430\u0442\u0443\u0441
dl_datalistmodel.property.dl_taskComments.title=\u041a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0438
dl_datalistmodel.association.dl_taskAssignee.title=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c
# Task List (Simple)
dl_datalistmodel.type.dl_simpletask.title=\u0421\u043f\u0438\u0441\u043e\u043a \u0437\u0430\u0434\u0430\u0447 (\u043f\u0440\u043e\u0441\u0442\u043e\u0439)
dl_datalistmodel.type.dl_simpletask.description=\u041f\u0440\u043e\u0441\u0442\u043e\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0437\u0430\u0434\u0430\u0447, \u0432\u043a\u043b\u044e\u0447\u0430\u044e\u0449\u0438\u0439 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a, \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435, \u0441\u0440\u043e\u043a \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f, \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442, \u0441\u0442\u0430\u0442\u0443\u0441, \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0438.
dl_datalistmodel.property.dl_simpletaskDueDate.title=\u0421\u0440\u043e\u043a
dl_datalistmodel.property.dl_simpletaskPriority.title=\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442
dl_datalistmodel.property.dl_simpletaskStatus.title=\u0421\u0442\u0430\u0442\u0443\u0441
dl_datalistmodel.property.dl_simpletaskComments.title=\u041a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0438
# Contact
dl_datalistmodel.type.dl_contact.title=\u0421\u043f\u0438\u0441\u043e\u043a \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043e\u0432
dl_datalistmodel.type.dl_contact.description=\u0421\u043f\u0438\u0441\u043e\u043a \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043e\u0432, \u0432\u043a\u043b\u044e\u0447\u0430\u044e\u0449\u0438\u0439 \u0438\u043c\u044f, \u0444\u0430\u043c\u0438\u043b\u0438\u044e, \u043f\u043e\u043b\u043d\u043e\u0435 \u0438\u043c\u044f, \u0430\u0434\u0440\u0435\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b, \u0434\u043e\u043b\u0436\u043d\u043e\u0441\u0442\u044c, \u043d\u043e\u043c\u0435\u0440 \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u0430 (\u043e\u0444\u0438\u0441), \u043d\u043e\u043c\u0435\u0440 \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u0430 (\u043c\u043e\u0431\u0438\u043b\u044c\u043d\u043e\u0433\u043e).
dl_datalistmodel.property.dl_contactFirstName.title=\u0418\u043c\u044f
dl_datalistmodel.property.dl_contactLastName.title=\u0424\u0430\u043c\u0438\u043b\u0438\u044f
dl_datalistmodel.property.dl_contactEmail.title=\u042d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u044f \u043f\u043e\u0447\u0442\u0430
dl_datalistmodel.property.dl_contactCompany.title=\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f
dl_datalistmodel.property.dl_contactJobTitle.title=\u0414\u043e\u043b\u0436\u043d\u043e\u0441\u0442\u044c
dl_datalistmodel.property.dl_contactPhoneOffice.title=\u041d\u043e\u043c\u0435\u0440 \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u0430 (\u043e\u0444\u0438\u0441)
dl_datalistmodel.property.dl_contactPhoneMobile.title=\u041d\u043e\u043c\u0435\u0440 \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u0430 (\u043c\u043e\u0431\u0438\u043b\u044c\u043d\u043e\u0433\u043e)
dl_datalistmodel.property.dl_contactNotes.title=\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044f
# Issues
dl_datalistmodel.type.dl_issue.title=\u0421\u043f\u0438\u0441\u043e\u043a \u043f\u0440\u043e\u0431\u043b\u0435\u043c
dl_datalistmodel.type.dl_issue.description=\u0421\u043f\u0438\u0441\u043e\u043a \u043f\u0440\u043e\u0431\u043b\u0435\u043c, \u0432\u043a\u043b\u044e\u0447\u0430\u044e\u0449\u0438\u0439 \u0418\u0414, \u0441\u0442\u0430\u0442\u0443\u0441, \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442, \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435, \u0441\u0440\u043e\u043a \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f, \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0438, \u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b.
dl_datalistmodel.property.dl_issueID.title=\u0418\u0414 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b
dl_datalistmodel.property.dl_issueStatus.title=\u0421\u0442\u0430\u0442\u0443\u0441
dl_datalistmodel.property.dl_issuePriority.title=\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442
dl_datalistmodel.property.dl_issueDescription.title=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435
dl_datalistmodel.property.dl_issueDueDate.title=\u0421\u0440\u043e\u043a
dl_datalistmodel.property.dl_issueComments.title=\u041a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0438
dl_datalistmodel.association.dl_issueAssignedTo.title=\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043e
dl_datalistmodel.property.dl_issueRelatedIssues.title=\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b
# Event
dl_datalistmodel.type.dl_event.title=\u0421\u043f\u0438\u0441\u043e\u043a \u0441\u043e\u0431\u044b\u0442\u0438\u0439
dl_datalistmodel.type.dl_event.description=\u0421\u043f\u0438\u0441\u043e\u043a \u0441\u043e\u0431\u044b\u0442\u0438\u0439, \u0432\u043a\u043b\u044e\u0447\u0430\u044e\u0449\u0438\u0439 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a, \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435, \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435, \u0434\u0430\u0442\u0443/\u0432\u0440\u0435\u043c\u044f \u043d\u0430\u0447\u0430\u043b\u0430 \u0438 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f.
dl_datalistmodel.property.dl_eventLocation.title=\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435
dl_datalistmodel.property.dl_eventStartDate.title=\u0414\u0430\u0442\u0430 \u043d\u0430\u0447\u0430\u043b\u0430
dl_datalistmodel.property.dl_eventEndDate.title=\u0414\u0430\u0442\u0430 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f
dl_datalistmodel.property.dl_eventRegistrations.title=\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438
dl_datalistmodel.property.dl_eventNote.title=\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044f
# Location
dl_datalistmodel.type.dl_location.title=\u0421\u043f\u0438\u0441\u043e\u043a \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0439
dl_datalistmodel.type.dl_location.description=\u0421\u043f\u0438\u0441\u043e\u043a \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0439/\u0430\u0434\u0440\u0435\u0441\u043e\u0432
dl_datalistmodel.property.dl_locationAddress1.title=\u0410\u0434\u0440\u0435\u0441\u043d\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 1
dl_datalistmodel.property.dl_locationAddress2.title=\u0410\u0434\u0440\u0435\u0441\u043d\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 2
dl_datalistmodel.property.dl_locationAddress3.title=\u0410\u0434\u0440\u0435\u0441\u043d\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 3
dl_datalistmodel.property.dl_locationZip.title=\u041f\u043e\u0447\u0442\u043e\u0432\u044b \u0438\u043d\u0434\u0435\u043a\u0441
dl_datalistmodel.property.dl_locationState.title=\u041e\u0431\u043b\u0430\u0441\u0442\u044c
dl_datalistmodel.property.dl_locationCountry.title=\u0421\u0442\u0440\u0430\u043d\u0430
dl_datalistmodel.property.dl_locationNote.title=\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044f
# Meeting Agenda
dl_datalistmodel.type.dl_meetingAgenda.title=\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u0441\u043e\u0431\u0440\u0430\u043d\u0438\u044f
dl_datalistmodel.type.dl_meetingAgenda.description=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u043c\u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u0441\u043e\u0431\u0440\u0430\u043d\u0438\u044f, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435, \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0430, \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f.
dl_datalistmodel.property.dl_meetingAgendaRef.title=\u0421\u0441\u044b\u043b\u043a\u0430
dl_datalistmodel.property.dl_meetingAgendaTime.title=\u0412\u0440\u0435\u043c\u044f (\u043c\u0438\u043d.)
dl_datalistmodel.property.dl_meetingAgendaOwner.title=\u0412\u043b\u0430\u0434\u0435\u043b\u0435\u0446
# Event Agenda
dl_datalistmodel.type.dl_eventAgenda.title=\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u0441\u043e\u0431\u044b\u0442\u0438\u0439
dl_datalistmodel.type.dl_eventAgenda.description=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u043c\u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u0441\u043e\u0431\u044b\u0442\u0438\u0439, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f \u0441\u0435\u0430\u043d\u0441\u043e\u0432, \u0434\u043e\u043a\u043b\u0430\u0434\u0447\u0438\u043a\u043e\u0432, \u0432\u0440\u0435\u043c\u0435\u043d\u0430 \u043d\u0430\u0447\u0430\u043b\u0430 \u0438 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f.
dl_datalistmodel.property.dl_eventAgendaRef.title=\u0421\u0441\u044b\u043b\u043a\u0430
dl_datalistmodel.property.dl_eventAgendaStartTime.title=\u0412\u0440\u0435\u043c\u044f \u043d\u0430\u0447\u0430\u043b\u0430
dl_datalistmodel.property.dl_eventAgendaEndTime.title=\u0412\u0440\u0435\u043c\u044f \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f
dl_datalistmodel.property.dl_eventAgendaSessionName.title=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0435\u0430\u043d\u0441\u0430
dl_datalistmodel.property.dl_eventAgendaPresenter.title=\u0414\u043e\u043a\u043b\u0430\u0434\u0447\u0438\u043a
dl_datalistmodel.property.dl_eventAgendaAudience.title=\u0410\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u044f
dl_datalistmodel.property.dl_eventAgendaNotes.title=\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044f
# List constraint display labels
listconstraint.dl_task_status.Not Started=\u041d\u0435 \u043d\u0430\u0447\u0430\u043b\u043e\u0441\u044c
listconstraint.dl_task_status.In Progress=\u0412 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435
listconstraint.dl_task_status.On Hold= \u0423\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f
listconstraint.dl_task_status.Complete=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e
listconstraint.dl_priority_value.High=\u0412\u044b\u0441\u043e\u043a\u0438\u0439
listconstraint.dl_priority_value.Normal=\u041d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u044b\u0439
listconstraint.dl_priority_value.Low=\u041d\u0438\u0437\u043a\u0438\u0439

View File

@@ -0,0 +1,3 @@
# Discussion-related messages
discussion.discussion_for=\u041e\u0431\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u0435 {0}

View File

@@ -0,0 +1,5 @@
emailserver_emailserverModel.aspect.emailserver_aliasable.title=\u041f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
emailserver_emailserverModel.aspect.emailserver_aliasable.description=\u041f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
emailserver_emailserverModel.property.emailserver_alias.title=\u041f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c
emailserver_emailserverModel.property.emailserver_alias.description=\u041f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c

View File

@@ -0,0 +1,24 @@
email.server.msg.received_by_smtp=\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u043e SMTP \u0438\u0437 ''{0}''.
email.server.msg.default_subject=\u042d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u044f \u043f\u043e\u0447\u0442\u0430-{0}
email.server.err.sender_blocked=''{0}'' \u043e\u0442\u043a\u0430\u0437\u0430\u043b \u0432 \u0434\u043e\u0441\u0442\u0443\u043f\u0435.
email.server.err.inbound_mail_disabled=\u0421\u0435\u0440\u0432\u0435\u0440 Alfresco \u043d\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d \u043d\u0430 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u0435 \u0432\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u044b\u0445 \u043f\u043e\u0447\u0442\u044b.
email.server.err.access_denied=''{0}'' \u043e\u0442\u043a\u0430\u0437\u0430\u043b \u0432 \u0434\u043e\u0441\u0442\u0443\u043f\u0435 \u043a ''{1}''.
email.server.err.invalid_subject=\u0412 \u0441\u0442\u0440\u043e\u043a\u0435 \u0442\u0435\u043c\u044b \u0434\u043e\u043b\u0436\u043d\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0438\u043c\u044f \u0444\u0430\u0439\u043b\u0430.
email.server.err.unknown_source_address=\u0410\u0434\u0440\u0435\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u0432 \u043f\u043e\u043b\u0435 ''\u041e\u0442'' \u043d\u0435 \u0431\u044b\u043b \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d: {0}.
email.server.err.user_not_email_contributor=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c ''{0}'' \u043d\u0435 \u0432\u0445\u043e\u0434\u0438\u0442 \u0432 \u0433\u0440\u0443\u043f\u043f\u0443 \u043a\u043e\u0440\u0440\u0435\u0441\u043f\u043e\u043d\u0434\u0435\u043d\u0442\u043e\u0432 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b.
email.server.err.no_email_contributor_group=\u0414\u0430\u043d\u043d\u043e\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \u043a\u043e\u0440\u0440\u0435\u0441\u043f\u043e\u043d\u0434\u0435\u043d\u0442\u043e\u0432 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.
email.server.err.invalid_node_address=\u0410\u0434\u0440\u0435\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b ''{0}'' \u043d\u0435 \u0443\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u043d\u0430 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0439 \u0443\u0437\u0435\u043b.
email.server.err.handler_not_found=\u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u0434\u043b\u044f \u0442\u0438\u043f\u0430 \u0443\u0437\u043b\u0430 ''{0}''.
email.server.err.mail_read_error=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0447\u0442\u0435\u043d\u0438\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b: {0}
email.server.err.failed_to_create_mime_message=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 MIME \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0432\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u043f\u043e\u0442\u043e\u043a\u0430: {0}
email.server.err.extracting_from_address=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u0430\u0434\u0440\u0435\u0441 \u0438\u0437 \u043f\u043e\u043b\u044f ''\u041e\u0442'': {0}
email.server.err.no_from_address=\u0423 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u043d\u0435\u0442 \u0430\u0434\u0440\u0435\u0441\u0430 \u0432 \u043f\u043e\u043b\u0435 '\u041e\u0442'.
email.server.err.extracting_to_address=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u0430\u0434\u0440\u0435\u0441 \u0438\u0437 \u043f\u043e\u043b\u044f ''\u041a\u043e\u043c\u0443'': {0}
email.server.err.no_to_address=\u0423 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u043d\u0435\u0442 \u0430\u0434\u0440\u0435\u0441\u0430 \u0432 \u043f\u043e\u043b\u0435 '\u041a\u043e\u043c\u0443'.
email.server.err.extracting_subject=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u044c \u0442\u0435\u043c\u0443 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f: {0}
email.server.err.extracting_sent_date=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0434\u0430\u0442\u0443 \u0438\u0437 \u043f\u043e\u043b\u044f '\u041e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e': {0}
email.server.err.parse_message=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u0440\u043e\u0430\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b: {0}
email.server.err.usupported_encoding=\u041a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430 ''{0}'' \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f
email.server.err.failed_to_read_content_stream=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u0447\u0430\u0441\u0442\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f: {0}
email.server.err.incorrect_message_part=\u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u0430\u044f \u0447\u0430\u0441\u0442\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f: {0}

View File

@@ -0,0 +1,21 @@
# form service externalised display strings
form_service.mimetype.label=\u0422\u0438\u043f MIME
form_service.mimetype.description=\u0422\u0438\u043f MIME \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430
form_service.encoding.label=\u041a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430
form_service.encoding.description=\u041a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430
form_service.size.label=\u0420\u0430\u0437\u043c\u0435\u0440
form_service.size.description=\u0420\u0430\u0437\u043c\u0435\u0440 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0432 \u0431\u0430\u0439\u0442\u0430\u0445
form_service.message.label=\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435
form_service.message.description=\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0432\u0432\u043e\u0434\u0438\u0442 \u043f\u0440\u0438 \u0437\u0430\u043f\u0443\u0441\u043a\u0435 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
form_service.message.value.none=(\u043d\u0435\u0442 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439)
form_service.transitions.label=\u041f\u0435\u0440\u0435\u0445\u043e\u0434\u044b
form_service.transitions.description=\u0414\u0430\u043d\u043d\u044b\u0435 \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u044b \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u0434\u043b\u044f \u044d\u0442\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0438
form_service.package.items.label=\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b
form_service.package.items.description=\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0447\u0430\u0441\u0442\u044c\u044e \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
form_service.task.owner.label=\u0412\u043b\u0430\u0434\u0435\u043b\u0435\u0446
form_service.task.owner.description=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c, \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0438\u0442 \u0434\u0430\u043d\u043d\u0430\u044f \u0437\u0430\u0434\u0430\u0447\u0430

View File

@@ -0,0 +1,21 @@
# Display labels for System Model
fm_forummodel.description=\u041c\u043e\u0434\u0435\u043b\u044c \u0444\u043e\u0440\u0443\u043c\u0430
fm_forummodel.type.fm_forums.title=\u041f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0434\u043b\u044f \u0444\u043e\u0440\u0443\u043c\u0430
fm_forummodel.type.fm_forums.description=\u041f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0435\u0435 \u0444\u043e\u0440\u0443\u043c\u044b
fm_forummodel.type.fm_forum.title=\u0424\u043e\u0440\u0443\u043c
fm_forummodel.type.fm_forum.description=\u041f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0435\u0435 \u0442\u0435\u043c\u044b
fm_forummodel.type.fm_topic.title=\u0422\u0435\u043c\u0430
fm_forummodel.type.fm_topic.description=\u041f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0435\u0435 \u0441\u0442\u0430\u0442\u044c\u0438 \u0444\u043e\u0440\u0443\u043c\u0430 (\u0437\u0430\u043f\u0438\u0441\u0438)
fm_forummodel.type.fm_post.title=\u0421\u0442\u0430\u0442\u044c\u044f \u0444\u043e\u0440\u0443\u043c\u0430
fm_forummodel.type.fm_post.description=\u0421\u0442\u0430\u0442\u044c\u044f \u0444\u043e\u0440\u0443\u043c\u0430, \u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0432 \u0442\u0435\u043c\u0435
fm_forummodel.aspect.fm_discussable.title=\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0439 \u0434\u043b\u044f \u043e\u0431\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u044f
fm_forummodel.aspect.fm_discussable.description=\u041f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 \u043e\u0431\u044a\u0435\u043a\u0442\u0443 \u0431\u044b\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0434\u043b\u044f \u043e\u0431\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u044f
fm_forummodel.association.fm_discussion.title=\u041e\u0431\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u0435
fm_forummodel.association.fm_discussion.description=\u0424\u043e\u0440\u0443\u043c \u0441 \u043e\u0431\u0441\u0443\u0436\u0434\u0435\u043d\u0438\u0435\u043c \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043e\u0431\u044a\u0435\u043a\u0442\u0430, \u043a \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u0434\u0430\u043d\u043d\u044b\u0439 \u0430\u0441\u043f\u0435\u043a\u0442

View File

@@ -0,0 +1,17 @@
#
# Imap I18N messages
#
# Information messages. prefix 'imap.server.info'
imap.server.info.message_body_not_found = "\u0427\u0430\u0441\u0442\u0438 \u0442\u0435\u043b\u0430 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u044b."
# Error messages. prefix 'imap.server.error'
imap.server.error.properties_dont_exist = "\u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0442."
imap.server.error.permission_denied = "\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 - \u043e\u0442\u043a\u0430\u0437 \u0432 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0438."
imap.server.error.folder_already_exist = "\u041f\u0430\u043f\u043a\u0430 \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442."
imap.server.error.mailbox_name_is_mandatory = "\u0418\u043c\u044f \u043f\u043e\u0447\u0442\u043e\u0432\u043e\u0433\u043e \u044f\u0449\u0438\u043a\u0430 - \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440."
imap.server.error.cannot_get_a_folder = "\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0441 \u0438\u043c\u0435\u043d\u0435\u043c ''{0}''."
imap.server.error.cannot_parse_default_email = "\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u043e\u0430\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0430\u0434\u0440\u0435\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e ''{0}''."

View File

@@ -0,0 +1 @@
bfsit.error.importAlreadyInProgress=\u041c\u0430\u0441\u0441\u043e\u0432\u044b\u0439 \u0438\u043c\u043f\u043e\u0440\u0442 \u0443\u0436\u0435 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0434\u043d\u0435\u0435.

View File

@@ -0,0 +1,27 @@
#
# Invitation service messages
#
invitation.error.noworkflow="\u0411\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d, \u0438\u043c\u044f \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430: {0}"
invitation.error.not_found="\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e, invitationId: {0}"
invitation.error.invalid_inviteId_format="\u0423 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0430 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f \u043d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0444\u043e\u0440\u043c\u0430\u0442, \u0432\u0435\u0440\u043d\u044b\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u044b - <engine>$<id> : {0}"
invitation.invite.already_member="\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {0} \u0443\u0436\u0435 \u0447\u043b\u0435\u043d {1}, \u0435\u0433\u043e \u043d\u0435\u043b\u044c\u0437\u044f \u043f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0442\u044c \u0441\u043d\u043e\u0432\u0430"
invitation.cancel.not_site_manager="\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {0} \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 {1}, \u0442\u0430\u043a \u043a\u0430\u043a \u043e\u043d \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043c\u0435\u043d\u0435\u0434\u0436\u0435\u0440\u043e\u043c \u0441\u0430\u0439\u0442\u0430 {2}"
invitation.invite.not_site_manager="\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {0} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043c\u0435\u043d\u0435\u0434\u0436\u0435\u0440\u043e\u043c \u0441\u0430\u0439\u0442\u0430 {1}"
invitation.invite.unable_generate_id="\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u043d\u043e\u0433\u043e, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0435\u0449\u0435 \u043d\u0435 \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0438\u0442 \u043a\u043e\u043c\u0443-\u0442\u043e \u0435\u0449\u0435: firstName:{0} lastName:{1} email:{2}"
invitation.invite.already_finished="\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 {0} \u0443\u0436\u0435 \u043f\u0440\u0438\u043d\u044f\u0442\u043e, \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u043e \u0438\u043b\u0438 \u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u043e"
invitation.invite.authentication_chain="\u0426\u0435\u043f\u043e\u0447\u043a\u0430 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f \u043d\u0435 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0435 \u0443\u0447\u0435\u0442\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438"
# InviteSender messages
invitation.invitesender.email.subject=Alfresco {0}: \u0432\u044b \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u044b \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0441\u0430\u0439\u0442\u0443 {1}
invitation.invitesender.email.role.SiteManager=\u041c\u0435\u043d\u0435\u0434\u0436\u0435\u0440 \u0441\u0430\u0439\u0442\u0430
invitation.invitesender.email.role.SiteCollaborator=\u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u0441\u0430\u0439\u0442\u0430
invitation.invitesender.email.role.SiteContributor=\u0410\u0432\u0442\u043e\u0440 \u0441\u0430\u0439\u0442\u0430
invitation.invitesender.email.role.SiteConsumer=\u0427\u0438\u0442\u0430\u0442\u0435\u043b\u044c \u0441\u0430\u0439\u0442\u0430
# Invitation workflow task description
invitation.nominated.workflow.description=\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0441\u0430\u0439\u0442\u0443 {0}
invitation.moderated.workflow.description=\u0417\u0430\u043f\u0440\u043e\u0441 \u043d\u0430 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u043a \u0441\u0430\u0439\u0442\u0443 {0}
# Person Notification messages
invitation.notification.person.email.subject=Alfresco {0}: \u0432\u0430\u0448\u0430 \u043d\u043e\u0432\u0430\u044f \u0443\u0447\u0435\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c

View File

@@ -0,0 +1,44 @@
Jbpm.engine.mandatory.properties.missing=Mandatory task properties have not been provided! {0}
jbpm.engine.deploy.workflow.error=Failed to deploy workflow definition.
jbpm.engine.is.workflow.deployed.error=Failed to determine if workflow definition is already deployed.
jbpm.engine.undeploy.workflow.error=Failed to undeploy workflow definition {0}.
jbpm.engine.get.workflow.definition.error=Failed to retrieve workflow definitions.
jbpm.engine.get.workflow.definition.by.id.error=Failed to retrieve workflow definition for id {0}.
jbpm.engine.get.workflow.definition.by.name.error=Failed to retrieve workflow definition for name {0}.
jbpm.engine.get.all.workflow.definitions.by.name.error=Failed to retrieve all definitions for workflow {0}.
jbpm.engine.get.workflow.definition.image.error=Failed to retrieve workflow definition image for {0}.
jbpm.engine.get.task.definitions.error=Failed to retrieve workflow task definitions for workflow definition {0}.
jbpm.engine.get.process.definition.error=Workflow definition {0} does not exist.
jbpm.enginestart.workflow.error=Failed to start workflow {0}.
jbpm.engine.get.active.workflows.error=Failed to retrieve workflow instances for definition {0}.
jbpm.engine.get.workflow.instance.by.id.error=Failed to retrieve workflow instance with Id {0}.
jbpm.engine.get.process.instance.error=Workflow instance does not exist for Id {0}.
jbpm.engine.get.workflow.paths.error=Failed to retrieve workflow paths for workflow instance {0}.
jbpm.engine.get.path.properties.error=Failed to retrieve properties of path {0}.
jbpm.engine.cancel.workflow.error=Failed to cancel workflow instance {0}.
jbpm.engine.delete.workflow.error=Failed to delete workflow instance {0}.
jbpm.engine.signal.transition.error=Failed to signal transition {0} from workflow path {1}..
jbpm.engine.invalid.event=Event {0} is not a valid event, this event name is reserved.
jbpm.engine.fire.event.error=Failed to fire event {0} on workflow path {1}.
jbpm.engine.get.tasks.for.path.error=Failed to retrieve tasks assigned to Workflow path {0}.
jbpm.engine.get.timers.error=Could not retrieve any timers for workflow {0}.
jbpm.engine.find.completed.task.instances.error=Failed to retrieve completed task instances list for actor {0}.
jbpm.engine.get.assigned.tasks.error=Failed to retrieve tasks assigned to authority {0} in state {1}.
jbpm.engine.get.pooled.tasks.error=Failed to retrieve pooled tasks for authorities {0}.
jbpm.engine.query.tasks.error=Failed to query tasks. Query: {0}.
jbpm.engine.get.task.instance.error=Task instance {0} does not exist.
jbpm.engine.update.task.error=Failed to update workflow task {0}.
jbpm.engine.end.task.invalid.transition=Transition {0} is invalid for Workflow task {1}.
jbpm.engine.end.task.error=Failed to signal transition {0} from workflow task {1}.
jbpm.engine.get.task.by.id.error=Failed to retrieve task {0}.
jbpm.engine.get.start.task.error=Failed to retrieve start task for workflow instance {0}.
jbpm.engine.compile.process.definition.zip.error=Failed to parse process definition from jBPM zip archive stream.
jbpm.engine.compile.process.definition.xml.error=Failed to parse process definition from jBPM xml stream.
jbpm.engine.compile.process.definition.unsupported.error=Failed to parse process definition - unsupported mime type {0}
jbpm.engine.get.jbpm.id.error=Format of id {0} is invalid.
jbpm.engine.get.workflow.token.invalid=Invalid workflow path {0}.
jbpm.engine.get.workflow.token.is.null=Workflow path {0} does not exist.
jbpm.engine.set.task.properties.invalid.value=The value {0} is invalid for the task property {1}.
jbpm.engine.convert.value.error=Unable to convert jBPM value {0} to Alfresco Value since it is not Serializable.
jbpm.engine.get.company.home.invalid=Invalid company home path {0}.
jbpm.engine.get.company.home.multiple=Invalid company home path {0}. Expected 1 match but found {1} matches.

View File

@@ -0,0 +1,6 @@
# Lock service externalised display strings
lock_service.insufficent_privileges=\u041d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0441\u043d\u044f\u0442\u0438\u044f \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0443\u0437\u043b\u0430 (\u0418\u0414: {0}). \u0423\u0437\u0435\u043b \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d \u0434\u0440\u0443\u0433\u0438\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c.
lock_service.node_locked=\u0423\u0437\u0435\u043b (\u0418\u0414: {0}) \u043d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c, \u0442\u0430\u043a \u043a\u0430\u043a \u043e\u043d \u0443\u0436\u0435 \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d \u0434\u0440\u0443\u0433\u0438\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c.
lock_service.no_op=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044e, \u0442\u0430\u043a \u043a\u0430\u043a \u0443\u0437\u0435\u043b (\u0418\u0414:{0}) \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d.
lock_service.no_op2=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044e {0}, \u0442\u0430\u043a \u043a\u0430\u043a \u0443\u0437\u0435\u043b (\u0418\u0414:{1}) \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d.

View File

@@ -0,0 +1,20 @@
# Module messages
module.msg.found_modules=Found {0} module(s).
module.msg.starting= Starting module ''{0}'' version {1}.
module.msg.installing= Installing module ''{0}'' version {1}.
module.msg.upgrading= Upgrading module ''{0}'' version {1} (was {2}).
module.msg.missing= A previously-installed module ''{0}'' (version {1}) is not present in your distribution.
module.msg.dependencies= Module ''{0}'' version {1} has the following dependencies: {1}
module.warn.no_install_version=Module ''{0}'' had no install version. Assuming version {1} was installed.
module.err.missing_dependency=\nModule ''{0}'' version {1} depends on module ''{2}'', which has not been installed.
module.err.downgrading_not_supported=\nDowngrading of modules is not supported.\nModule ''{0}'' version {1} is currently installed and must be uninstalled before version {2} can be installed.
module.err.unsupported_repo_version=\nModule ''{0}'' version {1} is incompatible with the current repository version {2}.\n The repository version required must be in range [{3} : {4}].
module.err.already_executed=The module component has already been executed: {0}.{1}
module.err.execution_failed=A module component ''{0}'' failed to execute: {1}
module.err.component_already_registered=A component named ''{0}'' has already been registered for module ''{1}''.
module.err.unable_to_open_module_properties=The module properties file ''{0}'' could not be read.
module.err.component_in_missing_module=The component ''{0}'' belongs to a non-existent module ''{1}''.
module.err.orphaned_components={0} module components were not considered for execution.

View File

@@ -0,0 +1,7 @@
# Notification Service externalised display strings
np-does-not-exist=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435, \u0442\u0430\u043a \u043a\u0430\u043a \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0439 {0} \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.
default-sender-used=\u0423 \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044f \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0439 \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435 \u043d\u0435 \u0437\u0430\u0434\u0430\u043d \u0430\u0434\u0440\u0435\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b. \u0411\u0443\u0434\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u0435\u043b\u044c \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e. (\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c={0})
no-recipients=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u043f\u043e \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u0435, \u0442\u0430\u043a \u043a\u0430\u043a \u043d\u0435 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u044b \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u0435\u043b\u0438. (\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442={0})
no-body-or-template=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435, \u0442\u0430\u043a \u043a\u0430\u043a \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u044b \u043d\u0438 \u0442\u0435\u043b\u043e, \u043d\u0438 \u0448\u0430\u0431\u043b\u043e\u043d \u0442\u0435\u043b\u0430. (\u0443\u0437\u0435\u043b={0})
assigned-task=\u0412\u044b \u043d\u0430\u0437\u043d\u0430\u0447\u0438\u043b\u0438 \u0437\u0430\u0434\u0430\u0447\u0443
new-pooled-task=\u041d\u043e\u0432\u0430\u044f \u0437\u0430\u0434\u0430\u0447\u0430 \u0432 \u043f\u0443\u043b\u0435

View File

@@ -477,3 +477,9 @@ patch.swsdpPatch.description=Patch to fix up the Sample: Web Site Design Project
patch.swsdpPatch.success=Successfully patched the Sample: Web Site Design Project.
patch.swsdpPatch.skipped=Skipped, not required.
patch.swsdpPatch.missingSurfConfig=surf-config folder is not present in Sample: Web Site Design Project.
patch.redeployParallelActivitiWorkflows.description=Patch that redeploys both parallel activiti workflows, completion-condition now takes into account if minimum approval percentage can still be achived.
patch.show.audit.success=show_audit.ftl was updated successfully
patch.increaseColumnSizeActiviti.description=ALF-14983 : Upgrade scripts to increase column sizes for Activiti

View File

@@ -472,3 +472,14 @@ patch.migrateTenantsFromAttrsToTable.result=Processed {0} tenants
patch.remoteCredentialsContainer.description=Patch to add the root folder for Shared Remote Credentials
patch.syncSetDefinitionsContainer.description=Patch to add the root folder for SyncSet Definitions
patch.swsdpPatch.description=Patch to fix up the Sample: Web Site Design Project.
patch.swsdpPatch.success=Successfully patched the Sample: Web Site Design Project.
patch.swsdpPatch.skipped=Skipped, not required.
patch.swsdpPatch.missingSurfConfig=surf-config folder is not present in Sample: Web Site Design Project.
patch.redeployParallelActivitiWorkflows.description=Patch that redeploys both parallel activiti workflows, completion-condition now takes into account if minimum approval percentage can still be achived.
patch.show.audit.success=show_audit.ftl was updated successfully
patch.increaseColumnSizeActiviti.description=ALF-14983 : Upgrade scripts to increase column sizes for Activiti

View File

@@ -0,0 +1,474 @@
# PatchService messages
patch.service.preceeded_by_alternative=Preceded by alternative patch ''{0}''.
patch.service.not_relevant=Not relevant to schema {0}
patch.executer.checking=Checking for patches to apply ...
patch.service.applying_patch=\tApplying patch ''{0}'' ({1}).
patch.progress=\t\tPatch {0} {1}% complete, estimated complete at {2}.
patch.validation.failed=Validation of patch ''{0}'' failed. Patch is applicable to a newer schema than the schema of this build ({1}).\nfixesToSchema: {2}\ntargetSchema: {3}.\nIf this patch should always be run once on every installation, please ensure that the ''fixesToSchema'' value is set to '''${version.schema}'''.
patch.executer.no_patches_required=No patches were required.
patch.executer.system_readonly=Patches cannot be applied to a read-only system. Possible incompatibilities may exist between the application code and the existing data.
patch.executer.not_executed =\n=== Recorded patch (not executed) === \nID: {0}\nRESULT: \n{1}\n=====================================
patch.executer.executed =\n=== Applied patch === \nID: {0}\nRESULT: \n{1}\n=====================================
patch.executer.failed =\n=== Failed to apply patch === \nID: {0}\nRESULT: \n{1}\n=====================================
patch.noLongerSupportedPatch.err.use_incremental_upgrade = \nPatch ''{0}'' was last supported on version {1}.\n Please follow an incremental upgrade using version {2}.
# General patch messages
patch.genericBootstrap.result.exists=Bootstrap location already exists: {0}
patch.genericBootstrap.result.created=Imported view into bootstrap location: {0} ({1})
patch.genericBootstrap.err.multiple_found=Multiple nodes found: {0}
patch.general.property_not_set=Patch property ''{0}'' has not been set on this patch: {1}
patch.QNamePatch.result=Successfully updated the ''{0}'' QName to ''{1}''.
patch.genericMimetypeUpdate.start=Updating mimetypes.
patch.genericMimetypeUpdate.updated=\n\tUpdated {0} content references with mimetype ''{1}'' to use ''{2}''.
patch.genericMimetypeUpdate.indexed=\n\tIndexed {0} nodes in store ''{1}''.
patch.genericMimetypeUpdate.done=\n\tFinished updating mimetypes.
patch.genericMimetypeUpdate.doneReindex=\n\tFinished updating mimetypes. Selective reindexing was disabled; a reindex is required to search for the new mimetype(s).
# Individual patch messages
patch.noOpPatch.description=A placeholder patch; usually marks a superceded patch.
patch.noOpPatch.result=No-op patch
patch.marker.description=Marker patch to record installations and upgrades
patch.marker.result=Marker patch applied
patch.savedSearchesFolder.description=Ensures the existence of the 'Saved Searches' folder.
patch.savedSearchesFolder.result.exists=The saved searches folder already exists: {0}
patch.savedSearchesFolder.result.created=The saved searches folder was successfully created: {0}
patch.savedSearchesPermission.description=Sets required permissions on 'Saved Searches' folder.
patch.savedSearchesPermission.result.applied=Granted CONTRIBUTOR role to EVERYONE on ''Saved Searches'' folder: {0}.
patch.savedSearchesPermission.err.not_found='Saved Searches' folder could not be found.
patch.updatePermissionData.description=Update permissions from 'folder' to 'cmobject' [JIRA: AR-344].
patch.updatePermissionData.result=Changed {0} ''folder'' access control entries to ''cmobject''.
patch.authoritiesFolder.description=Ensures the existence of the user authorities folder [JIRA: AR-497].
patch.authoritiesFolderPermission.description=Ensures group authorities are visible to everyone.
patch.guestUser.description=Add the guest user, guest home space; and fix permissions on company home, guest home and guest person.
patch.guestUser.result=Added guest user and fixed permissions.
patch.fixNodeSerializableValues.description=Ensure that property values are not stored as Serializable if at all possible
patch.fixNodeSerializableValues.result=Fixed {0} node property serialized values
patch.updateGuestPermission.description=Rename guest permission from 'Guest' to 'Consumer'
patch.updateGuestPermission.result=Changed {0} ''Guest'' access control entries to ''Consumer''.
patch.categoryRootPermission.description=Sets required permissions on 'Category Root' folder.
patch.categoryRootPermission.result=Granted CONSUMER role to GUEST on ''Category Root'' folder: {0}.
patch.categoryRootPermission.err.not_found=''Category Root'' folder ({0}) could not be found.
patch.guestPersonPermission.description=Change Guest Person permission from 'Consumer' to 'Read'
patch.guestPersonPermission.result=Updated Guest Person permission from 'Consumer' to 'Read'
patch.spacesRootPermission.description=Change Spaces store root permission from 'Consumer' to 'Read'
patch.spacesRootPermission.result=Updated Spaces store root permission from 'Consumer' to 'Read'
patch.contentPermission.description=Update permission entries from 'cm:content' to 'sys:base'.
patch.contentPermission.result=Changed {0} ''cm:content'' access control entries to ''sys:base''.
patch.forumsIcons.description=Updates forums icon references
patch.forumsIcons.result=Updated {0} icon references
patch.emailTemplatesFolder.description=Ensures the existence of the 'Email Templates' folder.
patch.emailTemplatesFolder.result.exists=The email templates folder already exists: {0}
patch.emailTemplatesFolder.result.created=The email templates folder was successfully created: {0}
patch.emailInviteAndNotifyTemplatesFolder.description=Ensures the existence of the 'Email Invite Templates' and 'Email Notify Templates' folders.
patch.emailNotifyTemplatesFolder.result.exists=The Email Notify Templates folder already exists: {0}
patch.emailNotifyTemplatesFolder.result.created=The Email Notify Templates folder was successfully created: {0}
patch.emailInviteTemplatesFolder.result.exists=The Email Invite Templates folder already exists: {0}
patch.emailInviteTemplatesFolder.result.created=The Email Invite Templates folder was successfully created: {0}
patch.emailTemplatesContent.description=Loads the email templates into the Email Templates folder.
patch.emailTemplatesContent.result=Imported the Email Templates into the default folder.
patch.descriptorUpdate.description=Update Repository descriptor
patch.descriptorUpdate.result=Repository descriptor updated
patch.scriptsFolder.description=Ensures the existence of the 'Scripts' folder.
patch.scriptsFolder.result.exists=The scripts folder already exists: {0}
patch.scriptsFolder.result.created=The scripts folder was successfully created: {0}
patch.topLevelGroupParentChildAssociationTypePatch.description=Ensure top level groups have the correct child association type.
patch.topLevelGroupParentChildAssociationTypePatch.result=Fixed {0} top level groups child association types.
patch.topLevelGroupParentChildAssociationTypePatch.err.sys_path_not_found=Required authority system path not found: {0}
patch.topLevelGroupParentChildAssociationTypePatch.err.auth_path_not_found=Required authority path not found: {0}
patch.actionRuleDecouplingPatch.description=Migrate existing rules to the updated model where rules are decoupled from actions.
patch.actionRuleDecouplingPatch.result=Updated {0} rules.
patch.systemWorkflowFolder.description=Ensures the existence of the system workflow container.
patch.systemWorkflowFolder.result.created=Created system workflow container {0}.
patch.rssTemplatesFolder.description=Ensures the existence of the 'RSS Templates' folder.
patch.rssTemplatesFolder.result.exists=The RSS Templates folder already exists: {0}. Re-applying guest permissions.
patch.rssTemplatesFolder.result.created=The RSS Templates folder was successfully created: {0}
patch.rendition.rendering_actions.exists=The Rendering Actions folder already exists: {0}.
patch.rendition.rendering_actions.created=The Rendering Actions folder was successfully created: {0}
patch.rendition.rendering_actions.description=Creates the Rendering Actions folder.
patch.replication.replication_actions.exists=The Replication Actions folder already exists: {0}.
patch.replication.replication_actions.created=The Replication Actions folder was successfully created: {0}
patch.replication.replication_actions.description=Creates the Replication Actions folder.
patch.uifacetsAspectRemovalPatch.description=Removes the incorrectly applied uifacets aspect from presentation template files.
patch.uifacetsAspectRemovalPatch.updated=Successfully removed the uifacets aspect from {0} presentation template files.
patch.guestPersonPermission2.description=Change Guest Person permission to visible by all users as 'Consumer'.
patch.guestPersonPermission2.result=Updated Guest Person permission to visible by all users as 'Consumer'.
patch.schemaUpgradeScript.description=Ensures that the database upgrade script has been run.
patch.schemaUpgradeScript.err.not_executed=The schema upgrade script, ''{0}'', has not been run against this database.
patch.uniqueChildName.description=Checks and renames duplicate children.
patch.uniqueChildName.copyOf=({0}-{1})
patch.uniqueChildName.result=Checked {0} associations and fixed {1} duplicates. See file {2} for details.
patch.uniqueChildName.err.unable_to_fix=Auto-fixing of duplicate names failed. See file {0} for details.
patch.invalidNameEnding.description=Fixes names ending with a space or full stop.
patch.invalidNameEnding.result=Fixed {0} names ending with a space or full stop. See file {1} for details.
patch.invalidNameEnding.err.unable_to_fix=Auto-fixing of names ending with a space or full stop failed. See file {0} for details.
patch.invalidNameEnding.rewritten=Name ''{0}'' rewritten to ''{1}''
patch.systemDescriptorContent.description=Adds the version properties content to the system descriptor.
patch.systemDescriptorContent.result=Added the version properties content to the system descriptor.
patch.systemDescriptorContent.err.no_version_properties=The version.properties resource could not be found.
patch.systemDescriptorContent.err.no_descriptor=The system descriptor could not be found.
patch.versionHistoryPerformance.description=Improves the performance of version history lookups.
patch.versionHistoryPerformance.result=Updated {0} version history objects to improve performance.
patch.multilingualBootstrap.description=Bootstraps the node that will hold the multilingual containers.
patch.siteLoadPatch.description=Loads a sample site into the repository.
patch.siteLoadPatch.exists=The Site {0} already exists and so could not be imported
patch.siteLoadPatch.noBootstrapViews=No bootstrap views were given for importing Site {0} - please check the bootstrap extension bean configuration
patch.siteLoadPatch.result=Site {0} imported.
patch.siteLoadPatch.siteNotCreated=The site {0} is only created for new installs.
patch.siteLoadPatch.siteLoadDisabled=The load of site {0} is disabled.
patch.wcmFolders.description=Ensures the existance of the WCM specific 'Web Projects' and 'Web Forms' folders.
patch.wcmFolders.webprojects.result.exists=The Web Projects folder already exists: {0}
patch.wcmFolders.webprojects.result.created=The Web Projects folder was successfully created: {0}
patch.wcmFolders.webforms.result.exists=The Web Forms folder already exists: {0}
patch.wcmFolders.webforms.result.created=The Web Forms folder was successfully created: {0}
patch.wcmDeployed.description=Adds the 'WCM Deployed' space to the company home folder.
patch.linkNodeExtension.description=Fixes link node file extensions to have a .url extension.
patch.linkNodeExtension.result=Fixed {0} link node file extensions. See file {1} for details.
patch.linkNodeExtension.err.unable_to_fix=Auto-fixing of link node file extensions failed. See file {0} for details.
patch.linkNodeExtension.rewritten=Name ''{0}'' rewritten to ''{1}''
patch.systemRegistryBootstrap.description=Bootstraps the node that will hold system registry metadata.
patch.userAndPersonUserNamesAsIdentifiers.description=Reindex usr:user and cm:person uids as identifiers
patch.userAndPersonUserNamesAsIdentifiers.result=Reindexed user:user and cm:person uids as identifiers
patch.contentFormFolderType.description=Update WCM Content Form folder type.
patch.contentFormFolderType.result=Updated {0} WCM Content Form objects to ''wcm:formfolder'' type.
patch.groupNamesAsIdentifiers.description=Reindex usr:authorityContainer gids as identifiers
patch.groupNamesAsIdentifiers.result=Reindexed usr:authorityContainer with identifiers
patch.invalidUserPersonAndGroup.description=Fix up invalid uids for people and users; and invalid gids for groups
patch.invalidUserPersonAndGroup.result=Fixed ''{0}'' invalid user nodes, ''{1}'' invalid person nodes and ''{2}'' invalid authority nodes.
patch.AVMGuidPatch.description=Set GUIDs on AVM nodes.
patch.AVMGuidPatch.result=AVM GUIDS set.
patch.webscripts.description=Adds Web Scripts to Data Dictionary.
patch.webscripts2.description=Adds Web Scripts (second set) to Data Dictionary.
patch.webscripts3.description=Update Web Scripts ReadMe.
patch.webscriptsExtension.description=Adds Web Scripts Extension to Data Dictionary.
patch.imap.messages.share.description=Adds email template for txt files to the Imap Configs/Templates
patch.imap.clear.old.messages.description=Remove old IMAP message templates
patch.imap.clear.old.messages.description.cleared=Old IMAP message templates have been removed from the repository
patch.AVMLayeredSnapshot.description=Set indirectionVersion on Layered Nodes.
patch.AVMLayeredSnapshot.result=Layered Node indirectionVersions set.
patch.groupMembersAsIdentifiers.description=Reindex usr:authorityContainer members as identifiers
patch.genericWorkflow.result.deployed=Re-deployed {0} workflows.
patch.redeploySubmitProcess.description=Re-deploy WCM Submit Process Definition.
patch.deploySubmitDirectProcess.description=Deploy WCM Direct Submit Process Definition.
patch.AVMAspects.description=Changes storage of aspects on AVM Nodes.
patch.AVMAspects.result=Aspects were moved.
patch.ReadmeTemplate.description=Deployed ReadMe Template
patch.webScriptsReadme.description=Applied ReadMe template to Web Scripts folders
patch.AVMProperties.description=Changes storage of properties on AVM Nodes.
patch.AVMProperties.result=Properties were moved.
patch.customModels.description=Adds 'Models' folder to Data Dictionary
patch.customMessages.description=Adds 'Messages' folder to Data Dictionary
patch.customWebClientExtension.description=Adds 'Web Client Extension' folder to Data Dictionary
patch.customWorkflowDefs.description=Adds 'Workflow Definitions' folder to Data Dictionary.
patch.emailContributorGroup.description=Adds the 'GROUP_EMAIL_CONTRIBUTORS' group.
patch.avmStoreAsIdentifier.description=Reindex wca:webfolder to make wca:avmstore an identifier
patch.avmStoreAsIdentifier.result=Reindexed wca:webfolder to make wca:avmstore an identifier
patch.avmFormPropertyIdentifier.description=Reindex wca:webform to make wca:formname an identifier
patch.avmFormPropertyIdentifier.result=Reindexed wca:webform to make wca:formname an identifier
patch.formsFolder.description=Adds 'Forms' folder to Data Dictionary.
patch.tagRootCategory.description=Adds 'Tags' as new top-level category root.
patch.sitesFolder.description=Adds 'Sites' folder to Company Home.
patch.deploymentMigration.description=Migrates deployment data to the new model.
patch.deploymentMigration.webProjectName=Migrating deployment data for web project ''{0}''
patch.deploymentMigration.serverMigrated=Server ''{0}'' from web project ''{1}'' has been migrated
patch.deploymentMigration.reportMigrated=Deployment report for ''{0}'' from web project ''{1}'' has been migrated
patch.deploymentMigration.result=Deployment data has been migrated.
patch.updateAvmPermissionData.description=Update avm permissions from 'webfolder' to 'cmobject'.
patch.updateAvmPermissionData.result=Changed {0} ''webfolder'' access control entries to ''cmobject''.
patch.updateAvmPermissions.description=Update ACLs on all avm objects to the new 2.2 permission model
patch.updateAvmPermissions.result=Updated ACLs. Created {0} defining and {1} layered ACLs.
patch.wcmPermissionPatch.description=Fix ACLs so they are only set on the staging area store.
patch.wcmPermissionPatch.result=Updated ACLs: ACLS are moved to the staging area store and removed from all other stores. They are now applied via layering.
patch.avmWebProjectInheritPermissions.description=Break inheritance of permissions on wca:webfolder object to hide access by default.
patch.avmWebProjectInheritPermissions.result=Removed inheritance of permissions on all wca:webfolder objects.
patch.wcmPostPermissionSnapshotPatch.description=Snapshot stores (after fixing ACLs so they are only set on the staging area store).
patch.wcmPostPermissionSnapshotPatch.result=Snapshot complete after WCM ACL changes.
patch.updateDmPermissions.description=Update ACLs on all DM node objects to the new 3.0 permission model
patch.updateDmPermissions.result=Updated ACLs. Created {0} defining ACLs.
patch.db-V3.0-0-CreateActivitiesExtras.description=Replaced by 'patch.db-V3.0-ActivityTables', which must run first.
patch.createSiteStore.description=Create the AVM store for site data structure for 3.0 web-tier clients.
patch.createSiteStore.result=Created the AVM site data store.
patch.sitePermissionRefactorPatch.description=Create permission groups for sites.
patch.sitePermissionRefactorPatch.result=Groups have been created for all sites and user's allocated accordingly.
patch.migrateVersionStore.description=Version Store migration (from lightWeightVersionStore to version2Store)
patch.migrateVersionStore.incomplete=Version Store migration incomplete.
patch.migrateVersionStore.done=Version Store migration completed.
patch.migrateVersionStore.bypassingPatch=Bypass Version Store migration patch since scheduled to run as job
patch.inviteEmailTemplate.description=Adds invite email template to invite space
patch.calendarModelNamespacePatch.description=Update the Calendar model namespace URI and reindex all calendar objects.
patch.calendarModelNamespacePatch.result=Updated the Calendar model namespace URI to http://www.alfresco.org/model/calendar and reindexed {0} calendar objects.
patch.spacesStoreGuestPermission.description=Sets READ permissions for GUEST on root node of the SpacesStore.
patch.spacesStoreGuestPermission.result=Granted READ permissions for GUEST on root node of the SpacesStore.
patch.administratorGroup.description=Adds the 'ALFRESCO_ADMINISTRATORS' group.
patch.resetWCMToGroupBasedPermissionsPatch.description=Reset WCM to group based permissions.
patch.resetWCMToGroupBasedPermissionsPatch.result=WCM reset to group based permissions.
patch.migrateVersionStoreUpdateCounter.description=Update internal version2Store counter (if needed).
patch.migrateVersionStoreUpdateCounter.result=Update internal version2Store counter (if needed): {0}
patch.invitationMigration.description=Migrate invitations from old invite service to invitation service
patch.invitationMigration.result=Migrated {0} invitations from old invite service to invitation service.
patch.invitationMigration.no_invites=No invitations require migrating old invite service to invitation service.
patch.webSiteAddModerated.description=Changing Web Site visibility from a boolean to enum.
patch.webSiteAddModerated.result=Changed Web Site visibility.
patch.mtShareExistingTenants.description=Update existing tenants for MT Share.
patch.mtShareExistingTenants.result=Update existing tenants for MT Share.
patch.mtShareExistingTenants.result.not_applicable=Patch applied, although no changes made since MT is not enabled.
patch.redeployInvitationProcess.description=Re-deploy Invitation Process Definitions.
patch.imapFolders.description=Creates folders tree necessary for IMAP functionality
patch.imapFolders.result.exists=The 'Imap Configs' folder already exists
patch.imapFolders.result.created=The 'Imap Configs' folder was successfully created
patch.zonedAuthorities.description=Adds the remodelled cm:authority container to the spaces store
patch.authorityMigration.description=Copies any old authorities from the user store to the spaces store.
patch.authorityMigration.process.name=Authority Migration
patch.authorityMigration.warning.assoc=Ignoring group memberships of non-existent user {1}
patch.authorityMigration.result=Migrated {0} groups and {1} group associations to the spaces store.
patch.authorityDefaultZonesPatch.description=Adds groups and people to the appropriate zones for wcm, share and everything else.
patch.authorityDefaultZonesPatch.result=Unzoned groups and people added to the default zones.
patch.authorityDefaultZonesPatch.users= Adding users to zones ...
patch.authorityDefaultZonesPatch.groups= Adding groups to zones ...
patch.fixNameCrcValues.description=Fixes name and qname CRC32 values to match UTF-8 encoding.
patch.fixNameCrcValues.result=Fixed CRC32 values for UTF-8 encoding for {0} node child associations. See file {1} for details.
patch.fixNameCrcValues.fixed=Updated CRC32 values for association ID {0}, name ''{1}'': {2} -> {3}, qname ''{4}'': {5} -> {6}.
patch.fixNameCrcValues.unableToChange=Failed to update the CRC32 value for association ID {0}: \n Node name: {1} \n name CRC old: {2} \n name CRC new: {3} \n qname: {4} \n qname CRC old: {5} \n qname CRC new: {6} \n Error: {7}
patch.fixNameCrcValues.fixingLocalname=Fixing invalid localname for association ID {0}: \n Was: ''{1}'' \n Now: ''{2}''
patch.fixNameCrcValues.associationTypeNotDefined=Association type ''{0}'' has not been defined for child association ID {1}.
patch.fixNameCrcValues.associationTypeNotChild=Association type ''{0}'' does not represent a child association but is used as one; for child association ID {1}.
patch.personUsagePatch.description=Add person 'cm:sizeCurrent' property (if missing).
patch.personUsagePatch.result1=Added ''cm:sizeCurrent'' property to {0} people that were missing this property.
patch.personUsagePatch.result2=No people were missing the 'cm:sizeCurrent' property.
patch.redeployNominatedInvitationProcessWithPropsForShare.description=Redeploy nominated invitation workflow
patch.redeployNominatedInvitationProcessWithPropsForShare.result=Nominated invitation workflow redeployed
patch.redeployJbpmAdhocWorkflow.description=Redeploy JBPM adhoc workflow
patch.redeployJbpmAdhocWorkflow.result=JBPM adhoc workflow redeployed
patch.transferDefinitions.description=Add transfer definitions folder to data dictionary.
patch.transferDefinitions.result=Transfer definitions folder added to data dictionary.
patch.redeployNominatedInvitationProcessWithPropsForShare.description=Redeploy nominated invitation workflow
patch.redeployNominatedInvitationProcessWithPropsForShare.result=Nominated invitation workflow redeployed
patch.thumbnailsAssocQName.description=Update the 'cm:thumbnails' association QName to 'rn:rendition'.
patch.convertContentUrls.description=Converts pre-3.2 content URLs to use the alf_content_data table. The conversion work can also be done on a schedule; please contact Alfresco Support for further details.
patch.convertContentUrls.bypassingPatch=Content URL conversion was NOT performed by this patch. Activate the scheduled job 'contentUrlConverterTrigger'.
patch.convertContentUrls.start=Content URL conversion progress:
patch.convertContentUrls.error=Content URL conversion failed: {0}
patch.convertContentUrls.inProgress=Content URL conversion increment completed. Awaiting next scheduled call...
patch.convertContentUrls.done=Content URL conversion completed.
patch.convertContentUrls.adm.start=\tProcessing ADM Content URLs.
patch.convertContentUrls.adm.done=\tFinished processing ADM nodes up to ID {0}.
patch.convertContentUrls.avm.start=\tProcessing AVM Content URLs.
patch.convertContentUrls.avm.done=\tFinished processing AVM nodes up to ID {0}.
patch.convertContentUrls.store.start=\tReading content URLs from store {0}.
patch.convertContentUrls.store.readOnly=\tNo content URLs will be marked for deletion. The content store is read-only.
patch.convertContentUrls.store.pending=\tContent URLs will be marked for deletion once the URL conversion process is complete.
patch.convertContentUrls.store.noSupport=\tNo content URLs will be marked for deletion. The store does not support URL enumeration.
patch.convertContentUrls.store.progress=\t\tProcessed {0} content URLs from store.
patch.convertContentUrls.store.scheduled=\tScheduled {0} content URLs for deletion from store: {1}
patch.convertContentUrls.store.done=This job is complete. Deactivate the scheduled job 'contentUrlConverterTrigger'.
patch.fixAuthoritiesCrcValues.description=Fixes authority CRC32 values to match UTF-8 encoding.
patch.fixAuthoritiesCrcValues.result=Fixed CRC32 values for UTF-8 encoding for {0} authorities. See file {1} for details.
patch.fixAuthoritiesCrcValues.fixed=Updated CRC32 values for authority ''{0}''.
patch.fixAuthoritiesCrcValues.unableToChange=Failed to update the CRC32 value for authority: \n Authority: {0} \n Error: {1}
patch.updateMimetypes1.description=Fix mimetypes for Excel and Powerpoint.
patch.updateMimetypes2.description=Fix mimetypes for Excel and Powerpoint.
patch.updateMimetypes3.description=Fix mimetype for MPEG Audio
patch.updateMimetypes4.description=Rationalise mimetypes for PhotoShop and AutoCad
patch.updateMimetypesWMA.description=Fix mimetype for MS WMA Streaming Audio
patch.db-V3.2-AddFKIndexes.description=Fixes ALF-3189: Added missing FK indexes. Note: The script is empty for MySQL.
patch.eliminateDuplicates.description=Fixes ALF-4203: Searches for AVM duplicate nodes and changes their name
patch.migrateAttrTenants.description=Migrate old Tenant attributes
patch.migrateAttrTenants.result=Processed {0} attributes
patch.migrateAttrAVMLocks.description=Migrate old AVM Lock attributes
patch.migrateAttrAVMLocks.result=Processed {0} attributes
patch.migrateAttrPropBackedBeans.description=Migrate old Property-Backed Bean component attributes
patch.migrateAttrPropBackedBeans.result=Processed {0} attributes ({1} properties)
patch.migrateAttrChainingURS.description=Migrate old Chaining User Registry Synchronizer attributes
patch.migrateAttrChainingURS.result=Processed {0} attributes
patch.migrateAttrDropOldTables.description=Drops old alf_*attribute* tables and sequence
patch.migrateAttrDropOldTables.result=Drop tables alf_attributes, alf_global_attributes, alf_list_attribute_entries, alf_map_attribute_entries and sequence alf_attributes_seq
patch.transfer.targetrulefolder.description=Creates the transfer target rule folder for the default transfer group.
patch.transfer.targetrule.description=Creates the transfer target rule for the default transfer group.
patch.actions.scheduledfolder.description=Creates the scheduled actions folder in the Data Dictionary.
patch.publishing.root.description=Creates the publishing root folder in the Data Dictionary
patch.removingLinkValidationMetadata.description=Fixes ALF-5185: Removes all Link Validation reports from schema
patch.varcharFieldSizesQuadrupleIncreasing.description=ALF-4300: Increasing 'VARCHAR' field sizes quadruply for DB2 dialect
patch.mtFixAdminExistingTenants.description=Fix bootstrapped creator/modifier
patch.mtFixAdminExistingTenants.result=Fix bootstrapped creator/modifier
patch.fixUserQNames.description=Fixes user store qnames to improve native authentication performance
patch.fixUserQNames.result=Generated qnames for {0} users.
patch.newUserEmailTemplates.description=Adds the email templates for notifying new users of their accounts
patch.newUserEmailTemplates.created=Email templates added: {0}
patch.inviteEmailTemplates.description=Adds the email templates for inviting users to a Site
patch.inviteEmailTemplates.created=Email templates added: {0}
patch.htmlNotificationMailTemplates.description=Adds HTML email templates for notifying users of new content
patch.imapSpacesLocaleTemplates.description=Adds content templates for IMAP clients (Non-default locales only)
patch.imapSpacesLocaleTemplates2.description=Replaces content templates for IMAP clients
patch.exampleJavaScript.description=Loads sample Javascript file into datadictionary scripts folder
patch.fixAclInheritance.description=Fixes any ACL inheritance issues.
patch.fixAclInheritance.result=Fixed {0} ACLs.
patch.followingMailTemplates.description=Adds email templates for following notifications
patch.activitiesTemplatesUpdate.description=Updates activities email templates.
patch.activitiesTemplatesUpdate.error=Error retrieving base template when trying to patch the activity email templates.
patch.activitiesTemplatesUpdate.result=Updated activities email templates.
patch.activitiesEmailTemplate.description=Creates activities email templates.
patch.avmToAdmRemoteStore.description=Migrates Share Surf config from AVM sitestore to DM Sites folder.
patch.avmToAdmRemoteStore.complete=Completed Share Surf config migration.
patch.copiedFromAspect.description=Adds peer associations for cm:copiedfrom and cm:workingcopy (new model) and removes cm:source property
patch.copiedFromAspect.result=Fixed cm:copiedfrom model for {0} nodes. See file {1} for details.
patch.workflowNotification.description=Patch to add workflow email notification email folder and template.
patch.nodeTemplatesFolder.description=Patch to create new Data Dictionary folder for Share - Create Node by Template
patch.sitesSpacePermissions.description=Patch to remove the EVERYONE Contributor permissions on the Sites Space (parent container of all Sites)
patch.sitesSpacePermissions.result=Permissions corrected.
patch.sitesSpacePermissions.result.none=Permissions corrections not required.
patch.updateWorkflowNotificationTemplates.description=Patch to update the workflow notification templates.
patch.updateWorkflowNotificationTemplates.result=Workflow Notification Templates successfully updated.
patch.updateFollowingEmailTemplatesPatch.description=Patch to update the following notification email templates.
patch.updateFollowingEmailTemplatesPatch.result=Following notification email templates successfully updated.
patch.updateFollowingEmailTemplatesPatch.error=Error retrieving base template when trying to patch the following email templates.
patch.addDutchEmailTemplatesPatch.description=Patch to add Dutch email templates.
patch.addDutchEmailTemplatesPatch.result=Dutch email templates have been successfully added.
patch.addDutchEmailTemplatesPatch.error=Error retrieving base template when trying to add Dutch email templates.
patch.fixBpmPackages.description=Corrects workflow package types and associations
patch.fixBpmPackages.result=Patch successful. {0} packages converted.
patch.fixBpmPackages.invalidBootsrapStore=Bootstrap store has not been set
patch.fixBpmPackages.emptyContainer={0} node has no children
patch.alterJBPM331CLOBcolumnsToNvarchar.description=Altering CLOB columns in the jBPM 3.3.1 tables to introduce Unicode characters support for jBPM 3.3.1
patch.avmIndexChildEntriesLower.description=Add an indexed column to avm_child_entries that allows case-insensitive querying of AVM files by name
patch.imapUnsubscribedAspect.description=Patch to remove deprecated "imap:nonSubscribed" aspect from folders.
patch.imapUnsubscribedAspect.result.removed="imap:nonSubscribed" aspect was successfully removed from unsubscribed folders.
patch.migrateTenantsFromAttrsToTable.description=Migrate Tenant attributes to Tenant table
patch.migrateTenantsFromAttrsToTable.result=Processed {0} tenants
patch.remoteCredentialsContainer.description=Patch to add the root folder for Shared Remote Credentials
patch.syncSetDefinitionsContainer.description=Patch to add the root folder for SyncSet Definitions

View File

@@ -0,0 +1,17 @@
# PeriodProvider display label strings
period_provider.cron=\u0412\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 Cron
period_provider.day=\u0414\u0435\u043d\u044c
period_provider.fmend=\u041a\u043e\u043d\u0435\u0446 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0433\u043e \u043c\u0435\u0441\u044f\u0446\u0430
period_provider.fqend=\u041a\u043e\u043d\u0435\u0446 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0433\u043e \u043a\u0432\u0430\u0440\u0442\u0430\u043b\u0430
period_provider.fyend=\u041a\u043e\u043d\u0435\u0446 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0433\u043e \u0433\u043e\u0434\u0430
period_provider.immediately=\u041d\u0435\u043c\u0435\u0434\u043b\u0435\u043d\u043d\u043e
period_provider.monthend=\u041a\u043e\u043d\u0435\u0446 \u043c\u0435\u0441\u044f\u0446\u0430
period_provider.quarterend=\u041a\u043e\u043d\u0435\u0446 \u043a\u0432\u0430\u0440\u0442\u0430\u043b\u0430
period_provider.yearend=\u041a\u043e\u043d\u0435\u0446 \u0433\u043e\u0434\u0430
period_provider.month=\u041c\u0435\u0441\u044f\u0446
period_provider.none=\u041d\u0435\u0442
period_provider.quarter=\u041a\u0432\u0430\u0440\u0442\u0430\u043b
period_provider.week=\u041d\u0435\u0434\u0435\u043b\u044f
period_provider.duration=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c XML
period_provider.year=\u0413\u043e\u0434

View File

@@ -0,0 +1,2 @@
permissions.err_access_denied=\u041e\u0442\u043a\u0430\u0437\u0430\u043d\u043e \u0432 \u0434\u043e\u0441\u0442\u0443\u043f\u0435. \u041d\u0435\u0442 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u044d\u0442\u043e\u0439 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438.
permissions.err_read_only=\u041e\u0442\u043a\u0430\u0437\u0430\u043d\u043e \u0432 \u0434\u043e\u0441\u0442\u0443\u043f\u0435. \u0412 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f.

View File

@@ -0,0 +1,20 @@
# Display labels for Publishing Model (publishingModel.xml)
pub_publishingmodel.description=\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 Alfresco
pub_publishingmodel.type.pub_DeliveryChannel.title=\u041a\u0430\u043d\u0430\u043b \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438
pub_publishingmodel.type.pub_DeliveryChannel.description=\u0411\u0430\u0437\u043e\u0432\u044b\u0439 \u0442\u0438\u043f \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u043a\u0430\u043d\u0430\u043b\u043e\u0432 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438
pub_publishingmodel.type.pub_DeliveryServer.title=\u0421\u0435\u0440\u0432\u0435\u0440 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438
pub_publishingmodel.type.pub_DeliveryServer.description=\u0411\u0430\u0437\u043e\u0432\u044b\u0439 \u0442\u0438\u043f \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u0432 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438
pub_publishingmodel.type.pub_Environment.title=\u0421\u0440\u0435\u0434\u0430 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438
pub_publishingmodel.type.pub_Environment.description=\u0422\u0438\u043f \u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u0430, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0439 \u043d\u0430\u0431\u043e\u0440 \u043a\u0430\u043d\u0430\u043b\u043e\u0432 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438
pub_publishingmodel.type.pub_PublishingQueue.title=\u041e\u0447\u0435\u0440\u0435\u0434\u044c \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438
pub_publishingmodel.type.pub_PublishingQueue.description=\u0422\u0438\u043f \u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u0430, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0439 \u0441\u043e\u0431\u044b\u0442\u0438\u044f \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0442 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0435
pub_publishingmodel.aspect.pub_ContentRoot.title=\u0410\u0441\u043f\u0435\u043a\u0442 \u043a\u043e\u0440\u043d\u044f \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430
pub_publishingmodel.aspect.pub_ContentRoot.description=\u041f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u043a \u0443\u0437\u043b\u0443, \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0449\u0435\u043c\u0443 \u043a\u043e\u0440\u0435\u043d\u044c \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043a\u0430\u043d\u0430\u043b\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438
pub_publishingmodel.association.pub_deliveryServers.title=\u0421\u0435\u0440\u0432\u0435\u0440\u044b \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438
pub_publishingmodel.association.pub_deliveryServers.description=\u0421\u0435\u0440\u0432\u0435\u0440\u044b \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0441 \u043a\u0430\u043d\u0430\u043b\u043e\u043c \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438
pub_publishingmodel.association.pub_publishingQueue.title=\u041e\u0447\u0435\u0440\u0435\u0434\u044c \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438
pub_publishingmodel.association.pub_publishingQueue.description=\u041e\u0447\u0435\u0440\u0435\u0434\u044c \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u0434\u043b\u044f \u0441\u0440\u0435\u0434\u044b \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438

View File

@@ -0,0 +1,16 @@
# Publish service externalised display strings
publishing.channelNotFound=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043d\u0430\u0439\u0442\u0438 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u043a\u0430\u043d\u0430\u043b \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438: {0}
publishing.neitherNameNorIdSpecified=\u041d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u044b \u043d\u0438 \u0438\u043c\u044f \u043a\u0430\u043d\u0430\u043b\u0430, \u043d\u0438 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440
publish-content.title=\u041e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u0442\u044c
publish-content.description=\u041e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u0442\u044c \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u0432 \u043a\u0430\u043d\u0430\u043b\u0435 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438
publish-content.publishChannelName.display-label=\u041a\u0430\u043d\u0430\u043b \u0434\u043b\u044f \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430
publish-content.publishChannelId.display-label=\u041a\u0430\u043d\u0430\u043b \u0434\u043b\u044f \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430
publish-content.unpublish.display-label=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u044e
publish-content.statusUpdate.display-label=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0442\u0430\u0442\u0443\u0441\u0430
publish-content.includeLinkInStatusUpdate.display-label=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443 \u043d\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0442\u0430\u0442\u0443\u0441\u0430
publish-content.statusUpdateChannelNames.display-label=\u041a\u0430\u043d\u0430\u043b\u044b \u0434\u043b\u044f \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u0442\u0430\u0442\u0443\u0441\u0430
publish-content.statusUpdateChannelIds.display-label=\u041a\u0430\u043d\u0430\u043b\u044b \u0434\u043b\u044f \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u0442\u0430\u0442\u0443\u0441\u0430
publish-content.scheduledTime.display-label=\u0417\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f
publish-content.comment.display-label=\u041a\u043e\u043c\u043c\u0435\u043d\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
publish-content.nodeToLinkStatusUpdateTo.display-label=\u0423\u0437\u0435\u043b \u0434\u043b\u044f \u043f\u0440\u0438\u0432\u044f\u0437\u043a\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u0442\u0430\u0442\u0443\u0441\u0430

View File

@@ -0,0 +1,46 @@
# Rendering Engines i18n properties
# The following are common to all rendering engines
baseRenderingAction.runAs.display-label=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043a\u0430\u043a
baseRenderingAction.update-renditions-on-any-property-change.display-label=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0443 \u0434\u043b\u044f \u043b\u044e\u0431\u043e\u0433\u043e \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0441\u0432\u043e\u0439\u0441\u0442\u0432
baseRenderingAction.rendition-nodetype.display-label=\u0422\u0438\u043f \u0443\u0437\u043b\u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438
baseRenderingAction.placeHolderResourcePath.display-label=\u0417\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c \u043f\u0443\u0442\u0438 \u043a \u0440\u0435\u0441\u0443\u0440\u0441\u0443
baseRenderingAction.sourceContentProperty.display-label=\u0418\u0441\u0445\u043e\u0434\u043d\u043e\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430
baseRenderingAction.targetContentProperty.display-label=\u0426\u0435\u043b\u0435\u0432\u043e\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430
baseRenderingAction.destination-path-template.display-label=\u0428\u0430\u0431\u043b\u043e\u043d \u043f\u0443\u0442\u0438 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f
baseRenderingAction.orphan-existing-rendition.display-label=\u041f\u043e\u0442\u0435\u0440\u044f\u043d\u043d\u0430\u044f \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430
# The following are common to all template-based rendering engines
baseTemplateRenderingAction.model.display-label=\u041c\u043e\u0434\u0435\u043b\u044c
baseTemplateRenderingAction.template_string.display-label=\u0421\u0442\u0440\u043e\u043a\u0430 \u0448\u0430\u0431\u043b\u043e\u043d\u0430
baseTemplateRenderingAction.template_node.display-label=\u0423\u0437\u0435\u043b \u0448\u0430\u0431\u043b\u043e\u043d\u0430
baseTemplateRenderingAction.template_path.display-label=\u041f\u0443\u0442\u044c \u043a \u0448\u0430\u0431\u043b\u043e\u043d\u0443
# reformat
reformat.title=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0443 \u043f\u0435\u0440\u0435\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f
reformat.description=\u041e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u0447\u0430\u0441\u0442\u044c \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0432 \u0434\u0440\u0443\u0433\u043e\u043c \u0444\u043e\u0440\u043c\u0430\u0442\u0435 (\u0442\u0438\u043f MIME).
reformat.flashVersion.display-label=\u0412\u0435\u0440\u0441\u0438\u044f Flash
reformat.mime-type.display-label=\u0422\u0438\u043f MIME
# imageRenderingEngine
imageRenderingEngine.title=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0443 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439
imageRenderingEngine.xsize.display-label=\u0428\u0438\u0440\u0438\u043d\u0430
imageRenderingEngine.ysize.display-label=\u0412\u044b\u0441\u043e\u0442\u0430
imageRenderingEngine.isAbsolute.display-label=\u0410\u0431\u0441\u043e\u043b\u044e\u0442\u043d\u044b\u0439
imageRenderingEngine.maintainAspectRatio.display-label=\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u0441\u0442\u043e\u0440\u043e\u043d
imageRenderingEngine.resizeToThumbnail.display-label=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0440\u0430\u0437\u043c\u0435\u0440 \u0434\u043e \u044d\u0441\u043a\u0438\u0437\u0430
imageRenderingEngine.allowEnlargement.display-label=\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u0438\u0435
imageRenderingEngine.crop_gravity.display-label=\u0422\u044f\u0436\u0435\u0441\u0442\u044c
imageRenderingEngine.crop_height.display-label=\u041e\u0431\u0440\u0435\u0437\u0430\u0442\u044c \u043f\u043e \u0432\u044b\u0441\u043e\u0442\u0435
imageRenderingEngine.crop_width.display-label=\u041e\u0431\u0440\u0435\u0437\u0430\u0442\u044c \u043f\u043e \u0448\u0438\u0440\u0438\u043d\u0435
imageRenderingEngine.crop_x.display-label=\u041e\u0431\u0440\u0435\u0437\u0430\u0442\u044c \u043f\u043e x
imageRenderingEngine.crop_y.display-label=\u041e\u0431\u0440\u0435\u0437\u0430\u0442\u044c \u043f\u043e y
imageRenderingEngine.percent_crop.display-label=\u041f\u0440\u043e\u0446\u0435\u043d\u0442 \u043e\u0431\u0440\u0435\u0437\u043a\u0438
imageRenderingEngine.commandOptions.display-label=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043a\u043e\u043c\u0430\u043d\u0434
# freemarkerRenderingEngine
freemarkerRenderingEngine.title=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0443 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 Freemarker
freemarkerRenderingEngine.image_resolver.display-label=\u0421\u0440\u0435\u0434\u0441\u0442\u0432\u043e \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439
# xsltRenderingEngine
xsltRenderingEngine.title=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0443 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 XSLT

View File

@@ -0,0 +1,6 @@
replication.exception.targetNotGiven=\u0414\u0430\u043d\u043d\u044b\u0439 \u0446\u0435\u043b\u0435\u0432\u043e\u0439 \u043e\u0431\u044a\u0435\u043a\u0442 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u0435\u043d, \u043d\u043e \u043d\u0435 \u0431\u044b\u043b \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d
replication.exception.noPayloadsSpecified=\u041f\u043e\u043b\u0435\u0437\u043d\u0430\u044f \u043d\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043d\u0435 \u0431\u044b\u043b\u0430 \u0443\u043a\u0430\u0437\u0430\u043d\u0430
replication.exception.replicationDefIsDisabled=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u043d\u043e\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0440\u0435\u043f\u043b\u0438\u043a\u0430\u0446\u0438\u0438
replication.exception.unableToReplicate=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0440\u0435\u043f\u043b\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c. \u0421\u043b\u0443\u0436\u0431\u0430 \u0440\u0435\u043f\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u043d\u0435 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430
replication.exception.errorProcessingPayload=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0435 \u0441\u043f\u0438\u0441\u043a\u0430 \u043f\u043e\u043b\u0435\u0437\u043d\u043e\u0439 \u043d\u0430\u0433\u0440\u0443\u0437\u043a\u0438 - {0}
replication.exception.errorExecutingTransfer=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0438 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 - {0}

View File

@@ -0,0 +1 @@
repoadmin_console.help=alfresco/messages/repoadmin-interpreter-help.txt

View File

@@ -0,0 +1,6 @@
# Rule types
inbound.display-label=\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0441\u043e\u0437\u0434\u0430\u043d\u044b \u0438\u043b\u0438 \u0432\u0432\u0435\u0434\u0435\u043d\u044b \u0432 \u044d\u0442\u0443 \u043f\u0430\u043f\u043a\u0443
outbound.display-label=\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0443\u0434\u0430\u043b\u0435\u043d\u044b \u0438\u043b\u0438 \u0432\u044b\u0432\u0435\u0434\u0435\u043d\u044b \u0438\u0437 \u044d\u0442\u043e\u0439 \u043f\u0430\u043f\u043a\u0438
update.display-label=\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u044b
inboundAndUpdate.display-label=\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0441\u043e\u0437\u0434\u0430\u043d\u044b, \u0432\u0432\u0435\u0434\u0435\u043d\u044b \u0432 \u044d\u0442\u0443 \u043f\u0430\u043f\u043a\u0443 \u0438\u043b\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u044b

View File

@@ -0,0 +1,30 @@
# Schema update messages
schema.update.msg.dialect_used=Schema managed by database dialect {0}.
schema.update.msg.bypassing=Bypassing schema update checks.
schema.update.msg.normalized_schema=Normalized schema dumped to file {0}.
schema.update.msg.normalized_schema_pre=Normalized schema (pre-bootstrap) dumped to file {0}.
schema.update.msg.normalized_schema_post=Normalized schema (post-bootstrap) dumped to file {0}.
schema.update.msg.all_statements=All executed statements: {0}.
schema.update.msg.no_changes=No changes were made to the schema.
schema.update.msg.executing_generated_script=Executing database script {0} (Generated).
schema.update.msg.executing_copied_script=Executing database script {0} (Copied from {1}).
schema.update.msg.executing_statement= Executing statement: {0}
schema.update.msg.optional_statement_failed=Optional statement execution failed:\n SQL: {0}\n Error: {1}\n File: {2}\n Line: {3}
schema.update.warn.dialect_unsupported=Alfresco should not be used with database dialect {0}.
schema.update.warn.dialect_hsql=Alfresco is using the HSQL default database. Please only use this while evaluating Alfresco, it is NOT recommended for production or deployment!
schema.update.warn.dialect_derby=Alfresco is using the Apache Derby default database. Please only use this while evaluating Alfresco, it is NOT recommended for production or deployment!
schema.update.warn.dialect_substituting=The dialect ''{0}'' is being changed to ''{1}''.
schema.update.err.forced_stop=The property 'stopAfterSchemaBootstrap' has been set. The bootstrap process is being terminated.
schema.update.err.dialect_should_use=The dialect ''{0}'' is unsupported. Please use ''{1}'' instead.
schema.update.err.found_multiple=\nMore than one Alfresco schema was found when querying the database metadata.\n Limit the database user's permissions or set the 'hibernate.default_schema' property in 'custom-hibernate-dialect.properties'.
schema.update.err.previous_failed=A previous schema upgrade failed or was not completed. Revert to the original database before attempting the upgrade again.
schema.update.err.statement_failed=Statement execution failed:\n SQL: {0}\n Error: {1}\n File: {2}\n Line: {3}
schema.update.err.update_failed=Schema auto-update failed
schema.update.err.validation_failed=Schema validation failed
schema.update.err.update_script_not_run=The following schema upgrade script needs to be executed manually: {0}
schema.update.err.script_not_found=The schema script could not be found at location {0}
schema.update.err.statement_include_before_sql=Script include ''--INCLUDE:'' must occur before starting the SQL statement (line {0} of {1}).
schema.update.err.statement_var_assignment_before_sql=Variable assignment with ''--ASSIGN:'' must occur before starting the SQL statement (line {0} of {1}).
schema.update.err.statement_var_assignment_format=Variable assignment uses format ''--ASSIGN:x=col'' where ''x'' is the variable to assign to and ''col'' is the column value to extract (line {0} of {1}).
schema.update.err.statement_terminator=Scripts must terminate all statements with '';'' (line {0} of {1}).

View File

@@ -0,0 +1,5 @@
# Display labels for Site Model
st_siteModel.property.st_sitePreset.title=\u041f\u0440\u0435\u0434\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0441\u0430\u0439\u0442\u0430
st_siteModel.property.st_sitePreset.description=\u041f\u0440\u0435\u0434\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0441\u0430\u0439\u0442\u0430
st_siteModel.property.st_siteVisibility.title=\u0412\u0438\u0434\u0438\u043c\u043e\u0441\u0442\u044c \u0441\u0430\u0439\u0442\u0430
st_siteModel.property.st_siteVisibility.description=\u0412\u0438\u0434\u0438\u043c\u043e\u0441\u0442\u044c \u0441\u0430\u0439\u0442\u0430

View File

@@ -0,0 +1,13 @@
# Site service externalised display strings
site_service.unable_to_create=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0441\u0430\u0439\u0442, \u0442\u0430\u043a \u043a\u0430\u043a \u043a\u043e\u0440\u043e\u0442\u043a\u043e\u0435 \u0438\u043c\u044f \u0441\u0430\u0439\u0442\u0430 {0} \u0443\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f. \u041a\u043e\u0440\u043e\u0442\u043a\u0438\u0435 \u0438\u043c\u0435\u043d\u0430 \u0441\u0430\u0439\u0442\u043e\u0432 \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u0443\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u043c\u0438.
site_service.visibility_group_missing=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0441\u0430\u0439\u0442, \u0442\u0430\u043a \u043a\u0430\u043a \u0433\u0440\u0443\u043f\u043f\u0430 \u0432\u0438\u0434\u0438\u043c\u043e\u0441\u0442\u0438 {0} \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.
site_service.can_not_update=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0430\u0439\u0442 {0}, \u0442\u0430\u043a \u043a\u0430\u043a \u0435\u0433\u043e \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.
site_service.can_not_delete=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0430\u0439\u0442 {0}, \u0442\u0430\u043a \u043a\u0430\u043a \u0435\u0433\u043e \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.
site_service.site_no_exist=\u0421\u0430\u0439\u0442 {0} \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.
site_service.do_not_remove_manager=\u0421\u0430\u0439\u0442\u0443 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0445\u043e\u0442\u044f \u0431\u044b \u043e\u0434\u0438\u043d \u043c\u0435\u043d\u0435\u0434\u0436\u0435\u0440 \u0441\u0430\u0439\u0442\u0430. \u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0443\u0434\u0430\u043b\u0438\u0442\u044c {0} \u0438\u0437 \u0447\u0438\u0441\u043b\u0430 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432 \u0441\u0430\u0439\u0442\u0430, \u0442\u0430\u043a \u043a\u0430\u043a \u044d\u0442\u043e \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043c\u0435\u043d\u0435\u0434\u0436\u0435\u0440 \u0441\u0430\u0439\u0442\u0430.
site_service.can_not_remove_membership=\u0423 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044f \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u0439 \u043e \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u0435 \u0441\u0430\u0439\u0442\u0430 {0}.
site_service.do_not_change_manager=\u0421\u0430\u0439\u0442\u0443 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0445\u043e\u0442\u044f \u0431\u044b \u043e\u0434\u0438\u043d \u043c\u0435\u043d\u0435\u0434\u0436\u0435\u0440 \u0441\u0430\u0439\u0442\u0430. \u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0440\u043e\u043b\u044c {0}, \u0442\u0430\u043a \u043a\u0430\u043a \u0432 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u044d\u0442\u043e \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043c\u0435\u043d\u0435\u0434\u0436\u0435\u0440 \u0441\u0430\u0439\u0442\u0430.
site_service.can_not_change_membership=\u0423 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u0439 \u043e \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u0435 \u0441\u0430\u0439\u0442\u0430 {0}.
site_service.site_container_not_folder=\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440 \u0441\u0430\u0439\u0442\u0430 {0} \u043d\u0435 \u0441\u0441\u044b\u043b\u0430\u0435\u0442\u0441\u044f \u043d\u0430 \u043f\u0430\u043f\u043a\u0443.
site_service.invalid_site_type=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0441\u0430\u0439\u0442, \u0442\u0430\u043a \u043a\u0430\u043a {0} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u043c \u0442\u0438\u043f\u043e\u043c \u0441\u0430\u0439\u0442\u0430.

View File

@@ -0,0 +1 @@
# dummy file to allow repository context (activities feed notification) to start without slingshot - will be overwritten by build

View File

@@ -0,0 +1,7 @@
# Subscription service messages
subscription.notification.email.subject=\u0422\u0435\u043f\u0435\u0440\u044c {0} - \u0432\u0430\u0448 \u043f\u043e\u0434\u043f\u0438\u0441\u0447\u0438\u043a
subscription_service.err.disabled=\u041f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0430
subscription_service.err.write-denied=\u041d\u0435\u0442 \u043f\u0440\u0430\u0432 \u043d\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435
subscription_service.err.private-list=\u042d\u0442\u043e\u0442 \u0441\u043f\u0438\u0441\u043e\u043a \u043f\u043e\u043c\u0435\u0447\u0435\u043d \u043a\u0430\u043a \u043b\u0438\u0447\u043d\u044b\u0439

View File

@@ -0,0 +1,79 @@
# System-related messages
# Note to Translators: Only some of the strings below should be localised
# Those that should be localised are between START TRANSLATION and END TRANSLATION comment lines.
system.err.property_not_set=Property ''{0}'' has not been set: {1} ({2})
system.err.duplicate_name=Duplicate child name not allowed: {0}
# Bootstrap configuration check messages
system.config_check.warn.dir_root=The Alfresco ''dir.root'' property is set to a relative path ''{0}''. ''dir.root'' should be overridden to point to a specific folder.
system.config_check.msg.dir_root=The Alfresco root data directory (''dir.root'') is: {0}
system.config_check.err.indexes.duplicate_root_node=The store ''{0}'' has a duplicate root node entry.
system.config_check.err.missing_index=CONTENT INTEGRITY ERROR: Indexes not found for {0} stores.
system.config_check.err.missing_content=CONTENT INTEGRITY ERROR: System content not found in content store.
system.config_check.err.fix_dir_root=Ensure that the ''dir.root'' property is pointing to the correct data location.
system.config_check.msg.howto_index_recover=You may set 'index.recovery.mode=FULL' if you need to rebuild the indexes.
system.config_check.warn.starting_with_errors=Alfresco is starting with errors.
# Schema comparator messages
# Log messages...
system.schema_comp.debug.no_ref_file=No reference schema file, expected: {0}
system.schema_comp.debug.time_taken=Schema validation took {0} ms
system.schema_comp.info.all_ok=Compared database schema with reference schema (all OK): {0}
system.schema_comp.warn.problems_found=Schema validation found {0} potential problems, results written to: {1}
# Generic differencing, validation and redundancy messages...
system.schema_comp.diff=Difference: expected {0} {1}="{2}", but was {3}="{4}"
system.schema_comp.diff.ref_only=Difference: missing {0} from database, expected at path: {1}
system.schema_comp.diff.target_only=Difference: unexpected {0} found in database with path: {1}
system.schema_comp.redundant_obj=Redundancy: {0} items matching {1}, matches: {2}
system.schema_comp.redundant_obj.many_matches={0} redundant items? reference: {1}, matches: {2} and {3} more...
system.schema_comp.validation=Validation: {0} {1}="{2}" fails to match rule: {3}
# Specific validator (implementations) messages...
system.schema_comp.name_validator=name must match pattern ''{0}''
system.schema_comp.schema_version_validator=version must be at least ''{0}''
# OpenOffice
system.openoffice.info.connection_verified=The connection to OpenOffice has been established.
system.openoffice.err.connection_failed=An initial OpenOffice connection could not be established.
system.openoffice.err.connection_lost=The OpenOffice connection has been lost.
system.openoffice.err.connection_remade=The OpenOffice connection was re-established.
# Locks
system.locks.err.failed_to_acquire_lock=Failed to get lock ''{0}'' using token ''{1}''.
system.locks.err.lock_resource_missing=Failed to manipulate lock ''{0}'' using token ''{1}''. The lock resource no longer exists.
system.locks.err.lock_update_count=Failed to update lock ''{0}'' using token ''{1}''. {2} locks were updated when {3} should have been.
system.locks.err.failed_to_release_lock=Failed to release lock ''{0}'' using token ''{1}''. The lock has expired and been taken by another process.
system.locks.err.excl_lock_exists=Failed to get lock ''{0}'' using token ''{1}''. An exclusive lock exists: {2}
# Multi-Tenant
system.mt.warn.upgrade_mt_admin_context=Please update your alfresco/extension/mt/mt-admin-context.xml (to use latest alfresco/extension/mt/mt-admin-context.xml.sample).
system.mt.disabled=Tenant is disabled: {0}
# Usages
system.usage.err.no_txn=RepoUsageComponent must be called in a transaction.
system.usage.err.no_txn_readwrite=RepoUsageComponent must be called in a read-write transaction.
# START TRANSLATION
system.usage.warn.limit_users_approached=\u0414\u043e\u0441\u0442\u0438\u0433\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0439 \u043f\u0440\u0435\u0434\u0435\u043b \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 {0}. \u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0432 \u0434\u0430\u043d\u043d\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u0435: {1}.
system.usage.warn.limit_users_reached=\u0414\u043e\u0441\u0442\u0438\u0433\u043d\u0443\u0442 \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0439 \u043f\u0440\u0435\u0434\u0435\u043b \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 {0}. \u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0432 \u0434\u0430\u043d\u043d\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u0435: {1}.
system.usage.warn.limit_documents_approached=\u0414\u043e\u0441\u0442\u0438\u0433\u0430\u0435\u0442\u0441\u044f \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0439 \u043f\u0440\u0435\u0434\u0435\u043b \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 {0}. \u041e\u0431\u044a\u0435\u043a\u0442\u043e\u0432 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0432 \u0434\u0430\u043d\u043d\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u0435: {1}.
system.usage.warn.limit_documents_reached=\u0414\u043e\u0441\u0442\u0438\u0433\u043d\u0443\u0442 \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0439 \u043f\u0440\u0435\u0434\u0435\u043b \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 {0}. \u041e\u0431\u044a\u0435\u043a\u0442\u043e\u0432 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0432 \u0434\u0430\u043d\u043d\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u0435: {1}.
system.usage.err.limit_users_exceeded=\u041f\u0440\u0435\u0432\u044b\u0448\u0435\u043d \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0439 \u043f\u0440\u0435\u0434\u0435\u043b \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 {0}. \u0421\u0435\u0439\u0447\u0430\u0441 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439: {1}.
system.usage.err.limit_users_exceeded_verbose=\u041f\u0440\u0435\u0432\u044b\u0448\u0435\u043d \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0439 \u043f\u0440\u0435\u0434\u0435\u043b \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 {0}. \u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438: {1}
system.usage.err.limit_documents_exceeded=\u041f\u0440\u0435\u0432\u044b\u0448\u0435\u043d \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0439 \u043f\u0440\u0435\u0434\u0435\u043b \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 {0}. \u0421\u0435\u0439\u0447\u0430\u0441 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0435 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430: {1}.
system.usage.err.limit_license_expiring=\u0421\u0440\u043e\u043a \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 Alfresco \u0438\u0441\u0442\u0435\u043a\u0430\u0435\u0442 \u0447\u0435\u0440\u0435\u0437 {0} \u0434\u043d.
system.usage.err.limit_license_expired=\u0418\u0441\u0442\u0435\u043a \u0441\u0440\u043e\u043a \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0434\u0430\u043d\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 Alfresco.
# License
system.license.msg.unknown=\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e
system.license.msg.unlimited=\u041d\u0435\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043e
system.license.msg.does_not_expire=\u0421\u0440\u043e\u043a \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043d\u0435 \u0438\u0441\u0442\u0435\u043a\u0430\u0435\u0442
system.license.msg.reloaded=\u0414\u0430\u043d\u043d\u0430\u044f \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f Alfresco \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e.
system.license.err.reloadFailed=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044e: {0}
# END TRANSLATION
# Startup message
system.info.startup=Alfresco started ({0}{1}{2}). Current version: {3} schema {4}. Originally installed version: {5} schema {6}.
system.warn.readonly=Alfresco is currently in read-only mode. Please check your license.

View File

@@ -0,0 +1,45 @@
# Display labels for System Model
sys_systemmodel.description=\u041c\u043e\u0434\u0435\u043b\u044c \u0441\u0438\u0441\u0442\u0435\u043c\u044b Alfresco
sys_systemmodel.type.sys_base.title=\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0439
sys_systemmodel.type.sys_base.description=\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0439
sys_systemmodel.type.sys_container.title=\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440
sys_systemmodel.type.sys_container.description=\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440
sys_systemmodel.association.sys_children.title=\u0414\u043e\u0447\u0435\u0440\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b
sys_systemmodel.association.sys_children.description=\u0414\u043e\u0447\u0435\u0440\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b
sys_systemmodel.type.sys_store_root.title=\u041a\u043e\u0440\u0435\u043d\u044c \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430
sys_systemmodel.type.sys_store_root.description=\u041a\u043e\u0440\u0435\u043d\u044c \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430
sys_systemmodel.type.sys_reference.title=\u0421\u0441\u044b\u043b\u043a\u0430
sys_systemmodel.type.sys_reference.description=\u0421\u0441\u044b\u043b\u043a\u0430
sys_systemmodel.property.sys_reference.title=\u0421\u0441\u044b\u043b\u043a\u0430
sys_systemmodel.property.sys_reference.description=\u0421\u0441\u044b\u043b\u043a\u0430
sys_systemmodel.property.sys_locale.title=\u042f\u0437\u044b\u043a\u043e\u0432\u043e\u0439 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442
sys_systemmodel.property.sys_locale.description=\u042f\u0437\u044b\u043a\u043e\u0432\u043e\u0439 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442
sys_systemmodel.aspect.aspect_root.title=\u041a\u043e\u0440\u0435\u043d\u044c
sys_systemmodel.aspect.aspect_root.description=\u041a\u043e\u0440\u0435\u043d\u044c
sys_systemmodel.aspect.sys_referenceable.title=\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u0441\u0441\u044b\u043b\u043a\u0438
sys_systemmodel.aspect.sys_referenceable.description=\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u0441\u0441\u044b\u043b\u043a\u0438
sys_systemmodel.property.sys_store-protocol.title=\u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430
sys_systemmodel.property.sys_store-protocol.description=\u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430
sys_systemmodel.property.sys_store-identifier.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430
sys_systemmodel.property.sys_store-identifier.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430
sys_systemmodel.property.sys_node-uuid.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0437\u043b\u0430
sys_systemmodel.property.sys_node-uuid.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0437\u043b\u0430
sys_systemmodel.property.sys_node-dbid.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0411\u0414 \u0443\u0437\u043b\u0430
sys_systemmodel.property.sys_node-dbid.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0411\u0414 \u0443\u0437\u043b\u0430
sys_systemmodel.aspect.sys_archived.title=\u0410\u0440\u0445\u0438\u0432\u043d\u044b\u0439
sys_systemmodel.aspect.sys_archived.description=\u0410\u0440\u0445\u0438\u0432\u043d\u044b\u0439 \u0443\u0437\u0435\u043b
sys_systemmodel.property.sys_archivedBy.title=\u041a\u0442\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043b
sys_systemmodel.property.sys_archivedBy.description=\u041a\u0442\u043e \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043b
sys_systemmodel.property.sys_archivedDate.title=\u0414\u0430\u0442\u0430 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f
sys_systemmodel.property.sys_archivedDate.description=\u0414\u0430\u0442\u0430 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f
sys_systemmodel.property.sys_archivedOriginalPath.title=\u0418\u0441\u0445\u043e\u0434\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435
sys_systemmodel.property.sys_archivedOriginalPath.description=\u0418\u0441\u0445\u043e\u0434\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435

View File

@@ -0,0 +1,5 @@
# Template Service externalised display strings
error_no_template=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043d\u0430\u0439\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d ''{0}''. \u041e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u043a \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c\u0443 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0443.
error_template_fail=\u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0448\u0430\u0431\u043b\u043e\u043d\u0430 ''{0}''. \u041e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u043a \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c\u0443 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0443.
error_template_io=\u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u0432\u043e\u0434\u0430-\u0432\u044b\u0432\u043e\u0434\u0430 \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0448\u0430\u0431\u043b\u043e\u043d\u0430 ''{0}''. \u041e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u043a \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c\u0443 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0443.

View File

@@ -0,0 +1,77 @@
#translatable.ftl
templates.translatable.translatable=\u041f\u0435\u0440\u0435\u0432\u043e\u0434\u0438\u043c\u044b\u0435:
templates.translatable.yes=\u0414\u0430
templates.translatable.no=\u041d\u0435\u0442
templates.translatable.no_document_found=\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u044b
#show_audit.ftl
templates.show_audit.current_document_audit_info=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u0442\u0435\u043a\u0443\u0449\u0435\u043c \u0430\u0443\u0434\u0438\u0442\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432
templates.show_audit.name=\u0418\u043c\u044f:
templates.show_audit.user_name=\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f
templates.show_audit.application=\u041f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
templates.show_audit.method=\u041c\u0435\u0442\u043e\u0434
templates.show_audit.timestamp=\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438
templates.show_audit.values=\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0430\u0443\u0434\u0438\u0442\u0430
templates.show_audit.current_space_audit_info=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u0442\u0435\u043a\u0443\u0449\u0435\u043c \u0430\u0443\u0434\u0438\u0442\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430:
#recent_docs.ftl
templates.recent_docs.documents_created_or_modified_in_the_last_week=\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b, \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0435 \u0438\u043b\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u043d\u044b\u0435 \u0432 \u0442\u0435\u0447\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0439 \u043d\u0435\u0434\u0435\u043b\u0438
templates.recent_docs.name=\u0418\u043c\u044f
templates.recent_docs.created_date=\u0414\u0430\u0442\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f
templates.recent_docs.modified_date=\u0414\u0430\u0442\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f
#my_summary.ftl
templates.my_summary.name=\u0418\u043c\u044f:
templates.my_summary.user=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c:
templates.my_summary.home_space_location=\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430:
templates.my_summary.items_in_home_space=\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0432 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u043c \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0435:
templates.my_summary.items_in_company_space=\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0432 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438:
#my_docs.ftl
templates.my_docs.name=\u0418\u043c\u044f
templates.my_docs.size=\u0420\u0430\u0437\u043c\u0435\u0440
templates.my_docs.modified.date=\u0414\u0430\u0442\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f
templates.my_docs.locked=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043e
templates.my_docs.kb=\u041a\u0411
templates.my_docs.yes=\u0414\u0430
#localizable.ftl
templates.localizable.localisable=\u041b\u043e\u043a\u0430\u043b\u0438\u0437\u0443\u0435\u043c\u044b\u0435:
templates.localizable.yes=\u0414\u0430
templates.localizable.locale=\u042f\u0437\u044b\u043a\u043e\u0432\u043e\u0439 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442:
templates.localizable.no=\u041d\u0435\u0442
templates.localizable.no_document_found=\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u044b!
#general_example.ftl
templates.general_example.example_template_start======\u041d\u0430\u0447\u0430\u043b\u043e \u043f\u0440\u0438\u043c\u0435\u0440\u0430 \u0448\u0430\u0431\u043b\u043e\u043d\u0430=====
templates.general_example.company_home_space=\u0414\u043e\u043c\u0430\u0448\u043d\u0435\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438:
templates.general_example.my_home_space=\u041c\u043e\u0435 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e:
templates.general_example.company_home_children_count=\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0434\u043e\u0447\u0435\u0440\u043d\u0438\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438:
templates.general_example.company_home_first_child_node_name=\u0418\u043c\u044f \u043f\u0435\u0440\u0432\u043e\u0433\u043e \u0434\u043e\u0447\u0435\u0440\u043d\u0435\u0433\u043e \u0443\u0437\u043b\u0430 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438:
templates.general_example.current_document_name=\u0418\u043c\u044f \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430:
templates.general_example.current_space_name=\u0418\u043c\u044f \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430:
templates.general_example.list_of_child_spaces_in_my_home_space=\u0421\u043f\u0438\u0441\u043e\u043a \u0434\u043e\u0447\u0435\u0440\u043d\u0438\u0445 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432 \u0432 \u043c\u043e\u0435\u043c \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u043c \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0435:
templates.general_example.path=\u041f\u0443\u0442\u044c:
templates.general_example.list_of_docs_in_my_home_space=\u0421\u043f\u0438\u0441\u043e\u043a \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u0432 \u043c\u043e\u0435\u043c \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u043c \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0435 (\u0432 \u0441\u0442\u0440\u043e\u043a\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442, JPG-\u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u044e\u0442\u0441\u044f \u043a\u0430\u043a \u044d\u0441\u043a\u0438\u0437\u044b):
templates.general_example.assoc_example=\u0421\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u043f\u0440\u0438\u043c\u0435\u0440:
templates.general_example.example_template_end======\u041a\u043e\u043d\u0435\u0446 \u043f\u0440\u0438\u043c\u0435\u0440\u0430 \u0448\u0430\u0431\u043b\u043e\u043d\u0430=====
#doc_info.ftl
templates.doc_info.current_document_info=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e \u0442\u0435\u043a\u0443\u0449\u0435\u043c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0435:
templates.doc_info.name=\u0418\u043c\u044f:
templates.doc_info.ref=\u0421\u0441\u044b\u043b\u043a\u0430:
templates.doc_info.type=\u0422\u0438\u043f:
templates.doc_info.dbid=DBID:
templates.doc_info.content_url=URL-\u0430\u0434\u0440\u0435\u0441 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430:
templates.doc_info.locked=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043e:
templates.doc_info.counter=\u0421\u0447\u0435\u0442\u0447\u0438\u043a:
templates.doc_info.aspects=\u0410\u0441\u043f\u0435\u043a\u0442\u044b:
templates.doc_info.assocs=\u0410\u0441\u0441\u043e\u0446\u0438\u0430\u0446\u0438\u0438:
templates.doc_info.properties=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430:
templates.doc_info.no_document_found=\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u044b!
#invite_user_email.ftl
templates.invite_user_email.invited_to_space=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {1} \u043f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u043b \u0432\u0430\u0441 \u0432 ''{0}''
templates.invite_user_email.role=\u0412\u0430\u043c \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0430 \u0440\u043e\u043b\u044c: {0}
templates.invite_user_email.you_can_view_the_space=\u0414\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u043c\u043e\u0436\u043d\u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043b\u0438\u0435\u043d\u0442\u0430
templates.invite_user_email.regards=\u0421 \u043d\u0430\u0438\u043b\u0443\u0447\u0448\u0438\u043c\u0438 \u043f\u043e\u0436\u0435\u043b\u0430\u043d\u0438\u044f\u043c\u0438

View File

@@ -0,0 +1 @@
tenant_console.help=alfresco/messages/tenant-interpreter-help.txt

View File

@@ -0,0 +1,92 @@
# Display labels for Transfer Model
trx_applicationmodel.description=\u041c\u043e\u0434\u0435\u043b\u044c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 Alfresco
trx_applicationmodel.type.trx_transferGroup.title=\u0413\u0440\u0443\u043f\u043f\u0430 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
trx_applicationmodel.type.trx_transferGroup.description=\u042d\u0442\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0433\u0440\u0443\u043f\u043f\u044b \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
trx_applicationmodel.type.trx_transferLock.title=\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
trx_applicationmodel.type.trx_transferLock.description=\u0422\u0438\u043f \u0443\u0437\u043b\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0439 \u0434\u043b\u044f \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0437\u043b\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
trx_applicationmodel.type.trx_transferRecord.title=\u0417\u0430\u043f\u0438\u0441\u044c \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
trx_applicationmodel.type.trx_transferRecord.description=\u0422\u0438\u043f \u0443\u0437\u043b\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0439 \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0435
trx_applicationmodel.type.trx_tempTransferStore.title=\u0412\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0435 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
trx_applicationmodel.type.trx_tempTransferStore.description=\u0422\u0438\u043f \u0443\u0437\u043b\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0439 \u0434\u043b\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043f\u043e\u0442\u0435\u0440\u044f\u043d\u043d\u044b\u0445 \u0432\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0443\u0437\u043b\u043e\u0432
trx_applicationmodel.type.trx_transferReport.title=\u041e\u0442\u0447\u0435\u0442 \u043e \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0435
trx_applicationmodel.type.trx_transferReport.description=\u041e\u0442\u0447\u0435\u0442 \u043e \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0435
trx_applicationmodel.type.trx_transferReportDest.title=\u041e\u0442\u0447\u0435\u0442 \u043e \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0435 \u0438\u0437 \u043c\u0435\u0441\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f
trx_applicationmodel.type.trx_transferReportDest.description=\u041e\u0442\u0447\u0435\u0442 \u043e \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0435 \u0438\u0437 \u043c\u0435\u0441\u0442\u0430 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f
trx_applicationmodel.type.trx_transferTarget.title=\u0426\u0435\u043b\u0435\u0432\u0430\u044f \u043f\u0430\u043f\u043a\u0430 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
trx_applicationmodel.type.trx_transferTarget.description=\u042d\u0442\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0446\u0435\u043b\u0435\u0432\u043e\u0439 \u043f\u0430\u043f\u043a\u0438 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
trx_applicationmodel.type.trx_fileTransferTarget.title=\u0426\u0435\u043b\u0435\u0432\u0430\u044f \u043f\u0430\u043f\u043a\u0430 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 \u0444\u0430\u0439\u043b\u043e\u0432
trx_applicationmodel.type.trx_fileTransferTarget.description=\u042d\u0442\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0446\u0435\u043b\u0435\u0432\u043e\u0439 \u043f\u0430\u043f\u043a\u0438 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 \u0444\u0430\u0439\u043b\u043e\u0432
trx_applicationmodel.property.trx_endpointhost.title=\u0425\u043e\u0441\u0442 \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0439 \u0442\u043e\u0447\u043a\u0438
trx_applicationmodel.property.trx_endpointhost.description=\u0425\u043e\u0441\u0442 \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0439 \u0442\u043e\u0447\u043a\u0438
trx_applicationmodel.property.trx_endpointport.title=\u041f\u043e\u0440\u0442 \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0439 \u0442\u043e\u0447\u043a\u0438
trx_applicationmodel.property.trx_endpointport.description=\u041f\u043e\u0440\u0442 \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0439 \u0442\u043e\u0447\u043a\u0438
trx_applicationmodel.property.trx_endpointpath.title=\u041f\u0443\u0442\u044c \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0439 \u0442\u043e\u0447\u043a\u0438
trx_applicationmodel.property.trx_endpointpath.description=\u041f\u0443\u0442\u044c \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0439 \u0442\u043e\u0447\u043a\u0438
trx_applicationmodel.property.trx_endpointprotocol.title=\u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0439 \u0442\u043e\u0447\u043a\u0438
trx_applicationmodel.property.trx_endpointprotocol.description=\u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0439 \u0442\u043e\u0447\u043a\u0438
trx_applicationmodel.property.trx_enabled.title=\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u043e
trx_applicationmodel.property.trx_enabled.description=\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u043e \u0438\u043b\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u043e
trx_applicationmodel.property.trx_username.title=\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f
trx_applicationmodel.property.trx_username.description=\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f
trx_applicationmodel.property.trx_password.title=\u041f\u0430\u0440\u043e\u043b\u044c
trx_applicationmodel.property.trx_password.description=\u041f\u0430\u0440\u043e\u043b\u044c
trx_applicationmodel.property.trx_progressPosition.title=\u041f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435
trx_applicationmodel.property.trx_progressPosition.description=\u041f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435
trx_applicationmodel.property.trx_progressEndpoint.title=\u041a\u043e\u043d\u0435\u0447\u043d\u0430\u044f \u0442\u043e\u0447\u043a\u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
trx_applicationmodel.property.trx_progressEndpoint.description=\u041a\u043e\u043d\u0435\u0447\u043d\u0430\u044f \u0442\u043e\u0447\u043a\u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
trx_applicationmodel.property.trx_transferStatus.title=\u0421\u0442\u0430\u0442\u0443\u0441 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
trx_applicationmodel.property.trx_transferStatus.description=\u0421\u0442\u0430\u0442\u0443\u0441 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
trx_applicationmodel.property.trx_transferError.title=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
trx_applicationmodel.property.trx_transferError.description=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
trx_applicationmodel.property.trx_transferId.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
trx_applicationmodel.property.trx_transferId.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
trx_applicationmodel.property.trx_invadedBy.title=\u041a\u0435\u043c \u0437\u0430\u043d\u044f\u0442
trx_applicationmodel.property.trx_invadedBy.description=\u0414\u0430\u043d\u043d\u044b\u0435 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0438 \u0437\u0430\u043d\u044f\u0442\u044b \u044d\u0442\u0438\u043c \u0443\u0437\u043b\u043e\u043c
trx_applicationmodel.property.trx_repositoryId.title=\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439.
trx_applicationmodel.property.trx_repositoryId.description=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f, \u0438\u0437 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0434\u0430\u043d\u043d\u044b\u0439 \u0443\u0437\u0435\u043b.
trx_applicationmodel.property.trx_fromRepositoryId.title=\u0418\u0437 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0430 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f
trx_applicationmodel.property.trx_fromContent.description=URL-\u0430\u0434\u0440\u0435\u0441\u0430 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u043f\u0435\u0440\u0435\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0435 \u0441 \u0434\u0430\u043d\u043d\u044b\u043c \u0443\u0437\u043b\u043e\u043c
trx_applicationmodel.association.trx_orphan.title=\u041f\u043e\u0442\u0435\u0440\u044f\u043d\u043d\u044b\u0439 \u0443\u0437\u0435\u043b \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
trx_applicationmodel.association.trx_orphan.description=\u041f\u043e\u0442\u0435\u0440\u044f\u043d\u043d\u044b\u0439 \u0443\u0437\u0435\u043b \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
trx_applicationmodel.association.trx_fileTransferRootNode.title=\u041a\u043e\u0440\u043d\u0435\u0432\u0430\u044f \u043f\u0430\u043f\u043a\u0430
trx_applicationmodel.association.trx_fileTransferRootNode.description=\u0423\u0437\u0435\u043b \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u0438, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u043f\u0430\u043f\u043a\u0435 \u0446\u0435\u043b\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430
trx_applicationmodel.aspect.trx_transferRelated.title=\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0439 \u0441 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u043e\u043c
trx_applicationmodel.aspect.trx_transferRelated.description=\u0423\u0437\u043b\u044b \u0441 \u0434\u0430\u043d\u043d\u044b\u043c \u0430\u0441\u043f\u0435\u043a\u0442\u043e\u043c \u0441\u0432\u044f\u0437\u0430\u043d\u044b \u0441 \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u044b\u043c \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u043e\u043c.
trx_applicationmodel.aspect.trx_enableable.title=\u041c\u043e\u0436\u043d\u043e \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c
trx_applicationmodel.aspect.trx_enableable.description=\u041c\u043e\u0436\u043d\u043e \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c
trx_applicationmodel.aspect.trx_transferred.name=\u041f\u0435\u0440\u0435\u043d\u0435\u0441\u0435\u043d\u043d\u044b\u0435
trx_applicationmodel.aspect.trx_transferred.description=\u0423\u0437\u043b\u044b \u0441 \u0442\u0430\u043a\u0438\u043c \u0430\u0441\u043f\u0435\u043a\u0442\u043e\u043c \u043f\u0435\u0440\u0435\u043d\u0435\u0441\u0435\u043d\u044b \u0438\u0437 \u043e\u0434\u043d\u043e\u0433\u043e \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044f \u0432 \u0434\u0440\u0443\u0433\u043e\u0439
trx_applicationmodel.aspect.trx_alien.name=\u041f\u043e\u0441\u0442\u043e\u0440\u043e\u043d\u043d\u0438\u0439 \u0443\u0437\u0435\u043b \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
trx_applicationmodel.aspect.trx_alien.description=\u0423\u0437\u043b\u044b \u0441 \u0442\u0430\u043a\u0438\u043c \u0430\u0441\u043f\u0435\u043a\u0442\u043e\u043c - \u044d\u0442\u043e \u0438\u043b\u0438 \u043f\u043e\u0441\u0442\u043e\u0440\u043e\u043d\u043d\u0438\u0435 \u0443\u0437\u043b\u044b \u0438\u043b\u0438 \u0443\u0437\u043b\u044b, \u0437\u0430\u043d\u044f\u0442\u044b\u0435 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043f\u043e\u0441\u0442\u043e\u0440\u043e\u043d\u043d\u0438\u043c\u0438 \u0443\u0437\u043b\u0430\u043c\u0438

View File

@@ -0,0 +1,47 @@
# Transfer service externalised display strings
transfer_service.unable_to_find_transfer_home=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043d\u0430\u0439\u0442\u0438 \u0434\u043e\u043c\u0430\u0448\u043d\u0438\u0439 \u0443\u0437\u0435\u043b \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430: {0}
transfer_service.unable_to_find_transfer_group=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043d\u0430\u0439\u0442\u0438 \u0433\u0440\u0443\u043f\u043f\u0443 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 \u0441 \u0438\u043c\u0435\u043d\u0435\u043c {0}
transfer_service.unable_to_find_transfer_target=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043d\u0430\u0439\u0442\u0438 \u0446\u0435\u043b\u0435\u0432\u043e\u0439 \u0443\u0437\u0435\u043b \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 \u0441 \u0438\u043c\u0435\u043d\u0435\u043c {0}
transfer_service.unable_to_transfer_async=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0430\u0441\u0438\u043d\u0445\u0440\u043e\u043d\u043d\u044b\u0439 \u043f\u0435\u0440\u0435\u043d\u043e\u0441
transfer_service.target_exists=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0446\u0435\u043b\u0435\u0432\u043e\u0439 \u0443\u0437\u0435\u043b \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 \u0441 \u0438\u043c\u0435\u043d\u0435\u043c {0}, \u0442\u0430\u043a \u043a\u0430\u043a \u0443\u0436\u0435 \u0435\u0441\u0442\u044c \u0446\u0435\u043b\u0435\u0432\u043e\u0439 \u0443\u0437\u0435\u043b \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c.
transfer_service.comms.unsupported_protocol=\u041d\u0435\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0439 \u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b: {0}
transfer_service.comms.unsuccessful_response=\u041f\u043e\u043b\u0443\u0447\u0435\u043d \u043a\u043e\u0434 \u043d\u0435\u0443\u0434\u0430\u0447\u043d\u043e\u0433\u043e \u043e\u0442\u0432\u0435\u0442\u0430 \u043e\u0442 \u0446\u0435\u043b\u0435\u0432\u043e\u0433\u043e \u0441\u0435\u0440\u0432\u0435\u0440\u0430: {0}, {1}
transfer_service.comms.http_request_failed=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c HTTP-\u0437\u0430\u043f\u0440\u043e\u0441 {0} \u043a \u0446\u0435\u043b\u0435\u0432\u043e\u043c\u0443 \u0443\u0437\u043b\u0443 {1}, \u0441\u0442\u0430\u0442\u0443\u0441: {2}
transfer_service.incompatible_versions=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043f\u0435\u0440\u0435\u043d\u043e\u0441 \u043c\u0435\u0436\u0434\u0443 \u043d\u0435\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u044b\u043c\u0438 \u0432\u0435\u0440\u0441\u0438\u044f\u043c\u0438 transferId:{0}, \u043e\u0442\u043a\u0443\u0434\u0430:{1}, \u043a\u0443\u0434\u0430:{2}
transfer_service.no_nodes=\u041d\u0435\u0442 \u0443\u0437\u043b\u043e\u0432 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
transfer_service.target_not_enabled=\u0426\u0435\u043b\u0435\u0432\u043e\u0439 \u0443\u0437\u0435\u043b \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 \u043d\u0435 \u0432\u043a\u043b\u044e\u0447\u0435\u043d {0}
transfer_service.cancelled=\u041f\u0435\u0440\u0435\u043d\u043e\u0441 \u043e\u0442\u043c\u0435\u043d\u0435\u043d
transfer_service.failed_to_get_transfer_status=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u0441\u0442\u0430\u0442\u0443\u0441\u0435 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 \u043e\u0442 \u0446\u0435\u043b\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430 {0}
transfer_service.target_error=\u0421\u0431\u043e\u0439 \u0446\u0435\u043b\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 \u0441 {0}
transfer_service.unknown_target_error=\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430
transfer_service.receiver.no_primary_parent_supplied=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u044c \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e \u0438\u0437 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0445 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0445 \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u0432.
transfer_service.receiver.orphans_exist=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u044c, \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0442 \u043f\u043e\u0442\u0435\u0440\u044f\u043d\u043d\u044b\u0435 \u0443\u0437\u043b\u044b
transfer_service.receiver.content_file_missing=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u0434\u0430\u0442\u044c, \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0442 \u0444\u0430\u0439\u043b\u044b \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430.
transfer_service.receiver.failed_to_create_staging_folder=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0440\u043e\u043c\u0435\u0436\u0443\u0442\u043e\u0447\u043d\u044b\u0439 \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 {0}
transfer_service.receiver.lock_folder_not_found=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043d\u0430\u0439\u0442\u0438 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438: {0}
transfer_service.receiver.temp_folder_not_found=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043d\u0430\u0439\u0442\u0438 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u0443\u044e \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 {0}: {1}
transfer_service.receiver.lock_unavailable=\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0430 \u0434\u043b\u044f \u0434\u0440\u0443\u0433\u043e\u0433\u043e \u0432\u0445\u043e\u0434\u044f\u0449\u0435\u0433\u043e \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430. \u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u043f\u0435\u0440\u0435\u043d\u043e\u0441.
transfer_service.receiver.record_folder_not_found=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043d\u0430\u0439\u0442\u0438 \u043f\u0430\u043f\u043a\u0443, \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u0443\u044e \u0434\u043b\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0432\u0445\u043e\u0434\u044f\u0449\u0435\u0433\u043e \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430: {0}
transfer_service.receiver.not_lock_owner=\u041d\u0435 \u0443\u0434\u0430\u043b\u0430\u0441\u044c \u043f\u043e\u043f\u044b\u0442\u043a\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430. \u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430 \u043d\u0435 \u0431\u044b\u043b\u0430 \u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u0430 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u043c \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u043e\u043c: {0}
transfer_service.receiver.error_ending_transfer=\u0417\u0430\u043f\u0440\u043e\u0441 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 ({0}) \u043f\u0440\u0438\u0432\u0435\u043b \u043a \u043e\u0448\u0438\u0431\u043a\u0435.
transfer_service.receiver.error_staging_snapshot=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0435 \u0444\u0430\u0439\u043b\u0430 \u0441\u043d\u0438\u043c\u043a\u0430 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 {0}
transfer_service.receiver.error_staging_content=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0435 \u0444\u0430\u0439\u043b\u0430 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 {0}. \u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u043e\u043b\u044f - {1}
transfer_service.receiver.no_snapshot_received=\u041f\u043e\u043b\u0443\u0447\u0435\u043d \u0437\u0430\u043f\u0440\u043e\u0441 \u043d\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 ({0}), \u043d\u043e \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u0444\u0430\u0439\u043b \u0441\u043d\u0438\u043c\u043a\u0430 \u043d\u0435 \u043f\u043e\u043b\u0443\u0447\u0435\u043d.
transfer_service.receiver.error_committing_transfer=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u043e\u043f\u044b\u0442\u043a\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 {0}
transfer_service.receiver.transfer_not_found=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043d\u0430\u0439\u0442\u0438 \u043a\u0430\u043a\u0438\u0435-\u043b\u0438\u0431\u043e \u0437\u0430\u043f\u0438\u0441\u0438 \u043e \u0437\u0430\u043f\u0440\u043e\u0448\u0435\u043d\u043d\u043e\u043c \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0435: {0}
transfer_service.receiver.transfer_cancelled=\u041f\u0435\u0440\u0435\u043d\u043e\u0441 \u043e\u0442\u043c\u0435\u043d\u0435\u043d: {0}
transfer_service.no_encoding=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0434\u0435\u0441\u0435\u0440\u0438\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435, \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0434\u043b\u044f \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0438 {0}
transfer_service.unable_to_deserialise=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0434\u0435\u0441\u0435\u0440\u0438\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435
transfer_service.receiver.lock_timed_out=\u0418\u0441\u0442\u0435\u043a\u043b\u043e \u0432\u0440\u0435\u043c\u044f \u043e\u0436\u0438\u0434\u0430\u043d\u0438\u044f \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 transferId: {0}
transfer_service.receiver.lock_not_found=\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430
transfer_service.receiver.error_start=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043f\u0435\u0440\u0435\u043d\u043e\u0441
transfer_service.receiver.error_generating_requisite=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0440\u0435\u0441\u0443\u0440\u0441 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430
transfer_service.receiver.error.transfer_to_self=\u041f\u0435\u0440\u0435\u043d\u043e\u0441 \u0432 \u0442\u043e\u0442 \u0436\u0435 \u0441\u0430\u043c\u044b\u0439 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u043d\u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d
transfer_service.missing_endpoint_path=\u041d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d \u043f\u0443\u0442\u044c \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0439 \u0442\u043e\u0447\u043a\u0438 \u0434\u043b\u044f \u0446\u0435\u043b\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430: {0}
transfer_service.missing_endpoint_protocol=\u041d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d \u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0439 \u0442\u043e\u0447\u043a\u0438 \u0434\u043b\u044f \u0446\u0435\u043b\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430: {0}
transfer_service.missing_endpoint_host=\u041d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d \u0445\u043e\u0441\u0442 \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0439 \u0442\u043e\u0447\u043a\u0438 \u0434\u043b\u044f \u0446\u0435\u043b\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430: {0}
transfer_service.missing_endpoint_port=\u041d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d \u043f\u043e\u0440\u0442 \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0439 \u0442\u043e\u0447\u043a\u0438 \u0434\u043b\u044f \u0446\u0435\u043b\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430: {0}
transfer_service.missing_endpoint_username=\u041d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043e \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0439 \u0442\u043e\u0447\u043a\u0438 \u0434\u043b\u044f \u0446\u0435\u043b\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430: {0}
transfer_service.missing_endpoint_password=\u041d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d \u043f\u0430\u0440\u043e\u043b\u044c \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0439 \u0442\u043e\u0447\u043a\u0438 \u0434\u043b\u044f \u0446\u0435\u043b\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0430: {0}

View File

@@ -0,0 +1,12 @@
bfsit.page.title=\u0421\u0440\u0435\u0434\u0441\u0442\u0432\u043e \u043c\u0430\u0441\u0441\u043e\u0432\u043e\u0433\u043e \u0438\u043c\u043f\u043e\u0440\u0442\u0430 \u0432 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u0435
bfsit.submit=\u0418\u043d\u0438\u0446\u0438\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043c\u0430\u0441\u0441\u043e\u0432\u044b\u0439 \u0438\u043c\u043f\u043e\u0440\u0442
bfsit.label.sourceDirectory=\u041f\u0443\u0442\u044c \u043a \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0443 \u0438\u043c\u043f\u043e\u0440\u0442\u0430, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u043e\u043c\u0443 \u0441 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435\u043c
bfsit.label.contentStore=\u0425\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430
bfsit.label.targetPath=\u041f\u0443\u0442\u044c \u043a \u0446\u0435\u043b\u0435\u0432\u043e\u043c\u0443 \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u044e
bfsit.label.replaceExisting=\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0444\u0430\u0439\u043b\u044b
bfsit.label.replaceExisting.unchecked=\u0415\u0441\u043b\u0438 \u043d\u0435 \u043e\u0442\u043c\u0435\u0447\u0435\u043d, \u043f\u0440\u043e\u043f\u0443\u0441\u043a\u0430\u044e\u0442\u0441\u044f \u0444\u0430\u0439\u043b\u044b, \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0432 \u0434\u0430\u043d\u043d\u043e\u043c \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0438
bfsit.error.sourceDirectory=\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u0435\u043d
bfsit.error.contentStore=\u0425\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e
bfsit.error.targetPath=\u0426\u0435\u043b\u0435\u0432\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e

View File

@@ -0,0 +1,20 @@
# Version service externalised display strings
version_service.err_restore_exists=The node {0} cannot be restored since it already exists.
version_service.err_not_found=The current version label of the node does not exist in the version history.
version_service.err_unsupported=The current implementation of the version service does not support the creation of branches.
version_service.err_one_preceeding=The current implementation of the version service only supports one preceding version.
version_service.err_restore_no_version=The node {0} cannot be restored since there is no version information available for this node.
version_service.err_revert_mismatch=The version provided to revert to does not come from the nodes version history.
version_service.migration.patch.noop=Nothing to do (no version histories found in old version store)
version_service.migration.patch.complete=Migration completed - migrated {0} (out of {1}) of old version histories (to new version store) in {2} secs (deleteImmediately={3})
version_service.migration.patch.in_progress=Migration in progress - migrated {0} (out of {1}) of old version histories (to new version store) in {2} secs (deleteImmediately={3})
version_service.migration.patch.warn.skip1=Skipped migration of {0} (out of {1}) batches of old version histories (migrate incomplete) in {2} secs
version_service.migration.patch.warn.skip2=Skipped migration of {0} old version histories (already migrated)
version_service.migration.delete.complete=Completed background deletion of {0} (out of {1}) migrated version histories (from old version store) in {2} secs
version_service.migration.delete.warn.skip1=Skipped background deletion of {0} (out of {1}) batches old version histories (delete incomplete) in {2} secs
version_service.migration.delete.warn.skip2=Skipped background deletion of {0} old version histories (not migrated)

View File

@@ -0,0 +1,17 @@
# WCM service related messages
# WCM actions
wcm-submit.title=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u043d\u044b\u0435 \u0430\u043a\u0442\u0438\u0432\u044b \u0438\u0437 \u043f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u044b \u0430\u0432\u0442\u043e\u0440\u0430 WCM \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0443\u044e \u043f\u0440\u043e\u043c\u0435\u0436\u0443\u0442\u043e\u0447\u043d\u0443\u044e \u043f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u0443
wcm-submit.description=\u041f\u0440\u0438 \u044d\u0442\u043e\u043c \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u043d\u044b\u0435 \u0430\u043a\u0442\u0438\u0432\u044b \u0438\u0437 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0441\u043f\u0438\u0441\u043a\u0430 \u0438\u043b\u0438 \u0432\u0441\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u043d\u044b\u0435 \u0430\u043a\u0442\u0438\u0432\u044b (\u0435\u0441\u043b\u0438 \u0441\u043f\u0438\u0441\u043e\u043a \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d/\u043f\u0443\u0441\u0442)
wcm-submit.sandbox-id.display-label=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430 \u043f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u044b
wcm-submit.path-list.display-label=\u0421\u043f\u0438\u0441\u043e\u043a \u043f\u0443\u0442\u0435\u0439 \u043a \u0430\u043a\u0442\u0438\u0432\u0430\u043c (\u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430 \u043f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u044b)
wcm-undo.title=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u043d\u044b\u0435 \u0430\u043a\u0442\u0438\u0432\u044b \u0432 \u043f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u0435 WCM
wcm-undo.description=\u041f\u0440\u0438 \u044d\u0442\u043e\u043c \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u044b/\u043e\u0431\u0440\u0430\u0449\u0435\u043d\u044b \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u043d\u044b\u0435 \u0430\u043a\u0442\u0438\u0432\u044b \u0438\u0437 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0441\u043f\u0438\u0441\u043a\u0430 \u0438\u043b\u0438 \u0432\u0441\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u043d\u044b\u0435 \u0430\u043a\u0442\u0438\u0432\u044b (\u0435\u0441\u043b\u0438 \u0441\u043f\u0438\u0441\u043e\u043a \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d/\u043f\u0443\u0441\u0442)
wcm-undo.sandbox-id.display-label=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430 \u043f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u044b
wcm-undo.path-list.display-label=\u0421\u043f\u0438\u0441\u043e\u043a \u043f\u0443\u0442\u0435\u0439 \u043a \u0430\u043a\u0442\u0438\u0432\u0430\u043c (\u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430 \u043f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u044b)
wcm-revert-snapshot.title=\u041e\u0431\u0440\u0430\u0442\u0438\u0442\u044c (\u043f\u0435\u0440\u0435\u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043a\u043e\u043f\u0438\u0438) \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u043f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u044b WCM \u043a \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u043c\u0443 \u0441\u043d\u0438\u043c\u043a\u0443
wcm-revert-snapshot.description=\u041f\u0440\u0438 \u044d\u0442\u043e\u043c \u0432\u0441\u0435 \u0430\u043a\u0442\u0438\u0432\u044b \u0432 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u043f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u044b WCM \u043e\u0431\u0440\u0430\u0449\u0430\u044e\u0442\u0441\u044f \u043a \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 \u0441\u043d\u0438\u043c\u043a\u0430
wcm-revert-snapshot.version.display-label=\u0412\u0435\u0440\u0441\u0438\u044f \u0441\u043d\u0438\u043c\u043a\u0430, \u043a \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u044c\u0441\u044f

View File

@@ -0,0 +1,209 @@
# Display labels for WCM Application Model
wca_applicationmodel.description=Alfresco WCM Application Model
wca_applicationmodel.type.wca_webfolder.title=WCM Web Project Folder
wca_applicationmodel.type.wca_webfolder.description=WCM Web Project Folder
wca_applicationmodel.property.wca_avmstore.title=AVM Store Root
wca_applicationmodel.property.wca_avmstore.description=AVM Store Root
wca_applicationmodel.property.wca_defaultwebapp.title=Default Webapp
wca_applicationmodel.property.wca_defaultwebapp.description=Default Webapp
wca_applicationmodel.property.wca_deployto.title=Deploy To
wca_applicationmodel.property.wca_deployto.description=Deploy To
wca_applicationmodel.property.wca_selecteddeployto.title=Servers Selected For Deployment
wca_applicationmodel.property.wca_selecteddeployto.description=Servers Selected For Deployment
wca_applicationmodel.property.wca_selecteddeployversion.title=Snapshot Version Selected For Deployment
wca_applicationmodel.property.wca_selecteddeployversion.description=Snapshot Version Selected For Deployment
wca_applicationmodel.property.wca_issource.title=Used as a template website
wca_applicationmodel.property.wca_issource.description=Used as a template website
wca_applicationmodel.property.wca_previewprovidername.title=Preview Provider
wca_applicationmodel.property.wca_previewprovidername.description=Preview Provider
wca_applicationmodel.association.wca_webuser.title=Website User
wca_applicationmodel.association.wca_webuser.description=Website User
wca_applicationmodel.association.wca_webform.title=Website Web Form
wca_applicationmodel.association.wca_webform.description=Website Web Form
wca_applicationmodel.association.wca_webworkflowdefaults.title=Web workflow defaults
wca_applicationmodel.association.wca_webworkflowdefaults.description=Web workflow defaults
wca_applicationmodel.association.wca_deploymentreport.title=Deployment Report
wca_applicationmodel.association.wca_deploymentreport.description=Deployment Report
wca_applicationmodel.association.wca_deploymentserver.title=Deployment Server
wca_applicationmodel.association.wca_deploymentserver.description=Deployment Server
wca_applicationmodel.association.wca_deploymentattempt.title=Deployment attempt
wca_applicationmodel.association.wca_deploymentattempt.description=Deployment attempt
wca_applicationmodel.type.wca_webuser.title=Website User Information
wca_applicationmodel.type.wca_webuser.description=Website User Information
wca_applicationmodel.property.wca_username.title=Website User's Name
wca_applicationmodel.property.wca_username.description=Website User's Name
wca_applicationmodel.property.wca_role.title=Website User's Role
wca_applicationmodel.property.wca_role.description=Website User's Role
wca_applicationmodel.type.wca_webform.title=Website Web Form
wca_applicationmodel.type.wca_webform.description=Website Web Form
wca_applicationmodel.property.wca_formname.title=Website Web Form's Name
wca_applicationmodel.property.wca_formname.description=Website Web Form's Name
wca_applicationmodel.association.wca_webformtemplate.title=Website Web Form Template
wca_applicationmodel.association.wca_webformtemplate.description=Website Web Form Template
wca_applicationmodel.association.wca_workflowdefaults.title=Workflow defaults
wca_applicationmodel.association.wca_workflowdefaults.description=Workflow defaults
wca_applicationmodel.type.wca_webformtemplate.title=Website Web Form Template
wca_applicationmodel.type.wca_webformtemplate.description=Website Web Form Template
wca_applicationmodel.property.wca_baserenderingenginetemplatename.title=Base Rendering Engine Template Name
wca_applicationmodel.property.wca_baserenderingenginetemplatename.description=Base Rendering Engine Template Name
wca_applicationmodel.type.wca_workflowdefaults.title=Workflow Defaults
wca_applicationmodel.type.wca_workflowdefaults.description=Workflow Defaults
wca_applicationmodel.property.wca_workflowname.title=Workflow Name
wca_applicationmodel.property.wca_workflowname.description=Workflow Name
wca_applicationmodel.property.wca_workflowdefaultproperties.title=Workflow Default Properties
wca_applicationmodel.property.wca_workflowdefaultproperties.description=Workflow Default Properties
wca_applicationmodel.type.wca_webworkflowdefaults.title=Web Workflow Defaults
wca_applicationmodel.type.wca_webworkflowdefaults.description=Web Workflow Defaults
wca_applicationmodel.type.wca_renditionproperties.title=Properties for renditions
wca_applicationmodel.type.wca_renditionproperties.description=Properties for renditions
wca_applicationmodel.property.wca_mimetypeforrendition.title=Mimetype for generated assets
wca_applicationmodel.property.wca_mimetypeforrendition.description=Mimetype for generated assets
wca_applicationmodel.type.wca_formfolder.title=XForms Capture Form Folder
wca_applicationmodel.type.wca_formfolder.description=XForms Capture Form Folder
wca_applicationmodel.type.wca_deploymentserver.title=Website Deployment Server
wca_applicationmodel.type.wca_deploymentserver.description=Website Deployment Server
wca_applicationmodel.property.wca_deploytype.title=Deployment Type
wca_applicationmodel.property.wca_deploytype.description=Deployment Type
wca_applicationmodel.property.wca_deployservertype.title=Deployment Server Type
wca_applicationmodel.property.wca_deployservertype.description=Deployment Server Type
wca_applicationmodel.property.wca_deployserverhost.title=Host
wca_applicationmodel.property.wca_deployserverhost.description=Host
wca_applicationmodel.property.wca_deployserverport.title=Port
wca_applicationmodel.property.wca_deployserverport.description=Port
wca_applicationmodel.property.wca_deployservername.title=Display Name
wca_applicationmodel.property.wca_deployservername.description=Display Name
wca_applicationmodel.property.wca_deployservergroup.title=Display Name
wca_applicationmodel.property.wca_deployservergroup.description=Display Name
wca_applicationmodel.property.wca_deployserveradaptername.title=Deployment Server Adapter Name
wca_applicationmodel.property.wca_deployserveradaptername.description=Deployment Server Adapter Name
wca_applicationmodel.property.wca_deployserverusername.title=Username
wca_applicationmodel.property.wca_deployserverusername.description=Username
wca_applicationmodel.property.wca_deployserverpassword.title=Password
wca_applicationmodel.property.wca_deployserverpassword.description=Password
wca_applicationmodel.property.wca_deployserverurl.title=Runtime URL
wca_applicationmodel.property.wca_deployserverurl.description=Runtime URL
wca_applicationmodel.property.wca_deployservertarget.title=Deploy Target
wca_applicationmodel.property.wca_deployservertarget.description=Deploy Target
wca_applicationmodel.property.wca_deploysourcepath.title=Source Path
wca_applicationmodel.property.wca_deploysourcepath.description=Source Path
wca_applicationmodel.property.wca_deployexcludes.title=Excludes
wca_applicationmodel.property.wca_deployexcludes.description=Excludes
wca_applicationmodel.property.wca_deployserverallocatedto.title=Allocated To
wca_applicationmodel.property.wca_deployserverallocatedto.description=Allocated To
wca_applicationmodel.property.wca_deployonapproval.title=Deploy On Approval
wca_applicationmodel.property.wca_deployonapproval.description=Deploy On Approval
wca_applicationmodel.type.wca_deploymentattempt.title=Website Deployment Attempt
wca_applicationmodel.type.wca_deploymentattempt.description=Website Deployment Attempt
wca_applicationmodel.property.wca_deployattemptid.title=Deploy Attempt ID
wca_applicationmodel.property.wca_deployattemptid.description=Deploy Attempt ID
wca_applicationmodel.property.wca_deployattempttype.title=Attempt Type
wca_applicationmodel.property.wca_deployattempttype.description=Attempt Type
wca_applicationmodel.property.wca_deployattemptstore.title=Attempt Type
wca_applicationmodel.property.wca_deployattemptstore.description=Attempt Type
wca_applicationmodel.property.wca_deployattemptversion.title=Snapshot Version Deployed
wca_applicationmodel.property.wca_deployattemptversion.description=Snapshot Version Deployed
wca_applicationmodel.property.wca_deployattemptservers.title=Servers Deployed To
wca_applicationmodel.property.wca_deployattemptservers.description=Servers Deployed To
wca_applicationmodel.property.wca_deployattempttime.title=Time Of Deploy Attempt
wca_applicationmodel.property.wca_deployattempttime.description=Time Of Deploy Attempt
wca_applicationmodel.association.wca_deploymentreports.title=Deployment Reports
wca_applicationmodel.association.wca_deploymentreports.description=Deployment Reports
wca_applicationmodel.type.wca_deploymentreport.title=Website Deployment Report
wca_applicationmodel.type.wca_deploymentreport.description=Website Deployment Report
wca_applicationmodel.property.wca_deployserver.title=Server Deployed To
wca_applicationmodel.property.wca_deployserver.description=Server Deployed To
wca_applicationmodel.property.wca_deployversion.title=Snapshot Version Deployed
wca_applicationmodel.property.wca_deployversion.description=Snapshot Version Deployed
wca_applicationmodel.property.wca_deploystarttime.title=Time Deploy Started
wca_applicationmodel.property.wca_deploystarttime.description=Time Deploy Started
wca_applicationmodel.property.wca_deployendtime.title=Time Deploy Finished
wca_applicationmodel.property.wca_deployendtime.description=Time Deploy Finished
wca_applicationmodel.property.wca_deploysuccessful.title=Deployment Successful
wca_applicationmodel.property.wca_deploysuccessful.description=Deployment Successful
wca_applicationmodel.property.wca_deployfailedreason.title=Failure Reason
wca_applicationmodel.property.wca_deployfailedreason.description=Failure Reason
wca_applicationmodel.property.wca_deployservernameused.title=Server Display Name
wca_applicationmodel.property.wca_deployservernameused.description=Server Display Name
wca_applicationmodel.property.wca_deployserverusernameused.title=Username Used
wca_applicationmodel.property.wca_deployserverusernameused.description=Username Used
wca_applicationmodel.property.wca_deployservertargetused.title=Target Used
wca_applicationmodel.property.wca_deployservertargetused.description=Target Used
wca_applicationmodel.property.wca_deploysourcepathused.title=Source Path Used
wca_applicationmodel.property.wca_deploysourcepathused.description=Source Path Used
wca_applicationmodel.property.wca_deployexcludesused.title=Excludes Used
wca_applicationmodel.property.wca_deployexcludesused.description=Excludes Used
wca_applicationmodel.property.wca_deployserverurlused.title=Source Path Used
wca_applicationmodel.property.wca_deployserverurlused.description=Source Path Used
wca_applicationmodel.aspect.wca_webapp.title=Webapp
wca_applicationmodel.aspect.wca_webapp.description=Webapp
wca_applicationmodel.aspect.wca_filenamepattern.title=Filename Pattern
wca_applicationmodel.aspect.wca_filenamepattern.description=Filename Pattern
wca_applicationmodel.property.wca_filenamepattern.title=Filename Pattern
wca_applicationmodel.property.wca_filenamepattern.description=Filename Pattern
wca_applicationmodel.aspect.wca_outputpathpattern.title=Output Path Pattern
wca_applicationmodel.aspect.wca_outputpathpattern.description=Output Path Pattern
wca_applicationmodel.property.wca_outputpathpattern.title=Output Path Pattern
wca_applicationmodel.property.wca_outputpathpattern.description=Output Path Pattern
wca_applicationmodel.aspect.wca_form.title=XForms Form
wca_applicationmodel.aspect.wca_form.description=XForms Form
wca_applicationmodel.property.wca_xmlschemarootelementname.title=Schema Root Element Name
wca_applicationmodel.property.wca_xmlschemarootelementname.description=Schema Root Element Name
wca_applicationmodel.property.wca_xmlschema.title=Schema
wca_applicationmodel.property.wca_xmlschema.description=Schema
wca_applicationmodel.association.wca_renderingenginetemplates.title=Rendering Engine Templates
wca_applicationmodel.association.wca_renderingenginetemplates.description=Rendering Engine Templates
wca_applicationmodel.association.wca_formworkflowdefaults.title=Form Workflow Defaults
wca_applicationmodel.association.wca_formworkflowdefaults.description=Form Workflow Defaults
wca_applicationmodel.aspect.wca_renderingenginetemplate.title=A Rendering Engine
wca_applicationmodel.aspect.wca_renderingenginetemplate.description=A Rendering Engine
wca_applicationmodel.property.wca_parentrenderingenginename.title=Type
wca_applicationmodel.property.wca_parentrenderingenginename.description=Type
wca_applicationmodel.property.wca_formsource.title=Form Source
wca_applicationmodel.property.wca_formsource.description=Form Source
wca_applicationmodel.association.wca_renditionproperties.title=Rendition Properties
wca_applicationmodel.association.wca_renditionproperties.description=Rendition Properties
wca_applicationmodel.aspect.wca_forminstancedata.title=XML file generated by a form
wca_applicationmodel.aspect.wca_forminstancedata.description=XML file generated by a form
wca_applicationmodel.property.wca_parentformname.title=Parent Form Name
wca_applicationmodel.property.wca_parentformname.description=Form that generated this asset
wca_applicationmodel.property.wca_originalparentpath.title=Original Parent Path
wca_applicationmodel.property.wca_originalparentpath.description=The original parent path when this form instance data was created - used for regenerating accurately.
wca_applicationmodel.property.wca_renditions.title=Renditions
wca_applicationmodel.property.wca_renditions.description=Renditions of this form instance data
wca_applicationmodel.aspect.wca_rendition.title=Rendition
wca_applicationmodel.aspect.wca_rendition.description=Output file generated by a rendering engine template
wca_applicationmodel.property.wca_parentrenderingenginetemplate.title=Parent Rendering Engine Template
wca_applicationmodel.property.wca_parentrenderingenginetemplate.description=Form data renderer that generated this asset
wca_applicationmodel.property.wca_parentrenditionproperties.title=Parent Rendition Properties
wca_applicationmodel.property.wca_parentrenditionproperties.description=Rendition properties used for this rendition
wca_applicationmodel.property.wca_primaryforminstancedata.title=Primary Form Instance Data
wca_applicationmodel.property.wca_primaryforminstancedata.description=Primary XML Asset used to generate this asset
wca_applicationmodel.aspect.wca_expires.title=Expires
wca_applicationmodel.aspect.wca_expires.description=Content that has or can expire
wca_applicationmodel.property.wca_expirationDate.title=Expiration Date
wca_applicationmodel.property.wca_expirationDate.description=Expiration Date
wca_applicationmodel.aspect.wca_deployed.title=Deployed
wca_applicationmodel.aspect.wca_deployed.description=Has this content been deployed from wcm
wca_applicationmodel.property.wca_guid.title=GUID
wca_applicationmodel.property.wca_guid.description=WCM unique version

View File

@@ -0,0 +1,12 @@
# Display labels for Web Delivery Runtime
wdr.err.invalid_username_or_password=\u041d\u0435\u0432\u0435\u0440\u043d\u043e\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u043f\u0430\u0440\u043e\u043b\u044c.
wdr.err.unable_create_logfile=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0444\u0430\u0439\u043b \u0436\u0443\u0440\u043d\u0430\u043b\u0430. \u0420\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d\u0438\u0435 \u043d\u0435\u043b\u044c\u0437\u044f \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c
wdr.err.unable_prepare_already_commit=\u0420\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d\u0438\u0435 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043b\u0435\u043d\u043e: \u0443\u0436\u0435 \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u043e \u0438\u043b\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f.
wdr.err.unable_prepare_missing_file="\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u0438\u0442\u044c, \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439 \u0444\u0430\u0439\u043b. {0}
wdr.err.invalid_ticket=\u0418\u0441\u0442\u0435\u043a\u043b\u043e \u0432\u0440\u0435\u043c\u044f \u043e\u0436\u0438\u0434\u0430\u043d\u0438\u044f \u0440\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d\u0438\u044f \u0438\u043b\u0438 \u043d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0431\u0438\u043b\u0435\u0442. {0}
wdr.err.unable_commit=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c
wdr.avm.snapshot_tag=\u0420\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d\u0438\u0435 \u0438\u0437 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430: {0}, \u0432\u0435\u0440\u0441\u0438\u044f: {1}
wdr.avm.snapshot_description=\u0420\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d\u0438\u0435 \u0438\u0437 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430: {0}, \u0432\u0435\u0440\u0441\u0438\u044f: {1}

View File

@@ -0,0 +1,13 @@
# webdav HTML page messages
webdav.repository_title=\u0420\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 Alfresco
webdav.directory_listing=\u041f\u0435\u0440\u0435\u0447\u0435\u043d\u044c \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u043e\u0432 \u0434\u043b\u044f
webdav.column.name=\u0418\u043c\u044f
webdav.column.size=\u0420\u0430\u0437\u043c\u0435\u0440
webdav.column.type=\u0422\u0438\u043f
webdav.column.modifieddate=\u0414\u0430\u0442\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f
webdav.column.navigate_up=\u0412\u0432\u0435\u0440\u0445 \u043d\u0430 \u0443\u0440\u043e\u0432\u0435\u043d\u044c
webdav.err.dir=\u041f\u0440\u0438 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0438 \u043f\u0435\u0440\u0435\u0447\u043d\u044f \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u043e\u0432 \u0432\u043e\u0437\u043d\u0438\u043a\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430. \u041e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u043a \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c\u0443 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0443.
webdav.size.bytes=\u0431\u0430\u0439\u0442
webdav.size.kilobytes=\u041a\u0431
webdav.size.megabytes=\u041c\u0431

View File

@@ -0,0 +1 @@
workflow_console.help=alfresco/messages/workflow-interpreter-help.txt

View File

@@ -0,0 +1,3 @@
# Error Messages
workflow.package.already.associated.error=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0441\u0432\u044f\u0437\u0430\u0442\u044c \u043f\u0430\u043a\u0435\u0442 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {0} \u0441 \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u043e\u043c \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {1}, \u0442\u0430\u043a \u043a\u0430\u043a \u043e\u043d \u0443\u0436\u0435 \u0441\u0432\u044f\u0437\u0430\u043d \u0441 \u044d\u043a\u0437\u0435\u043c\u043f\u043b\u044f\u0440\u043e\u043c \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 {2}".

View File

@@ -0,0 +1,48 @@
# Display labels for out-of-the-box Site-oriented Workflows
#
# Moderated Invitation
#
imwf_invitation-moderated.workflow.title=\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 - \u043c\u043e\u0434\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 (JBPM)
imwf_invitation-moderated.workflow.description=\u041c\u043e\u0434\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043a \u0440\u0435\u0441\u0443\u0440\u0441\u0443, \u0442\u0430\u043a\u043e\u043c\u0443 \u043a\u0430\u043a \u0432\u0435\u0431-\u0441\u0430\u0439\u0442.
activitiInvitationModerated.workflow.title=\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 - \u043c\u043e\u0434\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435
activitiInvitationModerated.workflow.description=\u041c\u043e\u0434\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043a \u0440\u0435\u0441\u0443\u0440\u0441\u0443, \u0442\u0430\u043a\u043e\u043c\u0443 \u043a\u0430\u043a \u0432\u0435\u0431-\u0441\u0430\u0439\u0442.
imwf_invitation-moderated-workflow-model.type.imwf_moderatedInvitationReviewTask.title=\u041c\u043e\u0434\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043d\u0430 \u0441\u0430\u0439\u0442
imwf_invitation-moderated-workflow-model.type.imwf_moderatedInvitationReviewTask.description=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043c\u043e\u0434\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
imwf_invitation-moderated-workflow-model.type.imwf_activitiModeratedInvitationReviewTask.title=\u041c\u043e\u0434\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043d\u0430 \u0441\u0430\u0439\u0442
imwf_invitation-moderated-workflow-model.type.imwf_activitiModeratedInvitationReviewTask.description=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043c\u043e\u0434\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
imwf_invitation-moderated-workflow-model.property.imwf_inviteeUserName.title=\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u043d\u043e\u0433\u043e
imwf_invitation-moderated-workflow-model.property.imwf_inviteeRole.title=\u0420\u043e\u043b\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u043d\u043e\u0433\u043e
imwf_invitation-moderated-workflow-model.property.imwf_inviteeComments.title=\u041a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0438 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u043d\u043e\u0433\u043e
imwf_invitation-moderated-workflow-model.property.imwf_resourceName.title=\u0418\u043c\u044f \u0440\u0435\u0441\u0443\u0440\u0441\u0430
imwf_invitation-moderated-workflow-model.property.imwf_resourceType.title=\u0422\u0438\u043f \u0440\u0435\u0441\u0443\u0440\u0441\u0430
# Moderated Invite Process Definitions
imwf_invitation-moderated.node.start.title=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c
imwf_invitation-moderated.node.start.description=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043c\u043e\u0434\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
imwf_invitation-moderated.task.imwf_moderatedInvitationSubmitTask.title=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c
imwf_invitation-moderated.task.imwf_moderatedInvitationSubmitTask.description=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043c\u043e\u0434\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
imwf_invitation-moderated.node.review.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
imwf_invitation-moderated.node.review.description=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043c\u043e\u0434\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
imwf_invitation-moderated.task.imwf_moderatedInvitationReviewTask.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
imwf_invitation-moderated.task.imwf_moderatedInvitationReviewTask.description=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043c\u043e\u0434\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
imwf_invitation-moderated.node.review.transition.reject.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
imwf_invitation-moderated.node.review.transition.reject.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
imwf_invitation-moderated.node.review.transition.approve.title=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
imwf_invitation-moderated.node.review.transition.approve.description=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
imwf_invitation-moderated.node.review.transition.cancel.title=\u041e\u0442\u043c\u0435\u043d\u0430
imwf_invitation-moderated.node.review.transition.cancel.description=\u041e\u0442\u043c\u0435\u043d\u0430
imwf_invitation-moderated.node.end.title=\u041a\u043e\u043d\u0435\u0446
imwf_invitation-moderated.node.end.description=\u041a\u043e\u043d\u0435\u0446
activitiInvitationModerated.task.imwf_moderatedInvitationSubmitTask.title=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c
activitiInvitationModerated.task.imwf_moderatedInvitationSubmitTask.description=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043c\u043e\u0434\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
activitiInvitationModerated.task.imwf_activitiModeratedInvitationReviewTask.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
activitiInvitationModerated.task.imwf_activitiModeratedInvitationReviewTask.description=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043c\u043e\u0434\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
# Activiti invite outcome list constraint labels
listconstraint.imwf_reviewOutcomeOptions.approve=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
listconstraint.imwf_reviewOutcomeOptions.reject=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c

View File

@@ -0,0 +1,73 @@
# Display labels for out-of-the-box Site-oriented Workflows
#
# Invitation Nominated Workflow
#
inwf_invitation-nominated.workflow.title=\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043d\u0430 \u0441\u0430\u0439\u0442 - \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u043e\u0435 (JBPM)
inwf_invitation-nominated.workflow.description=\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043d\u0430 \u043e\u0431\u0449\u0438\u0439 \u0441\u0430\u0439\u0442, \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u043e\u0435 \u043c\u0435\u043d\u0435\u0434\u0436\u0435\u0440\u043e\u043c
activitiInvitationNominated.workflow.title=\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043d\u0430 \u0441\u0430\u0439\u0442 - \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u043e\u0435
activitiInvitationNominated.workflow.description=\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043d\u0430 \u043e\u0431\u0449\u0438\u0439 \u0441\u0430\u0439\u0442, \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u043e\u0435 \u043c\u0435\u043d\u0435\u0434\u0436\u0435\u0440\u043e\u043c
# Invite Task Definitions
inwf_invite-workflow-model.type.inwf_inviteToSiteTask.title=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c
inwf_invite-workflow-model.type.inwf_inviteToSiteTask.description=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
inwf_invite-workflow-model.type.inwf_invitePendingTask.title=\u041f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0442\u044c \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0441\u0430\u0439\u0442\u0443
inwf_invite-workflow-model.type.inwf_invitePendingTask.description=\u041f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0442\u044c \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0441\u0430\u0439\u0442\u0443
inwf_invite-workflow-model.type.inwf_activitiInvitePendingTask.title=\u041f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0442\u044c \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0441\u0430\u0439\u0442\u0443
inwf_invite-workflow-model.type.inwf_activitiInvitePendingTask.description=\u041f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0442\u044c \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0441\u0430\u0439\u0442\u0443
inwf_invite-workflow-model.type.inwf_rejectInviteTask.title=\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043d\u0430 \u0441\u0430\u0439\u0442 \u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u043e
inwf_invite-workflow-model.type.inwf_rejectInviteTask.description=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c, \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u043d\u044b\u0439 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0441\u0430\u0439\u0442\u0443, \u043e\u0442\u043a\u043b\u043e\u043d\u0438\u043b \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
inwf_invite-workflow-model.type.inwf_acceptInviteTask.title=\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043d\u0430 \u0441\u0430\u0439\u0442 \u043f\u0440\u0438\u043d\u044f\u0442\u043e
inwf_invite-workflow-model.type.inwf_acceptInviteTask.description=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c, \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u043d\u044b\u0439 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0441\u0430\u0439\u0442\u0443, \u043f\u0440\u0438\u043d\u044f\u043b \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
inwf_invite-workflow-model.property.inwf_resourceType.title=\u0422\u0438\u043f \u0440\u0435\u0441\u0443\u0440\u0441\u0430
inwf_invite-workflow-model.property.inwf_resourceName.title=\u0418\u043c\u044f \u0440\u0435\u0441\u0443\u0440\u0441\u0430
inwf_invite-workflow-model.property.inwf_resourceTitle.title=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0440\u0435\u0441\u0443\u0440\u0441\u0430
inwf_invite-workflow-model.property.inwf_resourceDescription.title=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u0430
inwf_invite-workflow-model.property.inwf_inviterUserName.title=\u041a\u0442\u043e \u043f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u043b
inwf_invite-workflow-model.property.inwf_inviteeUserName.title=\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u043d\u043e\u0433\u043e
inwf_invite-workflow-model.property.inwf_inviteeEmail.title=\u0410\u0434\u0440\u0435\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u043d\u043e\u0433\u043e
inwf_invite-workflow-model.property.inwf_inviteeFirstName.title=\u0418\u043c\u044f \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u043d\u043e\u0433\u043e
inwf_invite-workflow-model.property.inwf_inviteeLastName.title=\u0424\u0430\u043c\u0438\u043b\u0438\u044f \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u043d\u043e\u0433\u043e
inwf_invite-workflow-model.property.inwf_inviteeRole.title=\u0420\u043e\u043b\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u043d\u043e\u0433\u043e
# Invite Process Definitions
inwf_invitation-nominated.node.start.title=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c
inwf_invitation-nominated.node.start.description=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
inwf_invitation-nominated.node.start.transition.sendInvite.title=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
inwf_invitation-nominated.node.start.transition.sendInvite.description=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
inwf_invitation-nominated.node.invitePending.title=\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043e\u0442\u043b\u043e\u0436\u0435\u043d\u043e
inwf_invitation-nominated.node.invitePending.description=\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043e\u0442\u043b\u043e\u0436\u0435\u043d\u043e
inwf_invitation-nominated.node.invitePending.transition.reject.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
inwf_invitation-nominated.node.invitePending.transition.reject.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
inwf_invitation-nominated.node.invitePending.transition.accept.title=\u041f\u0440\u0438\u043d\u044f\u0442\u044c
inwf_invitation-nominated.node.invitePending.transition.accept.description=\u041f\u0440\u0438\u043d\u044f\u0442\u044c
inwf_invitation-nominated.node.invitePending.transition.cancel.title=\u041e\u0442\u043c\u0435\u043d\u0430
inwf_invitation-nominated.node.invitePending.transition.cancel.description=\u041e\u0442\u043c\u0435\u043d\u0430
inwf_invitation-nominated.node.inviteRejected.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u043e
inwf_invitation-nominated.node.inviteRejected.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u043e
inwf_invitation-nominated.node.inviteRejected.transition.end.title=\u0417\u0430\u0434\u0430\u0447\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0430
inwf_invitation-nominated.node.inviteRejected.transition.end.description=\u0417\u0430\u0434\u0430\u0447\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0430
inwf_invitation-nominated.node.inviteAccepted.title=\u041f\u0440\u0438\u043d\u044f\u0442\u043e
inwf_invitation-nominated.node.inviteAccepted.description=\u041f\u0440\u0438\u043d\u044f\u0442\u043e
inwf_invitation-nominated.node.inviteAccepted.transition.end.title=\u0417\u0430\u0434\u0430\u0447\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0430
inwf_invitation-nominated.node.inviteAccepted.transition.end.description=\u0417\u0430\u0434\u0430\u0447\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0430
inwf_invitation-nominated.node.end.title=\u041a\u043e\u043d\u0435\u0446
inwf_invitation-nominated.node.end.description=\u041a\u043e\u043d\u0435\u0446
activitiInvitationNominated.task.inwf_activitiInvitePendingTask.title=\u041f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0442\u044c \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0441\u0430\u0439\u0442\u0443
activitiInvitationNominated.task.inwf_activitiInvitePendingTask.description=\u041f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0442\u044c \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0441\u0430\u0439\u0442\u0443
activitiInvitationNominated.task.inwf_acceptInviteTask.title=\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043d\u0430 \u0441\u0430\u0439\u0442 \u043f\u0440\u0438\u043d\u044f\u0442\u043e
activitiInvitationNominated.task.inwf_acceptInviteTask.description=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c, \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u043d\u044b\u0439 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0441\u0430\u0439\u0442\u0443, \u043f\u0440\u0438\u043d\u044f\u043b \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
activitiInvitationNominated.task.inwf_rejectInviteTask.title=\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043d\u0430 \u0441\u0430\u0439\u0442 \u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u043e
activitiInvitationNominated.task.inwf_rejectInviteTask.description=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c, \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u043d\u044b\u0439 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0441\u0430\u0439\u0442\u0443, \u043e\u0442\u043a\u043b\u043e\u043d\u0438\u043b \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
# Activiti invite outcome list constraint labels
listconstraint.inwf_inviteOutcomeOptions.accept=\u041f\u0440\u0438\u043d\u044f\u0442\u044c
listconstraint.inwf_inviteOutcomeOptions.reject=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c

View File

@@ -0,0 +1,96 @@
# Display labels for out-of-the-box WCM Content-oriented Workflows
#
# Submit Workflow
#
wcmwf_submit.workflow.title=\u041e\u0442\u043f\u0440\u0430\u0432\u043a\u0430 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
wcmwf_submit.workflow.description=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043d\u0430 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435
wcmwf_submit.node.verifybrokenlinks.transition.abort.title=\u041f\u0440\u0435\u0440\u0432\u0430\u0442\u044c \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0443
wcmwf_submit.node.verifybrokenlinks.transition.abort.description=\u041f\u0440\u0435\u0440\u0432\u0430\u0442\u044c \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0443
wcmwf_submit.node.verifybrokenlinks.transition.continue.title=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0443
wcmwf_submit.node.verifybrokenlinks.transition.continue.description=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0443
wcmwf_submit.node.serialreview.transition.reject.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
wcmwf_submit.node.serialreview.transition.reject.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
wcmwf_submit.node.serialreview.transition.approve.title=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
wcmwf_submit.node.serialreview.transition.approve.description=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
wcmwf_submit.node.parallelreview.transition.reject.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
wcmwf_submit.node.parallelreview.transition.reject.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
wcmwf_submit.node.parallelreview.transition.approve.title=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
wcmwf_submit.node.parallelreview.transition.approve.description=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
wcmwf_submit.node.rejected.transition.abort.title=\u041f\u0440\u0435\u0440\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443
wcmwf_submit.node.rejected.transition.abort.description=\u041f\u0440\u0435\u0440\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443
wcmwf_submit.node.rejected.transition.resubmit.title=\u041f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043d\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443
wcmwf_submit.node.rejected.transition.resubmit.description=\u041f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043d\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443
wcmwf_submit.node.submitpending.transition.cancel.title=\u041f\u0440\u0435\u0440\u0432\u0430\u0442\u044c \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0443
wcmwf_submit.node.submitpending.transition.cancel.description=\u041f\u0440\u0435\u0440\u0432\u0430\u0442\u044c \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0443
wcmwf_submit.node.submitpending.transition.launch.title=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0441\u0435\u0439\u0447\u0430\u0441
wcmwf_submit.node.submitpending.transition.launch.description=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0441\u0435\u0439\u0447\u0430\u0441
wcmwf_submit.node.submitted.transition.onsubmit.title=\u041f\u0440\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0435
wcmwf_submit.node.submitted.transition.onsubmit.description=\u041f\u0440\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0435
wcmwf_submitdirect.workflow.title=\u041e\u0442\u043f\u0440\u0430\u0432\u043a\u0430 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430 (\u043f\u0440\u044f\u043c\u0430\u044f)
wcmwf_submitdirect.workflow.description=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043f\u0440\u044f\u043c\u043e \u0432 \u043f\u0440\u043e\u043c\u0435\u0436\u0443\u0442\u043e\u0447\u043d\u0443\u044e \u043f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u0443
# Submit Task Definitions
wcmwf_workflowmodel.type.wcmwf_submitReviewTask.title=\u041e\u0442\u043f\u0440\u0430\u0432\u043a\u0430 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
wcmwf_workflowmodel.type.wcmwf_submitReviewTask.description=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043d\u0430 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435
wcmwf_workflowmodel.type.wcmwf_submitDirectTask.title=\u041e\u0442\u043f\u0440\u0430\u0432\u043a\u0430 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430 (\u043f\u0440\u044f\u043c\u0430\u044f)
wcmwf_workflowmodel.type.wcmwf_submitDirectTask.description=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043f\u0440\u044f\u043c\u043e \u0432 \u043f\u0440\u043e\u043c\u0435\u0436\u0443\u0442\u043e\u0447\u043d\u0443\u044e \u043f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u0443
wcmwf_workflowmodel.type.wcmwf_verifyBrokenLinksTask.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043d\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u0441\u044b\u043b\u043a\u0438
wcmwf_workflowmodel.type.wcmwf_verifyBrokenLinksTask.description=\u0423\u0431\u0435\u0434\u0438\u0442\u044c\u0441\u044f, \u0447\u0442\u043e\u0431\u044b \u0441\u0441\u044b\u043b\u043a\u0438 \u043d\u0435 \u0443\u043a\u0430\u0437\u044b\u0432\u0430\u044e\u0442 \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u043e\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u044b\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u044b
wcmwf_workflowmodel.type.wcmwf_reviewTask.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c
wcmwf_workflowmodel.type.wcmwf_reviewTask.description=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b, \u0447\u0442\u043e\u0431\u044b \u0443\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0438\u0445 \u0438\u043b\u0438 \u043e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
wcmwf_workflowmodel.type.wcmwf_parallelReviewTask.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c
wcmwf_workflowmodel.type.wcmwf_parallelReviewTask.description=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b, \u0447\u0442\u043e\u0431\u044b \u0443\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0438\u0445 \u0438\u043b\u0438 \u043e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
wcmwf_workflowmodel.type.wcmwf_rejectedTask.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u043e
wcmwf_workflowmodel.type.wcmwf_rejectedTask.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u043e
wcmwf_workflowmodel.type.wcmwf_approvedTask.title=\u0423\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043e
wcmwf_workflowmodel.type.wcmwf_approvedTask.description=\u0423\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043e
wcmwf_workflowmodel.type.wcmwf_submittedTask.title=\u041e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e
wcmwf_workflowmodel.type.wcmwf_submittedTask.description=\u041e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e
wcmwf_workflowmodel.type.wcmwf_submittedDirectTask.title=\u041e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e
wcmwf_workflowmodel.type.wcmwf_submittedDirectTask.description=\u041e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e
wcmwf_workflowmodel.type.wcmwf_submitpendingTask.title=\u041e\u0442\u043f\u0440\u0430\u0432\u043a\u0430 \u043e\u0442\u043b\u043e\u0436\u0435\u043d\u0430
wcmwf_workflowmodel.type.wcmwf_submitpendingTask.description=\u041e\u0442\u043f\u0440\u0430\u0432\u043a\u0430 \u043e\u0442\u043b\u043e\u0436\u0435\u043d\u0430
wcmwf_workflowmodel.type.wcmwf_submitcancelledTask.title=\u041e\u0442\u043f\u0440\u0430\u0432\u043a\u0430 \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u0430
wcmwf_workflowmodel.type.wcmwf_submitcancelledTask.description=\u041e\u0442\u043f\u0440\u0430\u0432\u043a\u0430 \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u0430
wcmwf_workflowmodel.type.wcmwf_submitfailedTask.title=\u0421\u0431\u043e\u0439 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438
wcmwf_workflowmodel.type.wcmwf_submitfailedTask.description=\u0421\u0431\u043e\u0439 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438
wcmwf_workflowmodel.property.wcmwf_reviewType.title=\u0422\u0438\u043f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438
wcmwf_workflowmodel.property.wcmwf_reviewType.description=\u041f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u0438\u043b\u0438 \u043f\u0430\u0440\u0430\u043b\u043b\u0435\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430
wcmwf_workflowmodel.property.wcmwf_submitReviewType.title=\u0422\u0438\u043f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438
wcmwf_workflowmodel.property.wcmwf_submitReviewType.description=\u041f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u0438\u043b\u0438 \u043f\u0430\u0440\u0430\u043b\u043b\u0435\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430
wcmwf_workflowmodel.property.wcmwf_fromPath.title=\u041f\u0443\u0442\u044c \u043a \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u0435
wcmwf_workflowmodel.property.wcmwf_fromPath.description=\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435, \u0432 \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0431\u044b\u043b\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u044b \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0438\u0437
wcmwf_workflowmodel.property.wcmwf_label.title=\u042f\u0440\u043b\u044b\u043a \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438
wcmwf_workflowmodel.property.wcmwf_label.description=\u042f\u0440\u043b\u044b\u043a, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0439 \u0441 \u0434\u0430\u043d\u043d\u043e\u0439 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u043e\u0439
wcmwf_workflowmodel.property.wcmwf_launchDate.title=\u0414\u0430\u0442\u0430 \u0437\u0430\u043f\u0443\u0441\u043a\u0430
wcmwf_workflowmodel.property.wcmwf_launchDate.description=\u0417\u0430\u0434\u0430\u0439\u0442\u0435 \u0434\u0430\u0442\u0443 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0432 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0435, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0430
wcmwf_workflowmodel.property.wcmwf_autoDeploy.title=\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0440\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d\u0438\u0435
wcmwf_workflowmodel.property.wcmwf_autoDeploy.description=\u0414\u043e\u043b\u0436\u043d\u044b \u043b\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0440\u0430\u0437\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u043f\u0440\u0438 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0438
wcmwf_workflowmodel.property.wcmwf_webapp.title=\u0412\u0435\u0431-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
wcmwf_workflowmodel.property.wcmwf_webapp.description=\u0412\u0435\u0431-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0432 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0434\u043b\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0441\u0441\u044b\u043b\u043e\u043a
wcmwf_workflowmodel.property.wcmwf_reviewerCnt.title=\u0412\u0441\u0435\u0433\u043e \u043f\u0440\u043e\u0432\u0435\u0440\u0435\u043d\u043e
wcmwf_workflowmodel.property.wcmwf_reviewerCnt.description=\u0427\u0438\u0441\u043b\u043e \u043f\u0440\u043e\u0432\u0435\u0440\u0438\u0432\u0448\u0438\u0445
wcmwf_workflowmodel.property.wcmwf_approveCnt.title=\u0412\u0441\u0435\u0433\u043e \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043e
wcmwf_workflowmodel.property.wcmwf_approveCnt.description=\u0427\u0438\u0441\u043b\u043e \u0443\u0442\u0432\u0435\u0440\u0434\u0438\u0432\u0448\u0438\u0445
# Change Request Workflow
wcmwf_changerequest.workflow.title=\u0417\u0430\u043f\u0440\u043e\u0441 \u043d\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435
wcmwf_changerequest.workflow.description=\u041d\u0430\u0437\u043d\u0430\u0447\u0438\u0442\u044c \u0430\u043a\u0442\u0438\u0432 \u0434\u043b\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f
# Change Request Task Definitions
wcmwf_workflowmodel.type.wcmwf_submitChangeRequestTask.title=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0437\u0430\u043f\u0440\u043e\u0441 \u043d\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435
wcmwf_workflowmodel.type.wcmwf_submitChangeRequestTask.description=\u041e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u0442 \u0437\u0430\u043f\u0440\u043e\u0441 \u043d\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043e\u0434\u043d\u043e\u0433\u043e \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432
wcmwf_workflowmodel.type.wcmwf_changeRequestTask.title=\u0417\u0430\u043f\u0440\u043e\u0441 \u043d\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435
wcmwf_workflowmodel.type.wcmwf_changeRequestTask.description=\u0417\u0430\u043f\u0440\u043e\u0441 \u043d\u0430 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435
# List constraint display labels
listconstraint.wcmwf_reviewType.Serial=\u041f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u0430\u044f
listconstraint.wcmwf_reviewType.Parallel=\u041f\u0430\u0440\u0430\u043b\u043b\u0435\u043b\u044c\u043d\u0430\u044f

View File

@@ -0,0 +1,204 @@
# Display labels for out-of-the-box Content-oriented Workflows
####################
# JBPM WORKFLOWS #
####################
#
# Adhoc Task Workflow
#
wf_adhoc.workflow.title=\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441 (JBPM)
wf_adhoc.workflow.description=\u041d\u0430\u0437\u043d\u0430\u0447\u0438\u0442\u044c \u043a\u043e\u043b\u043b\u0435\u0433\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u0443\u044e \u0437\u0430\u0434\u0430\u0447\u0443 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u043e\u0434\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432 JBPM
#
# Review And Approve Workflow
#
wf_review.workflow.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0438 \u0443\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c (JBPM)
wf_review.workflow.description=\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u0438 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u043e\u0434\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432 JBPM
# Review And Approve Process Definitions
wf_review.node.start.title=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c
wf_review.node.start.description=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c
wf_review.node.review.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c
wf_review.node.review.description=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c
wf_review.task.wf_reviewTask.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c
wf_review.task.wf_reviewTask.description=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c
wf_review.node.review.transition.reject.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
wf_review.node.review.transition.reject.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
wf_review.node.review.transition.approve.title=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
wf_review.node.review.transition.approve.description=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
wf_review.node.rejected.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u043e
wf_review.node.rejected.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u043e
wf_review.task.wf_rejectedTask.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u043e
wf_review.task.wf_rejectedTask.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u043e
wf_review.node.approved.title=\u0423\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043e
wf_review.node.approved.description=\u0423\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043e
wf_review.task.wf_approvedTask.title=\u0423\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043e
wf_review.task.wf_approvedTask.description=\u0423\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043e
wf_review.node.end.title=\u041a\u043e\u043d\u0435\u0446
wf_review.node.end.description=\u041a\u043e\u043d\u0435\u0446
#
# Parallel Review Workflow
#
wf_parallelreview.workflow.title=\u041f\u0430\u0440\u0430\u043b\u043b\u0435\u043b\u044c\u043d\u043e \u043f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0438 \u0443\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c (JBPM)
wf_parallelreview.workflow.description=\u041f\u0430\u0440\u0430\u043b\u043b\u0435\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u0438 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u043e\u0434\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432 JBPM
# Parallel Review Process Definitions
wf_parallelreview.node.review.transition.reject.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
wf_parallelreview.node.review.transition.reject.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
wf_parallelreview.node.review.transition.approve.title=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
wf_parallelreview.node.review.transition.approve.description=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
#
# Pooled Review Workflow
#
wf_reviewpooled.workflow.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0438 \u0443\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0432 \u043f\u0443\u043b\u0435 (JBPM)
wf_reviewpooled.workflow.description=\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u0438 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0432 \u043f\u0443\u043b\u0435 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u043e\u0434\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432 JBPM
# Pooled Review Process Definitions
wf_reviewpooled.node.review.transition.reject.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
wf_reviewpooled.node.review.transition.reject.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
wf_reviewpooled.node.review.transition.approve.title=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
wf_reviewpooled.node.review.transition.approve.description=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
#
# Parallel Group Review Workflow
#
wf_parallelgroupreview.workflow.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0438 \u0443\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0432 \u0433\u0440\u0443\u043f\u043f\u0435 (JBPM)
wf_parallelgroupreview.workflow.description=\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u0438 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0432 \u0433\u0440\u0443\u043f\u043f\u0435 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u043e\u0434\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432 JBPM
# Parallel Group Review Process Definitions
wf_parallelgroupreview.node.review.transition.reject.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
wf_parallelgroupreview.node.review.transition.reject.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
wf_parallelgroupreview.node.review.transition.approve.title=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
wf_parallelgroupreview.node.review.transition.approve.description=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
#######################
# ACTIVITI WORKFLOWS #
#######################
#
# Activiti Adhoc Task Workflow
#
activitiAdhoc.workflow.title=\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441
activitiAdhoc.workflow.description=\u041d\u0430\u0437\u043d\u0430\u0447\u0438\u0442\u044c \u043a\u043e\u043b\u043b\u0435\u0433\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u0443\u044e \u0437\u0430\u0434\u0430\u0447\u0443 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u043e\u0434\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432 Activiti
#
# Activiti Review And Approve Workflow
#
activitiReview.workflow.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0438 \u0443\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
activitiReview.workflow.description=\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u0438 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u043e\u0434\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432 Activiti
activitiReview.task.approved.description=\u0414\u0430\u043d\u043d\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0431\u044b\u043b \u043f\u0440\u043e\u0432\u0435\u0440\u0435\u043d \u0438 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d.
activitiReview.task.rejected.description=\u0414\u0430\u043d\u043d\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0431\u044b\u043b \u043f\u0440\u043e\u0432\u0435\u0440\u0435\u043d \u0438 \u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d.
#
# Parallel Review Workflow
#
activitiParallelReview.workflow.title=\u041f\u0430\u0440\u0430\u043b\u043b\u0435\u043b\u044c\u043d\u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0438 \u0443\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
activitiParallelReview.workflow.description=\u041f\u0430\u0440\u0430\u043b\u043b\u0435\u043b\u044c\u043d\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u0438 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u043e\u0434\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432 Activiti
activitiParallelReview.task.approved.description=\u0414\u0430\u043d\u043d\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0431\u044b\u043b \u043f\u0440\u043e\u0432\u0435\u0440\u0435\u043d \u0438 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d.
activitiParallelReview.task.rejected.description=\u0414\u0430\u043d\u043d\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0431\u044b\u043b \u043f\u0440\u043e\u0432\u0435\u0440\u0435\u043d \u0438 \u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d.
#
# Activiti Pooled Review Workflow
#
activitiReviewPooled.workflow.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0438 \u0443\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0432 \u043f\u0443\u043b\u0435
activitiReviewPooled.workflow.description=\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u0438 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0432 \u043f\u0443\u043b\u0435 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u043e\u0434\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432 Activiti
activitiReviewPooled.task.approved.description=\u0414\u0430\u043d\u043d\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0431\u044b\u043b \u043f\u0440\u043e\u0432\u0435\u0440\u0435\u043d \u0438 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d.
activitiReviewPooled.task.rejected.description=\u0414\u0430\u043d\u043d\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0431\u044b\u043b \u043f\u0440\u043e\u0432\u0435\u0440\u0435\u043d \u0438 \u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d.
#
# Activiti Parallel Group Review Workflow
#
activitiParallelGroupReview.workflow.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0438 \u0443\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0432 \u0433\u0440\u0443\u043f\u043f\u0435
activitiParallelGroupReview.workflow.description=\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u0438 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0432 \u0433\u0440\u0443\u043f\u043f\u0435 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u043e\u0434\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432 Activiti
activitiParallelGroupReview.task.approved.description=\u0414\u0430\u043d\u043d\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0431\u044b\u043b \u043f\u0440\u043e\u0432\u0435\u0440\u0435\u043d \u0438 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d.
activitiParallelGroupReview.task.rejected.description=\u0414\u0430\u043d\u043d\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0431\u044b\u043b \u043f\u0440\u043e\u0432\u0435\u0440\u0435\u043d \u0438 \u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d.
#
# Activiti Publish Web Content Workflow
#
publishWebContent.workflow.title=\u041f\u0440\u043e\u0446\u0435\u0441\u0441 Activiti \u0434\u043b\u044f \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u0432\u0435\u0431-\u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430
publishWebContent.workflow.description=\u041f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u044f \u0432\u0435\u0431-\u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u043e\u0434\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0432 Activiti
############################
# WORKFLOW MODEL LABELS #
############################
# Adhoc Task Definitions
wf_workflowmodel.type.wf_submitAdhocTask.title=\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u0443\u044e \u0437\u0430\u0434\u0430\u0447\u0443
wf_workflowmodel.type.wf_submitAdhocTask.description=\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u044c \u0437\u0430\u0434\u0430\u0447\u0443 \u043a\u043e\u043b\u043b\u0435\u0433\u0435
wf_workflowmodel.property.wf_notifyMe.title=\u0423\u0432\u0435\u0434\u043e\u043c\u0438\u0442\u044c \u043c\u0435\u043d\u044f
wf_workflowmodel.property.wf_notifyMe.description=\u0423\u0432\u0435\u0434\u043e\u043c\u0438\u0442\u044c \u043c\u0435\u043d\u044f \u043f\u0440\u0438 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u0438 \u0437\u0430\u0434\u0430\u0447\u0438
wf_workflowmodel.type.wf_adhocTask.title=\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0437\u0430\u0434\u0430\u0447\u0430
wf_workflowmodel.type.wf_adhocTask.description=\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0437\u0430\u0434\u0430\u0447\u0430 \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0430 \u043a\u043e\u043b\u043b\u0435\u0433\u043e\u0439
wf_workflowmodel.type.wf_completedAdhocTask.title=\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0437\u0430\u0434\u0430\u0447\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430
wf_workflowmodel.type.wf_completedAdhocTask.description=\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0437\u0430\u0434\u0430\u0447\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430
# Review And Approve Task Definitions
wf_workflowmodel.type.wf_submitReviewTask.title=\u041d\u0430\u0447\u0430\u0442\u044c \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443
wf_workflowmodel.type.wf_submitReviewTask.description=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b \u043d\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443 \u0438 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435
wf_workflowmodel.type.wf_reviewTask.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c
wf_workflowmodel.type.wf_reviewTask.description=\u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b, \u0447\u0442\u043e\u0431\u044b \u0443\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0438\u0445 \u0438\u043b\u0438 \u043e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
wf_workflowmodel.type.wf_rejectedTask.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u043e
wf_workflowmodel.type.wf_rejectedTask.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u043e
wf_workflowmodel.type.wf_approvedTask.title=\u0423\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043e
wf_workflowmodel.type.wf_approvedTask.description=\u0423\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043e
# Activiti Review And Approve Task Definitions
wf_workflowmodel.type.wf_activitiReviewTask.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c
wf_workflowmodel.type.wf_activitiReviewTask.description=\u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b, \u0447\u0442\u043e\u0431\u044b \u0443\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0438\u0445 \u0438\u043b\u0438 \u043e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
wf_workflowmodel.property.wf_reviewOutcome.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442
wf_workflowmodel.property.wf_reviewOutcome.description=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0438\u043b\u0438 \u043e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c \u043a\u043e\u043d\u0442\u0435\u043d\u0442
# Parallel Review And Approve Task Definitions
wf_workflowmodel.type.wf_submitParallelReviewTask.title=\u041d\u0430\u0447\u0430\u0442\u044c \u043f\u0430\u0440\u0430\u043b\u043b\u0435\u043b\u044c\u043d\u0443\u044e \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443
wf_workflowmodel.type.wf_submitParallelReviewTask.description=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b \u043d\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443 \u0438 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043b\u044e\u0434\u044f\u043c \u0438\u0437 \u0441\u043f\u0438\u0441\u043a\u0430
wf_workflowmodel.property.wf_requiredApprovePercent.title=\u0422\u0440\u0435\u0431\u0443\u0435\u043c\u044b\u0439 \u043f\u0440\u043e\u0446\u0435\u043d\u0442 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f
wf_workflowmodel.property.wf_requiredApprovePercent.description=\u041f\u0440\u043e\u0446\u0435\u043d\u0442 \u0440\u0435\u0446\u0435\u043d\u0437\u0435\u043d\u0442\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0434\u043e\u043b\u0436\u043d\u044b \u0443\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0434\u043b\u044f \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f
wf_workflowmodel.type.wf_rejectedParallelTask.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u043e
wf_workflowmodel.type.wf_rejectedParallelTask.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u043e
wf_workflowmodel.type.wf_approvedParallelTask.title=\u0423\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043e
wf_workflowmodel.type.wf_approvedParallelTask.description=\u0423\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043e
wf_workflowmodel.property.wf_reviewerCount.title=\u0427\u0438\u0441\u043b\u043e \u0440\u0435\u0446\u0435\u043d\u0437\u0435\u043d\u0442\u043e\u0432
wf_workflowmodel.property.wf_reviewerCount.description=\u0427\u0438\u0441\u043b\u043e \u0440\u0435\u0446\u0435\u043d\u0437\u0435\u043d\u0442\u043e\u0432
wf_workflowmodel.property.wf_requiredPercent.title=\u0422\u0440\u0435\u0431\u0443\u0435\u043c\u044b\u0439 \u043f\u0440\u043e\u0446\u0435\u043d\u0442 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f
wf_workflowmodel.property.wf_requiredPercent.description=\u0422\u0440\u0435\u0431\u0443\u0435\u043c\u044b\u0439 \u043f\u0440\u043e\u0446\u0435\u043d\u0442 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f
wf_workflowmodel.property.wf_approveCount.title=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0432\u0448\u0438\u0435 \u0440\u0435\u0446\u0435\u043d\u0437\u0435\u043d\u0442\u044b
wf_workflowmodel.property.wf_approveCount.description=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0432\u0448\u0438\u0435 \u0440\u0435\u0446\u0435\u043d\u0437\u0435\u043d\u0442\u044b
wf_workflowmodel.property.wf_actualPercent.title=\u0424\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u043f\u0440\u043e\u0446\u0435\u043d\u0442 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f
wf_workflowmodel.property.wf_actualPercent.description=\u0424\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u043f\u0440\u043e\u0446\u0435\u043d\u0442 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f
wf_workflowmodel.property.wf_reviewOutcome.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442
wf_workflowmodel.property.wf_reviewOutcome.description=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442
# Pooled Review Task Definitions
wf_workflowmodel.type.wf_submitGroupReviewTask.title=\u041d\u0430\u0447\u0430\u0442\u044c \u0433\u0440\u0443\u043f\u043f\u043e\u0432\u0443\u044e \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443
wf_workflowmodel.type.wf_submitGroupReviewTask.description=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b \u043d\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443 \u0438 \u0443\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u0433\u0440\u0443\u043f\u043f\u0435 \u043b\u044e\u0434\u0435\u0439
# List constraint display labels
listconstraint.wf_reviewOutcomeOptions.Approve=\u0423\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c
listconstraint.wf_reviewOutcomeOptions.Reject=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
# The result of a workflow task seen on Workflow Details - History
# This is formed by prefixing workflowtask.outcome to the value of the wf:outcome property
workflowtask.outcome.Approve=\u0423\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u043e
workflowtask.outcome.Reject=\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u043e

View File

@@ -576,6 +576,52 @@ public class CalendarHelpersTest
assertEquals("2011-08-02", dateFmt.format(dates.get(0)));
}
/**
* Test recurrence rules that occur monthly or yearly
* on the last day within the month
*/
@Test public void reccurenceByLastDay(){
List<Date> dates = new ArrayList<Date>();
Calendar currentDate = Calendar.getInstance();
currentDate.set(2012,7-1,15,10,30);
//Recur Monthly on the last Monday
Map<String,String> params = new HashMap<String, String>();
params.put("FREQ", "MONTHLY");
params.put("BYDAY", "MO");
params.put("INTERVAL", "1");
params.put("BYSETPOS", "-1");
dates.clear();
RecurrenceHelper.buildMonthlyRecurrences(
currentDate, dates, params,
date(2012,7,1), date(2012,9,30),
false, 1);
assertEquals(3, dates.size());
assertEquals("2012-07-30", dateFmt.format(dates.get(0)));
assertEquals("2012-08-27", dateFmt.format(dates.get(1)));
assertEquals("2012-09-24", dateFmt.format(dates.get(2)));
//Recur yearly on the last Monday in July
params = new HashMap<String, String>();
params.put("BYMONTH", "7");
params.put("BYDAY", "MO");
params.put("BYSETPOS", "-1");
dates.clear();
RecurrenceHelper.buildYearlyRecurrences(
currentDate, dates, params,
date(2012,7,1), date(2015,10,1),
false, 1);
assertEquals(3, dates.size());
assertEquals("2013-07-29", dateFmt.format(dates.get(0)));
assertEquals("2014-07-28", dateFmt.format(dates.get(1)));
assertEquals("2015-07-27", dateFmt.format(dates.get(2)));
}
/**
* on the 1st Tuesday of the month
*/

View File

@@ -311,6 +311,8 @@ public class SOLRAdminClient implements ApplicationEventPublisherAware
properties.setProperty("org.quartz.scheduler.instanceName", "SolrWatcherScheduler");
properties.setProperty("org.quartz.threadPool.class", "org.quartz.simpl.SimpleThreadPool");
properties.setProperty("org.quartz.threadPool.threadCount", "3");
properties.setProperty("org.quartz.threadPool.makeThreadsDaemons", "true");
properties.setProperty("org.quartz.scheduler.makeSchedulerThreadDaemon", "true");
properties.setProperty("org.quartz.jobStore.class", "org.quartz.simpl.RAMJobStore");
factory.initialize(properties);
scheduler = factory.getScheduler();

View File

@@ -82,6 +82,26 @@ public class CalendarRecurrenceHelper
return days;
}
@SuppressWarnings("serial")
protected final static Map<Integer,String> WEEK_NUMBER_TO_WEEK_NAME =
Collections.unmodifiableMap(new HashMap<Integer, String>() {{
put(1, "first");
put(2, "second");
put(3, "third");
put(4, "fourth");
put(-1, "last");
}});
/**
* The lookup from the week in month number to week
* in month name in the specified locale
*/
public static Map<Integer, String> buildLocalRecurrenceWeekNames(Locale locale){
return WEEK_NUMBER_TO_WEEK_NAME;
}
/**
* Returns the parsed calendar recurrence rule
* WARNING - Alfresco use only. Return type will likely shift to
@@ -664,22 +684,11 @@ public class CalendarRecurrenceHelper
*/
private static void toDayOfWeekInMonth(Calendar c, int dayOfWeek, int weekInMonth)
{
// First up, move to the start of the month
c.set(Calendar.DATE, 1);
// Now, move to the 1st instance of the day of the week
Date t = c.getTime();
c.set(Calendar.DAY_OF_WEEK, dayOfWeek);
// If we went back, go forward a week
if (c.getTime().before(t))
{
c.add(Calendar.DATE, 7);
}
// Now move to the required week
if (weekInMonth > 1)
{
c.add(Calendar.DATE, 7 * (weekInMonth-1));
}
//set it to the first day
c.set(Calendar.DATE, 1);
//move to the day we need
c.set(Calendar.DAY_OF_WEEK, dayOfWeek);
//and then to the month
c.set(Calendar.DAY_OF_WEEK_IN_MONTH, weekInMonth);
}
}