diff --git a/.editorConfig b/.editorConfig
index 8a1ce60ed4..1808f3da08 100644
--- a/.editorConfig
+++ b/.editorConfig
@@ -1,15 +1,15 @@
-# EditorConfig file: http://editorconfig.org/
-# Syntax at: https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
-
-# This is the Top level for the RM project
-root = true
-
-# All files should use spaces.
-[*]
-indent_style = space
-end_of_line = crlf
-trim_trailing_whitespace = true
-indent_size = 3
-
-[*.java]
-indent_size = 4
+# EditorConfig file: http://editorconfig.org/
+# Syntax at: https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
+
+# This is the Top level for the RM project
+root = true
+
+# All files should use spaces.
+[*]
+indent_style = space
+end_of_line = crlf
+trim_trailing_whitespace = true
+indent_size = 3
+
+[*.java]
+indent_size = 4
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000000..2f5a361a05
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,29 @@
+# Automatically detect if no other rule applies.
+* text=auto
+
+# Extensions known to be text files.
+*.css text
+*.editorConfig text
+*.ftl text
+*.gitattributes text
+*.gitignore text
+*.html text
+*.importorder text
+*.java text
+*.js text
+*.jshintrc text
+*.json text
+*.properties text
+*.txt text
+*.xml text
+
+# Alfresco content package.
+*.acp binary
+
+# Image files.
+*.gif binary
+*.jpg binary
+*.png binary
+
+# IntelliJ has a jar file as part of its config directory.
+*.jar binary
diff --git a/.gitignore b/.gitignore
index 76b6b011a9..dfdc3e2322 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,40 +1,40 @@
-# General ignored files and directories
-.ant-targets-build.xml
-.classpath
-.gradle
-.idea
-.project
-.settings
-*.eml
-*.iml
-*.log*
-*.tmp
-*.war
-bin
-build.local.properties
-dist
-explodedDeps
-local.properties
-target
-test-output
-
-# /rm-community/
-/rm-community/l10n
-/rm-community/root
-
-# /rm-community/rm-server/
-/rm-community/rm-server/alfresco-solr.zip
-/rm-community/rm-server/solr
-/rm-community/rm-server/shared
-
-# /rm-community/rm-server/config/
-/rm-community/rm-server/config/alfresco-global.properties
-
-# /rm-community/rm-server/config/alfresco/
-/rm-community/rm-server/config/alfresco/extension
-
-# /rm-enterprise/rm-automation-enterprise/
-/rm-enterprise/rm-automation-enterprise/l10n
-/rm-enterprise/rm-automation-enterprise/root
-
-rm-automation/src/test/resources/webdriver.properties
+# General ignored files and directories
+.ant-targets-build.xml
+.classpath
+.gradle
+.idea
+.project
+.settings
+*.eml
+*.iml
+*.log*
+*.tmp
+*.war
+bin
+build.local.properties
+dist
+explodedDeps
+local.properties
+target
+test-output
+
+# /rm-community/
+/rm-community/l10n
+/rm-community/root
+
+# /rm-community/rm-server/
+/rm-community/rm-server/alfresco-solr.zip
+/rm-community/rm-server/solr
+/rm-community/rm-server/shared
+
+# /rm-community/rm-server/config/
+/rm-community/rm-server/config/alfresco-global.properties
+
+# /rm-community/rm-server/config/alfresco/
+/rm-community/rm-server/config/alfresco/extension
+
+# /rm-enterprise/rm-automation-enterprise/
+/rm-enterprise/rm-automation-enterprise/l10n
+/rm-enterprise/rm-automation-enterprise/root
+
+rm-automation/src/test/resources/webdriver.properties
diff --git a/.jshintrc b/.jshintrc
index 9af2c28e32..67d44b1766 100644
--- a/.jshintrc
+++ b/.jshintrc
@@ -1,44 +1,44 @@
-{
- "bitwise": true,
- "curly": true,
- "eqeqeq": true,
- "es3": true,
- "forin": true,
- "freeze": true,
- "funcscope": true,
- "immed": true,
- "indent": 3,
- "iterator": true,
- "latedef": true,
- "maxcomplexity": 10,
- "maxdepth": 50,
- "maxerr": 50,
- "maxlen": 250,
- "maxparams": 50,
- "maxstatements": 30,
- "newcap": true,
- "noarg": true,
- "nonbsp": true,
- "nonew": true,
- "notypeof": true,
- "shadow": "outer",
- "undef": true,
- "unused": true,
-
- "globals": {
- "module": false,
- "model": true,
- "Alfresco": true,
- "YAHOO": false,
- "appContext": false,
- "PDFJS": false,
- "AlfrescoUtil": true,
- "msg": false
- },
-
- "expr": true,
- "strict": false,
-
- "browser": true,
- "dojo": true
-}
+{
+ "bitwise": true,
+ "curly": true,
+ "eqeqeq": true,
+ "es3": true,
+ "forin": true,
+ "freeze": true,
+ "funcscope": true,
+ "immed": true,
+ "indent": 3,
+ "iterator": true,
+ "latedef": true,
+ "maxcomplexity": 10,
+ "maxdepth": 50,
+ "maxerr": 50,
+ "maxlen": 250,
+ "maxparams": 50,
+ "maxstatements": 30,
+ "newcap": true,
+ "noarg": true,
+ "nonbsp": true,
+ "nonew": true,
+ "notypeof": true,
+ "shadow": "outer",
+ "undef": true,
+ "unused": true,
+
+ "globals": {
+ "module": false,
+ "model": true,
+ "Alfresco": true,
+ "YAHOO": false,
+ "appContext": false,
+ "PDFJS": false,
+ "AlfrescoUtil": true,
+ "msg": false
+ },
+
+ "expr": true,
+ "strict": false,
+
+ "browser": true,
+ "dojo": true
+}
diff --git a/README.txt b/README.txt
index b9362315b3..637a6736fd 100644
--- a/README.txt
+++ b/README.txt
@@ -1,102 +1,102 @@
-Configuring and starting Alfresco/Share:
-----------------------------------------
-
-- Clone the project (e.g. git clone git@gitlab.alfresco.com:records-management/records-management.git)
-
-- Import the project as a maven project
-
-- Start the Alfresco/Share instances with the following commands:
-
- mvn clean install -Pstart-repo
- mvn clean install -Pstart-share
-
- (these commands work best if run from the specific directories, e.g. start share from
- rm-enterprise/rm-enterprise-share/ or rm-community/rm-community-share/ )
-
-
-Configuring a different DB other than H2 (e.g. MySQL or PostgreSQL):
---------------------------------------------------------------------
-
-- Create a file called "local.properties" under src/main/resources in alfresco-rm-enterprise-repo
-
-- Add the following properties in this new file
- my.db.name -> The name of the database schema
- my.db.port -> The port number for your database (default port number for postgres is 5432 and for mysql it is 3306)
-
-- Run the following commands to start your Alfresco instance:
-
- to start Alfresco (using Postgres):
- mvn clean install -Pstart-repo,use-postgres
-
- to start Alfresco (using MySQL):
- mvn clean install -Pstart-repo,use-mysql
-
-
-Running integration test:
--------------------------
-
-In order to execute the integration tests run the following command (unit tests will be executed every time before you start Alfresco/Share):
-
-mvn clean install -Dskip.integrationtests=false
-
-
-Running UI Automation tests:
-----------------------------
-
-To run the automated UI tests, change to the rm-automation directory and run:
-
- mvn clean install -Dskip.automationtests=false
-
-Depending on your local Firefox version, you may need to modify the rm-automation/pom.xml to use version 1.7 of selenium-grid
-
-
-Updating License Headers:
--------------------------
-
-In order to refesh out of date license source headers run the following command:
-
-mvn clean install -Dlicense.update.dryrun=false
-
-
-Running tests against latest Aikau snapshot:
---------------------------------------------
-
-The latest Aikau snapshot can be pulled by running the following command in rm-community:
-
- mvn clean install -DskipTests -Dalfresco.aikau.version=LATEST -U
-
-Thereafter start the Share instance and run automation tests as described above.
-
-
-Configuring Outlook Integration:
--------------------------------
-
-To download and run RM with the Outlook Integration AMPs installed on the repo and Share use the following commands:
-
- mvn clean install -Pstart-repo,outlook-integration
- mvn clean install -Pstart-share,outlook-integration
-
-Follow these instructions install licence and Outlook plugin:
-
- - http://docs.alfresco.com/outlook2.1/tasks/Outlook-license.html
- - http://docs.alfresco.com/outlook2.1/tasks/Outlook-install_v2.html
-
-
-
-
-
-SNAPSHOT dependencies:
-----------------------
-
-If you're building Enterprise RM, the base project (Community) is pulled in via a snapshot dependency configured in maven.
-This dependency will either be loaded from your local .m2 cache or from Nexus if the version in your .m2 doesn't exist or is old
-(Old in maven terms is anything over 24hrs old). If maven fetches it from Nexus, your code it's unlikely to be the correct version.
-You want to always use the version in your local cache - this means either doing a daily build at the root project level
-that pushes a new copy of the correct version into your cache, or alternatively you could run mvn with the
---no-snapshot-dependency (or -nsu) option, which won't try to download a newer version.
-
-
-Code Formatting:
-----------------
-
-This project follows the usual Alfresco Coding Standards. If you use Eclipse or IntelliJ, there are settings inside the ide-config directory for you to import.
+Configuring and starting Alfresco/Share:
+----------------------------------------
+
+- Clone the project (e.g. git clone git@gitlab.alfresco.com:records-management/records-management.git)
+
+- Import the project as a maven project
+
+- Start the Alfresco/Share instances with the following commands:
+
+ mvn clean install -Pstart-repo
+ mvn clean install -Pstart-share
+
+ (these commands work best if run from the specific directories, e.g. start share from
+ rm-enterprise/rm-enterprise-share/ or rm-community/rm-community-share/ )
+
+
+Configuring a different DB other than H2 (e.g. MySQL or PostgreSQL):
+--------------------------------------------------------------------
+
+- Create a file called "local.properties" under src/main/resources in alfresco-rm-enterprise-repo
+
+- Add the following properties in this new file
+ my.db.name -> The name of the database schema
+ my.db.port -> The port number for your database (default port number for postgres is 5432 and for mysql it is 3306)
+
+- Run the following commands to start your Alfresco instance:
+
+ to start Alfresco (using Postgres):
+ mvn clean install -Pstart-repo,use-postgres
+
+ to start Alfresco (using MySQL):
+ mvn clean install -Pstart-repo,use-mysql
+
+
+Running integration test:
+-------------------------
+
+In order to execute the integration tests run the following command (unit tests will be executed every time before you start Alfresco/Share):
+
+mvn clean install -Dskip.integrationtests=false
+
+
+Running UI Automation tests:
+----------------------------
+
+To run the automated UI tests, change to the rm-automation directory and run:
+
+ mvn clean install -Dskip.automationtests=false
+
+Depending on your local Firefox version, you may need to modify the rm-automation/pom.xml to use version 1.7 of selenium-grid
+
+
+Updating License Headers:
+-------------------------
+
+In order to refesh out of date license source headers run the following command:
+
+mvn clean install -Dlicense.update.dryrun=false
+
+
+Running tests against latest Aikau snapshot:
+--------------------------------------------
+
+The latest Aikau snapshot can be pulled by running the following command in rm-community:
+
+ mvn clean install -DskipTests -Dalfresco.aikau.version=LATEST -U
+
+Thereafter start the Share instance and run automation tests as described above.
+
+
+Configuring Outlook Integration:
+-------------------------------
+
+To download and run RM with the Outlook Integration AMPs installed on the repo and Share use the following commands:
+
+ mvn clean install -Pstart-repo,outlook-integration
+ mvn clean install -Pstart-share,outlook-integration
+
+Follow these instructions install licence and Outlook plugin:
+
+ - http://docs.alfresco.com/outlook2.1/tasks/Outlook-license.html
+ - http://docs.alfresco.com/outlook2.1/tasks/Outlook-install_v2.html
+
+
+
+
+
+SNAPSHOT dependencies:
+----------------------
+
+If you're building Enterprise RM, the base project (Community) is pulled in via a snapshot dependency configured in maven.
+This dependency will either be loaded from your local .m2 cache or from Nexus if the version in your .m2 doesn't exist or is old
+(Old in maven terms is anything over 24hrs old). If maven fetches it from Nexus, your code it's unlikely to be the correct version.
+You want to always use the version in your local cache - this means either doing a daily build at the root project level
+that pushes a new copy of the correct version into your cache, or alternatively you could run mvn with the
+--no-snapshot-dependency (or -nsu) option, which won't try to download a newer version.
+
+
+Code Formatting:
+----------------
+
+This project follows the usual Alfresco Coding Standards. If you use Eclipse or IntelliJ, there are settings inside the ide-config directory for you to import.
diff --git a/l10n.properties b/l10n.properties
index 04791b76ff..663ca0f168 100644
--- a/l10n.properties
+++ b/l10n.properties
@@ -1,4 +1,4 @@
-# Localisation config overrides for Records Management module
-MESSAGE_SEARCH_PATH="rm-community/rm-community-repo/config rm-community/rm-community-share rm-community/rm-share/source rm-enterprise/rm-enterprise-repo/src/main rm-enterprise/rm-enterprise-share/src/main "
-EXCLUDED_FILES="$EXCLUDED_FILES rm-method-security.properties springloaded.properties file-mapping.properties classified-content-notForTranslating.properties notForTranslating"
-EXTENSION_PREFIX=-RM
+# Localisation config overrides for Records Management module
+MESSAGE_SEARCH_PATH="rm-community/rm-community-repo/config rm-community/rm-community-share rm-community/rm-share/source rm-enterprise/rm-enterprise-repo/src/main rm-enterprise/rm-enterprise-share/src/main "
+EXCLUDED_FILES="$EXCLUDED_FILES rm-method-security.properties springloaded.properties file-mapping.properties classified-content-notForTranslating.properties notForTranslating"
+EXTENSION_PREFIX=-RM
diff --git a/license/alfresco_community/header.txt b/license/alfresco_community/header.txt
index 06e85840e6..d850cee1ea 100644
--- a/license/alfresco_community/header.txt
+++ b/license/alfresco_community/header.txt
@@ -1,18 +1,18 @@
-This file is part of the Alfresco software.
--
-If the software was purchased under a paid Alfresco license, the terms of
-the paid license agreement will prevail. Otherwise, the software is
-provided under the following open source license terms:
--
-Alfresco is free software: you can redistribute it and/or modify
-it under the terms of the GNU Lesser General Public License as published by
-the Free Software Foundation, either version 3 of the License, or
-(at your option) any later version.
--
-Alfresco is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU Lesser General Public License for more details.
--
-You should have received a copy of the GNU Lesser General Public License
+This file is part of the Alfresco software.
+-
+If the software was purchased under a paid Alfresco license, the terms of
+the paid license agreement will prevail. Otherwise, the software is
+provided under the following open source license terms:
+-
+Alfresco is free software: you can redistribute it and/or modify
+it under the terms of the GNU Lesser General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+-
+Alfresco is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Lesser General Public License for more details.
+-
+You should have received a copy of the GNU Lesser General Public License
along with Alfresco. If not, see .
\ No newline at end of file
diff --git a/license/alfresco_community/license.txt b/license/alfresco_community/license.txt
index e8bec28dfa..cca7fc278f 100644
--- a/license/alfresco_community/license.txt
+++ b/license/alfresco_community/license.txt
@@ -1,165 +1,165 @@
- GNU LESSER GENERAL PUBLIC LICENSE
- Version 3, 29 June 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc.
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-
- This version of the GNU Lesser General Public License incorporates
-the terms and conditions of version 3 of the GNU General Public
-License, supplemented by the additional permissions listed below.
-
- 0. Additional Definitions.
-
- As used herein, "this License" refers to version 3 of the GNU Lesser
-General Public License, and the "GNU GPL" refers to version 3 of the GNU
-General Public License.
-
- "The Library" refers to a covered work governed by this License,
-other than an Application or a Combined Work as defined below.
-
- An "Application" is any work that makes use of an interface provided
-by the Library, but which is not otherwise based on the Library.
-Defining a subclass of a class defined by the Library is deemed a mode
-of using an interface provided by the Library.
-
- A "Combined Work" is a work produced by combining or linking an
-Application with the Library. The particular version of the Library
-with which the Combined Work was made is also called the "Linked
-Version".
-
- The "Minimal Corresponding Source" for a Combined Work means the
-Corresponding Source for the Combined Work, excluding any source code
-for portions of the Combined Work that, considered in isolation, are
-based on the Application, and not on the Linked Version.
-
- The "Corresponding Application Code" for a Combined Work means the
-object code and/or source code for the Application, including any data
-and utility programs needed for reproducing the Combined Work from the
-Application, but excluding the System Libraries of the Combined Work.
-
- 1. Exception to Section 3 of the GNU GPL.
-
- You may convey a covered work under sections 3 and 4 of this License
-without being bound by section 3 of the GNU GPL.
-
- 2. Conveying Modified Versions.
-
- If you modify a copy of the Library, and, in your modifications, a
-facility refers to a function or data to be supplied by an Application
-that uses the facility (other than as an argument passed when the
-facility is invoked), then you may convey a copy of the modified
-version:
-
- a) under this License, provided that you make a good faith effort to
- ensure that, in the event an Application does not supply the
- function or data, the facility still operates, and performs
- whatever part of its purpose remains meaningful, or
-
- b) under the GNU GPL, with none of the additional permissions of
- this License applicable to that copy.
-
- 3. Object Code Incorporating Material from Library Header Files.
-
- The object code form of an Application may incorporate material from
-a header file that is part of the Library. You may convey such object
-code under terms of your choice, provided that, if the incorporated
-material is not limited to numerical parameters, data structure
-layouts and accessors, or small macros, inline functions and templates
-(ten or fewer lines in length), you do both of the following:
-
- a) Give prominent notice with each copy of the object code that the
- Library is used in it and that the Library and its use are
- covered by this License.
-
- b) Accompany the object code with a copy of the GNU GPL and this license
- document.
-
- 4. Combined Works.
-
- You may convey a Combined Work under terms of your choice that,
-taken together, effectively do not restrict modification of the
-portions of the Library contained in the Combined Work and reverse
-engineering for debugging such modifications, if you also do each of
-the following:
-
- a) Give prominent notice with each copy of the Combined Work that
- the Library is used in it and that the Library and its use are
- covered by this License.
-
- b) Accompany the Combined Work with a copy of the GNU GPL and this license
- document.
-
- c) For a Combined Work that displays copyright notices during
- execution, include the copyright notice for the Library among
- these notices, as well as a reference directing the user to the
- copies of the GNU GPL and this license document.
-
- d) Do one of the following:
-
- 0) Convey the Minimal Corresponding Source under the terms of this
- License, and the Corresponding Application Code in a form
- suitable for, and under terms that permit, the user to
- recombine or relink the Application with a modified version of
- the Linked Version to produce a modified Combined Work, in the
- manner specified by section 6 of the GNU GPL for conveying
- Corresponding Source.
-
- 1) Use a suitable shared library mechanism for linking with the
- Library. A suitable mechanism is one that (a) uses at run time
- a copy of the Library already present on the user's computer
- system, and (b) will operate properly with a modified version
- of the Library that is interface-compatible with the Linked
- Version.
-
- e) Provide Installation Information, but only if you would otherwise
- be required to provide such information under section 6 of the
- GNU GPL, and only to the extent that such information is
- necessary to install and execute a modified version of the
- Combined Work produced by recombining or relinking the
- Application with a modified version of the Linked Version. (If
- you use option 4d0, the Installation Information must accompany
- the Minimal Corresponding Source and Corresponding Application
- Code. If you use option 4d1, you must provide the Installation
- Information in the manner specified by section 6 of the GNU GPL
- for conveying Corresponding Source.)
-
- 5. Combined Libraries.
-
- You may place library facilities that are a work based on the
-Library side by side in a single library together with other library
-facilities that are not Applications and are not covered by this
-License, and convey such a combined library under terms of your
-choice, if you do both of the following:
-
- a) Accompany the combined library with a copy of the same work based
- on the Library, uncombined with any other library facilities,
- conveyed under the terms of this License.
-
- b) Give prominent notice with the combined library that part of it
- is a work based on the Library, and explaining where to find the
- accompanying uncombined form of the same work.
-
- 6. Revised Versions of the GNU Lesser General Public License.
-
- The Free Software Foundation may publish revised and/or new versions
-of the GNU Lesser General Public License from time to time. Such new
-versions will be similar in spirit to the present version, but may
-differ in detail to address new problems or concerns.
-
- Each version is given a distinguishing version number. If the
-Library as you received it specifies that a certain numbered version
-of the GNU Lesser General Public License "or any later version"
-applies to it, you have the option of following the terms and
-conditions either of that published version or of any later version
-published by the Free Software Foundation. If the Library as you
-received it does not specify a version number of the GNU Lesser
-General Public License, you may choose any version of the GNU Lesser
-General Public License ever published by the Free Software Foundation.
-
- If the Library as you received it specifies that a proxy can decide
-whether future versions of the GNU Lesser General Public License shall
-apply, that proxy's public statement of acceptance of any version is
-permanent authorization for you to choose that version for the
-Library.
+ GNU LESSER GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+
+ This version of the GNU Lesser General Public License incorporates
+the terms and conditions of version 3 of the GNU General Public
+License, supplemented by the additional permissions listed below.
+
+ 0. Additional Definitions.
+
+ As used herein, "this License" refers to version 3 of the GNU Lesser
+General Public License, and the "GNU GPL" refers to version 3 of the GNU
+General Public License.
+
+ "The Library" refers to a covered work governed by this License,
+other than an Application or a Combined Work as defined below.
+
+ An "Application" is any work that makes use of an interface provided
+by the Library, but which is not otherwise based on the Library.
+Defining a subclass of a class defined by the Library is deemed a mode
+of using an interface provided by the Library.
+
+ A "Combined Work" is a work produced by combining or linking an
+Application with the Library. The particular version of the Library
+with which the Combined Work was made is also called the "Linked
+Version".
+
+ The "Minimal Corresponding Source" for a Combined Work means the
+Corresponding Source for the Combined Work, excluding any source code
+for portions of the Combined Work that, considered in isolation, are
+based on the Application, and not on the Linked Version.
+
+ The "Corresponding Application Code" for a Combined Work means the
+object code and/or source code for the Application, including any data
+and utility programs needed for reproducing the Combined Work from the
+Application, but excluding the System Libraries of the Combined Work.
+
+ 1. Exception to Section 3 of the GNU GPL.
+
+ You may convey a covered work under sections 3 and 4 of this License
+without being bound by section 3 of the GNU GPL.
+
+ 2. Conveying Modified Versions.
+
+ If you modify a copy of the Library, and, in your modifications, a
+facility refers to a function or data to be supplied by an Application
+that uses the facility (other than as an argument passed when the
+facility is invoked), then you may convey a copy of the modified
+version:
+
+ a) under this License, provided that you make a good faith effort to
+ ensure that, in the event an Application does not supply the
+ function or data, the facility still operates, and performs
+ whatever part of its purpose remains meaningful, or
+
+ b) under the GNU GPL, with none of the additional permissions of
+ this License applicable to that copy.
+
+ 3. Object Code Incorporating Material from Library Header Files.
+
+ The object code form of an Application may incorporate material from
+a header file that is part of the Library. You may convey such object
+code under terms of your choice, provided that, if the incorporated
+material is not limited to numerical parameters, data structure
+layouts and accessors, or small macros, inline functions and templates
+(ten or fewer lines in length), you do both of the following:
+
+ a) Give prominent notice with each copy of the object code that the
+ Library is used in it and that the Library and its use are
+ covered by this License.
+
+ b) Accompany the object code with a copy of the GNU GPL and this license
+ document.
+
+ 4. Combined Works.
+
+ You may convey a Combined Work under terms of your choice that,
+taken together, effectively do not restrict modification of the
+portions of the Library contained in the Combined Work and reverse
+engineering for debugging such modifications, if you also do each of
+the following:
+
+ a) Give prominent notice with each copy of the Combined Work that
+ the Library is used in it and that the Library and its use are
+ covered by this License.
+
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
+ document.
+
+ c) For a Combined Work that displays copyright notices during
+ execution, include the copyright notice for the Library among
+ these notices, as well as a reference directing the user to the
+ copies of the GNU GPL and this license document.
+
+ d) Do one of the following:
+
+ 0) Convey the Minimal Corresponding Source under the terms of this
+ License, and the Corresponding Application Code in a form
+ suitable for, and under terms that permit, the user to
+ recombine or relink the Application with a modified version of
+ the Linked Version to produce a modified Combined Work, in the
+ manner specified by section 6 of the GNU GPL for conveying
+ Corresponding Source.
+
+ 1) Use a suitable shared library mechanism for linking with the
+ Library. A suitable mechanism is one that (a) uses at run time
+ a copy of the Library already present on the user's computer
+ system, and (b) will operate properly with a modified version
+ of the Library that is interface-compatible with the Linked
+ Version.
+
+ e) Provide Installation Information, but only if you would otherwise
+ be required to provide such information under section 6 of the
+ GNU GPL, and only to the extent that such information is
+ necessary to install and execute a modified version of the
+ Combined Work produced by recombining or relinking the
+ Application with a modified version of the Linked Version. (If
+ you use option 4d0, the Installation Information must accompany
+ the Minimal Corresponding Source and Corresponding Application
+ Code. If you use option 4d1, you must provide the Installation
+ Information in the manner specified by section 6 of the GNU GPL
+ for conveying Corresponding Source.)
+
+ 5. Combined Libraries.
+
+ You may place library facilities that are a work based on the
+Library side by side in a single library together with other library
+facilities that are not Applications and are not covered by this
+License, and convey such a combined library under terms of your
+choice, if you do both of the following:
+
+ a) Accompany the combined library with a copy of the same work based
+ on the Library, uncombined with any other library facilities,
+ conveyed under the terms of this License.
+
+ b) Give prominent notice with the combined library that part of it
+ is a work based on the Library, and explaining where to find the
+ accompanying uncombined form of the same work.
+
+ 6. Revised Versions of the GNU Lesser General Public License.
+
+ The Free Software Foundation may publish revised and/or new versions
+of the GNU Lesser General Public License from time to time. Such new
+versions will be similar in spirit to the present version, but may
+differ in detail to address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Library as you received it specifies that a certain numbered version
+of the GNU Lesser General Public License "or any later version"
+applies to it, you have the option of following the terms and
+conditions either of that published version or of any later version
+published by the Free Software Foundation. If the Library as you
+received it does not specify a version number of the GNU Lesser
+General Public License, you may choose any version of the GNU Lesser
+General Public License ever published by the Free Software Foundation.
+
+ If the Library as you received it specifies that a proxy can decide
+whether future versions of the GNU Lesser General Public License shall
+apply, that proxy's public statement of acceptance of any version is
+permanent authorization for you to choose that version for the
+Library.
diff --git a/license/licenses.properties b/license/licenses.properties
index c9c434ed06..19b06c5c37 100644
--- a/license/licenses.properties
+++ b/license/licenses.properties
@@ -1,2 +1,2 @@
-alfresco_community=Alfresco Community
+alfresco_community=Alfresco Community
alfresco_enterprise=Alfresco Enterprise
\ No newline at end of file
diff --git a/rm-community/.editorConfig b/rm-community/.editorConfig
index 2dcf5d5e94..48fa6b4b8e 100644
--- a/rm-community/.editorConfig
+++ b/rm-community/.editorConfig
@@ -1,17 +1,17 @@
-
-# EditorConfig file: http://editorconfig.org/
-# Syntax at: https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
-
-# This is the Top level for the RM project
-root = true
-
-# All files should use spaces.
-[*]
-indent_style = space
-
-# Just JS for now.
-[*.js]
-indent_size = 3
-trim_trailing_whitespace = true
-
-#TODO: css, xml, ftl, etc.
+
+# EditorConfig file: http://editorconfig.org/
+# Syntax at: https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
+
+# This is the Top level for the RM project
+root = true
+
+# All files should use spaces.
+[*]
+indent_style = space
+
+# Just JS for now.
+[*.js]
+indent_size = 3
+trim_trailing_whitespace = true
+
+#TODO: css, xml, ftl, etc.
diff --git a/rm-community/.jshintrc b/rm-community/.jshintrc
index 8bc7b445a7..a54fb37ca2 100644
--- a/rm-community/.jshintrc
+++ b/rm-community/.jshintrc
@@ -1,45 +1,45 @@
-
-{
- "bitwise": true,
- "curly": true,
- "eqeqeq": true,
- "es3": true,
- "forin": true,
- "freeze": true,
- "funcscope": true,
- "immed": true,
- "indent": 3,
- "iterator": true,
- "latedef": true,
- "maxcomplexity": 10,
- "maxdepth": 50,
- "maxerr": 50,
- "maxlen": 250,
- "maxparams": 50,
- "maxstatements": 30,
- "newcap": true,
- "noarg": true,
- "nonbsp": true,
- "nonew": true,
- "notypeof": true,
- "shadow": "outer",
- "undef": true,
- "unused": true,
-
- "globals": {
- "module": false,
- "model": true,
- "Alfresco": true,
- "YAHOO": false,
- "appContext": false,
- "PDFJS": false,
- "AlfrescoUtil": true,
- "msg": false
- },
-
- "expr": true,
- "strict": false,
-
- "browser": true,
- "dojo": true
+
+{
+ "bitwise": true,
+ "curly": true,
+ "eqeqeq": true,
+ "es3": true,
+ "forin": true,
+ "freeze": true,
+ "funcscope": true,
+ "immed": true,
+ "indent": 3,
+ "iterator": true,
+ "latedef": true,
+ "maxcomplexity": 10,
+ "maxdepth": 50,
+ "maxerr": 50,
+ "maxlen": 250,
+ "maxparams": 50,
+ "maxstatements": 30,
+ "newcap": true,
+ "noarg": true,
+ "nonbsp": true,
+ "nonew": true,
+ "notypeof": true,
+ "shadow": "outer",
+ "undef": true,
+ "unused": true,
+
+ "globals": {
+ "module": false,
+ "model": true,
+ "Alfresco": true,
+ "YAHOO": false,
+ "appContext": false,
+ "PDFJS": false,
+ "AlfrescoUtil": true,
+ "msg": false
+ },
+
+ "expr": true,
+ "strict": false,
+
+ "browser": true,
+ "dojo": true
}
\ No newline at end of file
diff --git a/rm-community/LICENSE.txt b/rm-community/LICENSE.txt
index e8bec28dfa..cca7fc278f 100644
--- a/rm-community/LICENSE.txt
+++ b/rm-community/LICENSE.txt
@@ -1,165 +1,165 @@
- GNU LESSER GENERAL PUBLIC LICENSE
- Version 3, 29 June 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc.
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-
- This version of the GNU Lesser General Public License incorporates
-the terms and conditions of version 3 of the GNU General Public
-License, supplemented by the additional permissions listed below.
-
- 0. Additional Definitions.
-
- As used herein, "this License" refers to version 3 of the GNU Lesser
-General Public License, and the "GNU GPL" refers to version 3 of the GNU
-General Public License.
-
- "The Library" refers to a covered work governed by this License,
-other than an Application or a Combined Work as defined below.
-
- An "Application" is any work that makes use of an interface provided
-by the Library, but which is not otherwise based on the Library.
-Defining a subclass of a class defined by the Library is deemed a mode
-of using an interface provided by the Library.
-
- A "Combined Work" is a work produced by combining or linking an
-Application with the Library. The particular version of the Library
-with which the Combined Work was made is also called the "Linked
-Version".
-
- The "Minimal Corresponding Source" for a Combined Work means the
-Corresponding Source for the Combined Work, excluding any source code
-for portions of the Combined Work that, considered in isolation, are
-based on the Application, and not on the Linked Version.
-
- The "Corresponding Application Code" for a Combined Work means the
-object code and/or source code for the Application, including any data
-and utility programs needed for reproducing the Combined Work from the
-Application, but excluding the System Libraries of the Combined Work.
-
- 1. Exception to Section 3 of the GNU GPL.
-
- You may convey a covered work under sections 3 and 4 of this License
-without being bound by section 3 of the GNU GPL.
-
- 2. Conveying Modified Versions.
-
- If you modify a copy of the Library, and, in your modifications, a
-facility refers to a function or data to be supplied by an Application
-that uses the facility (other than as an argument passed when the
-facility is invoked), then you may convey a copy of the modified
-version:
-
- a) under this License, provided that you make a good faith effort to
- ensure that, in the event an Application does not supply the
- function or data, the facility still operates, and performs
- whatever part of its purpose remains meaningful, or
-
- b) under the GNU GPL, with none of the additional permissions of
- this License applicable to that copy.
-
- 3. Object Code Incorporating Material from Library Header Files.
-
- The object code form of an Application may incorporate material from
-a header file that is part of the Library. You may convey such object
-code under terms of your choice, provided that, if the incorporated
-material is not limited to numerical parameters, data structure
-layouts and accessors, or small macros, inline functions and templates
-(ten or fewer lines in length), you do both of the following:
-
- a) Give prominent notice with each copy of the object code that the
- Library is used in it and that the Library and its use are
- covered by this License.
-
- b) Accompany the object code with a copy of the GNU GPL and this license
- document.
-
- 4. Combined Works.
-
- You may convey a Combined Work under terms of your choice that,
-taken together, effectively do not restrict modification of the
-portions of the Library contained in the Combined Work and reverse
-engineering for debugging such modifications, if you also do each of
-the following:
-
- a) Give prominent notice with each copy of the Combined Work that
- the Library is used in it and that the Library and its use are
- covered by this License.
-
- b) Accompany the Combined Work with a copy of the GNU GPL and this license
- document.
-
- c) For a Combined Work that displays copyright notices during
- execution, include the copyright notice for the Library among
- these notices, as well as a reference directing the user to the
- copies of the GNU GPL and this license document.
-
- d) Do one of the following:
-
- 0) Convey the Minimal Corresponding Source under the terms of this
- License, and the Corresponding Application Code in a form
- suitable for, and under terms that permit, the user to
- recombine or relink the Application with a modified version of
- the Linked Version to produce a modified Combined Work, in the
- manner specified by section 6 of the GNU GPL for conveying
- Corresponding Source.
-
- 1) Use a suitable shared library mechanism for linking with the
- Library. A suitable mechanism is one that (a) uses at run time
- a copy of the Library already present on the user's computer
- system, and (b) will operate properly with a modified version
- of the Library that is interface-compatible with the Linked
- Version.
-
- e) Provide Installation Information, but only if you would otherwise
- be required to provide such information under section 6 of the
- GNU GPL, and only to the extent that such information is
- necessary to install and execute a modified version of the
- Combined Work produced by recombining or relinking the
- Application with a modified version of the Linked Version. (If
- you use option 4d0, the Installation Information must accompany
- the Minimal Corresponding Source and Corresponding Application
- Code. If you use option 4d1, you must provide the Installation
- Information in the manner specified by section 6 of the GNU GPL
- for conveying Corresponding Source.)
-
- 5. Combined Libraries.
-
- You may place library facilities that are a work based on the
-Library side by side in a single library together with other library
-facilities that are not Applications and are not covered by this
-License, and convey such a combined library under terms of your
-choice, if you do both of the following:
-
- a) Accompany the combined library with a copy of the same work based
- on the Library, uncombined with any other library facilities,
- conveyed under the terms of this License.
-
- b) Give prominent notice with the combined library that part of it
- is a work based on the Library, and explaining where to find the
- accompanying uncombined form of the same work.
-
- 6. Revised Versions of the GNU Lesser General Public License.
-
- The Free Software Foundation may publish revised and/or new versions
-of the GNU Lesser General Public License from time to time. Such new
-versions will be similar in spirit to the present version, but may
-differ in detail to address new problems or concerns.
-
- Each version is given a distinguishing version number. If the
-Library as you received it specifies that a certain numbered version
-of the GNU Lesser General Public License "or any later version"
-applies to it, you have the option of following the terms and
-conditions either of that published version or of any later version
-published by the Free Software Foundation. If the Library as you
-received it does not specify a version number of the GNU Lesser
-General Public License, you may choose any version of the GNU Lesser
-General Public License ever published by the Free Software Foundation.
-
- If the Library as you received it specifies that a proxy can decide
-whether future versions of the GNU Lesser General Public License shall
-apply, that proxy's public statement of acceptance of any version is
-permanent authorization for you to choose that version for the
-Library.
+ GNU LESSER GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+
+ This version of the GNU Lesser General Public License incorporates
+the terms and conditions of version 3 of the GNU General Public
+License, supplemented by the additional permissions listed below.
+
+ 0. Additional Definitions.
+
+ As used herein, "this License" refers to version 3 of the GNU Lesser
+General Public License, and the "GNU GPL" refers to version 3 of the GNU
+General Public License.
+
+ "The Library" refers to a covered work governed by this License,
+other than an Application or a Combined Work as defined below.
+
+ An "Application" is any work that makes use of an interface provided
+by the Library, but which is not otherwise based on the Library.
+Defining a subclass of a class defined by the Library is deemed a mode
+of using an interface provided by the Library.
+
+ A "Combined Work" is a work produced by combining or linking an
+Application with the Library. The particular version of the Library
+with which the Combined Work was made is also called the "Linked
+Version".
+
+ The "Minimal Corresponding Source" for a Combined Work means the
+Corresponding Source for the Combined Work, excluding any source code
+for portions of the Combined Work that, considered in isolation, are
+based on the Application, and not on the Linked Version.
+
+ The "Corresponding Application Code" for a Combined Work means the
+object code and/or source code for the Application, including any data
+and utility programs needed for reproducing the Combined Work from the
+Application, but excluding the System Libraries of the Combined Work.
+
+ 1. Exception to Section 3 of the GNU GPL.
+
+ You may convey a covered work under sections 3 and 4 of this License
+without being bound by section 3 of the GNU GPL.
+
+ 2. Conveying Modified Versions.
+
+ If you modify a copy of the Library, and, in your modifications, a
+facility refers to a function or data to be supplied by an Application
+that uses the facility (other than as an argument passed when the
+facility is invoked), then you may convey a copy of the modified
+version:
+
+ a) under this License, provided that you make a good faith effort to
+ ensure that, in the event an Application does not supply the
+ function or data, the facility still operates, and performs
+ whatever part of its purpose remains meaningful, or
+
+ b) under the GNU GPL, with none of the additional permissions of
+ this License applicable to that copy.
+
+ 3. Object Code Incorporating Material from Library Header Files.
+
+ The object code form of an Application may incorporate material from
+a header file that is part of the Library. You may convey such object
+code under terms of your choice, provided that, if the incorporated
+material is not limited to numerical parameters, data structure
+layouts and accessors, or small macros, inline functions and templates
+(ten or fewer lines in length), you do both of the following:
+
+ a) Give prominent notice with each copy of the object code that the
+ Library is used in it and that the Library and its use are
+ covered by this License.
+
+ b) Accompany the object code with a copy of the GNU GPL and this license
+ document.
+
+ 4. Combined Works.
+
+ You may convey a Combined Work under terms of your choice that,
+taken together, effectively do not restrict modification of the
+portions of the Library contained in the Combined Work and reverse
+engineering for debugging such modifications, if you also do each of
+the following:
+
+ a) Give prominent notice with each copy of the Combined Work that
+ the Library is used in it and that the Library and its use are
+ covered by this License.
+
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
+ document.
+
+ c) For a Combined Work that displays copyright notices during
+ execution, include the copyright notice for the Library among
+ these notices, as well as a reference directing the user to the
+ copies of the GNU GPL and this license document.
+
+ d) Do one of the following:
+
+ 0) Convey the Minimal Corresponding Source under the terms of this
+ License, and the Corresponding Application Code in a form
+ suitable for, and under terms that permit, the user to
+ recombine or relink the Application with a modified version of
+ the Linked Version to produce a modified Combined Work, in the
+ manner specified by section 6 of the GNU GPL for conveying
+ Corresponding Source.
+
+ 1) Use a suitable shared library mechanism for linking with the
+ Library. A suitable mechanism is one that (a) uses at run time
+ a copy of the Library already present on the user's computer
+ system, and (b) will operate properly with a modified version
+ of the Library that is interface-compatible with the Linked
+ Version.
+
+ e) Provide Installation Information, but only if you would otherwise
+ be required to provide such information under section 6 of the
+ GNU GPL, and only to the extent that such information is
+ necessary to install and execute a modified version of the
+ Combined Work produced by recombining or relinking the
+ Application with a modified version of the Linked Version. (If
+ you use option 4d0, the Installation Information must accompany
+ the Minimal Corresponding Source and Corresponding Application
+ Code. If you use option 4d1, you must provide the Installation
+ Information in the manner specified by section 6 of the GNU GPL
+ for conveying Corresponding Source.)
+
+ 5. Combined Libraries.
+
+ You may place library facilities that are a work based on the
+Library side by side in a single library together with other library
+facilities that are not Applications and are not covered by this
+License, and convey such a combined library under terms of your
+choice, if you do both of the following:
+
+ a) Accompany the combined library with a copy of the same work based
+ on the Library, uncombined with any other library facilities,
+ conveyed under the terms of this License.
+
+ b) Give prominent notice with the combined library that part of it
+ is a work based on the Library, and explaining where to find the
+ accompanying uncombined form of the same work.
+
+ 6. Revised Versions of the GNU Lesser General Public License.
+
+ The Free Software Foundation may publish revised and/or new versions
+of the GNU Lesser General Public License from time to time. Such new
+versions will be similar in spirit to the present version, but may
+differ in detail to address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Library as you received it specifies that a certain numbered version
+of the GNU Lesser General Public License "or any later version"
+applies to it, you have the option of following the terms and
+conditions either of that published version or of any later version
+published by the Free Software Foundation. If the Library as you
+received it does not specify a version number of the GNU Lesser
+General Public License, you may choose any version of the GNU Lesser
+General Public License ever published by the Free Software Foundation.
+
+ If the Library as you received it specifies that a proxy can decide
+whether future versions of the GNU Lesser General Public License shall
+apply, that proxy's public statement of acceptance of any version is
+permanent authorization for you to choose that version for the
+Library.
diff --git a/rm-community/rm-community-repo/config/alfresco/extension/subsystems/imap/default/default/rm-imap-server-context.xml b/rm-community/rm-community-repo/config/alfresco/extension/subsystems/imap/default/default/rm-imap-server-context.xml
index f30a9cb9b0..8c76027779 100644
--- a/rm-community/rm-community-repo/config/alfresco/extension/subsystems/imap/default/default/rm-imap-server-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/extension/subsystems/imap/default/default/rm-imap-server-context.xml
@@ -1,16 +1,16 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/action-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/action-context.xml
index 5ce959d53f..7a6053d037 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/action-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/action-context.xml
@@ -1,66 +1,66 @@
-
-
-
-
-
-
-
-
-
- alfresco.module.org_alfresco_module_rm.messages.actions
-
-
-
-
-
-
-
-
-
-
-
-
-
- {http://www.alfresco.org/model/content/1.0}content
-
-
-
-
-
-
-
-
-
-
-
-
-
- {http://www.alfresco.org/model/content/1.0}content
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+ alfresco.module.org_alfresco_module_rm.messages.actions
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {http://www.alfresco.org/model/content/1.0}content
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {http://www.alfresco.org/model/content/1.0}content
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/alfresco-global.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/alfresco-global.properties
index 15d8ccbc46..19e5f49c9a 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/alfresco-global.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/alfresco-global.properties
@@ -1,88 +1,88 @@
-# Enable ghosting of records on deletion
-rm.ghosting.enabled=true
-
-# Notification configuration
-rm.notification.role=RecordsManager
-# NOTE: the notification subject can now be set within the usual I18N property files per notification template
-
-#
-# Turn off imap server attachments if we are using RM.
-# TODO : Longer term needs to have a query based, dynamic
-# exclusion for RM sites.
-#
-imap.server.attachments.extraction.enabled=false
-
-#
-# Enable auditing
-#
-audit.enabled=true
-audit.rm.enabled=true
-#audit.rm.runas=admin
-
-#audit.filter.alfresco-access.transaction.user=~null;.*
-
-#
-# Extended permission service cache sizing
-#
-cache.writersSharedCache.maxItems=10000
-cache.writersSharedCache.cluster.type=fully-distributed
-
-#
-# Indicates whether RM rules will be run as Admin or not by default
-#
-rm.rule.runasadmin=true
-
-#
-# Auto-complete suggestion parameters
-#
-# The minimum size of fragment supplied that will trigger a search for suggestions for auto completion
-rm.autocompletesuggestion.minfragmentsize=2
-# The maximum number of path suggestions to supply
-rm.autocompletesuggestion.maxsuggestions.path=5
-# The maximum number of node suggestions to supply
-rm.autocompletesuggestion.maxsuggestions.node=5
-# The maximum number of date suggestions to supply
-rm.autocompletesuggestion.maxsuggestions.date=5
-# Comma separated list of types/aspects to be used by the node parameter autocomplete suggester
-rm.autocompletesuggestion.nodeParameterSuggester.aspectsAndTypes=rma:record,cm:content
-
-#
-# Global RM retention lifecycle trigger cron job expression
-#
-rm.dispositionlifecycletrigger.cronexpression=0 0/5 * * * ?
-
-#
-# Records contributors group
-#
-# if false then record contributor check is ignored and all users can contribute records from
-# a collaboration site, if true then a user must be a member of the records contributor group
-# in order for them to contribute a record from a collaboration site. Default value 'false'.
-rm.record.contributors.group.enabled=false
-# record contributors group, default value 'RECORD_CONTRIBUTORS'
-rm.record.contributors.group.name=RECORD_CONTRIBUTORS
-
-#
-# Content cleansing
-#
-rm.content.cleansing.enabled=false
-rm.content.cleaner=contentCleanser.522022M
-
-# Indicates whether mandatory properties are checked before completing a record
-#
-rm.completerecord.mandatorypropertiescheck.enabled=true
-
-#
-# Indicates whether the existing file plan is converted to a standard file plan during
-# upgrade to V2.2, otherwise it will be converted to a DoD compliant file plan.
-#
-# Note that when converted to a standard file plan that DoD related record meta-data remains
-# on the individual records and will not be visible in the UI, but can be assessed via
-# deprecated model properties in the rma namespace.
-#
-rm.patch.v22.convertToStandardFilePlan=false
-
-#
-# Extended auto-version behaviour. If true and other auto-version properties are satisfied, then
-# a document will be auto-versioned when its type is changed.
-#
-version.store.enableAutoVersionOnTypeChange=false
+# Enable ghosting of records on deletion
+rm.ghosting.enabled=true
+
+# Notification configuration
+rm.notification.role=RecordsManager
+# NOTE: the notification subject can now be set within the usual I18N property files per notification template
+
+#
+# Turn off imap server attachments if we are using RM.
+# TODO : Longer term needs to have a query based, dynamic
+# exclusion for RM sites.
+#
+imap.server.attachments.extraction.enabled=false
+
+#
+# Enable auditing
+#
+audit.enabled=true
+audit.rm.enabled=true
+#audit.rm.runas=admin
+
+#audit.filter.alfresco-access.transaction.user=~null;.*
+
+#
+# Extended permission service cache sizing
+#
+cache.writersSharedCache.maxItems=10000
+cache.writersSharedCache.cluster.type=fully-distributed
+
+#
+# Indicates whether RM rules will be run as Admin or not by default
+#
+rm.rule.runasadmin=true
+
+#
+# Auto-complete suggestion parameters
+#
+# The minimum size of fragment supplied that will trigger a search for suggestions for auto completion
+rm.autocompletesuggestion.minfragmentsize=2
+# The maximum number of path suggestions to supply
+rm.autocompletesuggestion.maxsuggestions.path=5
+# The maximum number of node suggestions to supply
+rm.autocompletesuggestion.maxsuggestions.node=5
+# The maximum number of date suggestions to supply
+rm.autocompletesuggestion.maxsuggestions.date=5
+# Comma separated list of types/aspects to be used by the node parameter autocomplete suggester
+rm.autocompletesuggestion.nodeParameterSuggester.aspectsAndTypes=rma:record,cm:content
+
+#
+# Global RM retention lifecycle trigger cron job expression
+#
+rm.dispositionlifecycletrigger.cronexpression=0 0/5 * * * ?
+
+#
+# Records contributors group
+#
+# if false then record contributor check is ignored and all users can contribute records from
+# a collaboration site, if true then a user must be a member of the records contributor group
+# in order for them to contribute a record from a collaboration site. Default value 'false'.
+rm.record.contributors.group.enabled=false
+# record contributors group, default value 'RECORD_CONTRIBUTORS'
+rm.record.contributors.group.name=RECORD_CONTRIBUTORS
+
+#
+# Content cleansing
+#
+rm.content.cleansing.enabled=false
+rm.content.cleaner=contentCleanser.522022M
+
+# Indicates whether mandatory properties are checked before completing a record
+#
+rm.completerecord.mandatorypropertiescheck.enabled=true
+
+#
+# Indicates whether the existing file plan is converted to a standard file plan during
+# upgrade to V2.2, otherwise it will be converted to a DoD compliant file plan.
+#
+# Note that when converted to a standard file plan that DoD related record meta-data remains
+# on the individual records and will not be visible in the UI, but can be assessed via
+# deprecated model properties in the rma namespace.
+#
+rm.patch.v22.convertToStandardFilePlan=false
+
+#
+# Extended auto-version behaviour. If true and other auto-version properties are satisfied, then
+# a document will be auto-versioned when its type is changed.
+#
+version.store.enableAutoVersionOnTypeChange=false
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/audit/rm-audit.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/audit/rm-audit.xml
index 6ceab3c551..7e8cfc0eb6 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/audit/rm-audit.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/audit/rm-audit.xml
@@ -1,90 +1,90 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/RMDataDictionaryBootstrap.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/RMDataDictionaryBootstrap.xml
index cc6fe1f97e..4cbf4f39c7 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/RMDataDictionaryBootstrap.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/RMDataDictionaryBootstrap.xml
@@ -1,254 +1,254 @@
-
-
-
-
-
-
- workspace
- SpacesStore
- rm_config_folder
- Records Management
- Records Management
- Configuration information for the Records Management application.
-
-
-
-
-
-
-
-
-
-
- workspace
- SpacesStore
- rm_event_config
- Records management event configuration.
- contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/rmEventConfigBootstrap.json|mimetype=text/plain|encoding=UTF-8
- rm_event_config.json
- rm_event_config.json
-
-
-
-
-
-
-
-
- workspace
- SpacesStore
- records_management_custom_model
- Records Management Custom Model
- contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/recordsCustomModel.xml|mimetype=text/plain|encoding=UTF-8
- recordsCustomModel.xml
- recordsCustomModel.xml
- {http://www.alfresco.org/model/rmcustom/1.0}rmcustom
- Records Management Custom Model
- Alfresco
- 1.0
- true
-
-
-
-
-
- workspace
- SpacesStore
- rm_behavior_scripts
- Records Management Behavior Scripts
- Records Management Behavior Scripts
- Scripts intended for execution in response to RM events.
-
-
-
-
-
-
-
-
-
- workspace
- SpacesStore
- Records management sample script.
- contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/onCreate_supersedes.js|mimetype=text/javascript|encoding=UTF-8
- onCreate_supersedes.js
- onCreate_supersedes.js
-
-
-
-
-
-
-
-
- workspace
- SpacesStore
- rm_scripts
- Records Management Scripts
- Records Management Scripts
- Scripts specific to RM that can also be executed by RM rules.
-
-
-
-
-
- workspace
- SpacesStore
- records_management_email_templates
- Records Management Email Templates
- Records Management Email Templates
- Email templates for records management.
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
-
- Email template for notify records due for review job.
- contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/notify-records-due-for-review-email.ftl|mimetype=text/plain|size=|encoding=UTF-8|locale=en_US_
- notify-records-due-for-review-email.ftl
-
- notify-records-due-for-review-email.ftl
- org_alfresco_module_rm_notificationTemplatePatch
-
-
-
-
-
-
-
-
-
-
-
- workspace
- SpacesStore
- record_superseded_template
- Record superseded email template.
- contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/record-superseded-email.ftl|mimetype=text/plain|encoding=UTF-8
- record-superseded-email.ftl
- record-superseded-email.ftl
- org_alfresco_module_rm_notificationTemplatePatch
-
-
-
-
-
-
-
-
-
-
- workspace
- SpacesStore
- record_rejected_template
- Record rejected email template.
- contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/record-rejected-email.ftl|mimetype=text/plain|encoding=UTF-8
- record-rejected-email.ftl
- record-rejected-email.ftl
- org_alfresco_module_rm_notificationTemplatePatch
-
-
-
-
-
-
-
-
- workspace
- SpacesStore
- rm_report_templates
- Records Management Report Templates
- Records Management Report Templates
- Records management report templates.
-
-
-
-
-
-
-
-
-
- workspace
- SpacesStore
- rmr_destructionReport
- Desruction report template.
- contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_destructionReport.html.ftl|mimetype=text/plain|encoding=UTF-8
- Destruction Report Template
- report_rmr_destructionReport.html.ftl
-
-
-
-
-
-
-
-
-
-
- workspace
- SpacesStore
- rmr_transferReport
- Transfer report template.
- contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_transferReport.html.ftl|mimetype=text/plain|encoding=UTF-8
- Transfer Report Template
- report_rmr_transferReport.html.ftl
-
-
-
-
-
-
-
-
-
-
- workspace
- SpacesStore
- rmr_holdReport
- Hold report template.
- contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_holdReport.html.ftl|mimetype=text/plain|encoding=UTF-8
- Hold Report Template
- report_rmr_holdReport.html.ftl
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+ workspace
+ SpacesStore
+ rm_config_folder
+ Records Management
+ Records Management
+ Configuration information for the Records Management application.
+
+
+
+
+
+
+
+
+
+
+ workspace
+ SpacesStore
+ rm_event_config
+ Records management event configuration.
+ contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/rmEventConfigBootstrap.json|mimetype=text/plain|encoding=UTF-8
+ rm_event_config.json
+ rm_event_config.json
+
+
+
+
+
+
+
+
+ workspace
+ SpacesStore
+ records_management_custom_model
+ Records Management Custom Model
+ contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/recordsCustomModel.xml|mimetype=text/plain|encoding=UTF-8
+ recordsCustomModel.xml
+ recordsCustomModel.xml
+ {http://www.alfresco.org/model/rmcustom/1.0}rmcustom
+ Records Management Custom Model
+ Alfresco
+ 1.0
+ true
+
+
+
+
+
+ workspace
+ SpacesStore
+ rm_behavior_scripts
+ Records Management Behavior Scripts
+ Records Management Behavior Scripts
+ Scripts intended for execution in response to RM events.
+
+
+
+
+
+
+
+
+
+ workspace
+ SpacesStore
+ Records management sample script.
+ contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/onCreate_supersedes.js|mimetype=text/javascript|encoding=UTF-8
+ onCreate_supersedes.js
+ onCreate_supersedes.js
+
+
+
+
+
+
+
+
+ workspace
+ SpacesStore
+ rm_scripts
+ Records Management Scripts
+ Records Management Scripts
+ Scripts specific to RM that can also be executed by RM rules.
+
+
+
+
+
+ workspace
+ SpacesStore
+ records_management_email_templates
+ Records Management Email Templates
+ Records Management Email Templates
+ Email templates for records management.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+
+ Email template for notify records due for review job.
+ contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/notify-records-due-for-review-email.ftl|mimetype=text/plain|size=|encoding=UTF-8|locale=en_US_
+ notify-records-due-for-review-email.ftl
+
+ notify-records-due-for-review-email.ftl
+ org_alfresco_module_rm_notificationTemplatePatch
+
+
+
+
+
+
+
+
+
+
+
+ workspace
+ SpacesStore
+ record_superseded_template
+ Record superseded email template.
+ contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/record-superseded-email.ftl|mimetype=text/plain|encoding=UTF-8
+ record-superseded-email.ftl
+ record-superseded-email.ftl
+ org_alfresco_module_rm_notificationTemplatePatch
+
+
+
+
+
+
+
+
+
+
+ workspace
+ SpacesStore
+ record_rejected_template
+ Record rejected email template.
+ contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/record-rejected-email.ftl|mimetype=text/plain|encoding=UTF-8
+ record-rejected-email.ftl
+ record-rejected-email.ftl
+ org_alfresco_module_rm_notificationTemplatePatch
+
+
+
+
+
+
+
+
+ workspace
+ SpacesStore
+ rm_report_templates
+ Records Management Report Templates
+ Records Management Report Templates
+ Records management report templates.
+
+
+
+
+
+
+
+
+
+ workspace
+ SpacesStore
+ rmr_destructionReport
+ Desruction report template.
+ contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_destructionReport.html.ftl|mimetype=text/plain|encoding=UTF-8
+ Destruction Report Template
+ report_rmr_destructionReport.html.ftl
+
+
+
+
+
+
+
+
+
+
+ workspace
+ SpacesStore
+ rmr_transferReport
+ Transfer report template.
+ contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_transferReport.html.ftl|mimetype=text/plain|encoding=UTF-8
+ Transfer Report Template
+ report_rmr_transferReport.html.ftl
+
+
+
+
+
+
+
+
+
+
+ workspace
+ SpacesStore
+ rmr_holdReport
+ Hold report template.
+ contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_holdReport.html.ftl|mimetype=text/plain|encoding=UTF-8
+ Hold Report Template
+ report_rmr_holdReport.html.ftl
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/notify-records-due-for-review-email.ftl b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/notify-records-due-for-review-email.ftl
index 10a504415b..fa2aea61c6 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/notify-records-due-for-review-email.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/notify-records-due-for-review-email.ftl
@@ -1,150 +1,150 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-
-
-
-
-
-
-
-
-
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+
+
+
+
+
+
+
+
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/onCreate_supersedes.js b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/onCreate_supersedes.js
index 81ebd9917d..3adffbdb1f 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/onCreate_supersedes.js
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/onCreate_supersedes.js
@@ -1,41 +1,41 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-/**
- * Main entrypoint for script.
- *
- * @method main
- */
-function main()
-{
- // Log debug message
- logger.log("Record " + node.name + " has been superseded. Sending notification");
-
- // Send notification
- rmService.sendSupersededNotification(node);
-}
-
-main();
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+/**
+ * Main entrypoint for script.
+ *
+ * @method main
+ */
+function main()
+{
+ // Log debug message
+ logger.log("Record " + node.name + " has been superseded. Sending notification");
+
+ // Send notification
+ rmService.sendSupersededNotification(node);
+}
+
+main();
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/record-rejected-email.ftl b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/record-rejected-email.ftl
index b8ce310962..8b85ffaee8 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/record-rejected-email.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/record-rejected-email.ftl
@@ -1,146 +1,146 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Record has been rejected
-
-
- ${args.rejectDate?datetime?string.full}
-
-
-
-
-
-
Hello ${args.recordCreator},
-
-
${args.rejectedPerson} has rejected the following record with this reason:
-
-
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Record has been rejected
+
+
+ ${args.rejectDate?datetime?string.full}
+
+
+
+
+
+
Hello ${args.recordCreator},
+
+
${args.rejectedPerson} has rejected the following record with this reason:
+
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/record-superseded-email.ftl b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/record-superseded-email.ftl
index 64088cf385..238b460ec1 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/record-superseded-email.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/record-superseded-email.ftl
@@ -1,144 +1,144 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-
-
-
-
-
-
-
-
-
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+
+
+
+
+
+
+
-
-
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+
+
+
+
+
+
+
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_holdReport.html.ftl b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_holdReport.html.ftl
index 59b0c67a69..53ec30742c 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_holdReport.html.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_holdReport.html.ftl
@@ -1,146 +1,146 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-
-
-
-
-
-
-
-
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+
+
+
+
+
+
+
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_transferReport.html.ftl b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_transferReport.html.ftl
index 0c29ecc6af..e9ea680793 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_transferReport.html.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_transferReport.html.ftl
@@ -1,113 +1,113 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-
-
- <#assign isAccession=node.properties["rma:transferAccessionIndicator"]>
-
- <#if isAccession>
- ${message("file.report.acession.report")}
- <#else>
- ${message("file.report.transfer.report")}
- #if>
-
-
-
- <#if isAccession>
-
-#macro>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+
+
+ <#assign isAccession=node.properties["rma:transferAccessionIndicator"]>
+
+ <#if isAccession>
+ ${message("file.report.acession.report")}
+ <#else>
+ ${message("file.report.transfer.report")}
+ #if>
+
+
+
+ <#if isAccession>
+
+#macro>
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/groups/rm-capability-groups-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/groups/rm-capability-groups-context.xml
index dc769ec8ad..0e940d34ef 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/groups/rm-capability-groups-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/groups/rm-capability-groups-context.xml
@@ -1,85 +1,85 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-audit-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-audit-context.xml
index 89139b93b2..5548567780 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-audit-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-audit-context.xml
@@ -1,73 +1,73 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-condition-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-condition-context.xml
index d5509295c4..135a49616a 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-condition-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-condition-context.xml
@@ -1,232 +1,232 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-config-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-config-context.xml
index 1cf4201a4e..5cc9dffd5b 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-config-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-config-context.xml
@@ -1,94 +1,94 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-disposition-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-disposition-context.xml
index 5f4f44880b..3dc524bfe4 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-disposition-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-disposition-context.xml
@@ -1,316 +1,316 @@
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
- FILE_PLAN_COMPONENT
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- TRANSFER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+ FILE_PLAN_COMPONENT
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ TRANSFER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-event-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-event-context.xml
index 3ed05e48aa..c9362ed9d6 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-event-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-event-context.xml
@@ -1,42 +1,42 @@
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-fileplan-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-fileplan-context.xml
index b42957bd9f..e8eeae8602 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-fileplan-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-fileplan-context.xml
@@ -1,97 +1,97 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- FILE_PLAN
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_CATEGORY
- DISPOSITION_SCHEDULE
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- UNFILED_RECORD_CONTAINER
- UNFILED_RECORD_FOLDER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ FILE_PLAN
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_CATEGORY
+ DISPOSITION_SCHEDULE
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ UNFILED_RECORD_CONTAINER
+ UNFILED_RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-freeze-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-freeze-context.xml
index 8db7ba051b..5a1cceb841 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-freeze-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-freeze-context.xml
@@ -1,171 +1,171 @@
-
-
-
-
-
-
-
-
-
-
-
-
- FILE_PLAN
- HOLD_CONTAINER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- HOLD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- HOLD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- HOLD
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- HOLD
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- HOLD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ FILE_PLAN
+ HOLD_CONTAINER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ HOLD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ HOLD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ HOLD
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ HOLD
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ HOLD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-group-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-group-context.xml
index fdb478b0a2..91a50ef89d 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-group-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-group-context.xml
@@ -1,249 +1,249 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
-
-
-
-
- UNFILED_RECORD_CONTAINER
- UNFILED_RECORD_FOLDER
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_CATEGORY
-
-
-
-
-
-
-
-
-
-
-
-
- FILE_PLAN
- RECORD_CATEGORY
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+
+
+
+
+ UNFILED_RECORD_CONTAINER
+ UNFILED_RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_CATEGORY
+
+
+
+
+
+
+
+
+
+
+
+
+ FILE_PLAN
+ RECORD_CATEGORY
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-record-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-record-context.xml
index 8b82723be3..9ca62f1f72 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-record-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-record-context.xml
@@ -1,389 +1,389 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD
- RECORD_FOLDER
- UNFILED_RECORD_CONTAINER
- UNFILED_RECORD_FOLDER
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD
+ RECORD_FOLDER
+ UNFILED_RECORD_CONTAINER
+ UNFILED_RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-recordfolder-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-recordfolder-context.xml
index dc42dd25f2..d22c69babd 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-recordfolder-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-recordfolder-context.xml
@@ -1,230 +1,230 @@
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_CATEGORY
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- UNFILED_RECORD_CONTAINER
- UNFILED_RECORD_FOLDER
-
-
-
-
-
-
-
-
-
-
-
-
-
- UNFILED_RECORD_CONTAINER
- UNFILED_RECORD_FOLDER
-
-
-
-
-
-
-
-
-
-
-
-
-
- UNFILED_RECORD_CONTAINER
- UNFILED_RECORD_FOLDER
-
-
-
-
-
-
-
-
-
-
-
-
-
- UNFILED_RECORD_CONTAINER
- UNFILED_RECORD_FOLDER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_CATEGORY
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ UNFILED_RECORD_CONTAINER
+ UNFILED_RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+
+
+
+
+ UNFILED_RECORD_CONTAINER
+ UNFILED_RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+
+
+
+
+ UNFILED_RECORD_CONTAINER
+ UNFILED_RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+
+
+
+
+ UNFILED_RECORD_CONTAINER
+ UNFILED_RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-reference-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-reference-context.xml
index 459b7790a2..2ddba0e1ea 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-reference-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-reference-context.xml
@@ -1,23 +1,23 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-rule-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-rule-context.xml
index 3175faf8ed..1ad04ef1d7 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-rule-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-rule-context.xml
@@ -1,20 +1,20 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-security-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-security-context.xml
index 1d25bb38b2..2d390542d8 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-security-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-security-context.xml
@@ -1,61 +1,61 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/content-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/content-context.xml
index f019c27a3e..d7d9999f20 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/content-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/content-context.xml
@@ -1,36 +1,36 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/DODExampleFilePlan.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/DODExampleFilePlan.xml
index 9b40dfe679..be126f3e62 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/DODExampleFilePlan.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/DODExampleFilePlan.xml
@@ -1,1046 +1,1046 @@
-
-
-
-
-
-
- Reports
- 0318
- Reports
- Record series for reports
-
-
-
-
-
-
-
-
-
-
-
-
- AIS Audit Records
- 0318-01
- AIS Audit Records
- Consisting of AIS Security Officer or Terminal Area Security Officer weekly audit records of audit actions performed on all AIS as required by applicable policy which are maintained by any JS/combatant command activity.
- week|1
- true
-
-
-
-
-
-
-
-
- N1-218-00-4 item 023
- Cut off monthly, hold 1 month, then destroy.
-
-
-
-
-
-
-
- cutoff
- monthend|1
-
-
-
-
- destroy
- month|1
- {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
-
-
-
-
-
-
-
-
-
-
-
-
-
- January AIS Audit Records
- January AIS Audit Records
- 0318-01-01
- week|1
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Unit Manning Documents
- 0318-02
- Unit Manning Documents
- Consisting of manpower document and monthly strength report forwarded to OSD and other activities which are maintained by personnel office as the official record copy.
-
-
-
-
-
-
-
-
- N1-218-89-1 item 002
- Cut off every 3 months, hold 3 months, then destroy.
-
-
-
-
-
-
-
- cutoff
- quarterend|1
-
-
-
-
- destroy
- month|3
- {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
-
-
-
-
-
-
-
-
-
-
-
-
- 1st Quarter Unit Manning Documents
- 0318-02-01
- 1st Quarter Unit Manning Documents
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Overtime Reports
- 0318-03
- Overtime reports and related documents
- Overtime reports and related documents which are maintained by JS/combatant controller as the official record copy.
-
-
-
-
-
-
-
-
- N1-218-00-7 item 28
- Cut off at end of FY, hold 3 years, then destroy.
-
-
-
-
-
-
- cutoff
- fyend|1
-
-
-
-
- destroy
- year|3
- {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
-
-
-
-
-
-
-
-
-
-
-
- FY08 Overtime Reports
- 0318-03-01
- FY08 Overtime Reports
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Bi-Weekly Cost Reports
- 0318-04
- Bi-Weekly Cost Reports
- Bi-wekly cost reports which are maintained by JS/combatant command controler as the official record copy.
-
-
-
-
-
-
-
-
- N1-218-00-7 item 2
- Cut off at end of CY, hold 2 years, then destroy.
-
-
-
-
-
-
- cutoff
- yearend|1
-
-
-
-
- destroy
- year|2
- {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
-
-
-
-
-
-
-
-
-
-
- CY08 Unit Manning Documents
- 0318-04-01
- CY08 Unit Manning Documents
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Military Files
- 0412
- Military Files
- Record series for military files
-
-
-
-
-
-
-
-
-
-
-
-
- Military Assignment Documents
- 0412-01
- Military Assignment Documents
- Policy matters pertaining to military assignments which are maintained by any JS/combatant command activity as the official record copy.
-
-
-
-
-
-
-
-
- N1-218-00-3 item 30
- Cut off when superseded, hold 5 years, then destroy.
- true
-
-
-
-
-
-
- cutoff
- superseded
-
-
-
-
- destroy
- year|5
- {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Official Military Personnel Privilege Card Applications
- 0412-02
- Official Military Personnel Privilege Card Applications
- Consisting of: documents reflecting applications for priviege cards and ration cards, including Department of Defense Forms (DD Forms) 1172 (Application for Unifomed Services Identification and Privilege Card) and similar documents which are maintained by any JS/combatant command activity.
-
-
-
-
-
-
-
-
- N1-218-00-3 item 20
- Cut off when no longer needed and destroy immediately.
-
-
-
-
-
-
- cutoff
- no_longer_needed
-
-
-
-
- destroy
- immediately|0
-
-
-
-
-
-
-
-
-
-
-
- COL Bob Johnson
- 0412-02-01
- COL Bob Johnson
-
-
-
-
- PFC Alan Murphy
- 0412-02-02
- PFC Alan Murphy
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Personnel Security Program Records
- 0412-03
- Personnel Security Program Records
- Position sensitivity files including requests for information relating to the designation of sensitive and non-sensitive personnel positions in an agency and results of final actions taken consisting of approved requests which are maintained by any JS/combatant command activity
-
-
-
-
-
-
-
-
- N1-218-00-4 item 017
- Cutoff when position is abolished, re-designated, or no longer needed, whichever is later. Destroy immediately after cutoff.
-
-
-
-
-
-
- cutoff
-
- abolished
- re_designated
- no_longer_needed
-
- and
-
-
-
-
- destroy
- immediately|0
-
-
-
-
-
-
-
-
-
-
-
- Commander's Administrative Assistant
- 0412-03-01
- Commander's Administrative Assistant
-
-
-
-
- Equal Opportunity Coordinator
- 0412-03-02
- Equal Opportunity Coordinator
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Civilian Files
- 0430
- Civilian Files
- Record series for civilian files
-
-
-
-
-
-
-
-
-
-
-
-
- Employee Performance File System Records
- 0430-01
- Employee Performance File System Records
- Consisting of: performance records superseded through an administrative, judicial, or quasi-judicial procedure which are maintained by any JS/combatant command activity
-
-
-
-
-
-
-
-
- GRS 1 item 23b(1)
- Cutoff when superseded. Destroy immediately after cutoff
- true
-
-
-
-
-
-
- cutoff
- superseded
-
-
-
-
- destroy
- immediately|0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Foreign Employee Award Files
- 0430-02
- Foreign Employee Award Files
- Decorations to foreign nationals and US citizens not employed by the US Government consisting of: case files of recommendations, decisions, awards announcements, board meeting minutes, and related documents which are maintained by any JS/combatant command activity
-
-
-
-
-
-
-
- N1-218-00-3 item 18
- Permanent. Cut off on completion of case, hold 2 years, then retire to offline storage. Transfer to federal records holding area 5 years after retirement to offline storage. Transfer to NARA 25 years after cutoff.
-
-
-
-
-
-
- cutoff
- case_complete
-
-
-
-
- transfer
- Retire to offline storage.
- Offline Storage
- year|2
- {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
-
-
-
-
- transfer
- Transfer to federal records holding area.
- Federal Records Holding
- year|5
- {http://www.alfresco.org/model/recordsmanagement/1.0}dispositionAsOf
-
-
-
-
- accession
- Transfer to NARA.
- NARA
- year|25
- {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
-
-
-
-
-
-
-
-
-
-
-
- Christian Bohr
- 0430-02-01
- Christian Bohr
-
-
-
-
- Karl Planck
- 0430-02-02
- Karl Planck
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Case Files and Papers
- 0430-03
- Case Files and Papers
- Consisting of library containing information on personnel actions which are maintained by R&A Br and Deputy Chief Information Office
- None
- Disposal not authorized. Disposition pending NARA approval.
-
-
-
-
-
-
- Gilbert Competency Hearing
- 0430-03-01
- Gilbert Competency Hearing
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Withholding of Within-Grade Increase (WGI) Records
- 0430-04
- Withholding of Within-Grade Increase (WGI) Records
- Files concerning an employee’s performance rating of record with work examples which establish less than fully successful performance, notice of withholding of WGI, employee's request for reconsideration of denied WGI, and decision concerning such a reconsideration request which are maintained by any JS/combatant command activity.
-
-
-
-
-
-
-
-
- N1-218-00-3 item 16
- Cut off on completion of WGI action or on separation, whichever is earlier; hold 3 years, then destroy/delete.
-
-
-
-
-
-
- cutoff
-
- WGI_action_complete
- separation
-
- or
-
-
-
-
- destroy
- year|3
- {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
-
-
-
-
-
-
-
-
-
-
-
- Gilbert WGI Records
- 0430-04-01
- Gilbert WGI Records
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Payroll Differential and Allowances
- 0430-05
- Payroll Differential and Allowances
- Consisting of: information to assist overseas civilian personnel offices to document employee eligibility for foreign post differential and foreign quarters and post allowances, including SF 1190 (Foreign Allowances Application, Grant, and Report) and similar information which are maintained by any JS/combatant command activity.
-
-
-
-
-
-
-
-
- N1-218-00-3 item 3
- Cut off at end of Fiscal Year (FY) in which all allowances granted are terminated, hold 3 years, then destroy.
-
-
-
-
-
-
- retain
- all_allowances_granted_are_terminated
-
-
-
-
- cutoff
- fyend|1
- {http://www.alfresco.org/model/recordsmanagement/1.0}dispositionAsOf
-
-
-
-
- destroy
- year|3
- {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
-
-
-
-
-
-
-
-
-
-
-
- Martin Payroll Differential and Allowances
- 0430-05-01
- Martin Payroll Differential and Allowances
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Miscellaneous Files
- 0950
- Miscellaneous Files
- Record series for miscellaneous files
-
-
-
-
-
-
-
-
-
-
-
-
- Civilian Employee Training Program Records
- 0950-01
- Civilian Employee Training Program Records
- Decorations to foreign nationals and US citizens not employed by the US Government consisting of: case files of recommendations, decisions, awards announcements, board meeting minutes, and related documents which are maintained by any JS/combatant command activity
-
-
-
-
-
-
-
- GRS 1 item 29b
- Cut off annually, hold 5 years, then destroy, or destroy when obsolete, whichever is earlier.
-
-
-
-
-
-
- cutoff
- year|1
- {http://www.alfresco.org/model/recordsmanagement/1.0}dateFiled
-
-
-
-
- destroy
- year|5
- {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
- obsolete
-
-
-
-
-
-
-
-
-
-
-
- Bob Prentice Training Records (2008)
- 0950-01-01
- Bob Prentice Training Records (2008)
-
-
-
-
- Beth Tanaka Training Records (2008)
- 0950-01-02
- Beth Tanaka Training Records (2008)
-
-
-
-
- Chuck Stevens Training Records (2008)
- 0950-01-03
- Chuck Stevens Training Records (2008)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Purchase of Foreign Award Medals and Decorations
- 0950-02
- Purchase of Foreign Award Medals and Decorations
- Forms reflecting purchase of foreign award medals and decorations.
-
-
-
-
-
-
-
-
- N1-218-00-3 item 11
- Cutoff when related record is transferred to inactive storage, hold 1 year, destroy.
- true
-
-
-
-
-
-
- cutoff
- related_record_trasfered_inactive_storage
-
-
-
-
- destroy
- year|1
- {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Monthly Cockpit Crew Training
- 0950-03
- Monthly Cockpit/Crew Training
- Consisting of skills training/evaluation forms, e.g., AF Form 4031.
-
-
-
-
-
-
-
-
- N1-218-00-3 item 13
- Cutoff after training is complete, hold 1 year, destroy.
-
-
-
-
-
-
- cutoff
- training_complete
-
-
-
-
- destroy
- year|1
- {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
-
-
-
-
-
-
-
-
-
-
-
- January Cockpit Crew Training
- 0950-03-01
- January Cockpit/Crew Training
-
-
-
-
- February Cockpit Crew Training
- 0950-03-02
- February Cockpit/Crew Training
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Science Advisor Records
- 0950-04
- Science Advisor Records
- Consisting of: reports, studies, tasking orders, and similar records. Reports are usually informal and unpublished. Records may be generated at all activities
-
-
-
-
-
-
-
-
- N1-218-00-10 item 44
- Cut off on completion of study, hold 5 years, then transfer to Inactive Storage. Transfer to NARA 25 years after cutoff.
-
-
-
-
-
-
- cutoff
- study_complete
-
-
-
-
- transfer
- Transfer to inactive storage.
- Inactive Storage
- year|5
- {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
-
-
-
-
- accession
- Transfer to NARA.
- NARA
- year|25
- {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
-
-
-
-
-
-
-
-
-
-
-
- Phoenix Mars Mission
- 0950-04-01
- Phoenix Mars Mission
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Reports
+ 0318
+ Reports
+ Record series for reports
+
+
+
+
+
+
+
+
+
+
+
+
+ AIS Audit Records
+ 0318-01
+ AIS Audit Records
+ Consisting of AIS Security Officer or Terminal Area Security Officer weekly audit records of audit actions performed on all AIS as required by applicable policy which are maintained by any JS/combatant command activity.
+ week|1
+ true
+
+
+
+
+
+
+
+
+ N1-218-00-4 item 023
+ Cut off monthly, hold 1 month, then destroy.
+
+
+
+
+
+
+
+ cutoff
+ monthend|1
+
+
+
+
+ destroy
+ month|1
+ {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
+
+
+
+
+
+
+
+
+
+
+
+
+
+ January AIS Audit Records
+ January AIS Audit Records
+ 0318-01-01
+ week|1
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Unit Manning Documents
+ 0318-02
+ Unit Manning Documents
+ Consisting of manpower document and monthly strength report forwarded to OSD and other activities which are maintained by personnel office as the official record copy.
+
+
+
+
+
+
+
+
+ N1-218-89-1 item 002
+ Cut off every 3 months, hold 3 months, then destroy.
+
+
+
+
+
+
+
+ cutoff
+ quarterend|1
+
+
+
+
+ destroy
+ month|3
+ {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
+
+
+
+
+
+
+
+
+
+
+
+
+ 1st Quarter Unit Manning Documents
+ 0318-02-01
+ 1st Quarter Unit Manning Documents
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Overtime Reports
+ 0318-03
+ Overtime reports and related documents
+ Overtime reports and related documents which are maintained by JS/combatant controller as the official record copy.
+
+
+
+
+
+
+
+
+ N1-218-00-7 item 28
+ Cut off at end of FY, hold 3 years, then destroy.
+
+
+
+
+
+
+ cutoff
+ fyend|1
+
+
+
+
+ destroy
+ year|3
+ {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
+
+
+
+
+
+
+
+
+
+
+
+ FY08 Overtime Reports
+ 0318-03-01
+ FY08 Overtime Reports
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Bi-Weekly Cost Reports
+ 0318-04
+ Bi-Weekly Cost Reports
+ Bi-wekly cost reports which are maintained by JS/combatant command controler as the official record copy.
+
+
+
+
+
+
+
+
+ N1-218-00-7 item 2
+ Cut off at end of CY, hold 2 years, then destroy.
+
+
+
+
+
+
+ cutoff
+ yearend|1
+
+
+
+
+ destroy
+ year|2
+ {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
+
+
+
+
+
+
+
+
+
+
+ CY08 Unit Manning Documents
+ 0318-04-01
+ CY08 Unit Manning Documents
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Military Files
+ 0412
+ Military Files
+ Record series for military files
+
+
+
+
+
+
+
+
+
+
+
+
+ Military Assignment Documents
+ 0412-01
+ Military Assignment Documents
+ Policy matters pertaining to military assignments which are maintained by any JS/combatant command activity as the official record copy.
+
+
+
+
+
+
+
+
+ N1-218-00-3 item 30
+ Cut off when superseded, hold 5 years, then destroy.
+ true
+
+
+
+
+
+
+ cutoff
+ superseded
+
+
+
+
+ destroy
+ year|5
+ {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Official Military Personnel Privilege Card Applications
+ 0412-02
+ Official Military Personnel Privilege Card Applications
+ Consisting of: documents reflecting applications for priviege cards and ration cards, including Department of Defense Forms (DD Forms) 1172 (Application for Unifomed Services Identification and Privilege Card) and similar documents which are maintained by any JS/combatant command activity.
+
+
+
+
+
+
+
+
+ N1-218-00-3 item 20
+ Cut off when no longer needed and destroy immediately.
+
+
+
+
+
+
+ cutoff
+ no_longer_needed
+
+
+
+
+ destroy
+ immediately|0
+
+
+
+
+
+
+
+
+
+
+
+ COL Bob Johnson
+ 0412-02-01
+ COL Bob Johnson
+
+
+
+
+ PFC Alan Murphy
+ 0412-02-02
+ PFC Alan Murphy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Personnel Security Program Records
+ 0412-03
+ Personnel Security Program Records
+ Position sensitivity files including requests for information relating to the designation of sensitive and non-sensitive personnel positions in an agency and results of final actions taken consisting of approved requests which are maintained by any JS/combatant command activity
+
+
+
+
+
+
+
+
+ N1-218-00-4 item 017
+ Cutoff when position is abolished, re-designated, or no longer needed, whichever is later. Destroy immediately after cutoff.
+
+
+
+
+
+
+ cutoff
+
+ abolished
+ re_designated
+ no_longer_needed
+
+ and
+
+
+
+
+ destroy
+ immediately|0
+
+
+
+
+
+
+
+
+
+
+
+ Commander's Administrative Assistant
+ 0412-03-01
+ Commander's Administrative Assistant
+
+
+
+
+ Equal Opportunity Coordinator
+ 0412-03-02
+ Equal Opportunity Coordinator
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Civilian Files
+ 0430
+ Civilian Files
+ Record series for civilian files
+
+
+
+
+
+
+
+
+
+
+
+
+ Employee Performance File System Records
+ 0430-01
+ Employee Performance File System Records
+ Consisting of: performance records superseded through an administrative, judicial, or quasi-judicial procedure which are maintained by any JS/combatant command activity
+
+
+
+
+
+
+
+
+ GRS 1 item 23b(1)
+ Cutoff when superseded. Destroy immediately after cutoff
+ true
+
+
+
+
+
+
+ cutoff
+ superseded
+
+
+
+
+ destroy
+ immediately|0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Foreign Employee Award Files
+ 0430-02
+ Foreign Employee Award Files
+ Decorations to foreign nationals and US citizens not employed by the US Government consisting of: case files of recommendations, decisions, awards announcements, board meeting minutes, and related documents which are maintained by any JS/combatant command activity
+
+
+
+
+
+
+
+ N1-218-00-3 item 18
+ Permanent. Cut off on completion of case, hold 2 years, then retire to offline storage. Transfer to federal records holding area 5 years after retirement to offline storage. Transfer to NARA 25 years after cutoff.
+
+
+
+
+
+
+ cutoff
+ case_complete
+
+
+
+
+ transfer
+ Retire to offline storage.
+ Offline Storage
+ year|2
+ {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
+
+
+
+
+ transfer
+ Transfer to federal records holding area.
+ Federal Records Holding
+ year|5
+ {http://www.alfresco.org/model/recordsmanagement/1.0}dispositionAsOf
+
+
+
+
+ accession
+ Transfer to NARA.
+ NARA
+ year|25
+ {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
+
+
+
+
+
+
+
+
+
+
+
+ Christian Bohr
+ 0430-02-01
+ Christian Bohr
+
+
+
+
+ Karl Planck
+ 0430-02-02
+ Karl Planck
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Case Files and Papers
+ 0430-03
+ Case Files and Papers
+ Consisting of library containing information on personnel actions which are maintained by R&A Br and Deputy Chief Information Office
+ None
+ Disposal not authorized. Disposition pending NARA approval.
+
+
+
+
+
+
+ Gilbert Competency Hearing
+ 0430-03-01
+ Gilbert Competency Hearing
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Withholding of Within-Grade Increase (WGI) Records
+ 0430-04
+ Withholding of Within-Grade Increase (WGI) Records
+ Files concerning an employee’s performance rating of record with work examples which establish less than fully successful performance, notice of withholding of WGI, employee's request for reconsideration of denied WGI, and decision concerning such a reconsideration request which are maintained by any JS/combatant command activity.
+
+
+
+
+
+
+
+
+ N1-218-00-3 item 16
+ Cut off on completion of WGI action or on separation, whichever is earlier; hold 3 years, then destroy/delete.
+
+
+
+
+
+
+ cutoff
+
+ WGI_action_complete
+ separation
+
+ or
+
+
+
+
+ destroy
+ year|3
+ {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
+
+
+
+
+
+
+
+
+
+
+
+ Gilbert WGI Records
+ 0430-04-01
+ Gilbert WGI Records
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Payroll Differential and Allowances
+ 0430-05
+ Payroll Differential and Allowances
+ Consisting of: information to assist overseas civilian personnel offices to document employee eligibility for foreign post differential and foreign quarters and post allowances, including SF 1190 (Foreign Allowances Application, Grant, and Report) and similar information which are maintained by any JS/combatant command activity.
+
+
+
+
+
+
+
+
+ N1-218-00-3 item 3
+ Cut off at end of Fiscal Year (FY) in which all allowances granted are terminated, hold 3 years, then destroy.
+
+
+
+
+
+
+ retain
+ all_allowances_granted_are_terminated
+
+
+
+
+ cutoff
+ fyend|1
+ {http://www.alfresco.org/model/recordsmanagement/1.0}dispositionAsOf
+
+
+
+
+ destroy
+ year|3
+ {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
+
+
+
+
+
+
+
+
+
+
+
+ Martin Payroll Differential and Allowances
+ 0430-05-01
+ Martin Payroll Differential and Allowances
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Miscellaneous Files
+ 0950
+ Miscellaneous Files
+ Record series for miscellaneous files
+
+
+
+
+
+
+
+
+
+
+
+
+ Civilian Employee Training Program Records
+ 0950-01
+ Civilian Employee Training Program Records
+ Decorations to foreign nationals and US citizens not employed by the US Government consisting of: case files of recommendations, decisions, awards announcements, board meeting minutes, and related documents which are maintained by any JS/combatant command activity
+
+
+
+
+
+
+
+ GRS 1 item 29b
+ Cut off annually, hold 5 years, then destroy, or destroy when obsolete, whichever is earlier.
+
+
+
+
+
+
+ cutoff
+ year|1
+ {http://www.alfresco.org/model/recordsmanagement/1.0}dateFiled
+
+
+
+
+ destroy
+ year|5
+ {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
+ obsolete
+
+
+
+
+
+
+
+
+
+
+
+ Bob Prentice Training Records (2008)
+ 0950-01-01
+ Bob Prentice Training Records (2008)
+
+
+
+
+ Beth Tanaka Training Records (2008)
+ 0950-01-02
+ Beth Tanaka Training Records (2008)
+
+
+
+
+ Chuck Stevens Training Records (2008)
+ 0950-01-03
+ Chuck Stevens Training Records (2008)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Purchase of Foreign Award Medals and Decorations
+ 0950-02
+ Purchase of Foreign Award Medals and Decorations
+ Forms reflecting purchase of foreign award medals and decorations.
+
+
+
+
+
+
+
+
+ N1-218-00-3 item 11
+ Cutoff when related record is transferred to inactive storage, hold 1 year, destroy.
+ true
+
+
+
+
+
+
+ cutoff
+ related_record_trasfered_inactive_storage
+
+
+
+
+ destroy
+ year|1
+ {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Monthly Cockpit Crew Training
+ 0950-03
+ Monthly Cockpit/Crew Training
+ Consisting of skills training/evaluation forms, e.g., AF Form 4031.
+
+
+
+
+
+
+
+
+ N1-218-00-3 item 13
+ Cutoff after training is complete, hold 1 year, destroy.
+
+
+
+
+
+
+ cutoff
+ training_complete
+
+
+
+
+ destroy
+ year|1
+ {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
+
+
+
+
+
+
+
+
+
+
+
+ January Cockpit Crew Training
+ 0950-03-01
+ January Cockpit/Crew Training
+
+
+
+
+ February Cockpit Crew Training
+ 0950-03-02
+ February Cockpit/Crew Training
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Science Advisor Records
+ 0950-04
+ Science Advisor Records
+ Consisting of: reports, studies, tasking orders, and similar records. Reports are usually informal and unpublished. Records may be generated at all activities
+
+
+
+
+
+
+
+
+ N1-218-00-10 item 44
+ Cut off on completion of study, hold 5 years, then transfer to Inactive Storage. Transfer to NARA 25 years after cutoff.
+
+
+
+
+
+
+ cutoff
+ study_complete
+
+
+
+
+ transfer
+ Transfer to inactive storage.
+ Inactive Storage
+ year|5
+ {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
+
+
+
+
+ accession
+ Transfer to NARA.
+ NARA
+ year|25
+ {http://www.alfresco.org/model/recordsmanagement/1.0}cutOffDate
+
+
+
+
+
+
+
+
+
+
+
+ Phoenix Mars Mission
+ 0950-04-01
+ Phoenix Mars Mission
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/dod5015-capabilities-classification-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/dod5015-capabilities-classification-context.xml
index 04f71c3fa5..38866ec77a 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/dod5015-capabilities-classification-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/dod5015-capabilities-classification-context.xml
@@ -1,82 +1,82 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/dod5015-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/dod5015-context.xml
index 3253405897..5d1b5768c0 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/dod5015-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/dod5015-context.xml
@@ -1,61 +1,61 @@
-
-
-
-
-
-
-
-
-
- alfresco/module/org_alfresco_module_rm/dod5015/dod5015Model.xml
-
-
-
-
- alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- alfresco.module.org_alfresco_module_rm.dod5015.messages.dod5015
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+ alfresco/module/org_alfresco_module_rm/dod5015/dod5015Model.xml
+
+
+
+
+ alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ alfresco.module.org_alfresco_module_rm.dod5015.messages.dod5015
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/dod5015Model.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/dod5015Model.xml
index 2073d53b71..502f565bf6 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/dod5015Model.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/dod5015Model.xml
@@ -1,434 +1,434 @@
-
-
-
-
-
-
-
- DOD 5015 Model
- Roy Wetherall
- 1.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Image Formats
-
-
- Binary Image Interchange Format (BIIF)
- GIF 89a
- Graphic Image Format (GIF) 87a
- Joint Photographic Experts Group (JPEG) (all versions)
- Portable Network Graphics (PNG) 1.0
- Tagged Image Interchange Format (TIFF) 4.0
- TIFF 5.0
- TIFF 6.0
-
-
- true
-
-
-
-
-
-
-
-
- DOD5015 Site
- rma:rmsite
-
-
-
-
-
- DOD5015 File Plan
- rma:filePlan
-
-
-
-
- Record Series
- rma:recordCategory
-
-
-
-
-
-
-
-
-
- DOD5015 Record
-
-
-
- Publication Date
- d:date
- true
-
-
-
- Originator
- d:text
- true
-
- true
- false
- false
-
-
-
-
- Originating Organization
- d:text
- true
-
- true
- false
- false
-
-
-
-
- Media Type
- d:text
- false
-
- true
- false
- false
-
-
-
-
- Format
- d:text
- false
-
- true
- false
- false
-
-
-
-
- Date Received
- d:date
- false
-
-
-
-
- Addressee
- d:text
- false
-
- true
- false
- false
-
-
-
- Other Addressee
- d:text
- false
-
- true
- false
- false
-
-
-
-
-
-
-
-
- Scanned Record
-
-
- Image Format
- d:text
-
- true
- false
- false
-
-
-
- Image Format and Version
- d:text
- true
-
- true
- false
- false
-
-
-
-
-
-
- Image Resolution X
- d:int
- true
-
-
- Image Resolution Y
- d:int
- true
-
-
- Scanned Bit Depth
- d:int
- false
-
-
-
-
-
- PDF Record
-
-
- Producing Application
- d:text
- true
-
- true
- false
- false
-
-
-
- Producing Application Version
- d:text
- true
-
-
- PDF Version
- d:text
- true
-
- true
- false
- false
-
-
-
- Creating Application
- d:text
- false
-
- true
- false
- false
-
-
-
- Document Security Settings
- d:text
- false
-
- true
- false
- false
-
-
-
-
-
-
- Digital Photograph Record
-
-
- Caption
- d:text
- true
-
-
- Photographer
- d:text
- false
-
- true
- false
- false
-
-
-
- Copyright
- d:text
- false
-
- true
- false
- false
-
-
-
- Bit Depth
- d:text
- false
-
- true
- false
- false
-
-
-
- Image Size X
- d:int
- false
-
-
- Image Size Y
- d:int
- false
-
-
- Image Source
- d:text
- false
-
- true
- false
- false
-
-
-
- Compression
- d:text
- false
-
- true
- false
- false
-
-
-
- ICC/ICM Profile
- d:text
- false
-
- true
- false
- false
-
-
-
- EXIF Information
- d:text
- false
-
- true
- false
- false
-
-
-
-
-
-
- Web Record
-
-
- Web File Name
- d:text
- true
-
- true
- false
- false
-
-
-
- Web Platform
- d:text
- true
-
- true
- false
- false
-
-
-
- Web Site Name
- d:text
- true
-
- true
- false
- false
-
-
-
- Web Site URL
- d:text
- true
-
- true
- false
- false
-
-
-
- Capture Method
- d:text
- true
-
- true
- false
- false
-
-
-
- Capture Date
- d:date
- true
-
-
- Contact
- d:text
- true
-
- true
- false
- false
-
-
-
- Content Management System
- d:text
- false
-
- true
- false
- false
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ DOD 5015 Model
+ Roy Wetherall
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Image Formats
+
+
+ Binary Image Interchange Format (BIIF)
+ GIF 89a
+ Graphic Image Format (GIF) 87a
+ Joint Photographic Experts Group (JPEG) (all versions)
+ Portable Network Graphics (PNG) 1.0
+ Tagged Image Interchange Format (TIFF) 4.0
+ TIFF 5.0
+ TIFF 6.0
+
+
+ true
+
+
+
+
+
+
+
+
+ DOD5015 Site
+ rma:rmsite
+
+
+
+
+
+ DOD5015 File Plan
+ rma:filePlan
+
+
+
+
+ Record Series
+ rma:recordCategory
+
+
+
+
+
+
+
+
+
+ DOD5015 Record
+
+
+
+ Publication Date
+ d:date
+ true
+
+
+
+ Originator
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+
+ Originating Organization
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+
+ Media Type
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+
+ Format
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+
+ Date Received
+ d:date
+ false
+
+
+
+
+ Addressee
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+ Other Addressee
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+
+
+
+
+
+ Scanned Record
+
+
+ Image Format
+ d:text
+
+ true
+ false
+ false
+
+
+
+ Image Format and Version
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+
+
+
+ Image Resolution X
+ d:int
+ true
+
+
+ Image Resolution Y
+ d:int
+ true
+
+
+ Scanned Bit Depth
+ d:int
+ false
+
+
+
+
+
+ PDF Record
+
+
+ Producing Application
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+ Producing Application Version
+ d:text
+ true
+
+
+ PDF Version
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+ Creating Application
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+ Document Security Settings
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+
+
+
+ Digital Photograph Record
+
+
+ Caption
+ d:text
+ true
+
+
+ Photographer
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+ Copyright
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+ Bit Depth
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+ Image Size X
+ d:int
+ false
+
+
+ Image Size Y
+ d:int
+ false
+
+
+ Image Source
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+ Compression
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+ ICC/ICM Profile
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+ EXIF Information
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+
+
+
+ Web Record
+
+
+ Web File Name
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+ Web Platform
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+ Web Site Name
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+ Web Site URL
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+ Capture Method
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+ Capture Date
+ d:date
+ true
+
+
+ Contact
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+ Content Management System
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model.properties
index 49e1248577..0fa8cbc480 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model.properties
@@ -1,98 +1,98 @@
-dod_dod5015.description=DOD5015 Content Model
-
-dod_dod5015.type.dod_site.title=DOD5015 Site
-dod_dod5015.type.dod_site.description=DOD5015 Site
-
-dod_dod5015.type.dod_filePlan.title=DOD5015 File Plan
-dod_dod5015.type.dod_filePlan.description=DOD5015 File Plan
-
-dod_dod5015.type.dod_recordSeries.title=Record Series (Deprecated)
-dod_dod5015.type.dod_recordSeries.description=Record Series (Deprecated)
-
-dod_dod5015.aspect.dod_dod5015record.title=DOD5015 Record
-dod_dod5015.aspect.dod_dod5015record.description=DOD5015 Record
-dod_dod5015.property.dod_publicationDate.title=Publication Date
-dod_dod5015.property.dod_publicationDate.decription=Publication Date
-dod_dod5015.property.dod_originator.title=Originator
-dod_dod5015.property.dod_originator.decription=Originator
-dod_dod5015.property.dod_originatingOrganization.title=Originating Organization
-dod_dod5015.property.dod_originatingOrganization.decription=Originating Organization
-dod_dod5015.property.dod_mediaType.title=Media Type
-dod_dod5015.property.dod_mediaType.decription=Media Type
-dod_dod5015.property.dod_format.title=Format
-dod_dod5015.property.dod_format.decription=Format
-dod_dod5015.property.dod_dateReceived.title=Date Received
-dod_dod5015.property.dod_dateReceived.decription=Date Received
-dod_dod5015.property.dod_address.title=Addressee
-dod_dod5015.property.dod_address.decription=Addressee
-dod_dod5015.property.dod_otherAddress.title=Other Addressee
-dod_dod5015.property.dod_otherAddress.decription=Other Addressee
-
-dod_dod5015.aspect.dod_scannedRecord.title=Scanned Record
-dod_dod5015.aspect.dod_scannedRecord.description=Scanned Record
-dod_dod5015.property.dod_scannedFormat.title=Image Format
-dod_dod5015.property.dod_scannedFormat.description=Image Format
-dod_dod5015.property.dod_scannedFormatVersion.title=Image Format and Version
-dod_dod5015.property.dod_scannedFormatVersion.description=Image Format and Version
-dod_dod5015.property.dod_resolutionX.title=Image Resolution X
-dod_dod5015.property.dod_resolutionX.description=Image Resolution X
-dod_dod5015.property.dod_resolutionY.title=Image Resolution Y
-dod_dod5015.property.dod_resolutionY.description=Image Resolution Y
-dod_dod5015.property.dod_scannedBitDepth.title=Scanned Bit Depth
-dod_dod5015.property.dod_scannedBitDepth.description=Scanned Bit Depth
-
-dod_dod5015.aspect.dod_pdfRecord.title=PDF Record
-dod_dod5015.aspect.dod_pdfRecord.description=PDF Record
-dod_dod5015.property.dod_producingApplication.title=Producing Application
-dod_dod5015.property.dod_producingApplication.description=Producing Application
-dod_dod5015.property.dod_producingApplicationVersion.title=Producing Application Version
-dod_dod5015.property.dod_producingApplicationVersion.description=Producing Application Version
-dod_dod5015.property.dod_pdfVersion.title=PDF Version
-dod_dod5015.property.dod_pdfVersion.description=PDF Version
-dod_dod5015.property.dod_creatingApplication.title=Creating Application
-dod_dod5015.property.dod_creatingApplication.description=Creating Application
-dod_dod5015.property.dod_documentSecuritySettings.title=Document Security Settings
-dod_dod5015.property.dod_documentSecuritySettings.description=Document Security Settings
-
-dod_dod5015.aspect.dod_digitalPhotographRecord.title=Digital Photograph Record
-dod_dod5015.aspect.dod_digitalPhotographRecord.description=Digital Photograph Record
-dod_dod5015.property.dod_caption.title=Caption
-dod_dod5015.property.dod_caption.description=Caption
-dod_dod5015.property.dod_photographer.title=Photographer
-dod_dod5015.property.dod_photographer.description=Photographer
-dod_dod5015.property.dod_copyright.title=Copyright
-dod_dod5015.property.dod_copyright.description=Copyright
-dod_dod5015.property.dod_bitDepth.title=Bit Depth
-dod_dod5015.property.dod_bitDepth.description=Bit Depth
-dod_dod5015.property.dod_imageSizeX.title=Image Size X
-dod_dod5015.property.dod_imageSizeX.description=Image Size X
-dod_dod5015.property.dod_imageSizeY.title=Image Size Y
-dod_dod5015.property.dod_imageSizeY.description=Image Size Y
-dod_dod5015.property.dod_imageSource.title=Image Source
-dod_dod5015.property.dod_imageSource.description=Image Source
-dod_dod5015.property.dod_compression.title=Compression
-dod_dod5015.property.dod_compression.description=Compression
-dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM Profile
-dod_dod5015.property.dod_iccIcmProfile.description=ICC/ICM Profile
-dod_dod5015.property.dod_exifInformation.title=EXIF Information
-dod_dod5015.property.dod_exifInformation.description=EXIF Information
-
-dod_dod5015.aspect.dod_webRecord.title=Web Record
-dod_dod5015.aspect.dod_webRecord.description=Web Record
-dod_dod5015.property.dod_webFileName.title=Web File Name
-dod_dod5015.property.dod_webFileName.description=Web File Name
-dod_dod5015.property.dod_webPlatform.title=Web Platform
-dod_dod5015.property.dod_webPlatform.description=Web Platform
-dod_dod5015.property.dod_webSiteName.title=Web Site Name
-dod_dod5015.property.dod_webSiteName.description=Web Site Name
-dod_dod5015.property.dod_webSiteURL.title=Web Site URL
-dod_dod5015.property.dod_webSiteURL.description=Web Site URL
-dod_dod5015.property.dod_captureMethod.title=Capture Method
-dod_dod5015.property.dod_captureMethod.description=Capture Method
-dod_dod5015.property.dod_captureDate.title=Capture Date
-dod_dod5015.property.dod_captureDate.description=Capture Date
-dod_dod5015.property.dod_contact.title=Contact
-dod_dod5015.property.dod_contact.description=Contact
-dod_dod5015.property.dod_contentManagementSystem.title=Content Management System
-dod_dod5015.property.dod_contentManagementSystem.description=Content Management System
-
+dod_dod5015.description=DOD5015 Content Model
+
+dod_dod5015.type.dod_site.title=DOD5015 Site
+dod_dod5015.type.dod_site.description=DOD5015 Site
+
+dod_dod5015.type.dod_filePlan.title=DOD5015 File Plan
+dod_dod5015.type.dod_filePlan.description=DOD5015 File Plan
+
+dod_dod5015.type.dod_recordSeries.title=Record Series (Deprecated)
+dod_dod5015.type.dod_recordSeries.description=Record Series (Deprecated)
+
+dod_dod5015.aspect.dod_dod5015record.title=DOD5015 Record
+dod_dod5015.aspect.dod_dod5015record.description=DOD5015 Record
+dod_dod5015.property.dod_publicationDate.title=Publication Date
+dod_dod5015.property.dod_publicationDate.decription=Publication Date
+dod_dod5015.property.dod_originator.title=Originator
+dod_dod5015.property.dod_originator.decription=Originator
+dod_dod5015.property.dod_originatingOrganization.title=Originating Organization
+dod_dod5015.property.dod_originatingOrganization.decription=Originating Organization
+dod_dod5015.property.dod_mediaType.title=Media Type
+dod_dod5015.property.dod_mediaType.decription=Media Type
+dod_dod5015.property.dod_format.title=Format
+dod_dod5015.property.dod_format.decription=Format
+dod_dod5015.property.dod_dateReceived.title=Date Received
+dod_dod5015.property.dod_dateReceived.decription=Date Received
+dod_dod5015.property.dod_address.title=Addressee
+dod_dod5015.property.dod_address.decription=Addressee
+dod_dod5015.property.dod_otherAddress.title=Other Addressee
+dod_dod5015.property.dod_otherAddress.decription=Other Addressee
+
+dod_dod5015.aspect.dod_scannedRecord.title=Scanned Record
+dod_dod5015.aspect.dod_scannedRecord.description=Scanned Record
+dod_dod5015.property.dod_scannedFormat.title=Image Format
+dod_dod5015.property.dod_scannedFormat.description=Image Format
+dod_dod5015.property.dod_scannedFormatVersion.title=Image Format and Version
+dod_dod5015.property.dod_scannedFormatVersion.description=Image Format and Version
+dod_dod5015.property.dod_resolutionX.title=Image Resolution X
+dod_dod5015.property.dod_resolutionX.description=Image Resolution X
+dod_dod5015.property.dod_resolutionY.title=Image Resolution Y
+dod_dod5015.property.dod_resolutionY.description=Image Resolution Y
+dod_dod5015.property.dod_scannedBitDepth.title=Scanned Bit Depth
+dod_dod5015.property.dod_scannedBitDepth.description=Scanned Bit Depth
+
+dod_dod5015.aspect.dod_pdfRecord.title=PDF Record
+dod_dod5015.aspect.dod_pdfRecord.description=PDF Record
+dod_dod5015.property.dod_producingApplication.title=Producing Application
+dod_dod5015.property.dod_producingApplication.description=Producing Application
+dod_dod5015.property.dod_producingApplicationVersion.title=Producing Application Version
+dod_dod5015.property.dod_producingApplicationVersion.description=Producing Application Version
+dod_dod5015.property.dod_pdfVersion.title=PDF Version
+dod_dod5015.property.dod_pdfVersion.description=PDF Version
+dod_dod5015.property.dod_creatingApplication.title=Creating Application
+dod_dod5015.property.dod_creatingApplication.description=Creating Application
+dod_dod5015.property.dod_documentSecuritySettings.title=Document Security Settings
+dod_dod5015.property.dod_documentSecuritySettings.description=Document Security Settings
+
+dod_dod5015.aspect.dod_digitalPhotographRecord.title=Digital Photograph Record
+dod_dod5015.aspect.dod_digitalPhotographRecord.description=Digital Photograph Record
+dod_dod5015.property.dod_caption.title=Caption
+dod_dod5015.property.dod_caption.description=Caption
+dod_dod5015.property.dod_photographer.title=Photographer
+dod_dod5015.property.dod_photographer.description=Photographer
+dod_dod5015.property.dod_copyright.title=Copyright
+dod_dod5015.property.dod_copyright.description=Copyright
+dod_dod5015.property.dod_bitDepth.title=Bit Depth
+dod_dod5015.property.dod_bitDepth.description=Bit Depth
+dod_dod5015.property.dod_imageSizeX.title=Image Size X
+dod_dod5015.property.dod_imageSizeX.description=Image Size X
+dod_dod5015.property.dod_imageSizeY.title=Image Size Y
+dod_dod5015.property.dod_imageSizeY.description=Image Size Y
+dod_dod5015.property.dod_imageSource.title=Image Source
+dod_dod5015.property.dod_imageSource.description=Image Source
+dod_dod5015.property.dod_compression.title=Compression
+dod_dod5015.property.dod_compression.description=Compression
+dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM Profile
+dod_dod5015.property.dod_iccIcmProfile.description=ICC/ICM Profile
+dod_dod5015.property.dod_exifInformation.title=EXIF Information
+dod_dod5015.property.dod_exifInformation.description=EXIF Information
+
+dod_dod5015.aspect.dod_webRecord.title=Web Record
+dod_dod5015.aspect.dod_webRecord.description=Web Record
+dod_dod5015.property.dod_webFileName.title=Web File Name
+dod_dod5015.property.dod_webFileName.description=Web File Name
+dod_dod5015.property.dod_webPlatform.title=Web Platform
+dod_dod5015.property.dod_webPlatform.description=Web Platform
+dod_dod5015.property.dod_webSiteName.title=Web Site Name
+dod_dod5015.property.dod_webSiteName.description=Web Site Name
+dod_dod5015.property.dod_webSiteURL.title=Web Site URL
+dod_dod5015.property.dod_webSiteURL.description=Web Site URL
+dod_dod5015.property.dod_captureMethod.title=Capture Method
+dod_dod5015.property.dod_captureMethod.description=Capture Method
+dod_dod5015.property.dod_captureDate.title=Capture Date
+dod_dod5015.property.dod_captureDate.description=Capture Date
+dod_dod5015.property.dod_contact.title=Contact
+dod_dod5015.property.dod_contact.description=Contact
+dod_dod5015.property.dod_contentManagementSystem.title=Content Management System
+dod_dod5015.property.dod_contentManagementSystem.description=Content Management System
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_de.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_de.properties
index f18c7be569..1c544629ef 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_de.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_de.properties
@@ -1,98 +1,98 @@
-dod_dod5015.description=DoD 5015-konformes Content-Modell
-
-dod_dod5015.type.dod_site.title=DoD 5015-konforme Site
-dod_dod5015.type.dod_site.description=DoD 5015-konforme Site
-
-dod_dod5015.type.dod_filePlan.title=DoD 5015 Ablageplan
-dod_dod5015.type.dod_filePlan.description=DoD 5015 Ablageplan
-
-dod_dod5015.type.dod_recordSeries.title=Record-Serien (abgelehnt)
-dod_dod5015.type.dod_recordSeries.description=Record-Serien (abgelehnt)
-
-dod_dod5015.aspect.dod_dod5015record.title=DoD 5015-konformer Record
-dod_dod5015.aspect.dod_dod5015record.description=DoD 5015-konformer Record
-dod_dod5015.property.dod_publicationDate.title=Ver\u00f6ffentlichungsdatum
-dod_dod5015.property.dod_publicationDate.decription=Ver\u00f6ffentlichungsdatum
-dod_dod5015.property.dod_originator.title=Ersteller
-dod_dod5015.property.dod_originator.decription=Ersteller
-dod_dod5015.property.dod_originatingOrganization.title=Erstellende Organisation
-dod_dod5015.property.dod_originatingOrganization.decription=Erstellende Organisation
-dod_dod5015.property.dod_mediaType.title=Medientyp
-dod_dod5015.property.dod_mediaType.decription=Medientyp
-dod_dod5015.property.dod_format.title=Format
-dod_dod5015.property.dod_format.decription=Format
-dod_dod5015.property.dod_dateReceived.title=Eingangsdatum
-dod_dod5015.property.dod_dateReceived.decription=Eingangsdatum
-dod_dod5015.property.dod_address.title=Empf\u00e4nger
-dod_dod5015.property.dod_address.decription=Empf\u00e4nger
-dod_dod5015.property.dod_otherAddress.title=Anderer Empf\u00e4nger
-dod_dod5015.property.dod_otherAddress.decription=Anderer Empf\u00e4nger
-
-dod_dod5015.aspect.dod_scannedRecord.title=Eingescannter Record
-dod_dod5015.aspect.dod_scannedRecord.description=Eingescannter Record
-dod_dod5015.property.dod_scannedFormat.title=Bildformat
-dod_dod5015.property.dod_scannedFormat.description=Bildformat
-dod_dod5015.property.dod_scannedFormatVersion.title=Bildformat und Version
-dod_dod5015.property.dod_scannedFormatVersion.description=Bildformat und Version
-dod_dod5015.property.dod_resolutionX.title=Bildaufl\u00f6sung X
-dod_dod5015.property.dod_resolutionX.description=Bildaufl\u00f6sung X
-dod_dod5015.property.dod_resolutionY.title=Bildaufl\u00f6sung Y
-dod_dod5015.property.dod_resolutionY.description=Bildaufl\u00f6sung Y
-dod_dod5015.property.dod_scannedBitDepth.title=Bittiefe des Scans
-dod_dod5015.property.dod_scannedBitDepth.description=Bittiefe des Scans
-
-dod_dod5015.aspect.dod_pdfRecord.title=PDF-Record
-dod_dod5015.aspect.dod_pdfRecord.description=PDF-Record
-dod_dod5015.property.dod_producingApplication.title=Quellanwendung
-dod_dod5015.property.dod_producingApplication.description=Quellanwendung
-dod_dod5015.property.dod_producingApplicationVersion.title=Version der Quellanwendung
-dod_dod5015.property.dod_producingApplicationVersion.description=Version der Quellanwendung
-dod_dod5015.property.dod_pdfVersion.title=PDF-Version
-dod_dod5015.property.dod_pdfVersion.description=PDF-Version
-dod_dod5015.property.dod_creatingApplication.title=Quellsystem
-dod_dod5015.property.dod_creatingApplication.description=Quellsystem
-dod_dod5015.property.dod_documentSecuritySettings.title=Sicherheitseinstellungen des Dokuments
-dod_dod5015.property.dod_documentSecuritySettings.description=Sicherheitseinstellungen des Dokuments
-
-dod_dod5015.aspect.dod_digitalPhotographRecord.title=Record - Digitales Bild
-dod_dod5015.aspect.dod_digitalPhotographRecord.description=Record - Digitales Bild
-dod_dod5015.property.dod_caption.title=Beschriftung
-dod_dod5015.property.dod_caption.description=Beschriftung
-dod_dod5015.property.dod_photographer.title=Fotograf
-dod_dod5015.property.dod_photographer.description=Fotograf
-dod_dod5015.property.dod_copyright.title=Copyright
-dod_dod5015.property.dod_copyright.description=Copyright
-dod_dod5015.property.dod_bitDepth.title=Bittiefe
-dod_dod5015.property.dod_bitDepth.description=Bittiefe
-dod_dod5015.property.dod_imageSizeX.title=Bildgr\u00f6\u00dfe X
-dod_dod5015.property.dod_imageSizeX.description=Bildgr\u00f6\u00dfe X
-dod_dod5015.property.dod_imageSizeY.title=Bildgr\u00f6\u00dfe Y
-dod_dod5015.property.dod_imageSizeY.description=Bildgr\u00f6\u00dfe Y
-dod_dod5015.property.dod_imageSource.title=Bildquelle
-dod_dod5015.property.dod_imageSource.description=Bildquelle
-dod_dod5015.property.dod_compression.title=Komprimierung
-dod_dod5015.property.dod_compression.description=Komprimierung
-dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM-Profil
-dod_dod5015.property.dod_iccIcmProfile.description=ICC/ICM-Profil
-dod_dod5015.property.dod_exifInformation.title=EXIF-Informationen
-dod_dod5015.property.dod_exifInformation.description=EXIF-Informationen
-
-dod_dod5015.aspect.dod_webRecord.title=Web-Record
-dod_dod5015.aspect.dod_webRecord.description=Web-Record
-dod_dod5015.property.dod_webFileName.title=Webdateiname
-dod_dod5015.property.dod_webFileName.description=Webdateiname
-dod_dod5015.property.dod_webPlatform.title=Webplattform
-dod_dod5015.property.dod_webPlatform.description=Webplattform
-dod_dod5015.property.dod_webSiteName.title=Website-Name
-dod_dod5015.property.dod_webSiteName.description=Website-Name
-dod_dod5015.property.dod_webSiteURL.title=Website-URL
-dod_dod5015.property.dod_webSiteURL.description=Website-URL
-dod_dod5015.property.dod_captureMethod.title=Erfassungsmethode
-dod_dod5015.property.dod_captureMethod.description=Erfassungsmethode
-dod_dod5015.property.dod_captureDate.title=Erfassungsdatum
-dod_dod5015.property.dod_captureDate.description=Erfassungsdatum
-dod_dod5015.property.dod_contact.title=Kontakt
-dod_dod5015.property.dod_contact.description=Kontakt
-dod_dod5015.property.dod_contentManagementSystem.title=Content Management System
-dod_dod5015.property.dod_contentManagementSystem.description=Content Management System
-
+dod_dod5015.description=DoD 5015-konformes Content-Modell
+
+dod_dod5015.type.dod_site.title=DoD 5015-konforme Site
+dod_dod5015.type.dod_site.description=DoD 5015-konforme Site
+
+dod_dod5015.type.dod_filePlan.title=DoD 5015 Ablageplan
+dod_dod5015.type.dod_filePlan.description=DoD 5015 Ablageplan
+
+dod_dod5015.type.dod_recordSeries.title=Record-Serien (abgelehnt)
+dod_dod5015.type.dod_recordSeries.description=Record-Serien (abgelehnt)
+
+dod_dod5015.aspect.dod_dod5015record.title=DoD 5015-konformer Record
+dod_dod5015.aspect.dod_dod5015record.description=DoD 5015-konformer Record
+dod_dod5015.property.dod_publicationDate.title=Ver\u00f6ffentlichungsdatum
+dod_dod5015.property.dod_publicationDate.decription=Ver\u00f6ffentlichungsdatum
+dod_dod5015.property.dod_originator.title=Ersteller
+dod_dod5015.property.dod_originator.decription=Ersteller
+dod_dod5015.property.dod_originatingOrganization.title=Erstellende Organisation
+dod_dod5015.property.dod_originatingOrganization.decription=Erstellende Organisation
+dod_dod5015.property.dod_mediaType.title=Medientyp
+dod_dod5015.property.dod_mediaType.decription=Medientyp
+dod_dod5015.property.dod_format.title=Format
+dod_dod5015.property.dod_format.decription=Format
+dod_dod5015.property.dod_dateReceived.title=Eingangsdatum
+dod_dod5015.property.dod_dateReceived.decription=Eingangsdatum
+dod_dod5015.property.dod_address.title=Empf\u00e4nger
+dod_dod5015.property.dod_address.decription=Empf\u00e4nger
+dod_dod5015.property.dod_otherAddress.title=Anderer Empf\u00e4nger
+dod_dod5015.property.dod_otherAddress.decription=Anderer Empf\u00e4nger
+
+dod_dod5015.aspect.dod_scannedRecord.title=Eingescannter Record
+dod_dod5015.aspect.dod_scannedRecord.description=Eingescannter Record
+dod_dod5015.property.dod_scannedFormat.title=Bildformat
+dod_dod5015.property.dod_scannedFormat.description=Bildformat
+dod_dod5015.property.dod_scannedFormatVersion.title=Bildformat und Version
+dod_dod5015.property.dod_scannedFormatVersion.description=Bildformat und Version
+dod_dod5015.property.dod_resolutionX.title=Bildaufl\u00f6sung X
+dod_dod5015.property.dod_resolutionX.description=Bildaufl\u00f6sung X
+dod_dod5015.property.dod_resolutionY.title=Bildaufl\u00f6sung Y
+dod_dod5015.property.dod_resolutionY.description=Bildaufl\u00f6sung Y
+dod_dod5015.property.dod_scannedBitDepth.title=Bittiefe des Scans
+dod_dod5015.property.dod_scannedBitDepth.description=Bittiefe des Scans
+
+dod_dod5015.aspect.dod_pdfRecord.title=PDF-Record
+dod_dod5015.aspect.dod_pdfRecord.description=PDF-Record
+dod_dod5015.property.dod_producingApplication.title=Quellanwendung
+dod_dod5015.property.dod_producingApplication.description=Quellanwendung
+dod_dod5015.property.dod_producingApplicationVersion.title=Version der Quellanwendung
+dod_dod5015.property.dod_producingApplicationVersion.description=Version der Quellanwendung
+dod_dod5015.property.dod_pdfVersion.title=PDF-Version
+dod_dod5015.property.dod_pdfVersion.description=PDF-Version
+dod_dod5015.property.dod_creatingApplication.title=Quellsystem
+dod_dod5015.property.dod_creatingApplication.description=Quellsystem
+dod_dod5015.property.dod_documentSecuritySettings.title=Sicherheitseinstellungen des Dokuments
+dod_dod5015.property.dod_documentSecuritySettings.description=Sicherheitseinstellungen des Dokuments
+
+dod_dod5015.aspect.dod_digitalPhotographRecord.title=Record - Digitales Bild
+dod_dod5015.aspect.dod_digitalPhotographRecord.description=Record - Digitales Bild
+dod_dod5015.property.dod_caption.title=Beschriftung
+dod_dod5015.property.dod_caption.description=Beschriftung
+dod_dod5015.property.dod_photographer.title=Fotograf
+dod_dod5015.property.dod_photographer.description=Fotograf
+dod_dod5015.property.dod_copyright.title=Copyright
+dod_dod5015.property.dod_copyright.description=Copyright
+dod_dod5015.property.dod_bitDepth.title=Bittiefe
+dod_dod5015.property.dod_bitDepth.description=Bittiefe
+dod_dod5015.property.dod_imageSizeX.title=Bildgr\u00f6\u00dfe X
+dod_dod5015.property.dod_imageSizeX.description=Bildgr\u00f6\u00dfe X
+dod_dod5015.property.dod_imageSizeY.title=Bildgr\u00f6\u00dfe Y
+dod_dod5015.property.dod_imageSizeY.description=Bildgr\u00f6\u00dfe Y
+dod_dod5015.property.dod_imageSource.title=Bildquelle
+dod_dod5015.property.dod_imageSource.description=Bildquelle
+dod_dod5015.property.dod_compression.title=Komprimierung
+dod_dod5015.property.dod_compression.description=Komprimierung
+dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM-Profil
+dod_dod5015.property.dod_iccIcmProfile.description=ICC/ICM-Profil
+dod_dod5015.property.dod_exifInformation.title=EXIF-Informationen
+dod_dod5015.property.dod_exifInformation.description=EXIF-Informationen
+
+dod_dod5015.aspect.dod_webRecord.title=Web-Record
+dod_dod5015.aspect.dod_webRecord.description=Web-Record
+dod_dod5015.property.dod_webFileName.title=Webdateiname
+dod_dod5015.property.dod_webFileName.description=Webdateiname
+dod_dod5015.property.dod_webPlatform.title=Webplattform
+dod_dod5015.property.dod_webPlatform.description=Webplattform
+dod_dod5015.property.dod_webSiteName.title=Website-Name
+dod_dod5015.property.dod_webSiteName.description=Website-Name
+dod_dod5015.property.dod_webSiteURL.title=Website-URL
+dod_dod5015.property.dod_webSiteURL.description=Website-URL
+dod_dod5015.property.dod_captureMethod.title=Erfassungsmethode
+dod_dod5015.property.dod_captureMethod.description=Erfassungsmethode
+dod_dod5015.property.dod_captureDate.title=Erfassungsdatum
+dod_dod5015.property.dod_captureDate.description=Erfassungsdatum
+dod_dod5015.property.dod_contact.title=Kontakt
+dod_dod5015.property.dod_contact.description=Kontakt
+dod_dod5015.property.dod_contentManagementSystem.title=Content Management System
+dod_dod5015.property.dod_contentManagementSystem.description=Content Management System
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_es.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_es.properties
index b078119b7f..484926938a 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_es.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_es.properties
@@ -1,98 +1,98 @@
-dod_dod5015.description=Modelo de contenido de DOD5015
-
-dod_dod5015.type.dod_site.title=Sitio de DOD5015
-dod_dod5015.type.dod_site.description=Sitio de DOD5015
-
-dod_dod5015.type.dod_filePlan.title=Plan de fichero DOD5015
-dod_dod5015.type.dod_filePlan.description=Plan de fichero DOD5015
-
-dod_dod5015.type.dod_recordSeries.title=Serie de documentos de archivo (depreciada)
-dod_dod5015.type.dod_recordSeries.description=Serie de documentos de archivo (depreciada)
-
-dod_dod5015.aspect.dod_dod5015record.title=Documento de archivo de DOD5015
-dod_dod5015.aspect.dod_dod5015record.description=Documento de archivo de DOD5015
-dod_dod5015.property.dod_publicationDate.title=Fecha de publicaci\u00f3n
-dod_dod5015.property.dod_publicationDate.decription=Fecha de publicaci\u00f3n
-dod_dod5015.property.dod_originator.title=Creador
-dod_dod5015.property.dod_originator.decription=Creador
-dod_dod5015.property.dod_originatingOrganization.title=Organizaci\u00f3n creadora
-dod_dod5015.property.dod_originatingOrganization.decription=Organizaci\u00f3n creadora
-dod_dod5015.property.dod_mediaType.title=Tipo de medio
-dod_dod5015.property.dod_mediaType.decription=Tipo de medio
-dod_dod5015.property.dod_format.title=Formato
-dod_dod5015.property.dod_format.decription=Formato
-dod_dod5015.property.dod_dateReceived.title=Fecha de recepci\u00f3n
-dod_dod5015.property.dod_dateReceived.decription=Fecha de recepci\u00f3n
-dod_dod5015.property.dod_address.title=Destinatario
-dod_dod5015.property.dod_address.decription=Destinatario
-dod_dod5015.property.dod_otherAddress.title=Otro destinatario
-dod_dod5015.property.dod_otherAddress.decription=Otro destinatario
-
-dod_dod5015.aspect.dod_scannedRecord.title=Documento de archivo escaneado
-dod_dod5015.aspect.dod_scannedRecord.description=Documento de archivo escaneado
-dod_dod5015.property.dod_scannedFormat.title=Formato de imagen
-dod_dod5015.property.dod_scannedFormat.description=Formato de imagen
-dod_dod5015.property.dod_scannedFormatVersion.title=Formato de imagen y versi\u00f3n
-dod_dod5015.property.dod_scannedFormatVersion.description=Formato de imagen y versi\u00f3n
-dod_dod5015.property.dod_resolutionX.title=Resoluci\u00f3n de imagen X
-dod_dod5015.property.dod_resolutionX.description=Resoluci\u00f3n de imagen X
-dod_dod5015.property.dod_resolutionY.title=Resoluci\u00f3n de imagen Y
-dod_dod5015.property.dod_resolutionY.description=Resoluci\u00f3n de imagen Y
-dod_dod5015.property.dod_scannedBitDepth.title=Profundidad de bits de escaneado
-dod_dod5015.property.dod_scannedBitDepth.description=Profundidad de bits de escaneado
-
-dod_dod5015.aspect.dod_pdfRecord.title=Documento de archivo PDF
-dod_dod5015.aspect.dod_pdfRecord.description=Documento de archivo PDF
-dod_dod5015.property.dod_producingApplication.title=Produciendo aplicaci\u00f3n
-dod_dod5015.property.dod_producingApplication.description=Produciendo aplicaci\u00f3n
-dod_dod5015.property.dod_producingApplicationVersion.title=Produciendo versi\u00f3n de la aplicaci\u00f3n
-dod_dod5015.property.dod_producingApplicationVersion.description=Produciendo versi\u00f3n de la aplicaci\u00f3n
-dod_dod5015.property.dod_pdfVersion.title=Versi\u00f3n PDF
-dod_dod5015.property.dod_pdfVersion.description=Versi\u00f3n PDF
-dod_dod5015.property.dod_creatingApplication.title=Creando aplicaci\u00f3n
-dod_dod5015.property.dod_creatingApplication.description=Creando aplicaci\u00f3n
-dod_dod5015.property.dod_documentSecuritySettings.title=Configuraci\u00f3n de seguridad del documento
-dod_dod5015.property.dod_documentSecuritySettings.description=Configuraci\u00f3n de seguridad del documento
-
-dod_dod5015.aspect.dod_digitalPhotographRecord.title=Documento de archivo fotogr\u00e1fico digital
-dod_dod5015.aspect.dod_digitalPhotographRecord.description=Documento de archivo fotogr\u00e1fico digital
-dod_dod5015.property.dod_caption.title=T\u00edtulo
-dod_dod5015.property.dod_caption.description=T\u00edtulo
-dod_dod5015.property.dod_photographer.title=Fot\u00f3grafo
-dod_dod5015.property.dod_photographer.description=Fot\u00f3grafo
-dod_dod5015.property.dod_copyright.title=Copyright
-dod_dod5015.property.dod_copyright.description=Copyright
-dod_dod5015.property.dod_bitDepth.title=Profundidad de bits
-dod_dod5015.property.dod_bitDepth.description=Profundidad de bits
-dod_dod5015.property.dod_imageSizeX.title=Tama\u00f1o de imagen X
-dod_dod5015.property.dod_imageSizeX.description=Tama\u00f1o de imagen X
-dod_dod5015.property.dod_imageSizeY.title=Tama\u00f1o de imagen Y
-dod_dod5015.property.dod_imageSizeY.description=Tama\u00f1o de imagen Y
-dod_dod5015.property.dod_imageSource.title=Procedencia de la imagen
-dod_dod5015.property.dod_imageSource.description=Procedencia de la imagen
-dod_dod5015.property.dod_compression.title=Compresi\u00f3n
-dod_dod5015.property.dod_compression.description=Compresi\u00f3n
-dod_dod5015.property.dod_iccIcmProfile.title=Perfil ICC/ICM
-dod_dod5015.property.dod_iccIcmProfile.description=Perfil ICC/ICM
-dod_dod5015.property.dod_exifInformation.title=Informaci\u00f3n EXIF
-dod_dod5015.property.dod_exifInformation.description=Informaci\u00f3n EXIF
-
-dod_dod5015.aspect.dod_webRecord.title=Documento de archivo web
-dod_dod5015.aspect.dod_webRecord.description=Documento de archivo web
-dod_dod5015.property.dod_webFileName.title=Nombre del fichero web
-dod_dod5015.property.dod_webFileName.description=Nombre del fichero web
-dod_dod5015.property.dod_webPlatform.title=Plataforma web
-dod_dod5015.property.dod_webPlatform.description=Plataforma web
-dod_dod5015.property.dod_webSiteName.title=Nombre del sitio web
-dod_dod5015.property.dod_webSiteName.description=Nombre del sitio web
-dod_dod5015.property.dod_webSiteURL.title=URL del sitio web
-dod_dod5015.property.dod_webSiteURL.description=URL del sitio web
-dod_dod5015.property.dod_captureMethod.title=M\u00e9todo de captura
-dod_dod5015.property.dod_captureMethod.description=M\u00e9todo de captura
-dod_dod5015.property.dod_captureDate.title=Fecha de captura
-dod_dod5015.property.dod_captureDate.description=Fecha de captura
-dod_dod5015.property.dod_contact.title=Contacto
-dod_dod5015.property.dod_contact.description=Contacto
-dod_dod5015.property.dod_contentManagementSystem.title=Sistema de gesti\u00f3n de contenidos
-dod_dod5015.property.dod_contentManagementSystem.description=Sistema de gesti\u00f3n de contenidos
-
+dod_dod5015.description=Modelo de contenido de DOD5015
+
+dod_dod5015.type.dod_site.title=Sitio de DOD5015
+dod_dod5015.type.dod_site.description=Sitio de DOD5015
+
+dod_dod5015.type.dod_filePlan.title=Plan de fichero DOD5015
+dod_dod5015.type.dod_filePlan.description=Plan de fichero DOD5015
+
+dod_dod5015.type.dod_recordSeries.title=Serie de documentos de archivo (depreciada)
+dod_dod5015.type.dod_recordSeries.description=Serie de documentos de archivo (depreciada)
+
+dod_dod5015.aspect.dod_dod5015record.title=Documento de archivo de DOD5015
+dod_dod5015.aspect.dod_dod5015record.description=Documento de archivo de DOD5015
+dod_dod5015.property.dod_publicationDate.title=Fecha de publicaci\u00f3n
+dod_dod5015.property.dod_publicationDate.decription=Fecha de publicaci\u00f3n
+dod_dod5015.property.dod_originator.title=Creador
+dod_dod5015.property.dod_originator.decription=Creador
+dod_dod5015.property.dod_originatingOrganization.title=Organizaci\u00f3n creadora
+dod_dod5015.property.dod_originatingOrganization.decription=Organizaci\u00f3n creadora
+dod_dod5015.property.dod_mediaType.title=Tipo de medio
+dod_dod5015.property.dod_mediaType.decription=Tipo de medio
+dod_dod5015.property.dod_format.title=Formato
+dod_dod5015.property.dod_format.decription=Formato
+dod_dod5015.property.dod_dateReceived.title=Fecha de recepci\u00f3n
+dod_dod5015.property.dod_dateReceived.decription=Fecha de recepci\u00f3n
+dod_dod5015.property.dod_address.title=Destinatario
+dod_dod5015.property.dod_address.decription=Destinatario
+dod_dod5015.property.dod_otherAddress.title=Otro destinatario
+dod_dod5015.property.dod_otherAddress.decription=Otro destinatario
+
+dod_dod5015.aspect.dod_scannedRecord.title=Documento de archivo escaneado
+dod_dod5015.aspect.dod_scannedRecord.description=Documento de archivo escaneado
+dod_dod5015.property.dod_scannedFormat.title=Formato de imagen
+dod_dod5015.property.dod_scannedFormat.description=Formato de imagen
+dod_dod5015.property.dod_scannedFormatVersion.title=Formato de imagen y versi\u00f3n
+dod_dod5015.property.dod_scannedFormatVersion.description=Formato de imagen y versi\u00f3n
+dod_dod5015.property.dod_resolutionX.title=Resoluci\u00f3n de imagen X
+dod_dod5015.property.dod_resolutionX.description=Resoluci\u00f3n de imagen X
+dod_dod5015.property.dod_resolutionY.title=Resoluci\u00f3n de imagen Y
+dod_dod5015.property.dod_resolutionY.description=Resoluci\u00f3n de imagen Y
+dod_dod5015.property.dod_scannedBitDepth.title=Profundidad de bits de escaneado
+dod_dod5015.property.dod_scannedBitDepth.description=Profundidad de bits de escaneado
+
+dod_dod5015.aspect.dod_pdfRecord.title=Documento de archivo PDF
+dod_dod5015.aspect.dod_pdfRecord.description=Documento de archivo PDF
+dod_dod5015.property.dod_producingApplication.title=Produciendo aplicaci\u00f3n
+dod_dod5015.property.dod_producingApplication.description=Produciendo aplicaci\u00f3n
+dod_dod5015.property.dod_producingApplicationVersion.title=Produciendo versi\u00f3n de la aplicaci\u00f3n
+dod_dod5015.property.dod_producingApplicationVersion.description=Produciendo versi\u00f3n de la aplicaci\u00f3n
+dod_dod5015.property.dod_pdfVersion.title=Versi\u00f3n PDF
+dod_dod5015.property.dod_pdfVersion.description=Versi\u00f3n PDF
+dod_dod5015.property.dod_creatingApplication.title=Creando aplicaci\u00f3n
+dod_dod5015.property.dod_creatingApplication.description=Creando aplicaci\u00f3n
+dod_dod5015.property.dod_documentSecuritySettings.title=Configuraci\u00f3n de seguridad del documento
+dod_dod5015.property.dod_documentSecuritySettings.description=Configuraci\u00f3n de seguridad del documento
+
+dod_dod5015.aspect.dod_digitalPhotographRecord.title=Documento de archivo fotogr\u00e1fico digital
+dod_dod5015.aspect.dod_digitalPhotographRecord.description=Documento de archivo fotogr\u00e1fico digital
+dod_dod5015.property.dod_caption.title=T\u00edtulo
+dod_dod5015.property.dod_caption.description=T\u00edtulo
+dod_dod5015.property.dod_photographer.title=Fot\u00f3grafo
+dod_dod5015.property.dod_photographer.description=Fot\u00f3grafo
+dod_dod5015.property.dod_copyright.title=Copyright
+dod_dod5015.property.dod_copyright.description=Copyright
+dod_dod5015.property.dod_bitDepth.title=Profundidad de bits
+dod_dod5015.property.dod_bitDepth.description=Profundidad de bits
+dod_dod5015.property.dod_imageSizeX.title=Tama\u00f1o de imagen X
+dod_dod5015.property.dod_imageSizeX.description=Tama\u00f1o de imagen X
+dod_dod5015.property.dod_imageSizeY.title=Tama\u00f1o de imagen Y
+dod_dod5015.property.dod_imageSizeY.description=Tama\u00f1o de imagen Y
+dod_dod5015.property.dod_imageSource.title=Procedencia de la imagen
+dod_dod5015.property.dod_imageSource.description=Procedencia de la imagen
+dod_dod5015.property.dod_compression.title=Compresi\u00f3n
+dod_dod5015.property.dod_compression.description=Compresi\u00f3n
+dod_dod5015.property.dod_iccIcmProfile.title=Perfil ICC/ICM
+dod_dod5015.property.dod_iccIcmProfile.description=Perfil ICC/ICM
+dod_dod5015.property.dod_exifInformation.title=Informaci\u00f3n EXIF
+dod_dod5015.property.dod_exifInformation.description=Informaci\u00f3n EXIF
+
+dod_dod5015.aspect.dod_webRecord.title=Documento de archivo web
+dod_dod5015.aspect.dod_webRecord.description=Documento de archivo web
+dod_dod5015.property.dod_webFileName.title=Nombre del fichero web
+dod_dod5015.property.dod_webFileName.description=Nombre del fichero web
+dod_dod5015.property.dod_webPlatform.title=Plataforma web
+dod_dod5015.property.dod_webPlatform.description=Plataforma web
+dod_dod5015.property.dod_webSiteName.title=Nombre del sitio web
+dod_dod5015.property.dod_webSiteName.description=Nombre del sitio web
+dod_dod5015.property.dod_webSiteURL.title=URL del sitio web
+dod_dod5015.property.dod_webSiteURL.description=URL del sitio web
+dod_dod5015.property.dod_captureMethod.title=M\u00e9todo de captura
+dod_dod5015.property.dod_captureMethod.description=M\u00e9todo de captura
+dod_dod5015.property.dod_captureDate.title=Fecha de captura
+dod_dod5015.property.dod_captureDate.description=Fecha de captura
+dod_dod5015.property.dod_contact.title=Contacto
+dod_dod5015.property.dod_contact.description=Contacto
+dod_dod5015.property.dod_contentManagementSystem.title=Sistema de gesti\u00f3n de contenidos
+dod_dod5015.property.dod_contentManagementSystem.description=Sistema de gesti\u00f3n de contenidos
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_fr.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_fr.properties
index b28bfbba96..6c59002dd6 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_fr.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_fr.properties
@@ -1,98 +1,98 @@
-dod_dod5015.description=Mod\u00e8le de contenu DOD5015
-
-dod_dod5015.type.dod_site.title=Site DOD5015
-dod_dod5015.type.dod_site.description=Site DOD5015
-
-dod_dod5015.type.dod_filePlan.title=Plan de classification DOD5015
-dod_dod5015.type.dod_filePlan.description=Plan de classification DOD5015
-
-dod_dod5015.type.dod_recordSeries.title=S\u00e9rie de documents d'archives (\u00e0 \u00e9viter)
-dod_dod5015.type.dod_recordSeries.description=S\u00e9rie de documents d'archives (\u00e0 \u00e9viter)
-
-dod_dod5015.aspect.dod_dod5015record.title=Document d'archives DOD5015
-dod_dod5015.aspect.dod_dod5015record.description=Document d'archives DOD5015
-dod_dod5015.property.dod_publicationDate.title=Date de publication
-dod_dod5015.property.dod_publicationDate.decription=Date de publication
-dod_dod5015.property.dod_originator.title=\u00c9metteur
-dod_dod5015.property.dod_originator.decription=\u00c9metteur
-dod_dod5015.property.dod_originatingOrganization.title=Organisation \u00e9mettrice
-dod_dod5015.property.dod_originatingOrganization.decription=Organisation \u00e9mettrice
-dod_dod5015.property.dod_mediaType.title=Type de support
-dod_dod5015.property.dod_mediaType.decription=Type de support
-dod_dod5015.property.dod_format.title=Format
-dod_dod5015.property.dod_format.decription=Format
-dod_dod5015.property.dod_dateReceived.title=Date de r\u00e9ception
-dod_dod5015.property.dod_dateReceived.decription=Date de r\u00e9ception
-dod_dod5015.property.dod_address.title=Destinataire
-dod_dod5015.property.dod_address.decription=Destinataire
-dod_dod5015.property.dod_otherAddress.title=Autre destinataire
-dod_dod5015.property.dod_otherAddress.decription=Autre destinataire
-
-dod_dod5015.aspect.dod_scannedRecord.title=Document d'archives num\u00e9ris\u00e9
-dod_dod5015.aspect.dod_scannedRecord.description=Document d'archives num\u00e9ris\u00e9
-dod_dod5015.property.dod_scannedFormat.title=Format d'image
-dod_dod5015.property.dod_scannedFormat.description=Format d'image
-dod_dod5015.property.dod_scannedFormatVersion.title=Format et version d'image
-dod_dod5015.property.dod_scannedFormatVersion.description=Format et version d'image
-dod_dod5015.property.dod_resolutionX.title=R\u00e9solution d'image X
-dod_dod5015.property.dod_resolutionX.description=R\u00e9solution d'image X
-dod_dod5015.property.dod_resolutionY.title=R\u00e9solution d'image Y
-dod_dod5015.property.dod_resolutionY.description=R\u00e9solution d'image Y
-dod_dod5015.property.dod_scannedBitDepth.title=Profondeur de couleur num\u00e9ris\u00e9e
-dod_dod5015.property.dod_scannedBitDepth.description=Profondeur de couleur num\u00e9ris\u00e9e
-
-dod_dod5015.aspect.dod_pdfRecord.title=Document d'archives PDF
-dod_dod5015.aspect.dod_pdfRecord.description=Document d'archives PDF
-dod_dod5015.property.dod_producingApplication.title=Application native
-dod_dod5015.property.dod_producingApplication.description=Application native
-dod_dod5015.property.dod_producingApplicationVersion.title=Version de l'application native
-dod_dod5015.property.dod_producingApplicationVersion.description=Version de l'application native
-dod_dod5015.property.dod_pdfVersion.title=Version PDF
-dod_dod5015.property.dod_pdfVersion.description=Version PDF
-dod_dod5015.property.dod_creatingApplication.title=Application native
-dod_dod5015.property.dod_creatingApplication.description=Application native
-dod_dod5015.property.dod_documentSecuritySettings.title=Param\u00e8tres de s\u00e9curit\u00e9 du document
-dod_dod5015.property.dod_documentSecuritySettings.description=Param\u00e8tres de s\u00e9curit\u00e9 du document
-
-dod_dod5015.aspect.dod_digitalPhotographRecord.title=Photographie num\u00e9rique d'archives
-dod_dod5015.aspect.dod_digitalPhotographRecord.description=Photographie num\u00e9rique d'archives
-dod_dod5015.property.dod_caption.title=L\u00e9gende
-dod_dod5015.property.dod_caption.description=L\u00e9gende
-dod_dod5015.property.dod_photographer.title=Photographe
-dod_dod5015.property.dod_photographer.description=Photographe
-dod_dod5015.property.dod_copyright.title=Copyright
-dod_dod5015.property.dod_copyright.description=Copyright
-dod_dod5015.property.dod_bitDepth.title=Profondeur de couleur
-dod_dod5015.property.dod_bitDepth.description=Profondeur de couleur
-dod_dod5015.property.dod_imageSizeX.title=Taille d'image X
-dod_dod5015.property.dod_imageSizeX.description=Taille d'image X
-dod_dod5015.property.dod_imageSizeY.title=Taille d'image Y
-dod_dod5015.property.dod_imageSizeY.description=Taille d'image Y
-dod_dod5015.property.dod_imageSource.title=Source de l'image
-dod_dod5015.property.dod_imageSource.description=Source de l'image
-dod_dod5015.property.dod_compression.title=Compression
-dod_dod5015.property.dod_compression.description=Compression
-dod_dod5015.property.dod_iccIcmProfile.title=Profil ICC/ICM
-dod_dod5015.property.dod_iccIcmProfile.description=Profil ICC/ICM
-dod_dod5015.property.dod_exifInformation.title=Informations EXIF
-dod_dod5015.property.dod_exifInformation.description=Informations EXIF
-
-dod_dod5015.aspect.dod_webRecord.title=Document d'archives Web
-dod_dod5015.aspect.dod_webRecord.description=Document d'archives Web
-dod_dod5015.property.dod_webFileName.title=Nom de fichier Web
-dod_dod5015.property.dod_webFileName.description=Nom de fichier Web
-dod_dod5015.property.dod_webPlatform.title=Plate-forme Web
-dod_dod5015.property.dod_webPlatform.description=Plate-forme Web
-dod_dod5015.property.dod_webSiteName.title=Nom du site Web
-dod_dod5015.property.dod_webSiteName.description=Nom du site Web
-dod_dod5015.property.dod_webSiteURL.title=URL de site Web
-dod_dod5015.property.dod_webSiteURL.description=URL de site Web
-dod_dod5015.property.dod_captureMethod.title=M\u00e9thode de capture
-dod_dod5015.property.dod_captureMethod.description=M\u00e9thode de capture
-dod_dod5015.property.dod_captureDate.title=Date de capture
-dod_dod5015.property.dod_captureDate.description=Date de capture
-dod_dod5015.property.dod_contact.title=Contact
-dod_dod5015.property.dod_contact.description=Contact
-dod_dod5015.property.dod_contentManagementSystem.title=Syst\u00e8me de gestion de contenu
-dod_dod5015.property.dod_contentManagementSystem.description=Syst\u00e8me de gestion de contenu
-
+dod_dod5015.description=Mod\u00e8le de contenu DOD5015
+
+dod_dod5015.type.dod_site.title=Site DOD5015
+dod_dod5015.type.dod_site.description=Site DOD5015
+
+dod_dod5015.type.dod_filePlan.title=Plan de classification DOD5015
+dod_dod5015.type.dod_filePlan.description=Plan de classification DOD5015
+
+dod_dod5015.type.dod_recordSeries.title=S\u00e9rie de documents d'archives (\u00e0 \u00e9viter)
+dod_dod5015.type.dod_recordSeries.description=S\u00e9rie de documents d'archives (\u00e0 \u00e9viter)
+
+dod_dod5015.aspect.dod_dod5015record.title=Document d'archives DOD5015
+dod_dod5015.aspect.dod_dod5015record.description=Document d'archives DOD5015
+dod_dod5015.property.dod_publicationDate.title=Date de publication
+dod_dod5015.property.dod_publicationDate.decription=Date de publication
+dod_dod5015.property.dod_originator.title=\u00c9metteur
+dod_dod5015.property.dod_originator.decription=\u00c9metteur
+dod_dod5015.property.dod_originatingOrganization.title=Organisation \u00e9mettrice
+dod_dod5015.property.dod_originatingOrganization.decription=Organisation \u00e9mettrice
+dod_dod5015.property.dod_mediaType.title=Type de support
+dod_dod5015.property.dod_mediaType.decription=Type de support
+dod_dod5015.property.dod_format.title=Format
+dod_dod5015.property.dod_format.decription=Format
+dod_dod5015.property.dod_dateReceived.title=Date de r\u00e9ception
+dod_dod5015.property.dod_dateReceived.decription=Date de r\u00e9ception
+dod_dod5015.property.dod_address.title=Destinataire
+dod_dod5015.property.dod_address.decription=Destinataire
+dod_dod5015.property.dod_otherAddress.title=Autre destinataire
+dod_dod5015.property.dod_otherAddress.decription=Autre destinataire
+
+dod_dod5015.aspect.dod_scannedRecord.title=Document d'archives num\u00e9ris\u00e9
+dod_dod5015.aspect.dod_scannedRecord.description=Document d'archives num\u00e9ris\u00e9
+dod_dod5015.property.dod_scannedFormat.title=Format d'image
+dod_dod5015.property.dod_scannedFormat.description=Format d'image
+dod_dod5015.property.dod_scannedFormatVersion.title=Format et version d'image
+dod_dod5015.property.dod_scannedFormatVersion.description=Format et version d'image
+dod_dod5015.property.dod_resolutionX.title=R\u00e9solution d'image X
+dod_dod5015.property.dod_resolutionX.description=R\u00e9solution d'image X
+dod_dod5015.property.dod_resolutionY.title=R\u00e9solution d'image Y
+dod_dod5015.property.dod_resolutionY.description=R\u00e9solution d'image Y
+dod_dod5015.property.dod_scannedBitDepth.title=Profondeur de couleur num\u00e9ris\u00e9e
+dod_dod5015.property.dod_scannedBitDepth.description=Profondeur de couleur num\u00e9ris\u00e9e
+
+dod_dod5015.aspect.dod_pdfRecord.title=Document d'archives PDF
+dod_dod5015.aspect.dod_pdfRecord.description=Document d'archives PDF
+dod_dod5015.property.dod_producingApplication.title=Application native
+dod_dod5015.property.dod_producingApplication.description=Application native
+dod_dod5015.property.dod_producingApplicationVersion.title=Version de l'application native
+dod_dod5015.property.dod_producingApplicationVersion.description=Version de l'application native
+dod_dod5015.property.dod_pdfVersion.title=Version PDF
+dod_dod5015.property.dod_pdfVersion.description=Version PDF
+dod_dod5015.property.dod_creatingApplication.title=Application native
+dod_dod5015.property.dod_creatingApplication.description=Application native
+dod_dod5015.property.dod_documentSecuritySettings.title=Param\u00e8tres de s\u00e9curit\u00e9 du document
+dod_dod5015.property.dod_documentSecuritySettings.description=Param\u00e8tres de s\u00e9curit\u00e9 du document
+
+dod_dod5015.aspect.dod_digitalPhotographRecord.title=Photographie num\u00e9rique d'archives
+dod_dod5015.aspect.dod_digitalPhotographRecord.description=Photographie num\u00e9rique d'archives
+dod_dod5015.property.dod_caption.title=L\u00e9gende
+dod_dod5015.property.dod_caption.description=L\u00e9gende
+dod_dod5015.property.dod_photographer.title=Photographe
+dod_dod5015.property.dod_photographer.description=Photographe
+dod_dod5015.property.dod_copyright.title=Copyright
+dod_dod5015.property.dod_copyright.description=Copyright
+dod_dod5015.property.dod_bitDepth.title=Profondeur de couleur
+dod_dod5015.property.dod_bitDepth.description=Profondeur de couleur
+dod_dod5015.property.dod_imageSizeX.title=Taille d'image X
+dod_dod5015.property.dod_imageSizeX.description=Taille d'image X
+dod_dod5015.property.dod_imageSizeY.title=Taille d'image Y
+dod_dod5015.property.dod_imageSizeY.description=Taille d'image Y
+dod_dod5015.property.dod_imageSource.title=Source de l'image
+dod_dod5015.property.dod_imageSource.description=Source de l'image
+dod_dod5015.property.dod_compression.title=Compression
+dod_dod5015.property.dod_compression.description=Compression
+dod_dod5015.property.dod_iccIcmProfile.title=Profil ICC/ICM
+dod_dod5015.property.dod_iccIcmProfile.description=Profil ICC/ICM
+dod_dod5015.property.dod_exifInformation.title=Informations EXIF
+dod_dod5015.property.dod_exifInformation.description=Informations EXIF
+
+dod_dod5015.aspect.dod_webRecord.title=Document d'archives Web
+dod_dod5015.aspect.dod_webRecord.description=Document d'archives Web
+dod_dod5015.property.dod_webFileName.title=Nom de fichier Web
+dod_dod5015.property.dod_webFileName.description=Nom de fichier Web
+dod_dod5015.property.dod_webPlatform.title=Plate-forme Web
+dod_dod5015.property.dod_webPlatform.description=Plate-forme Web
+dod_dod5015.property.dod_webSiteName.title=Nom du site Web
+dod_dod5015.property.dod_webSiteName.description=Nom du site Web
+dod_dod5015.property.dod_webSiteURL.title=URL de site Web
+dod_dod5015.property.dod_webSiteURL.description=URL de site Web
+dod_dod5015.property.dod_captureMethod.title=M\u00e9thode de capture
+dod_dod5015.property.dod_captureMethod.description=M\u00e9thode de capture
+dod_dod5015.property.dod_captureDate.title=Date de capture
+dod_dod5015.property.dod_captureDate.description=Date de capture
+dod_dod5015.property.dod_contact.title=Contact
+dod_dod5015.property.dod_contact.description=Contact
+dod_dod5015.property.dod_contentManagementSystem.title=Syst\u00e8me de gestion de contenu
+dod_dod5015.property.dod_contentManagementSystem.description=Syst\u00e8me de gestion de contenu
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_it.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_it.properties
index a3bdf5d519..e507ac84b3 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_it.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_it.properties
@@ -1,98 +1,98 @@
-dod_dod5015.description=Modello di contenuto DOD5015
-
-dod_dod5015.type.dod_site.title=Sito DOD5015
-dod_dod5015.type.dod_site.description=Sito DOD5015
-
-dod_dod5015.type.dod_filePlan.title=Piano file DOD5015
-dod_dod5015.type.dod_filePlan.description=Piano file DOD5015
-
-dod_dod5015.type.dod_recordSeries.title=Serie record (obsoleta)
-dod_dod5015.type.dod_recordSeries.description=Serie record (obsoleta)
-
-dod_dod5015.aspect.dod_dod5015record.title=Record DOD5015
-dod_dod5015.aspect.dod_dod5015record.description=Record DOD5015
-dod_dod5015.property.dod_publicationDate.title=Data di pubblicazione
-dod_dod5015.property.dod_publicationDate.decription=Data di pubblicazione
-dod_dod5015.property.dod_originator.title=Iniziatore
-dod_dod5015.property.dod_originator.decription=Iniziatore
-dod_dod5015.property.dod_originatingOrganization.title=Organizzazione di origine
-dod_dod5015.property.dod_originatingOrganization.decription=Organizzazione di origine
-dod_dod5015.property.dod_mediaType.title=Tipo di supporto
-dod_dod5015.property.dod_mediaType.decription=Tipo di supporto
-dod_dod5015.property.dod_format.title=Formato
-dod_dod5015.property.dod_format.decription=Formato
-dod_dod5015.property.dod_dateReceived.title=Data di ricezione
-dod_dod5015.property.dod_dateReceived.decription=Data di ricezione
-dod_dod5015.property.dod_address.title=Destinatario
-dod_dod5015.property.dod_address.decription=Destinatario
-dod_dod5015.property.dod_otherAddress.title=Altro destinatario
-dod_dod5015.property.dod_otherAddress.decription=Altro destinatario
-
-dod_dod5015.aspect.dod_scannedRecord.title=Record scansionato
-dod_dod5015.aspect.dod_scannedRecord.description=Record scansionato
-dod_dod5015.property.dod_scannedFormat.title=Formato immagine
-dod_dod5015.property.dod_scannedFormat.description=Formato immagine
-dod_dod5015.property.dod_scannedFormatVersion.title=Formato immagine e versione
-dod_dod5015.property.dod_scannedFormatVersion.description=Formato immagine e versione
-dod_dod5015.property.dod_resolutionX.title=Risoluzione immagine X
-dod_dod5015.property.dod_resolutionX.description=Risoluzione immagine X
-dod_dod5015.property.dod_resolutionY.title=Risoluzione immagine Y
-dod_dod5015.property.dod_resolutionY.description=Risoluzione immagine Y
-dod_dod5015.property.dod_scannedBitDepth.title=Profondit\u00e0 in bit scansionata
-dod_dod5015.property.dod_scannedBitDepth.description=Profondit\u00e0 in bit scansionata
-
-dod_dod5015.aspect.dod_pdfRecord.title=Record PDF
-dod_dod5015.aspect.dod_pdfRecord.description=Record PDF
-dod_dod5015.property.dod_producingApplication.title=Generazione applicazione
-dod_dod5015.property.dod_producingApplication.description=Generazione applicazione
-dod_dod5015.property.dod_producingApplicationVersion.title=Generazione versione applicazione
-dod_dod5015.property.dod_producingApplicationVersion.description=Generazione versione applicazione
-dod_dod5015.property.dod_pdfVersion.title=Versione PDF
-dod_dod5015.property.dod_pdfVersion.description=Versione PDF
-dod_dod5015.property.dod_creatingApplication.title=Creazione applicazione
-dod_dod5015.property.dod_creatingApplication.description=Creazione applicazione
-dod_dod5015.property.dod_documentSecuritySettings.title=Impostazioni di protezione documento
-dod_dod5015.property.dod_documentSecuritySettings.description=Impostazioni di protezione documento
-
-dod_dod5015.aspect.dod_digitalPhotographRecord.title=Record fotografia digitale
-dod_dod5015.aspect.dod_digitalPhotographRecord.description=Record fotografia digitale
-dod_dod5015.property.dod_caption.title=Didascalia
-dod_dod5015.property.dod_caption.description=Didascalia
-dod_dod5015.property.dod_photographer.title=Fotografo
-dod_dod5015.property.dod_photographer.description=Fotografo
-dod_dod5015.property.dod_copyright.title=Copyright
-dod_dod5015.property.dod_copyright.description=Copyright
-dod_dod5015.property.dod_bitDepth.title=Profondit\u00e0 in bit
-dod_dod5015.property.dod_bitDepth.description=Profondit\u00e0 in bit
-dod_dod5015.property.dod_imageSizeX.title=Dimensioni immagine X
-dod_dod5015.property.dod_imageSizeX.description=Dimensioni immagine X
-dod_dod5015.property.dod_imageSizeY.title=Dimensioni immagine Y
-dod_dod5015.property.dod_imageSizeY.description=Dimensioni immagine Y
-dod_dod5015.property.dod_imageSource.title=Origine immagine
-dod_dod5015.property.dod_imageSource.description=Origine immagine
-dod_dod5015.property.dod_compression.title=Compressione
-dod_dod5015.property.dod_compression.description=Compressione
-dod_dod5015.property.dod_iccIcmProfile.title=Profilo ICC/ICM
-dod_dod5015.property.dod_iccIcmProfile.description=Profilo ICC/ICM
-dod_dod5015.property.dod_exifInformation.title=Informazioni EXIF
-dod_dod5015.property.dod_exifInformation.description=Informazioni EXIF
-
-dod_dod5015.aspect.dod_webRecord.title=Record Web
-dod_dod5015.aspect.dod_webRecord.description=Record Web
-dod_dod5015.property.dod_webFileName.title=Nome file Web
-dod_dod5015.property.dod_webFileName.description=Nome file Web
-dod_dod5015.property.dod_webPlatform.title=Piattaforma Web
-dod_dod5015.property.dod_webPlatform.description=Piattaforma Web
-dod_dod5015.property.dod_webSiteName.title=Nome sito Web
-dod_dod5015.property.dod_webSiteName.description=Nome sito Web
-dod_dod5015.property.dod_webSiteURL.title=URL sito Web
-dod_dod5015.property.dod_webSiteURL.description=URL sito Web
-dod_dod5015.property.dod_captureMethod.title=Metodo di acquisizione
-dod_dod5015.property.dod_captureMethod.description=Metodo di acquisizione
-dod_dod5015.property.dod_captureDate.title=Data di acquisizione
-dod_dod5015.property.dod_captureDate.description=Data di acquisizione
-dod_dod5015.property.dod_contact.title=Contatto
-dod_dod5015.property.dod_contact.description=Contatto
-dod_dod5015.property.dod_contentManagementSystem.title=Sistema di gestione dei contenuti
-dod_dod5015.property.dod_contentManagementSystem.description=Sistema di gestione dei contenuti
-
+dod_dod5015.description=Modello di contenuto DOD5015
+
+dod_dod5015.type.dod_site.title=Sito DOD5015
+dod_dod5015.type.dod_site.description=Sito DOD5015
+
+dod_dod5015.type.dod_filePlan.title=Piano file DOD5015
+dod_dod5015.type.dod_filePlan.description=Piano file DOD5015
+
+dod_dod5015.type.dod_recordSeries.title=Serie record (obsoleta)
+dod_dod5015.type.dod_recordSeries.description=Serie record (obsoleta)
+
+dod_dod5015.aspect.dod_dod5015record.title=Record DOD5015
+dod_dod5015.aspect.dod_dod5015record.description=Record DOD5015
+dod_dod5015.property.dod_publicationDate.title=Data di pubblicazione
+dod_dod5015.property.dod_publicationDate.decription=Data di pubblicazione
+dod_dod5015.property.dod_originator.title=Iniziatore
+dod_dod5015.property.dod_originator.decription=Iniziatore
+dod_dod5015.property.dod_originatingOrganization.title=Organizzazione di origine
+dod_dod5015.property.dod_originatingOrganization.decription=Organizzazione di origine
+dod_dod5015.property.dod_mediaType.title=Tipo di supporto
+dod_dod5015.property.dod_mediaType.decription=Tipo di supporto
+dod_dod5015.property.dod_format.title=Formato
+dod_dod5015.property.dod_format.decription=Formato
+dod_dod5015.property.dod_dateReceived.title=Data di ricezione
+dod_dod5015.property.dod_dateReceived.decription=Data di ricezione
+dod_dod5015.property.dod_address.title=Destinatario
+dod_dod5015.property.dod_address.decription=Destinatario
+dod_dod5015.property.dod_otherAddress.title=Altro destinatario
+dod_dod5015.property.dod_otherAddress.decription=Altro destinatario
+
+dod_dod5015.aspect.dod_scannedRecord.title=Record scansionato
+dod_dod5015.aspect.dod_scannedRecord.description=Record scansionato
+dod_dod5015.property.dod_scannedFormat.title=Formato immagine
+dod_dod5015.property.dod_scannedFormat.description=Formato immagine
+dod_dod5015.property.dod_scannedFormatVersion.title=Formato immagine e versione
+dod_dod5015.property.dod_scannedFormatVersion.description=Formato immagine e versione
+dod_dod5015.property.dod_resolutionX.title=Risoluzione immagine X
+dod_dod5015.property.dod_resolutionX.description=Risoluzione immagine X
+dod_dod5015.property.dod_resolutionY.title=Risoluzione immagine Y
+dod_dod5015.property.dod_resolutionY.description=Risoluzione immagine Y
+dod_dod5015.property.dod_scannedBitDepth.title=Profondit\u00e0 in bit scansionata
+dod_dod5015.property.dod_scannedBitDepth.description=Profondit\u00e0 in bit scansionata
+
+dod_dod5015.aspect.dod_pdfRecord.title=Record PDF
+dod_dod5015.aspect.dod_pdfRecord.description=Record PDF
+dod_dod5015.property.dod_producingApplication.title=Generazione applicazione
+dod_dod5015.property.dod_producingApplication.description=Generazione applicazione
+dod_dod5015.property.dod_producingApplicationVersion.title=Generazione versione applicazione
+dod_dod5015.property.dod_producingApplicationVersion.description=Generazione versione applicazione
+dod_dod5015.property.dod_pdfVersion.title=Versione PDF
+dod_dod5015.property.dod_pdfVersion.description=Versione PDF
+dod_dod5015.property.dod_creatingApplication.title=Creazione applicazione
+dod_dod5015.property.dod_creatingApplication.description=Creazione applicazione
+dod_dod5015.property.dod_documentSecuritySettings.title=Impostazioni di protezione documento
+dod_dod5015.property.dod_documentSecuritySettings.description=Impostazioni di protezione documento
+
+dod_dod5015.aspect.dod_digitalPhotographRecord.title=Record fotografia digitale
+dod_dod5015.aspect.dod_digitalPhotographRecord.description=Record fotografia digitale
+dod_dod5015.property.dod_caption.title=Didascalia
+dod_dod5015.property.dod_caption.description=Didascalia
+dod_dod5015.property.dod_photographer.title=Fotografo
+dod_dod5015.property.dod_photographer.description=Fotografo
+dod_dod5015.property.dod_copyright.title=Copyright
+dod_dod5015.property.dod_copyright.description=Copyright
+dod_dod5015.property.dod_bitDepth.title=Profondit\u00e0 in bit
+dod_dod5015.property.dod_bitDepth.description=Profondit\u00e0 in bit
+dod_dod5015.property.dod_imageSizeX.title=Dimensioni immagine X
+dod_dod5015.property.dod_imageSizeX.description=Dimensioni immagine X
+dod_dod5015.property.dod_imageSizeY.title=Dimensioni immagine Y
+dod_dod5015.property.dod_imageSizeY.description=Dimensioni immagine Y
+dod_dod5015.property.dod_imageSource.title=Origine immagine
+dod_dod5015.property.dod_imageSource.description=Origine immagine
+dod_dod5015.property.dod_compression.title=Compressione
+dod_dod5015.property.dod_compression.description=Compressione
+dod_dod5015.property.dod_iccIcmProfile.title=Profilo ICC/ICM
+dod_dod5015.property.dod_iccIcmProfile.description=Profilo ICC/ICM
+dod_dod5015.property.dod_exifInformation.title=Informazioni EXIF
+dod_dod5015.property.dod_exifInformation.description=Informazioni EXIF
+
+dod_dod5015.aspect.dod_webRecord.title=Record Web
+dod_dod5015.aspect.dod_webRecord.description=Record Web
+dod_dod5015.property.dod_webFileName.title=Nome file Web
+dod_dod5015.property.dod_webFileName.description=Nome file Web
+dod_dod5015.property.dod_webPlatform.title=Piattaforma Web
+dod_dod5015.property.dod_webPlatform.description=Piattaforma Web
+dod_dod5015.property.dod_webSiteName.title=Nome sito Web
+dod_dod5015.property.dod_webSiteName.description=Nome sito Web
+dod_dod5015.property.dod_webSiteURL.title=URL sito Web
+dod_dod5015.property.dod_webSiteURL.description=URL sito Web
+dod_dod5015.property.dod_captureMethod.title=Metodo di acquisizione
+dod_dod5015.property.dod_captureMethod.description=Metodo di acquisizione
+dod_dod5015.property.dod_captureDate.title=Data di acquisizione
+dod_dod5015.property.dod_captureDate.description=Data di acquisizione
+dod_dod5015.property.dod_contact.title=Contatto
+dod_dod5015.property.dod_contact.description=Contatto
+dod_dod5015.property.dod_contentManagementSystem.title=Sistema di gestione dei contenuti
+dod_dod5015.property.dod_contentManagementSystem.description=Sistema di gestione dei contenuti
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_ja.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_ja.properties
index 9878f560cc..b3e892dda5 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_ja.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_ja.properties
@@ -1,98 +1,98 @@
-dod_dod5015.description=DOD5015\u30b3\u30f3\u30c6\u30f3\u30c4\u30e2\u30c7\u30eb
-
-dod_dod5015.type.dod_site.title=DOD5015\u30b5\u30a4\u30c8
-dod_dod5015.type.dod_site.description=DOD5015\u30b5\u30a4\u30c8
-
-dod_dod5015.type.dod_filePlan.title=DOD5015\u30d5\u30a1\u30a4\u30eb\u30d7\u30e9\u30f3
-dod_dod5015.type.dod_filePlan.description=DOD5015\u30d5\u30a1\u30a4\u30eb\u30d7\u30e9\u30f3
-
-dod_dod5015.type.dod_recordSeries.title=\u30ec\u30b3\u30fc\u30c9\u30b7\u30ea\u30fc\u30ba\uff08\u975e\u63a8\u5968\uff09
-dod_dod5015.type.dod_recordSeries.description=\u30ec\u30b3\u30fc\u30c9\u30b7\u30ea\u30fc\u30ba\uff08\u975e\u63a8\u5968\uff09
-
-dod_dod5015.aspect.dod_dod5015record.title=DOD5015\u30ec\u30b3\u30fc\u30c9
-dod_dod5015.aspect.dod_dod5015record.description=DOD5015\u30ec\u30b3\u30fc\u30c9
-dod_dod5015.property.dod_publicationDate.title=\u767a\u884c\u65e5
-dod_dod5015.property.dod_publicationDate.decription=\u767a\u884c\u65e5
-dod_dod5015.property.dod_originator.title=\u767a\u4fe1\u5143
-dod_dod5015.property.dod_originator.decription=\u767a\u4fe1\u5143
-dod_dod5015.property.dod_originatingOrganization.title=\u767a\u4fe1\u5143\u7d44\u7e54
-dod_dod5015.property.dod_originatingOrganization.decription=\u767a\u4fe1\u5143\u7d44\u7e54
-dod_dod5015.property.dod_mediaType.title=\u30e1\u30c7\u30a3\u30a2\u30bf\u30a4\u30d7
-dod_dod5015.property.dod_mediaType.decription=\u30e1\u30c7\u30a3\u30a2\u30bf\u30a4\u30d7
-dod_dod5015.property.dod_format.title=\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
-dod_dod5015.property.dod_format.decription=\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
-dod_dod5015.property.dod_dateReceived.title=\u53d7\u4fe1\u65e5
-dod_dod5015.property.dod_dateReceived.decription=\u53d7\u4fe1\u65e5
-dod_dod5015.property.dod_address.title=\u53d7\u4fe1\u8005
-dod_dod5015.property.dod_address.decription=\u53d7\u4fe1\u8005
-dod_dod5015.property.dod_otherAddress.title=\u305d\u306e\u4ed6\u306e\u53d7\u4fe1\u8005
-dod_dod5015.property.dod_otherAddress.decription=\u305d\u306e\u4ed6\u306e\u53d7\u4fe1\u8005
-
-dod_dod5015.aspect.dod_scannedRecord.title=\u30b9\u30ad\u30e3\u30f3\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
-dod_dod5015.aspect.dod_scannedRecord.description=\u30b9\u30ad\u30e3\u30f3\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
-dod_dod5015.property.dod_scannedFormat.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
-dod_dod5015.property.dod_scannedFormat.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
-dod_dod5015.property.dod_scannedFormatVersion.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3068\u30d0\u30fc\u30b8\u30e7\u30f3
-dod_dod5015.property.dod_scannedFormatVersion.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3068\u30d0\u30fc\u30b8\u30e7\u30f3
-dod_dod5015.property.dod_resolutionX.title=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6X
-dod_dod5015.property.dod_resolutionX.description=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6X
-dod_dod5015.property.dod_resolutionY.title=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6Y
-dod_dod5015.property.dod_resolutionY.description=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6Y
-dod_dod5015.property.dod_scannedBitDepth.title=\u30b9\u30ad\u30e3\u30f3\u3057\u305f\u30d3\u30c3\u30c8\u6df1\u5ea6
-dod_dod5015.property.dod_scannedBitDepth.description=\u30b9\u30ad\u30e3\u30f3\u3057\u305f\u30d3\u30c3\u30c8\u6df1\u5ea6
-
-dod_dod5015.aspect.dod_pdfRecord.title=PDF\u30ec\u30b3\u30fc\u30c9
-dod_dod5015.aspect.dod_pdfRecord.description=PDF\u30ec\u30b3\u30fc\u30c9
-dod_dod5015.property.dod_producingApplication.title=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
-dod_dod5015.property.dod_producingApplication.description=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
-dod_dod5015.property.dod_producingApplicationVersion.title=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d0\u30fc\u30b8\u30e7\u30f3
-dod_dod5015.property.dod_producingApplicationVersion.description=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d0\u30fc\u30b8\u30e7\u30f3
-dod_dod5015.property.dod_pdfVersion.title=PDF\u30d0\u30fc\u30b8\u30e7\u30f3
-dod_dod5015.property.dod_pdfVersion.description=PDF\u30d0\u30fc\u30b8\u30e7\u30f3
-dod_dod5015.property.dod_creatingApplication.title=\u4f5c\u6210\u5143\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
-dod_dod5015.property.dod_creatingApplication.description=\u4f5c\u6210\u5143\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
-dod_dod5015.property.dod_documentSecuritySettings.title=\u6587\u66f8\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u8a2d\u5b9a
-dod_dod5015.property.dod_documentSecuritySettings.description=\u6587\u66f8\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u8a2d\u5b9a
-
-dod_dod5015.aspect.dod_digitalPhotographRecord.title=\u30c7\u30b8\u30bf\u30eb\u5199\u771f\u30ec\u30b3\u30fc\u30c9
-dod_dod5015.aspect.dod_digitalPhotographRecord.description=\u30c7\u30b8\u30bf\u30eb\u5199\u771f\u30ec\u30b3\u30fc\u30c9
-dod_dod5015.property.dod_caption.title=\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3
-dod_dod5015.property.dod_caption.description=\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3
-dod_dod5015.property.dod_photographer.title=\u5199\u771f\u5bb6
-dod_dod5015.property.dod_photographer.description=\u5199\u771f\u5bb6
-dod_dod5015.property.dod_copyright.title=\u8457\u4f5c\u6a29
-dod_dod5015.property.dod_copyright.description=\u8457\u4f5c\u6a29
-dod_dod5015.property.dod_bitDepth.title=\u30d3\u30c3\u30c8\u6df1\u5ea6
-dod_dod5015.property.dod_bitDepth.description=\u30d3\u30c3\u30c8\u6df1\u5ea6
-dod_dod5015.property.dod_imageSizeX.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baX
-dod_dod5015.property.dod_imageSizeX.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baX
-dod_dod5015.property.dod_imageSizeY.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baY
-dod_dod5015.property.dod_imageSizeY.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baY
-dod_dod5015.property.dod_imageSource.title=\u30a4\u30e1\u30fc\u30b8\u30bd\u30fc\u30b9
-dod_dod5015.property.dod_imageSource.description=\u30a4\u30e1\u30fc\u30b8\u30bd\u30fc\u30b9
-dod_dod5015.property.dod_compression.title=\u5727\u7e2e
-dod_dod5015.property.dod_compression.description=\u5727\u7e2e
-dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb
-dod_dod5015.property.dod_iccIcmProfile.description=ICC/ICM\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb
-dod_dod5015.property.dod_exifInformation.title=EXIF\u60c5\u5831
-dod_dod5015.property.dod_exifInformation.description=EXIF\u60c5\u5831
-
-dod_dod5015.aspect.dod_webRecord.title=Web\u30ec\u30b3\u30fc\u30c9
-dod_dod5015.aspect.dod_webRecord.description=Web\u30ec\u30b3\u30fc\u30c9
-dod_dod5015.property.dod_webFileName.title=Web\u30d5\u30a1\u30a4\u30eb\u540d
-dod_dod5015.property.dod_webFileName.description=Web\u30d5\u30a1\u30a4\u30eb\u540d
-dod_dod5015.property.dod_webPlatform.title=Web\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0
-dod_dod5015.property.dod_webPlatform.description=Web\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0
-dod_dod5015.property.dod_webSiteName.title=Web\u30b5\u30a4\u30c8\u540d
-dod_dod5015.property.dod_webSiteName.description=Web\u30b5\u30a4\u30c8\u540d
-dod_dod5015.property.dod_webSiteURL.title=Web\u30b5\u30a4\u30c8URL
-dod_dod5015.property.dod_webSiteURL.description=Web\u30b5\u30a4\u30c8URL
-dod_dod5015.property.dod_captureMethod.title=\u30ad\u30e3\u30d7\u30c1\u30e3\u624b\u6cd5
-dod_dod5015.property.dod_captureMethod.description=\u30ad\u30e3\u30d7\u30c1\u30e3\u624b\u6cd5
-dod_dod5015.property.dod_captureDate.title=\u30ad\u30e3\u30d7\u30c1\u30e3\u65e5
-dod_dod5015.property.dod_captureDate.description=\u30ad\u30e3\u30d7\u30c1\u30e3\u65e5
-dod_dod5015.property.dod_contact.title=\u9023\u7d61\u5148
-dod_dod5015.property.dod_contact.description=\u9023\u7d61\u5148
-dod_dod5015.property.dod_contentManagementSystem.title=\u30b3\u30f3\u30c6\u30f3\u30c4\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0
-dod_dod5015.property.dod_contentManagementSystem.description=\u30b3\u30f3\u30c6\u30f3\u30c4\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0
-
+dod_dod5015.description=DOD5015\u30b3\u30f3\u30c6\u30f3\u30c4\u30e2\u30c7\u30eb
+
+dod_dod5015.type.dod_site.title=DOD5015\u30b5\u30a4\u30c8
+dod_dod5015.type.dod_site.description=DOD5015\u30b5\u30a4\u30c8
+
+dod_dod5015.type.dod_filePlan.title=DOD5015\u30d5\u30a1\u30a4\u30eb\u30d7\u30e9\u30f3
+dod_dod5015.type.dod_filePlan.description=DOD5015\u30d5\u30a1\u30a4\u30eb\u30d7\u30e9\u30f3
+
+dod_dod5015.type.dod_recordSeries.title=\u30ec\u30b3\u30fc\u30c9\u30b7\u30ea\u30fc\u30ba\uff08\u975e\u63a8\u5968\uff09
+dod_dod5015.type.dod_recordSeries.description=\u30ec\u30b3\u30fc\u30c9\u30b7\u30ea\u30fc\u30ba\uff08\u975e\u63a8\u5968\uff09
+
+dod_dod5015.aspect.dod_dod5015record.title=DOD5015\u30ec\u30b3\u30fc\u30c9
+dod_dod5015.aspect.dod_dod5015record.description=DOD5015\u30ec\u30b3\u30fc\u30c9
+dod_dod5015.property.dod_publicationDate.title=\u767a\u884c\u65e5
+dod_dod5015.property.dod_publicationDate.decription=\u767a\u884c\u65e5
+dod_dod5015.property.dod_originator.title=\u767a\u4fe1\u5143
+dod_dod5015.property.dod_originator.decription=\u767a\u4fe1\u5143
+dod_dod5015.property.dod_originatingOrganization.title=\u767a\u4fe1\u5143\u7d44\u7e54
+dod_dod5015.property.dod_originatingOrganization.decription=\u767a\u4fe1\u5143\u7d44\u7e54
+dod_dod5015.property.dod_mediaType.title=\u30e1\u30c7\u30a3\u30a2\u30bf\u30a4\u30d7
+dod_dod5015.property.dod_mediaType.decription=\u30e1\u30c7\u30a3\u30a2\u30bf\u30a4\u30d7
+dod_dod5015.property.dod_format.title=\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
+dod_dod5015.property.dod_format.decription=\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
+dod_dod5015.property.dod_dateReceived.title=\u53d7\u4fe1\u65e5
+dod_dod5015.property.dod_dateReceived.decription=\u53d7\u4fe1\u65e5
+dod_dod5015.property.dod_address.title=\u53d7\u4fe1\u8005
+dod_dod5015.property.dod_address.decription=\u53d7\u4fe1\u8005
+dod_dod5015.property.dod_otherAddress.title=\u305d\u306e\u4ed6\u306e\u53d7\u4fe1\u8005
+dod_dod5015.property.dod_otherAddress.decription=\u305d\u306e\u4ed6\u306e\u53d7\u4fe1\u8005
+
+dod_dod5015.aspect.dod_scannedRecord.title=\u30b9\u30ad\u30e3\u30f3\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
+dod_dod5015.aspect.dod_scannedRecord.description=\u30b9\u30ad\u30e3\u30f3\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
+dod_dod5015.property.dod_scannedFormat.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
+dod_dod5015.property.dod_scannedFormat.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
+dod_dod5015.property.dod_scannedFormatVersion.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3068\u30d0\u30fc\u30b8\u30e7\u30f3
+dod_dod5015.property.dod_scannedFormatVersion.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3068\u30d0\u30fc\u30b8\u30e7\u30f3
+dod_dod5015.property.dod_resolutionX.title=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6X
+dod_dod5015.property.dod_resolutionX.description=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6X
+dod_dod5015.property.dod_resolutionY.title=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6Y
+dod_dod5015.property.dod_resolutionY.description=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6Y
+dod_dod5015.property.dod_scannedBitDepth.title=\u30b9\u30ad\u30e3\u30f3\u3057\u305f\u30d3\u30c3\u30c8\u6df1\u5ea6
+dod_dod5015.property.dod_scannedBitDepth.description=\u30b9\u30ad\u30e3\u30f3\u3057\u305f\u30d3\u30c3\u30c8\u6df1\u5ea6
+
+dod_dod5015.aspect.dod_pdfRecord.title=PDF\u30ec\u30b3\u30fc\u30c9
+dod_dod5015.aspect.dod_pdfRecord.description=PDF\u30ec\u30b3\u30fc\u30c9
+dod_dod5015.property.dod_producingApplication.title=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
+dod_dod5015.property.dod_producingApplication.description=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
+dod_dod5015.property.dod_producingApplicationVersion.title=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d0\u30fc\u30b8\u30e7\u30f3
+dod_dod5015.property.dod_producingApplicationVersion.description=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d0\u30fc\u30b8\u30e7\u30f3
+dod_dod5015.property.dod_pdfVersion.title=PDF\u30d0\u30fc\u30b8\u30e7\u30f3
+dod_dod5015.property.dod_pdfVersion.description=PDF\u30d0\u30fc\u30b8\u30e7\u30f3
+dod_dod5015.property.dod_creatingApplication.title=\u4f5c\u6210\u5143\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
+dod_dod5015.property.dod_creatingApplication.description=\u4f5c\u6210\u5143\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
+dod_dod5015.property.dod_documentSecuritySettings.title=\u6587\u66f8\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u8a2d\u5b9a
+dod_dod5015.property.dod_documentSecuritySettings.description=\u6587\u66f8\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u8a2d\u5b9a
+
+dod_dod5015.aspect.dod_digitalPhotographRecord.title=\u30c7\u30b8\u30bf\u30eb\u5199\u771f\u30ec\u30b3\u30fc\u30c9
+dod_dod5015.aspect.dod_digitalPhotographRecord.description=\u30c7\u30b8\u30bf\u30eb\u5199\u771f\u30ec\u30b3\u30fc\u30c9
+dod_dod5015.property.dod_caption.title=\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3
+dod_dod5015.property.dod_caption.description=\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3
+dod_dod5015.property.dod_photographer.title=\u5199\u771f\u5bb6
+dod_dod5015.property.dod_photographer.description=\u5199\u771f\u5bb6
+dod_dod5015.property.dod_copyright.title=\u8457\u4f5c\u6a29
+dod_dod5015.property.dod_copyright.description=\u8457\u4f5c\u6a29
+dod_dod5015.property.dod_bitDepth.title=\u30d3\u30c3\u30c8\u6df1\u5ea6
+dod_dod5015.property.dod_bitDepth.description=\u30d3\u30c3\u30c8\u6df1\u5ea6
+dod_dod5015.property.dod_imageSizeX.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baX
+dod_dod5015.property.dod_imageSizeX.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baX
+dod_dod5015.property.dod_imageSizeY.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baY
+dod_dod5015.property.dod_imageSizeY.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baY
+dod_dod5015.property.dod_imageSource.title=\u30a4\u30e1\u30fc\u30b8\u30bd\u30fc\u30b9
+dod_dod5015.property.dod_imageSource.description=\u30a4\u30e1\u30fc\u30b8\u30bd\u30fc\u30b9
+dod_dod5015.property.dod_compression.title=\u5727\u7e2e
+dod_dod5015.property.dod_compression.description=\u5727\u7e2e
+dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb
+dod_dod5015.property.dod_iccIcmProfile.description=ICC/ICM\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb
+dod_dod5015.property.dod_exifInformation.title=EXIF\u60c5\u5831
+dod_dod5015.property.dod_exifInformation.description=EXIF\u60c5\u5831
+
+dod_dod5015.aspect.dod_webRecord.title=Web\u30ec\u30b3\u30fc\u30c9
+dod_dod5015.aspect.dod_webRecord.description=Web\u30ec\u30b3\u30fc\u30c9
+dod_dod5015.property.dod_webFileName.title=Web\u30d5\u30a1\u30a4\u30eb\u540d
+dod_dod5015.property.dod_webFileName.description=Web\u30d5\u30a1\u30a4\u30eb\u540d
+dod_dod5015.property.dod_webPlatform.title=Web\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0
+dod_dod5015.property.dod_webPlatform.description=Web\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0
+dod_dod5015.property.dod_webSiteName.title=Web\u30b5\u30a4\u30c8\u540d
+dod_dod5015.property.dod_webSiteName.description=Web\u30b5\u30a4\u30c8\u540d
+dod_dod5015.property.dod_webSiteURL.title=Web\u30b5\u30a4\u30c8URL
+dod_dod5015.property.dod_webSiteURL.description=Web\u30b5\u30a4\u30c8URL
+dod_dod5015.property.dod_captureMethod.title=\u30ad\u30e3\u30d7\u30c1\u30e3\u624b\u6cd5
+dod_dod5015.property.dod_captureMethod.description=\u30ad\u30e3\u30d7\u30c1\u30e3\u624b\u6cd5
+dod_dod5015.property.dod_captureDate.title=\u30ad\u30e3\u30d7\u30c1\u30e3\u65e5
+dod_dod5015.property.dod_captureDate.description=\u30ad\u30e3\u30d7\u30c1\u30e3\u65e5
+dod_dod5015.property.dod_contact.title=\u9023\u7d61\u5148
+dod_dod5015.property.dod_contact.description=\u9023\u7d61\u5148
+dod_dod5015.property.dod_contentManagementSystem.title=\u30b3\u30f3\u30c6\u30f3\u30c4\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0
+dod_dod5015.property.dod_contentManagementSystem.description=\u30b3\u30f3\u30c6\u30f3\u30c4\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_nb.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_nb.properties
index 97b4cf3c1a..94eb04cae4 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_nb.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_nb.properties
@@ -1,98 +1,98 @@
-dod_dod5015.description=DOD5015-innholdsmodell
-
-dod_dod5015.type.dod_site.title=DOD5015-omr\u00e5de
-dod_dod5015.type.dod_site.description=DOD5015-omr\u00e5de
-
-dod_dod5015.type.dod_filePlan.title=DOD5015-filplan
-dod_dod5015.type.dod_filePlan.description=DOD5015-filplan
-
-dod_dod5015.type.dod_recordSeries.title=Oppf\u00f8ringsserie (avskrevet)
-dod_dod5015.type.dod_recordSeries.description=Oppf\u00f8ringsserie (avskrevet)
-
-dod_dod5015.aspect.dod_dod5015record.title=DOD5015-oppf\u00f8ring
-dod_dod5015.aspect.dod_dod5015record.description=DOD5015-oppf\u00f8ring
-dod_dod5015.property.dod_publicationDate.title=Publikasjonsdato
-dod_dod5015.property.dod_publicationDate.decription=Publikasjonsdato
-dod_dod5015.property.dod_originator.title=Avsender
-dod_dod5015.property.dod_originator.decription=Avsender
-dod_dod5015.property.dod_originatingOrganization.title=Utgangsorganisasjon
-dod_dod5015.property.dod_originatingOrganization.decription=Utgangsorganisasjon
-dod_dod5015.property.dod_mediaType.title=Medietype
-dod_dod5015.property.dod_mediaType.decription=Medietype
-dod_dod5015.property.dod_format.title=Format
-dod_dod5015.property.dod_format.decription=Format
-dod_dod5015.property.dod_dateReceived.title=Dato mottatt
-dod_dod5015.property.dod_dateReceived.decription=Dato mottatt
-dod_dod5015.property.dod_address.title=Mottaker
-dod_dod5015.property.dod_address.decription=Mottaker
-dod_dod5015.property.dod_otherAddress.title=Andre mottakere
-dod_dod5015.property.dod_otherAddress.decription=Andre mottakere
-
-dod_dod5015.aspect.dod_scannedRecord.title=Skannet oppf\u00f8ring
-dod_dod5015.aspect.dod_scannedRecord.description=Skannet oppf\u00f8ring
-dod_dod5015.property.dod_scannedFormat.title=Bildeformat
-dod_dod5015.property.dod_scannedFormat.description=Bildeformat
-dod_dod5015.property.dod_scannedFormatVersion.title=Bildeformat og -versjon
-dod_dod5015.property.dod_scannedFormatVersion.description=Bildeformat og -versjon
-dod_dod5015.property.dod_resolutionX.title=Bildeoppl\u00f8sning X
-dod_dod5015.property.dod_resolutionX.description=Bildeoppl\u00f8sning X
-dod_dod5015.property.dod_resolutionY.title=Bildeoppl\u00f8sning Y
-dod_dod5015.property.dod_resolutionY.description=Bildeoppl\u00f8sning Y
-dod_dod5015.property.dod_scannedBitDepth.title=Skannet bitdybde
-dod_dod5015.property.dod_scannedBitDepth.description=Skannet bitdybde
-
-dod_dod5015.aspect.dod_pdfRecord.title=PDF-oppf\u00f8ring
-dod_dod5015.aspect.dod_pdfRecord.description=PDF-oppf\u00f8ring
-dod_dod5015.property.dod_producingApplication.title=Produserende program
-dod_dod5015.property.dod_producingApplication.description=Produserende program
-dod_dod5015.property.dod_producingApplicationVersion.title=Produserende programversjon
-dod_dod5015.property.dod_producingApplicationVersion.description=Produserende programversjon
-dod_dod5015.property.dod_pdfVersion.title=PDF-versjon
-dod_dod5015.property.dod_pdfVersion.description=PDF-versjon
-dod_dod5015.property.dod_creatingApplication.title=Opprette program
-dod_dod5015.property.dod_creatingApplication.description=Opprette program
-dod_dod5015.property.dod_documentSecuritySettings.title=Innstillinger ved dokumentsikkerhet
-dod_dod5015.property.dod_documentSecuritySettings.description=Innstillinger ved dokumentsikkerhet
-
-dod_dod5015.aspect.dod_digitalPhotographRecord.title=Digital bildeoppf\u00f8ring
-dod_dod5015.aspect.dod_digitalPhotographRecord.description=Digital bildeoppf\u00f8ring
-dod_dod5015.property.dod_caption.title=Tittel
-dod_dod5015.property.dod_caption.description=Tittel
-dod_dod5015.property.dod_photographer.title=Fotograf
-dod_dod5015.property.dod_photographer.description=Fotograf
-dod_dod5015.property.dod_copyright.title=Copyright
-dod_dod5015.property.dod_copyright.description=Copyright
-dod_dod5015.property.dod_bitDepth.title=Bitdybde
-dod_dod5015.property.dod_bitDepth.description=Bitdybde
-dod_dod5015.property.dod_imageSizeX.title=Bildest\u00f8rrelse X
-dod_dod5015.property.dod_imageSizeX.description=Bildest\u00f8rrelse X
-dod_dod5015.property.dod_imageSizeY.title=Bildest\u00f8rrelse Y
-dod_dod5015.property.dod_imageSizeY.description=Bildest\u00f8rrelse Y
-dod_dod5015.property.dod_imageSource.title=Bildekilde
-dod_dod5015.property.dod_imageSource.description=Bildekilde
-dod_dod5015.property.dod_compression.title=Komprimering
-dod_dod5015.property.dod_compression.description=Komprimering
-dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM-profil
-dod_dod5015.property.dod_iccIcmProfile.description=ICC/ICM-profil
-dod_dod5015.property.dod_exifInformation.title=EXIF-informasjon
-dod_dod5015.property.dod_exifInformation.description=EXIF-informasjon
-
-dod_dod5015.aspect.dod_webRecord.title=Nettoppf\u00f8ring
-dod_dod5015.aspect.dod_webRecord.description=Nettoppf\u00f8ring
-dod_dod5015.property.dod_webFileName.title=Nettfilnavn
-dod_dod5015.property.dod_webFileName.description=Nettfilnavn
-dod_dod5015.property.dod_webPlatform.title=Nettplattform
-dod_dod5015.property.dod_webPlatform.description=Nettplattform
-dod_dod5015.property.dod_webSiteName.title=Nettstedsnavn
-dod_dod5015.property.dod_webSiteName.description=Nettstedsnavn
-dod_dod5015.property.dod_webSiteURL.title=Nettstedsadresse
-dod_dod5015.property.dod_webSiteURL.description=Nettstedsadresse
-dod_dod5015.property.dod_captureMethod.title=Opptaksmetode
-dod_dod5015.property.dod_captureMethod.description=Opptaksmetode
-dod_dod5015.property.dod_captureDate.title=Opptaksdato
-dod_dod5015.property.dod_captureDate.description=Opptaksdato
-dod_dod5015.property.dod_contact.title=Kontakt
-dod_dod5015.property.dod_contact.description=Kontakt
-dod_dod5015.property.dod_contentManagementSystem.title=Innholdsforvaltningssystem
-dod_dod5015.property.dod_contentManagementSystem.description= Innholdsforvaltningssystem
-
+dod_dod5015.description=DOD5015-innholdsmodell
+
+dod_dod5015.type.dod_site.title=DOD5015-omr\u00e5de
+dod_dod5015.type.dod_site.description=DOD5015-omr\u00e5de
+
+dod_dod5015.type.dod_filePlan.title=DOD5015-filplan
+dod_dod5015.type.dod_filePlan.description=DOD5015-filplan
+
+dod_dod5015.type.dod_recordSeries.title=Oppf\u00f8ringsserie (avskrevet)
+dod_dod5015.type.dod_recordSeries.description=Oppf\u00f8ringsserie (avskrevet)
+
+dod_dod5015.aspect.dod_dod5015record.title=DOD5015-oppf\u00f8ring
+dod_dod5015.aspect.dod_dod5015record.description=DOD5015-oppf\u00f8ring
+dod_dod5015.property.dod_publicationDate.title=Publikasjonsdato
+dod_dod5015.property.dod_publicationDate.decription=Publikasjonsdato
+dod_dod5015.property.dod_originator.title=Avsender
+dod_dod5015.property.dod_originator.decription=Avsender
+dod_dod5015.property.dod_originatingOrganization.title=Utgangsorganisasjon
+dod_dod5015.property.dod_originatingOrganization.decription=Utgangsorganisasjon
+dod_dod5015.property.dod_mediaType.title=Medietype
+dod_dod5015.property.dod_mediaType.decription=Medietype
+dod_dod5015.property.dod_format.title=Format
+dod_dod5015.property.dod_format.decription=Format
+dod_dod5015.property.dod_dateReceived.title=Dato mottatt
+dod_dod5015.property.dod_dateReceived.decription=Dato mottatt
+dod_dod5015.property.dod_address.title=Mottaker
+dod_dod5015.property.dod_address.decription=Mottaker
+dod_dod5015.property.dod_otherAddress.title=Andre mottakere
+dod_dod5015.property.dod_otherAddress.decription=Andre mottakere
+
+dod_dod5015.aspect.dod_scannedRecord.title=Skannet oppf\u00f8ring
+dod_dod5015.aspect.dod_scannedRecord.description=Skannet oppf\u00f8ring
+dod_dod5015.property.dod_scannedFormat.title=Bildeformat
+dod_dod5015.property.dod_scannedFormat.description=Bildeformat
+dod_dod5015.property.dod_scannedFormatVersion.title=Bildeformat og -versjon
+dod_dod5015.property.dod_scannedFormatVersion.description=Bildeformat og -versjon
+dod_dod5015.property.dod_resolutionX.title=Bildeoppl\u00f8sning X
+dod_dod5015.property.dod_resolutionX.description=Bildeoppl\u00f8sning X
+dod_dod5015.property.dod_resolutionY.title=Bildeoppl\u00f8sning Y
+dod_dod5015.property.dod_resolutionY.description=Bildeoppl\u00f8sning Y
+dod_dod5015.property.dod_scannedBitDepth.title=Skannet bitdybde
+dod_dod5015.property.dod_scannedBitDepth.description=Skannet bitdybde
+
+dod_dod5015.aspect.dod_pdfRecord.title=PDF-oppf\u00f8ring
+dod_dod5015.aspect.dod_pdfRecord.description=PDF-oppf\u00f8ring
+dod_dod5015.property.dod_producingApplication.title=Produserende program
+dod_dod5015.property.dod_producingApplication.description=Produserende program
+dod_dod5015.property.dod_producingApplicationVersion.title=Produserende programversjon
+dod_dod5015.property.dod_producingApplicationVersion.description=Produserende programversjon
+dod_dod5015.property.dod_pdfVersion.title=PDF-versjon
+dod_dod5015.property.dod_pdfVersion.description=PDF-versjon
+dod_dod5015.property.dod_creatingApplication.title=Opprette program
+dod_dod5015.property.dod_creatingApplication.description=Opprette program
+dod_dod5015.property.dod_documentSecuritySettings.title=Innstillinger ved dokumentsikkerhet
+dod_dod5015.property.dod_documentSecuritySettings.description=Innstillinger ved dokumentsikkerhet
+
+dod_dod5015.aspect.dod_digitalPhotographRecord.title=Digital bildeoppf\u00f8ring
+dod_dod5015.aspect.dod_digitalPhotographRecord.description=Digital bildeoppf\u00f8ring
+dod_dod5015.property.dod_caption.title=Tittel
+dod_dod5015.property.dod_caption.description=Tittel
+dod_dod5015.property.dod_photographer.title=Fotograf
+dod_dod5015.property.dod_photographer.description=Fotograf
+dod_dod5015.property.dod_copyright.title=Copyright
+dod_dod5015.property.dod_copyright.description=Copyright
+dod_dod5015.property.dod_bitDepth.title=Bitdybde
+dod_dod5015.property.dod_bitDepth.description=Bitdybde
+dod_dod5015.property.dod_imageSizeX.title=Bildest\u00f8rrelse X
+dod_dod5015.property.dod_imageSizeX.description=Bildest\u00f8rrelse X
+dod_dod5015.property.dod_imageSizeY.title=Bildest\u00f8rrelse Y
+dod_dod5015.property.dod_imageSizeY.description=Bildest\u00f8rrelse Y
+dod_dod5015.property.dod_imageSource.title=Bildekilde
+dod_dod5015.property.dod_imageSource.description=Bildekilde
+dod_dod5015.property.dod_compression.title=Komprimering
+dod_dod5015.property.dod_compression.description=Komprimering
+dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM-profil
+dod_dod5015.property.dod_iccIcmProfile.description=ICC/ICM-profil
+dod_dod5015.property.dod_exifInformation.title=EXIF-informasjon
+dod_dod5015.property.dod_exifInformation.description=EXIF-informasjon
+
+dod_dod5015.aspect.dod_webRecord.title=Nettoppf\u00f8ring
+dod_dod5015.aspect.dod_webRecord.description=Nettoppf\u00f8ring
+dod_dod5015.property.dod_webFileName.title=Nettfilnavn
+dod_dod5015.property.dod_webFileName.description=Nettfilnavn
+dod_dod5015.property.dod_webPlatform.title=Nettplattform
+dod_dod5015.property.dod_webPlatform.description=Nettplattform
+dod_dod5015.property.dod_webSiteName.title=Nettstedsnavn
+dod_dod5015.property.dod_webSiteName.description=Nettstedsnavn
+dod_dod5015.property.dod_webSiteURL.title=Nettstedsadresse
+dod_dod5015.property.dod_webSiteURL.description=Nettstedsadresse
+dod_dod5015.property.dod_captureMethod.title=Opptaksmetode
+dod_dod5015.property.dod_captureMethod.description=Opptaksmetode
+dod_dod5015.property.dod_captureDate.title=Opptaksdato
+dod_dod5015.property.dod_captureDate.description=Opptaksdato
+dod_dod5015.property.dod_contact.title=Kontakt
+dod_dod5015.property.dod_contact.description=Kontakt
+dod_dod5015.property.dod_contentManagementSystem.title=Innholdsforvaltningssystem
+dod_dod5015.property.dod_contentManagementSystem.description= Innholdsforvaltningssystem
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_nl.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_nl.properties
index 8c8bb68162..56a5f76aaf 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_nl.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_nl.properties
@@ -1,98 +1,98 @@
-dod_dod5015.description=DOD5015-contentmodel
-
-dod_dod5015.type.dod_site.title=DOD5015-site
-dod_dod5015.type.dod_site.description=DOD5015-site
-
-dod_dod5015.type.dod_filePlan.title=DOD5015-ordeningsplan
-dod_dod5015.type.dod_filePlan.description=DOD5015-ordeningsplan
-
-dod_dod5015.type.dod_recordSeries.title=Recordreeks (afgekeurd)
-dod_dod5015.type.dod_recordSeries.description=Recordreeks (afgekeurd)
-
-dod_dod5015.aspect.dod_dod5015record.title=DOD5015-record
-dod_dod5015.aspect.dod_dod5015record.description=DOD5015-record
-dod_dod5015.property.dod_publicationDate.title=Publicatiedatum
-dod_dod5015.property.dod_publicationDate.decription=Publicatiedatum
-dod_dod5015.property.dod_originator.title=Herkomst
-dod_dod5015.property.dod_originator.decription=Herkomst
-dod_dod5015.property.dod_originatingOrganization.title=Oorspronkelijke organisatie
-dod_dod5015.property.dod_originatingOrganization.decription=Oorspronkelijke organisatie
-dod_dod5015.property.dod_mediaType.title=Type medium
-dod_dod5015.property.dod_mediaType.decription=Type medium
-dod_dod5015.property.dod_format.title=Indeling
-dod_dod5015.property.dod_format.decription=Indeling
-dod_dod5015.property.dod_dateReceived.title=Datum ontvangen
-dod_dod5015.property.dod_dateReceived.decription=Datum ontvangen
-dod_dod5015.property.dod_address.title=Geadresseerde
-dod_dod5015.property.dod_address.decription=Geadresseerde
-dod_dod5015.property.dod_otherAddress.title=Andere geadresseerde
-dod_dod5015.property.dod_otherAddress.decription=Andere geadresseerde
-
-dod_dod5015.aspect.dod_scannedRecord.title=Gescande record
-dod_dod5015.aspect.dod_scannedRecord.description=Gescande record
-dod_dod5015.property.dod_scannedFormat.title=Beeldindeling
-dod_dod5015.property.dod_scannedFormat.description=Beeldindeling
-dod_dod5015.property.dod_scannedFormatVersion.title=Beeldindeling en -versie
-dod_dod5015.property.dod_scannedFormatVersion.description=Beeldindeling en -versie
-dod_dod5015.property.dod_resolutionX.title=Beeldresolutie X
-dod_dod5015.property.dod_resolutionX.description=Beeldresolutie X
-dod_dod5015.property.dod_resolutionY.title=Beeldresolutie Y
-dod_dod5015.property.dod_resolutionY.description=Beeldresolutie Y
-dod_dod5015.property.dod_scannedBitDepth.title=Gescande bitdiepte
-dod_dod5015.property.dod_scannedBitDepth.description=Gescande bitdiepte
-
-dod_dod5015.aspect.dod_pdfRecord.title=PDF-record
-dod_dod5015.aspect.dod_pdfRecord.description=PDF-record
-dod_dod5015.property.dod_producingApplication.title=Producerende applicatie
-dod_dod5015.property.dod_producingApplication.description=Producerende applicatie
-dod_dod5015.property.dod_producingApplicationVersion.title=Versie producerende applicatie
-dod_dod5015.property.dod_producingApplicationVersion.description=Versie producerende applicatie
-dod_dod5015.property.dod_pdfVersion.title=PDF-versie
-dod_dod5015.property.dod_pdfVersion.description=PDF-versie
-dod_dod5015.property.dod_creatingApplication.title=Producerende applicatie
-dod_dod5015.property.dod_creatingApplication.description=Producerende applicatie
-dod_dod5015.property.dod_documentSecuritySettings.title=Documentbeveiligingsinstellingen
-dod_dod5015.property.dod_documentSecuritySettings.description=Documentbeveiligingsinstellingen
-
-dod_dod5015.aspect.dod_digitalPhotographRecord.title=Digitale fotorecord
-dod_dod5015.aspect.dod_digitalPhotographRecord.description=Digitale fotorecord
-dod_dod5015.property.dod_caption.title=Bijschrift
-dod_dod5015.property.dod_caption.description=Bijschrift
-dod_dod5015.property.dod_photographer.title=Fotograaf
-dod_dod5015.property.dod_photographer.description=Fotograaf
-dod_dod5015.property.dod_copyright.title=Auteursrecht
-dod_dod5015.property.dod_copyright.description=Auteursrecht
-dod_dod5015.property.dod_bitDepth.title=Bitdiepte
-dod_dod5015.property.dod_bitDepth.description=Bitdiepte
-dod_dod5015.property.dod_imageSizeX.title=Beeldgrootte X
-dod_dod5015.property.dod_imageSizeX.description=Beeldgrootte X
-dod_dod5015.property.dod_imageSizeY.title=Beeldgrootte Y
-dod_dod5015.property.dod_imageSizeY.description=Beeldgrootte Y
-dod_dod5015.property.dod_imageSource.title=Beeldbron
-dod_dod5015.property.dod_imageSource.description=Beeldbron
-dod_dod5015.property.dod_compression.title=Compressie
-dod_dod5015.property.dod_compression.description=Compressie
-dod_dod5015.property.dod_iccIcmProfile.title=ICC-/ICM-profiel
-dod_dod5015.property.dod_iccIcmProfile.description=ICC-/ICM-profiel
-dod_dod5015.property.dod_exifInformation.title=EXIF-informatie
-dod_dod5015.property.dod_exifInformation.description=EXIF-informatie
-
-dod_dod5015.aspect.dod_webRecord.title=Web-record
-dod_dod5015.aspect.dod_webRecord.description=Web-record
-dod_dod5015.property.dod_webFileName.title=Web-bestandsnaam
-dod_dod5015.property.dod_webFileName.description=Web-bestandsnaam
-dod_dod5015.property.dod_webPlatform.title=Web-platform
-dod_dod5015.property.dod_webPlatform.description=Web-platform
-dod_dod5015.property.dod_webSiteName.title=Websitenaam
-dod_dod5015.property.dod_webSiteName.description=Websitenaam
-dod_dod5015.property.dod_webSiteURL.title=Websiteadres
-dod_dod5015.property.dod_webSiteURL.description=Websiteadres
-dod_dod5015.property.dod_captureMethod.title=Methode van vastleggen
-dod_dod5015.property.dod_captureMethod.description=Methode van vastleggen
-dod_dod5015.property.dod_captureDate.title=Vastlegdatum
-dod_dod5015.property.dod_captureDate.description=Vastlegdatum
-dod_dod5015.property.dod_contact.title=Contact
-dod_dod5015.property.dod_contact.description=Contact
-dod_dod5015.property.dod_contentManagementSystem.title=Contentmanagementsysteem
-dod_dod5015.property.dod_contentManagementSystem.description=Contentmanagementsysteem
-
+dod_dod5015.description=DOD5015-contentmodel
+
+dod_dod5015.type.dod_site.title=DOD5015-site
+dod_dod5015.type.dod_site.description=DOD5015-site
+
+dod_dod5015.type.dod_filePlan.title=DOD5015-ordeningsplan
+dod_dod5015.type.dod_filePlan.description=DOD5015-ordeningsplan
+
+dod_dod5015.type.dod_recordSeries.title=Recordreeks (afgekeurd)
+dod_dod5015.type.dod_recordSeries.description=Recordreeks (afgekeurd)
+
+dod_dod5015.aspect.dod_dod5015record.title=DOD5015-record
+dod_dod5015.aspect.dod_dod5015record.description=DOD5015-record
+dod_dod5015.property.dod_publicationDate.title=Publicatiedatum
+dod_dod5015.property.dod_publicationDate.decription=Publicatiedatum
+dod_dod5015.property.dod_originator.title=Herkomst
+dod_dod5015.property.dod_originator.decription=Herkomst
+dod_dod5015.property.dod_originatingOrganization.title=Oorspronkelijke organisatie
+dod_dod5015.property.dod_originatingOrganization.decription=Oorspronkelijke organisatie
+dod_dod5015.property.dod_mediaType.title=Type medium
+dod_dod5015.property.dod_mediaType.decription=Type medium
+dod_dod5015.property.dod_format.title=Indeling
+dod_dod5015.property.dod_format.decription=Indeling
+dod_dod5015.property.dod_dateReceived.title=Datum ontvangen
+dod_dod5015.property.dod_dateReceived.decription=Datum ontvangen
+dod_dod5015.property.dod_address.title=Geadresseerde
+dod_dod5015.property.dod_address.decription=Geadresseerde
+dod_dod5015.property.dod_otherAddress.title=Andere geadresseerde
+dod_dod5015.property.dod_otherAddress.decription=Andere geadresseerde
+
+dod_dod5015.aspect.dod_scannedRecord.title=Gescande record
+dod_dod5015.aspect.dod_scannedRecord.description=Gescande record
+dod_dod5015.property.dod_scannedFormat.title=Beeldindeling
+dod_dod5015.property.dod_scannedFormat.description=Beeldindeling
+dod_dod5015.property.dod_scannedFormatVersion.title=Beeldindeling en -versie
+dod_dod5015.property.dod_scannedFormatVersion.description=Beeldindeling en -versie
+dod_dod5015.property.dod_resolutionX.title=Beeldresolutie X
+dod_dod5015.property.dod_resolutionX.description=Beeldresolutie X
+dod_dod5015.property.dod_resolutionY.title=Beeldresolutie Y
+dod_dod5015.property.dod_resolutionY.description=Beeldresolutie Y
+dod_dod5015.property.dod_scannedBitDepth.title=Gescande bitdiepte
+dod_dod5015.property.dod_scannedBitDepth.description=Gescande bitdiepte
+
+dod_dod5015.aspect.dod_pdfRecord.title=PDF-record
+dod_dod5015.aspect.dod_pdfRecord.description=PDF-record
+dod_dod5015.property.dod_producingApplication.title=Producerende applicatie
+dod_dod5015.property.dod_producingApplication.description=Producerende applicatie
+dod_dod5015.property.dod_producingApplicationVersion.title=Versie producerende applicatie
+dod_dod5015.property.dod_producingApplicationVersion.description=Versie producerende applicatie
+dod_dod5015.property.dod_pdfVersion.title=PDF-versie
+dod_dod5015.property.dod_pdfVersion.description=PDF-versie
+dod_dod5015.property.dod_creatingApplication.title=Producerende applicatie
+dod_dod5015.property.dod_creatingApplication.description=Producerende applicatie
+dod_dod5015.property.dod_documentSecuritySettings.title=Documentbeveiligingsinstellingen
+dod_dod5015.property.dod_documentSecuritySettings.description=Documentbeveiligingsinstellingen
+
+dod_dod5015.aspect.dod_digitalPhotographRecord.title=Digitale fotorecord
+dod_dod5015.aspect.dod_digitalPhotographRecord.description=Digitale fotorecord
+dod_dod5015.property.dod_caption.title=Bijschrift
+dod_dod5015.property.dod_caption.description=Bijschrift
+dod_dod5015.property.dod_photographer.title=Fotograaf
+dod_dod5015.property.dod_photographer.description=Fotograaf
+dod_dod5015.property.dod_copyright.title=Auteursrecht
+dod_dod5015.property.dod_copyright.description=Auteursrecht
+dod_dod5015.property.dod_bitDepth.title=Bitdiepte
+dod_dod5015.property.dod_bitDepth.description=Bitdiepte
+dod_dod5015.property.dod_imageSizeX.title=Beeldgrootte X
+dod_dod5015.property.dod_imageSizeX.description=Beeldgrootte X
+dod_dod5015.property.dod_imageSizeY.title=Beeldgrootte Y
+dod_dod5015.property.dod_imageSizeY.description=Beeldgrootte Y
+dod_dod5015.property.dod_imageSource.title=Beeldbron
+dod_dod5015.property.dod_imageSource.description=Beeldbron
+dod_dod5015.property.dod_compression.title=Compressie
+dod_dod5015.property.dod_compression.description=Compressie
+dod_dod5015.property.dod_iccIcmProfile.title=ICC-/ICM-profiel
+dod_dod5015.property.dod_iccIcmProfile.description=ICC-/ICM-profiel
+dod_dod5015.property.dod_exifInformation.title=EXIF-informatie
+dod_dod5015.property.dod_exifInformation.description=EXIF-informatie
+
+dod_dod5015.aspect.dod_webRecord.title=Web-record
+dod_dod5015.aspect.dod_webRecord.description=Web-record
+dod_dod5015.property.dod_webFileName.title=Web-bestandsnaam
+dod_dod5015.property.dod_webFileName.description=Web-bestandsnaam
+dod_dod5015.property.dod_webPlatform.title=Web-platform
+dod_dod5015.property.dod_webPlatform.description=Web-platform
+dod_dod5015.property.dod_webSiteName.title=Websitenaam
+dod_dod5015.property.dod_webSiteName.description=Websitenaam
+dod_dod5015.property.dod_webSiteURL.title=Websiteadres
+dod_dod5015.property.dod_webSiteURL.description=Websiteadres
+dod_dod5015.property.dod_captureMethod.title=Methode van vastleggen
+dod_dod5015.property.dod_captureMethod.description=Methode van vastleggen
+dod_dod5015.property.dod_captureDate.title=Vastlegdatum
+dod_dod5015.property.dod_captureDate.description=Vastlegdatum
+dod_dod5015.property.dod_contact.title=Contact
+dod_dod5015.property.dod_contact.description=Contact
+dod_dod5015.property.dod_contentManagementSystem.title=Contentmanagementsysteem
+dod_dod5015.property.dod_contentManagementSystem.description=Contentmanagementsysteem
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_pt_BR.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_pt_BR.properties
index b1574a51d2..cc4e8b091a 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_pt_BR.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_pt_BR.properties
@@ -1,98 +1,98 @@
-dod_dod5015.description=Modelo de conte\u00fado DOD5015
-
-dod_dod5015.type.dod_site.title=Site DOD5015
-dod_dod5015.type.dod_site.description=Site DOD5015
-
-dod_dod5015.type.dod_filePlan.title=Plano de arquivo DOD5015
-dod_dod5015.type.dod_filePlan.description=Plano de arquivo DOD5015
-
-dod_dod5015.type.dod_recordSeries.title=S\u00e9rie de documento arquiv\u00edstico (obsoleta)
-dod_dod5015.type.dod_recordSeries.description=S\u00e9rie de documento arquiv\u00edstico (obsoleta)
-
-dod_dod5015.aspect.dod_dod5015record.title=Documento arquiv\u00edstico DOD5015
-dod_dod5015.aspect.dod_dod5015record.description=Documento arquiv\u00edstico DOD5015
-dod_dod5015.property.dod_publicationDate.title=Data de publica\u00e7\u00e3o
-dod_dod5015.property.dod_publicationDate.decription=Data de publica\u00e7\u00e3o
-dod_dod5015.property.dod_originator.title=Originador
-dod_dod5015.property.dod_originator.decription=Originador
-dod_dod5015.property.dod_originatingOrganization.title=Organiza\u00e7\u00e3o de origem
-dod_dod5015.property.dod_originatingOrganization.decription=Organiza\u00e7\u00e3o de origem
-dod_dod5015.property.dod_mediaType.title=Tipo de m\u00eddia
-dod_dod5015.property.dod_mediaType.decription=Tipo de m\u00eddia
-dod_dod5015.property.dod_format.title=Formato
-dod_dod5015.property.dod_format.decription=Formato
-dod_dod5015.property.dod_dateReceived.title=Data de recebimento
-dod_dod5015.property.dod_dateReceived.decription=Data de recebimento
-dod_dod5015.property.dod_address.title=Destinat\u00e1rio
-dod_dod5015.property.dod_address.decription=Destinat\u00e1rio
-dod_dod5015.property.dod_otherAddress.title=Outro destinat\u00e1rio
-dod_dod5015.property.dod_otherAddress.decription=Outro destinat\u00e1rio
-
-dod_dod5015.aspect.dod_scannedRecord.title=Documento arquiv\u00edstico escaneado
-dod_dod5015.aspect.dod_scannedRecord.description=Documento arquiv\u00edstico escaneado
-dod_dod5015.property.dod_scannedFormat.title=Formato da imagem
-dod_dod5015.property.dod_scannedFormat.description=Formato da imagem
-dod_dod5015.property.dod_scannedFormatVersion.title=Vers\u00e3o e formato da imagem
-dod_dod5015.property.dod_scannedFormatVersion.description=Vers\u00e3o e formato da imagem
-dod_dod5015.property.dod_resolutionX.title=Resolu\u00e7\u00e3o da imagem X
-dod_dod5015.property.dod_resolutionX.description=Resolu\u00e7\u00e3o da imagem X
-dod_dod5015.property.dod_resolutionY.title=Resolu\u00e7\u00e3o da imagem Y
-dod_dod5015.property.dod_resolutionY.description=Resolu\u00e7\u00e3o da imagem Y
-dod_dod5015.property.dod_scannedBitDepth.title=Intensidade de bits escaneada
-dod_dod5015.property.dod_scannedBitDepth.description=Intensidade de bits escaneada
-
-dod_dod5015.aspect.dod_pdfRecord.title=Arquivo PDF
-dod_dod5015.aspect.dod_pdfRecord.description=Arquivo PDF
-dod_dod5015.property.dod_producingApplication.title=Aplicativo de produ\u00e7\u00e3o
-dod_dod5015.property.dod_producingApplication.description=Aplicativo de produ\u00e7\u00e3o
-dod_dod5015.property.dod_producingApplicationVersion.title=Vers\u00e3o do aplicativo de produ\u00e7\u00e3o
-dod_dod5015.property.dod_producingApplicationVersion.description=Vers\u00e3o do aplicativo de produ\u00e7\u00e3o
-dod_dod5015.property.dod_pdfVersion.title=Vers\u00e3o do PDF
-dod_dod5015.property.dod_pdfVersion.description=Vers\u00e3o do PDF
-dod_dod5015.property.dod_creatingApplication.title=Criando aplicativo
-dod_dod5015.property.dod_creatingApplication.description=Criando aplicativo
-dod_dod5015.property.dod_documentSecuritySettings.title=Configura\u00e7\u00f5es de seguran\u00e7a do documento
-dod_dod5015.property.dod_documentSecuritySettings.description=Configura\u00e7\u00f5es de seguran\u00e7a do documento
-
-dod_dod5015.aspect.dod_digitalPhotographRecord.title=Documento arquiv\u00edstico fotogr\u00e1fico digital
-dod_dod5015.aspect.dod_digitalPhotographRecord.description=Documento arquiv\u00edstico fotogr\u00e1fico digital
-dod_dod5015.property.dod_caption.title=Legenda
-dod_dod5015.property.dod_caption.description=Legenda
-dod_dod5015.property.dod_photographer.title=Fot\u00f3grafo
-dod_dod5015.property.dod_photographer.description=Fot\u00f3grafo
-dod_dod5015.property.dod_copyright.title=Copyright
-dod_dod5015.property.dod_copyright.description=Copyright
-dod_dod5015.property.dod_bitDepth.title=Intensidade de bit
-dod_dod5015.property.dod_bitDepth.description=Intensidade de bit
-dod_dod5015.property.dod_imageSizeX.title=Tamanho da imagem X
-dod_dod5015.property.dod_imageSizeX.description=Tamanho da imagem X
-dod_dod5015.property.dod_imageSizeY.title=Tamanho da imagem Y
-dod_dod5015.property.dod_imageSizeY.description=Tamanho da imagem Y
-dod_dod5015.property.dod_imageSource.title=Fonte da imagem
-dod_dod5015.property.dod_imageSource.description=Fonte da imagem
-dod_dod5015.property.dod_compression.title=Compress\u00e3o
-dod_dod5015.property.dod_compression.description=Compress\u00e3o
-dod_dod5015.property.dod_iccIcmProfile.title=Perfil ICC/ICM
-dod_dod5015.property.dod_iccIcmProfile.description=Perfil ICC/ICM
-dod_dod5015.property.dod_exifInformation.title=Informa\u00e7\u00f5es EXIF
-dod_dod5015.property.dod_exifInformation.description=Informa\u00e7\u00f5es EXIF
-
-dod_dod5015.aspect.dod_webRecord.title=Documento arquiv\u00edstico da Web
-dod_dod5015.aspect.dod_webRecord.description=Documento arquiv\u00edstico da Web
-dod_dod5015.property.dod_webFileName.title=Nome do arquivo da Web
-dod_dod5015.property.dod_webFileName.description=Nome do arquivo da Web
-dod_dod5015.property.dod_webPlatform.title=Plataforma da Web
-dod_dod5015.property.dod_webPlatform.description=Plataforma da Web
-dod_dod5015.property.dod_webSiteName.title=Nome do site
-dod_dod5015.property.dod_webSiteName.description=Nome do site
-dod_dod5015.property.dod_webSiteURL.title=URL do site
-dod_dod5015.property.dod_webSiteURL.description=URL do site
-dod_dod5015.property.dod_captureMethod.title=M\u00e9todo de captura
-dod_dod5015.property.dod_captureMethod.description=M\u00e9todo de captura
-dod_dod5015.property.dod_captureDate.title=Data de captura
-dod_dod5015.property.dod_captureDate.description=Data de captura
-dod_dod5015.property.dod_contact.title=Contato
-dod_dod5015.property.dod_contact.description=Contato
-dod_dod5015.property.dod_contentManagementSystem.title=Sistema de gerenciamento de conte\u00fado
-dod_dod5015.property.dod_contentManagementSystem.description=Sistema de gerenciamento de conte\u00fado
-
+dod_dod5015.description=Modelo de conte\u00fado DOD5015
+
+dod_dod5015.type.dod_site.title=Site DOD5015
+dod_dod5015.type.dod_site.description=Site DOD5015
+
+dod_dod5015.type.dod_filePlan.title=Plano de arquivo DOD5015
+dod_dod5015.type.dod_filePlan.description=Plano de arquivo DOD5015
+
+dod_dod5015.type.dod_recordSeries.title=S\u00e9rie de documento arquiv\u00edstico (obsoleta)
+dod_dod5015.type.dod_recordSeries.description=S\u00e9rie de documento arquiv\u00edstico (obsoleta)
+
+dod_dod5015.aspect.dod_dod5015record.title=Documento arquiv\u00edstico DOD5015
+dod_dod5015.aspect.dod_dod5015record.description=Documento arquiv\u00edstico DOD5015
+dod_dod5015.property.dod_publicationDate.title=Data de publica\u00e7\u00e3o
+dod_dod5015.property.dod_publicationDate.decription=Data de publica\u00e7\u00e3o
+dod_dod5015.property.dod_originator.title=Originador
+dod_dod5015.property.dod_originator.decription=Originador
+dod_dod5015.property.dod_originatingOrganization.title=Organiza\u00e7\u00e3o de origem
+dod_dod5015.property.dod_originatingOrganization.decription=Organiza\u00e7\u00e3o de origem
+dod_dod5015.property.dod_mediaType.title=Tipo de m\u00eddia
+dod_dod5015.property.dod_mediaType.decription=Tipo de m\u00eddia
+dod_dod5015.property.dod_format.title=Formato
+dod_dod5015.property.dod_format.decription=Formato
+dod_dod5015.property.dod_dateReceived.title=Data de recebimento
+dod_dod5015.property.dod_dateReceived.decription=Data de recebimento
+dod_dod5015.property.dod_address.title=Destinat\u00e1rio
+dod_dod5015.property.dod_address.decription=Destinat\u00e1rio
+dod_dod5015.property.dod_otherAddress.title=Outro destinat\u00e1rio
+dod_dod5015.property.dod_otherAddress.decription=Outro destinat\u00e1rio
+
+dod_dod5015.aspect.dod_scannedRecord.title=Documento arquiv\u00edstico escaneado
+dod_dod5015.aspect.dod_scannedRecord.description=Documento arquiv\u00edstico escaneado
+dod_dod5015.property.dod_scannedFormat.title=Formato da imagem
+dod_dod5015.property.dod_scannedFormat.description=Formato da imagem
+dod_dod5015.property.dod_scannedFormatVersion.title=Vers\u00e3o e formato da imagem
+dod_dod5015.property.dod_scannedFormatVersion.description=Vers\u00e3o e formato da imagem
+dod_dod5015.property.dod_resolutionX.title=Resolu\u00e7\u00e3o da imagem X
+dod_dod5015.property.dod_resolutionX.description=Resolu\u00e7\u00e3o da imagem X
+dod_dod5015.property.dod_resolutionY.title=Resolu\u00e7\u00e3o da imagem Y
+dod_dod5015.property.dod_resolutionY.description=Resolu\u00e7\u00e3o da imagem Y
+dod_dod5015.property.dod_scannedBitDepth.title=Intensidade de bits escaneada
+dod_dod5015.property.dod_scannedBitDepth.description=Intensidade de bits escaneada
+
+dod_dod5015.aspect.dod_pdfRecord.title=Arquivo PDF
+dod_dod5015.aspect.dod_pdfRecord.description=Arquivo PDF
+dod_dod5015.property.dod_producingApplication.title=Aplicativo de produ\u00e7\u00e3o
+dod_dod5015.property.dod_producingApplication.description=Aplicativo de produ\u00e7\u00e3o
+dod_dod5015.property.dod_producingApplicationVersion.title=Vers\u00e3o do aplicativo de produ\u00e7\u00e3o
+dod_dod5015.property.dod_producingApplicationVersion.description=Vers\u00e3o do aplicativo de produ\u00e7\u00e3o
+dod_dod5015.property.dod_pdfVersion.title=Vers\u00e3o do PDF
+dod_dod5015.property.dod_pdfVersion.description=Vers\u00e3o do PDF
+dod_dod5015.property.dod_creatingApplication.title=Criando aplicativo
+dod_dod5015.property.dod_creatingApplication.description=Criando aplicativo
+dod_dod5015.property.dod_documentSecuritySettings.title=Configura\u00e7\u00f5es de seguran\u00e7a do documento
+dod_dod5015.property.dod_documentSecuritySettings.description=Configura\u00e7\u00f5es de seguran\u00e7a do documento
+
+dod_dod5015.aspect.dod_digitalPhotographRecord.title=Documento arquiv\u00edstico fotogr\u00e1fico digital
+dod_dod5015.aspect.dod_digitalPhotographRecord.description=Documento arquiv\u00edstico fotogr\u00e1fico digital
+dod_dod5015.property.dod_caption.title=Legenda
+dod_dod5015.property.dod_caption.description=Legenda
+dod_dod5015.property.dod_photographer.title=Fot\u00f3grafo
+dod_dod5015.property.dod_photographer.description=Fot\u00f3grafo
+dod_dod5015.property.dod_copyright.title=Copyright
+dod_dod5015.property.dod_copyright.description=Copyright
+dod_dod5015.property.dod_bitDepth.title=Intensidade de bit
+dod_dod5015.property.dod_bitDepth.description=Intensidade de bit
+dod_dod5015.property.dod_imageSizeX.title=Tamanho da imagem X
+dod_dod5015.property.dod_imageSizeX.description=Tamanho da imagem X
+dod_dod5015.property.dod_imageSizeY.title=Tamanho da imagem Y
+dod_dod5015.property.dod_imageSizeY.description=Tamanho da imagem Y
+dod_dod5015.property.dod_imageSource.title=Fonte da imagem
+dod_dod5015.property.dod_imageSource.description=Fonte da imagem
+dod_dod5015.property.dod_compression.title=Compress\u00e3o
+dod_dod5015.property.dod_compression.description=Compress\u00e3o
+dod_dod5015.property.dod_iccIcmProfile.title=Perfil ICC/ICM
+dod_dod5015.property.dod_iccIcmProfile.description=Perfil ICC/ICM
+dod_dod5015.property.dod_exifInformation.title=Informa\u00e7\u00f5es EXIF
+dod_dod5015.property.dod_exifInformation.description=Informa\u00e7\u00f5es EXIF
+
+dod_dod5015.aspect.dod_webRecord.title=Documento arquiv\u00edstico da Web
+dod_dod5015.aspect.dod_webRecord.description=Documento arquiv\u00edstico da Web
+dod_dod5015.property.dod_webFileName.title=Nome do arquivo da Web
+dod_dod5015.property.dod_webFileName.description=Nome do arquivo da Web
+dod_dod5015.property.dod_webPlatform.title=Plataforma da Web
+dod_dod5015.property.dod_webPlatform.description=Plataforma da Web
+dod_dod5015.property.dod_webSiteName.title=Nome do site
+dod_dod5015.property.dod_webSiteName.description=Nome do site
+dod_dod5015.property.dod_webSiteURL.title=URL do site
+dod_dod5015.property.dod_webSiteURL.description=URL do site
+dod_dod5015.property.dod_captureMethod.title=M\u00e9todo de captura
+dod_dod5015.property.dod_captureMethod.description=M\u00e9todo de captura
+dod_dod5015.property.dod_captureDate.title=Data de captura
+dod_dod5015.property.dod_captureDate.description=Data de captura
+dod_dod5015.property.dod_contact.title=Contato
+dod_dod5015.property.dod_contact.description=Contato
+dod_dod5015.property.dod_contentManagementSystem.title=Sistema de gerenciamento de conte\u00fado
+dod_dod5015.property.dod_contentManagementSystem.description=Sistema de gerenciamento de conte\u00fado
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_ru.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_ru.properties
index 67956e54c0..d922a2c8ff 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_ru.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_ru.properties
@@ -1,98 +1,98 @@
-dod_dod5015.description=\u041c\u043e\u0434\u0435\u043b\u044c \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 DOD5015
-
-dod_dod5015.type.dod_site.title=\u0421\u0430\u0439\u0442 DOD5015
-dod_dod5015.type.dod_site.description=\u0421\u0430\u0439\u0442 DOD5015
-
-dod_dod5015.type.dod_filePlan.title=\u0410\u0440\u0445\u0438\u0432 DOD5015
-dod_dod5015.type.dod_filePlan.description=\u0410\u0440\u0445\u0438\u0432 DOD5015
-
-dod_dod5015.type.dod_recordSeries.title=\u0421\u0435\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439 (\u0443\u0441\u0442\u0430\u0440\u0435\u043b\u043e)
-dod_dod5015.type.dod_recordSeries.description=\u0421\u0435\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439 (\u0443\u0441\u0442\u0430\u0440\u0435\u043b\u043e)
-
-dod_dod5015.aspect.dod_dod5015record.title=\u0417\u0430\u043f\u0438\u0441\u044c DOD5015
-dod_dod5015.aspect.dod_dod5015record.description=\u0417\u0430\u043f\u0438\u0441\u044c DOD5015
-dod_dod5015.property.dod_publicationDate.title=\u0414\u0430\u0442\u0430 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438
-dod_dod5015.property.dod_publicationDate.decription=\u0414\u0430\u0442\u0430 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438
-dod_dod5015.property.dod_originator.title=\u0418\u043d\u0438\u0446\u0438\u0430\u0442\u043e\u0440
-dod_dod5015.property.dod_originator.decription=\u0418\u043d\u0438\u0446\u0438\u0430\u0442\u043e\u0440
-dod_dod5015.property.dod_originatingOrganization.title=\u0418\u043d\u0438\u0446\u0438\u0438\u0440\u0443\u044e\u0449\u0430\u044f \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f
-dod_dod5015.property.dod_originatingOrganization.decription=\u0418\u043d\u0438\u0446\u0438\u0438\u0440\u0443\u044e\u0449\u0430\u044f \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f
-dod_dod5015.property.dod_mediaType.title=\u0422\u0438\u043f \u043c\u0435\u0434\u0438\u0430
-dod_dod5015.property.dod_mediaType.decription=\u0422\u0438\u043f \u043c\u0435\u0434\u0438\u0430
-dod_dod5015.property.dod_format.title=\u0424\u043e\u0440\u043c\u0430\u0442
-dod_dod5015.property.dod_format.decription=\u0424\u043e\u0440\u043c\u0430\u0442
-dod_dod5015.property.dod_dateReceived.title=\u0414\u0430\u0442\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f
-dod_dod5015.property.dod_dateReceived.decription=\u0414\u0430\u0442\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f
-dod_dod5015.property.dod_address.title=\u0410\u0434\u0440\u0435\u0441\u0430\u0442
-dod_dod5015.property.dod_address.decription=\u0410\u0434\u0440\u0435\u0441\u0430\u0442
-dod_dod5015.property.dod_otherAddress.title=\u0414\u0440\u0443\u0433\u043e\u0439 \u0430\u0434\u0440\u0435\u0441\u0430\u0442
-dod_dod5015.property.dod_otherAddress.decription=\u0414\u0440\u0443\u0433\u043e\u0439 \u0430\u0434\u0440\u0435\u0441\u0430\u0442
-
-dod_dod5015.aspect.dod_scannedRecord.title=\u041e\u0442\u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
-dod_dod5015.aspect.dod_scannedRecord.description=\u041e\u0442\u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
-dod_dod5015.property.dod_scannedFormat.title=\u0424\u043e\u0440\u043c\u0430\u0442 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
-dod_dod5015.property.dod_scannedFormat.description=\u0424\u043e\u0440\u043c\u0430\u0442 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
-dod_dod5015.property.dod_scannedFormatVersion.title=\u0424\u043e\u0440\u043c\u0430\u0442 \u0438 \u0432\u0435\u0440\u0441\u0438\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
-dod_dod5015.property.dod_scannedFormatVersion.description=\u0424\u043e\u0440\u043c\u0430\u0442 \u0438 \u0432\u0435\u0440\u0441\u0438\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
-dod_dod5015.property.dod_resolutionX.title=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 X
-dod_dod5015.property.dod_resolutionX.description=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 X
-dod_dod5015.property.dod_resolutionY.title=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 Y
-dod_dod5015.property.dod_resolutionY.description=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 Y
-dod_dod5015.property.dod_scannedBitDepth.title=\u0411\u0438\u0442\u043e\u0432\u0430\u044f \u0433\u043b\u0443\u0431\u0438\u043d\u0430 \u043e\u0442\u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
-dod_dod5015.property.dod_scannedBitDepth.description=\u0411\u0438\u0442\u043e\u0432\u0430\u044f \u0433\u043b\u0443\u0431\u0438\u043d\u0430 \u043e\u0442\u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
-
-dod_dod5015.aspect.dod_pdfRecord.title=\u0417\u0430\u043f\u0438\u0441\u044c PDF
-dod_dod5015.aspect.dod_pdfRecord.description=\u0417\u0430\u043f\u0438\u0441\u044c PDF
-dod_dod5015.property.dod_producingApplication.title=\u0412\u044b\u043f\u0443\u0441\u043a\u0430\u044e\u0449\u0435\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
-dod_dod5015.property.dod_producingApplication.description=\u0412\u044b\u043f\u0443\u0441\u043a\u0430\u044e\u0449\u0435\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
-dod_dod5015.property.dod_producingApplicationVersion.title=\u0412\u0435\u0440\u0441\u0438\u044f \u0432\u044b\u043f\u0443\u0441\u043a\u0430\u044e\u0449\u0435\u0433\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f
-dod_dod5015.property.dod_producingApplicationVersion.description=\u0412\u0435\u0440\u0441\u0438\u044f \u0432\u044b\u043f\u0443\u0441\u043a\u0430\u044e\u0449\u0435\u0433\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f
-dod_dod5015.property.dod_pdfVersion.title=\u0412\u0435\u0440\u0441\u0438\u044f PDF
-dod_dod5015.property.dod_pdfVersion.description=\u0412\u0435\u0440\u0441\u0438\u044f PDF
-dod_dod5015.property.dod_creatingApplication.title=\u0421\u043e\u0437\u0434\u0430\u044e\u0449\u0435\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
-dod_dod5015.property.dod_creatingApplication.description=\u0421\u043e\u0437\u0434\u0430\u044e\u0449\u0435\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
-dod_dod5015.property.dod_documentSecuritySettings.title=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0437\u0430\u0449\u0438\u0442\u044b \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430
-dod_dod5015.property.dod_documentSecuritySettings.description=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0437\u0430\u0449\u0438\u0442\u044b \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430
-
-dod_dod5015.aspect.dod_digitalPhotographRecord.title=\u0417\u0430\u043f\u0438\u0441\u044c \u0432 \u0432\u0438\u0434\u0435 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438
-dod_dod5015.aspect.dod_digitalPhotographRecord.description=\u0417\u0430\u043f\u0438\u0441\u044c \u0432 \u0432\u0438\u0434\u0435 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438
-dod_dod5015.property.dod_caption.title=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a
-dod_dod5015.property.dod_caption.description=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a
-dod_dod5015.property.dod_photographer.title=\u0410\u0432\u0442\u043e\u0440 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438
-dod_dod5015.property.dod_photographer.description=\u0410\u0432\u0442\u043e\u0440 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438
-dod_dod5015.property.dod_copyright.title=\u0410\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0435 \u043f\u0440\u0430\u0432\u0430
-dod_dod5015.property.dod_copyright.description=\u0410\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0435 \u043f\u0440\u0430\u0432\u0430
-dod_dod5015.property.dod_bitDepth.title=\u0411\u0438\u0442\u043e\u0432\u0430\u044f \u0433\u043b\u0443\u0431\u0438\u043d\u0430
-dod_dod5015.property.dod_bitDepth.description=\u0411\u0438\u0442\u043e\u0432\u0430\u044f \u0433\u043b\u0443\u0431\u0438\u043d\u0430
-dod_dod5015.property.dod_imageSizeX.title=\u0420\u0430\u0437\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 X
-dod_dod5015.property.dod_imageSizeX.description=\u0420\u0430\u0437\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 X
-dod_dod5015.property.dod_imageSizeY.title=\u0420\u0430\u0437\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 Y
-dod_dod5015.property.dod_imageSizeY.description=\u0420\u0430\u0437\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 Y
-dod_dod5015.property.dod_imageSource.title=\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
-dod_dod5015.property.dod_imageSource.description=\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
-dod_dod5015.property.dod_compression.title=\u0421\u0436\u0430\u0442\u0438\u0435
-dod_dod5015.property.dod_compression.description=\u0421\u0436\u0430\u0442\u0438\u0435
-dod_dod5015.property.dod_iccIcmProfile.title=\u041f\u0440\u043e\u0444\u0438\u043b\u044c ICC/ICM
-dod_dod5015.property.dod_iccIcmProfile.description=\u041f\u0440\u043e\u0444\u0438\u043b\u044c ICC/ICM
-dod_dod5015.property.dod_exifInformation.title=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f EXIF
-dod_dod5015.property.dod_exifInformation.description=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f EXIF
-
-dod_dod5015.aspect.dod_webRecord.title=\u0412\u0435\u0431-\u0437\u0430\u043f\u0438\u0441\u044c
-dod_dod5015.aspect.dod_webRecord.description=\u0412\u0435\u0431-\u0437\u0430\u043f\u0438\u0441\u044c
-dod_dod5015.property.dod_webFileName.title=\u0418\u043c\u044f \u0432\u0435\u0431-\u0444\u0430\u0439\u043b\u0430
-dod_dod5015.property.dod_webFileName.description=\u0418\u043c\u044f \u0432\u0435\u0431-\u0444\u0430\u0439\u043b\u0430
-dod_dod5015.property.dod_webPlatform.title=\u0412\u0435\u0431-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430
-dod_dod5015.property.dod_webPlatform.description=\u0412\u0435\u0431-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430
-dod_dod5015.property.dod_webSiteName.title=\u0418\u043c\u044f \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
-dod_dod5015.property.dod_webSiteName.description=\u0418\u043c\u044f \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
-dod_dod5015.property.dod_webSiteURL.title=URL-\u0430\u0434\u0440\u0435\u0441 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
-dod_dod5015.property.dod_webSiteURL.description=URL-\u0430\u0434\u0440\u0435\u0441 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
-dod_dod5015.property.dod_captureMethod.title=\u0421\u043f\u043e\u0441\u043e\u0431 \u0432\u0432\u043e\u0434\u0430
-dod_dod5015.property.dod_captureMethod.description=\u0421\u043f\u043e\u0441\u043e\u0431 \u0432\u0432\u043e\u0434\u0430
-dod_dod5015.property.dod_captureDate.title=\u0414\u0430\u0442\u0430 \u0441\u043d\u0438\u043c\u043a\u0430
-dod_dod5015.property.dod_captureDate.description=\u0414\u0430\u0442\u0430 \u0441\u043d\u0438\u043c\u043a\u0430
-dod_dod5015.property.dod_contact.title=\u041a\u043e\u043d\u0442\u0430\u043a\u0442
-dod_dod5015.property.dod_contact.description=\u041a\u043e\u043d\u0442\u0430\u043a\u0442
-dod_dod5015.property.dod_contentManagementSystem.title=\u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u044b\u043c
-dod_dod5015.property.dod_contentManagementSystem.description=\u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u044b\u043c
-
+dod_dod5015.description=\u041c\u043e\u0434\u0435\u043b\u044c \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 DOD5015
+
+dod_dod5015.type.dod_site.title=\u0421\u0430\u0439\u0442 DOD5015
+dod_dod5015.type.dod_site.description=\u0421\u0430\u0439\u0442 DOD5015
+
+dod_dod5015.type.dod_filePlan.title=\u0410\u0440\u0445\u0438\u0432 DOD5015
+dod_dod5015.type.dod_filePlan.description=\u0410\u0440\u0445\u0438\u0432 DOD5015
+
+dod_dod5015.type.dod_recordSeries.title=\u0421\u0435\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439 (\u0443\u0441\u0442\u0430\u0440\u0435\u043b\u043e)
+dod_dod5015.type.dod_recordSeries.description=\u0421\u0435\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439 (\u0443\u0441\u0442\u0430\u0440\u0435\u043b\u043e)
+
+dod_dod5015.aspect.dod_dod5015record.title=\u0417\u0430\u043f\u0438\u0441\u044c DOD5015
+dod_dod5015.aspect.dod_dod5015record.description=\u0417\u0430\u043f\u0438\u0441\u044c DOD5015
+dod_dod5015.property.dod_publicationDate.title=\u0414\u0430\u0442\u0430 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438
+dod_dod5015.property.dod_publicationDate.decription=\u0414\u0430\u0442\u0430 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438
+dod_dod5015.property.dod_originator.title=\u0418\u043d\u0438\u0446\u0438\u0430\u0442\u043e\u0440
+dod_dod5015.property.dod_originator.decription=\u0418\u043d\u0438\u0446\u0438\u0430\u0442\u043e\u0440
+dod_dod5015.property.dod_originatingOrganization.title=\u0418\u043d\u0438\u0446\u0438\u0438\u0440\u0443\u044e\u0449\u0430\u044f \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f
+dod_dod5015.property.dod_originatingOrganization.decription=\u0418\u043d\u0438\u0446\u0438\u0438\u0440\u0443\u044e\u0449\u0430\u044f \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f
+dod_dod5015.property.dod_mediaType.title=\u0422\u0438\u043f \u043c\u0435\u0434\u0438\u0430
+dod_dod5015.property.dod_mediaType.decription=\u0422\u0438\u043f \u043c\u0435\u0434\u0438\u0430
+dod_dod5015.property.dod_format.title=\u0424\u043e\u0440\u043c\u0430\u0442
+dod_dod5015.property.dod_format.decription=\u0424\u043e\u0440\u043c\u0430\u0442
+dod_dod5015.property.dod_dateReceived.title=\u0414\u0430\u0442\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f
+dod_dod5015.property.dod_dateReceived.decription=\u0414\u0430\u0442\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f
+dod_dod5015.property.dod_address.title=\u0410\u0434\u0440\u0435\u0441\u0430\u0442
+dod_dod5015.property.dod_address.decription=\u0410\u0434\u0440\u0435\u0441\u0430\u0442
+dod_dod5015.property.dod_otherAddress.title=\u0414\u0440\u0443\u0433\u043e\u0439 \u0430\u0434\u0440\u0435\u0441\u0430\u0442
+dod_dod5015.property.dod_otherAddress.decription=\u0414\u0440\u0443\u0433\u043e\u0439 \u0430\u0434\u0440\u0435\u0441\u0430\u0442
+
+dod_dod5015.aspect.dod_scannedRecord.title=\u041e\u0442\u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
+dod_dod5015.aspect.dod_scannedRecord.description=\u041e\u0442\u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
+dod_dod5015.property.dod_scannedFormat.title=\u0424\u043e\u0440\u043c\u0430\u0442 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
+dod_dod5015.property.dod_scannedFormat.description=\u0424\u043e\u0440\u043c\u0430\u0442 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
+dod_dod5015.property.dod_scannedFormatVersion.title=\u0424\u043e\u0440\u043c\u0430\u0442 \u0438 \u0432\u0435\u0440\u0441\u0438\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
+dod_dod5015.property.dod_scannedFormatVersion.description=\u0424\u043e\u0440\u043c\u0430\u0442 \u0438 \u0432\u0435\u0440\u0441\u0438\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
+dod_dod5015.property.dod_resolutionX.title=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 X
+dod_dod5015.property.dod_resolutionX.description=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 X
+dod_dod5015.property.dod_resolutionY.title=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 Y
+dod_dod5015.property.dod_resolutionY.description=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 Y
+dod_dod5015.property.dod_scannedBitDepth.title=\u0411\u0438\u0442\u043e\u0432\u0430\u044f \u0433\u043b\u0443\u0431\u0438\u043d\u0430 \u043e\u0442\u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
+dod_dod5015.property.dod_scannedBitDepth.description=\u0411\u0438\u0442\u043e\u0432\u0430\u044f \u0433\u043b\u0443\u0431\u0438\u043d\u0430 \u043e\u0442\u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
+
+dod_dod5015.aspect.dod_pdfRecord.title=\u0417\u0430\u043f\u0438\u0441\u044c PDF
+dod_dod5015.aspect.dod_pdfRecord.description=\u0417\u0430\u043f\u0438\u0441\u044c PDF
+dod_dod5015.property.dod_producingApplication.title=\u0412\u044b\u043f\u0443\u0441\u043a\u0430\u044e\u0449\u0435\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
+dod_dod5015.property.dod_producingApplication.description=\u0412\u044b\u043f\u0443\u0441\u043a\u0430\u044e\u0449\u0435\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
+dod_dod5015.property.dod_producingApplicationVersion.title=\u0412\u0435\u0440\u0441\u0438\u044f \u0432\u044b\u043f\u0443\u0441\u043a\u0430\u044e\u0449\u0435\u0433\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f
+dod_dod5015.property.dod_producingApplicationVersion.description=\u0412\u0435\u0440\u0441\u0438\u044f \u0432\u044b\u043f\u0443\u0441\u043a\u0430\u044e\u0449\u0435\u0433\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f
+dod_dod5015.property.dod_pdfVersion.title=\u0412\u0435\u0440\u0441\u0438\u044f PDF
+dod_dod5015.property.dod_pdfVersion.description=\u0412\u0435\u0440\u0441\u0438\u044f PDF
+dod_dod5015.property.dod_creatingApplication.title=\u0421\u043e\u0437\u0434\u0430\u044e\u0449\u0435\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
+dod_dod5015.property.dod_creatingApplication.description=\u0421\u043e\u0437\u0434\u0430\u044e\u0449\u0435\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
+dod_dod5015.property.dod_documentSecuritySettings.title=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0437\u0430\u0449\u0438\u0442\u044b \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430
+dod_dod5015.property.dod_documentSecuritySettings.description=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0437\u0430\u0449\u0438\u0442\u044b \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430
+
+dod_dod5015.aspect.dod_digitalPhotographRecord.title=\u0417\u0430\u043f\u0438\u0441\u044c \u0432 \u0432\u0438\u0434\u0435 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438
+dod_dod5015.aspect.dod_digitalPhotographRecord.description=\u0417\u0430\u043f\u0438\u0441\u044c \u0432 \u0432\u0438\u0434\u0435 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438
+dod_dod5015.property.dod_caption.title=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a
+dod_dod5015.property.dod_caption.description=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a
+dod_dod5015.property.dod_photographer.title=\u0410\u0432\u0442\u043e\u0440 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438
+dod_dod5015.property.dod_photographer.description=\u0410\u0432\u0442\u043e\u0440 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438
+dod_dod5015.property.dod_copyright.title=\u0410\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0435 \u043f\u0440\u0430\u0432\u0430
+dod_dod5015.property.dod_copyright.description=\u0410\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0435 \u043f\u0440\u0430\u0432\u0430
+dod_dod5015.property.dod_bitDepth.title=\u0411\u0438\u0442\u043e\u0432\u0430\u044f \u0433\u043b\u0443\u0431\u0438\u043d\u0430
+dod_dod5015.property.dod_bitDepth.description=\u0411\u0438\u0442\u043e\u0432\u0430\u044f \u0433\u043b\u0443\u0431\u0438\u043d\u0430
+dod_dod5015.property.dod_imageSizeX.title=\u0420\u0430\u0437\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 X
+dod_dod5015.property.dod_imageSizeX.description=\u0420\u0430\u0437\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 X
+dod_dod5015.property.dod_imageSizeY.title=\u0420\u0430\u0437\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 Y
+dod_dod5015.property.dod_imageSizeY.description=\u0420\u0430\u0437\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 Y
+dod_dod5015.property.dod_imageSource.title=\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
+dod_dod5015.property.dod_imageSource.description=\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
+dod_dod5015.property.dod_compression.title=\u0421\u0436\u0430\u0442\u0438\u0435
+dod_dod5015.property.dod_compression.description=\u0421\u0436\u0430\u0442\u0438\u0435
+dod_dod5015.property.dod_iccIcmProfile.title=\u041f\u0440\u043e\u0444\u0438\u043b\u044c ICC/ICM
+dod_dod5015.property.dod_iccIcmProfile.description=\u041f\u0440\u043e\u0444\u0438\u043b\u044c ICC/ICM
+dod_dod5015.property.dod_exifInformation.title=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f EXIF
+dod_dod5015.property.dod_exifInformation.description=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f EXIF
+
+dod_dod5015.aspect.dod_webRecord.title=\u0412\u0435\u0431-\u0437\u0430\u043f\u0438\u0441\u044c
+dod_dod5015.aspect.dod_webRecord.description=\u0412\u0435\u0431-\u0437\u0430\u043f\u0438\u0441\u044c
+dod_dod5015.property.dod_webFileName.title=\u0418\u043c\u044f \u0432\u0435\u0431-\u0444\u0430\u0439\u043b\u0430
+dod_dod5015.property.dod_webFileName.description=\u0418\u043c\u044f \u0432\u0435\u0431-\u0444\u0430\u0439\u043b\u0430
+dod_dod5015.property.dod_webPlatform.title=\u0412\u0435\u0431-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430
+dod_dod5015.property.dod_webPlatform.description=\u0412\u0435\u0431-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430
+dod_dod5015.property.dod_webSiteName.title=\u0418\u043c\u044f \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
+dod_dod5015.property.dod_webSiteName.description=\u0418\u043c\u044f \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
+dod_dod5015.property.dod_webSiteURL.title=URL-\u0430\u0434\u0440\u0435\u0441 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
+dod_dod5015.property.dod_webSiteURL.description=URL-\u0430\u0434\u0440\u0435\u0441 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
+dod_dod5015.property.dod_captureMethod.title=\u0421\u043f\u043e\u0441\u043e\u0431 \u0432\u0432\u043e\u0434\u0430
+dod_dod5015.property.dod_captureMethod.description=\u0421\u043f\u043e\u0441\u043e\u0431 \u0432\u0432\u043e\u0434\u0430
+dod_dod5015.property.dod_captureDate.title=\u0414\u0430\u0442\u0430 \u0441\u043d\u0438\u043c\u043a\u0430
+dod_dod5015.property.dod_captureDate.description=\u0414\u0430\u0442\u0430 \u0441\u043d\u0438\u043c\u043a\u0430
+dod_dod5015.property.dod_contact.title=\u041a\u043e\u043d\u0442\u0430\u043a\u0442
+dod_dod5015.property.dod_contact.description=\u041a\u043e\u043d\u0442\u0430\u043a\u0442
+dod_dod5015.property.dod_contentManagementSystem.title=\u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u044b\u043c
+dod_dod5015.property.dod_contentManagementSystem.description=\u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u044b\u043c
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_zh_CN.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_zh_CN.properties
index 660f640ae5..30dcfe4419 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_zh_CN.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model_zh_CN.properties
@@ -1,98 +1,98 @@
-dod_dod5015.description=DOD5015 \u5185\u5bb9\u6a21\u578b
-
-dod_dod5015.type.dod_site.title=DOD5015 \u7ad9\u70b9
-dod_dod5015.type.dod_site.description=DOD5015 \u7ad9\u70b9
-
-dod_dod5015.type.dod_filePlan.title=DOD5015 \u5f52\u7c7b\u65b9\u6848
-dod_dod5015.type.dod_filePlan.description=DOD5015 \u5f52\u7c7b\u65b9\u6848
-
-dod_dod5015.type.dod_recordSeries.title=\u8bb0\u5f55\u7cfb\u5217\uff08\u5df2\u5f03\u7528\uff09
-dod_dod5015.type.dod_recordSeries.description=\u8bb0\u5f55\u7cfb\u5217\uff08\u5df2\u5f03\u7528\uff09
-
-dod_dod5015.aspect.dod_dod5015record.title=DOD5015 \u8bb0\u5f55
-dod_dod5015.aspect.dod_dod5015record.description=DOD5015 \u8bb0\u5f55
-dod_dod5015.property.dod_publicationDate.title=\u53d1\u5e03\u65e5\u671f
-dod_dod5015.property.dod_publicationDate.decription=\u53d1\u5e03\u65e5\u671f
-dod_dod5015.property.dod_originator.title=\u5efa\u7acb\u8005
-dod_dod5015.property.dod_originator.decription=\u5efa\u7acb\u8005
-dod_dod5015.property.dod_originatingOrganization.title=\u8d77\u59cb\u7ec4\u7ec7
-dod_dod5015.property.dod_originatingOrganization.decription=\u8d77\u59cb\u7ec4\u7ec7
-dod_dod5015.property.dod_mediaType.title=\u5a92\u4f53\u7c7b\u578b
-dod_dod5015.property.dod_mediaType.decription=\u5a92\u4f53\u7c7b\u578b
-dod_dod5015.property.dod_format.title=\u683c\u5f0f
-dod_dod5015.property.dod_format.decription=\u683c\u5f0f
-dod_dod5015.property.dod_dateReceived.title=\u63a5\u6536\u65e5\u671f
-dod_dod5015.property.dod_dateReceived.decription=\u63a5\u6536\u65e5\u671f
-dod_dod5015.property.dod_address.title=\u6536\u4ef6\u4eba
-dod_dod5015.property.dod_address.decription=\u6536\u4ef6\u4eba
-dod_dod5015.property.dod_otherAddress.title=\u5176\u4ed6\u6536\u4ef6\u4eba
-dod_dod5015.property.dod_otherAddress.decription=\u5176\u4ed6\u6536\u4ef6\u4eba
-
-dod_dod5015.aspect.dod_scannedRecord.title=\u626b\u63cf\u7684\u8bb0\u5f55
-dod_dod5015.aspect.dod_scannedRecord.description=\u626b\u63cf\u7684\u8bb0\u5f55
-dod_dod5015.property.dod_scannedFormat.title=\u56fe\u50cf\u683c\u5f0f
-dod_dod5015.property.dod_scannedFormat.description=\u56fe\u50cf\u683c\u5f0f
-dod_dod5015.property.dod_scannedFormatVersion.title=\u56fe\u50cf\u683c\u5f0f\u548c\u7248\u672c
-dod_dod5015.property.dod_scannedFormatVersion.description=\u56fe\u50cf\u683c\u5f0f\u548c\u7248\u672c
-dod_dod5015.property.dod_resolutionX.title=\u56fe\u50cf\u5206\u8fa8\u7387 X
-dod_dod5015.property.dod_resolutionX.description=\u56fe\u50cf\u5206\u8fa8\u7387 X
-dod_dod5015.property.dod_resolutionY.title=\u56fe\u50cf\u5206\u8fa8\u7387 Y
-dod_dod5015.property.dod_resolutionY.description=\u56fe\u50cf\u5206\u8fa8\u7387 Y
-dod_dod5015.property.dod_scannedBitDepth.title=\u626b\u63cf\u7684\u4f4d\u6df1
-dod_dod5015.property.dod_scannedBitDepth.description=\u626b\u63cf\u7684\u4f4d\u6df1
-
-dod_dod5015.aspect.dod_pdfRecord.title=PDF \u8bb0\u5f55
-dod_dod5015.aspect.dod_pdfRecord.description=PDF \u8bb0\u5f55
-dod_dod5015.property.dod_producingApplication.title=\u751f\u4ea7\u5e94\u7528\u7a0b\u5e8f
-dod_dod5015.property.dod_producingApplication.description=\u751f\u4ea7\u5e94\u7528\u7a0b\u5e8f
-dod_dod5015.property.dod_producingApplicationVersion.title=\u751f\u4ea7\u5e94\u7528\u7a0b\u5e8f\u7248\u672c
-dod_dod5015.property.dod_producingApplicationVersion.description=\u751f\u4ea7\u5e94\u7528\u7a0b\u5e8f\u7248\u672c
-dod_dod5015.property.dod_pdfVersion.title=PDF \u7248\u672c
-dod_dod5015.property.dod_pdfVersion.description=PDF \u7248\u672c
-dod_dod5015.property.dod_creatingApplication.title=\u521b\u5efa\u5e94\u7528\u7a0b\u5e8f
-dod_dod5015.property.dod_creatingApplication.description=\u521b\u5efa\u5e94\u7528\u7a0b\u5e8f
-dod_dod5015.property.dod_documentSecuritySettings.title=\u6587\u6863\u5b89\u5168\u8bbe\u7f6e
-dod_dod5015.property.dod_documentSecuritySettings.description=\u6587\u6863\u5b89\u5168\u8bbe\u7f6e
-
-dod_dod5015.aspect.dod_digitalPhotographRecord.title=\u6570\u7801\u7167\u7247\u8bb0\u5f55
-dod_dod5015.aspect.dod_digitalPhotographRecord.description=\u6570\u7801\u7167\u7247\u8bb0\u5f55
-dod_dod5015.property.dod_caption.title=\u6807\u9898
-dod_dod5015.property.dod_caption.description=\u6807\u9898
-dod_dod5015.property.dod_photographer.title=\u6444\u5f71\u5e08
-dod_dod5015.property.dod_photographer.description=\u6444\u5f71\u5e08
-dod_dod5015.property.dod_copyright.title=\u7248\u6743
-dod_dod5015.property.dod_copyright.description=\u7248\u6743
-dod_dod5015.property.dod_bitDepth.title=\u4f4d\u6df1
-dod_dod5015.property.dod_bitDepth.description=\u4f4d\u6df1
-dod_dod5015.property.dod_imageSizeX.title=\u56fe\u50cf\u5c3a\u5bf8 X
-dod_dod5015.property.dod_imageSizeX.description=\u56fe\u50cf\u5c3a\u5bf8 X
-dod_dod5015.property.dod_imageSizeY.title=\u56fe\u50cf\u5c3a\u5bf8 Y
-dod_dod5015.property.dod_imageSizeY.description=\u56fe\u50cf\u5c3a\u5bf8 Y
-dod_dod5015.property.dod_imageSource.title=\u56fe\u50cf\u6e90
-dod_dod5015.property.dod_imageSource.description=\u56fe\u50cf\u6e90
-dod_dod5015.property.dod_compression.title=\u538b\u7f29
-dod_dod5015.property.dod_compression.description=\u538b\u7f29
-dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM \u914d\u7f6e\u6587\u4ef6
-dod_dod5015.property.dod_iccIcmProfile.description=ICC/ICM \u914d\u7f6e\u6587\u4ef6
-dod_dod5015.property.dod_exifInformation.title=EXIF \u4fe1\u606f
-dod_dod5015.property.dod_exifInformation.description=EXIF \u4fe1\u606f
-
-dod_dod5015.aspect.dod_webRecord.title=Web \u8bb0\u5f55
-dod_dod5015.aspect.dod_webRecord.description=Web \u8bb0\u5f55
-dod_dod5015.property.dod_webFileName.title=Web \u6587\u4ef6\u540d
-dod_dod5015.property.dod_webFileName.description=Web \u6587\u4ef6\u540d
-dod_dod5015.property.dod_webPlatform.title=Web \u5e73\u53f0
-dod_dod5015.property.dod_webPlatform.description=Web \u5e73\u53f0
-dod_dod5015.property.dod_webSiteName.title=\u7f51\u7ad9\u540d\u79f0
-dod_dod5015.property.dod_webSiteName.description=\u7f51\u7ad9\u540d\u79f0
-dod_dod5015.property.dod_webSiteURL.title=\u7f51\u7ad9 URL
-dod_dod5015.property.dod_webSiteURL.description=\u7f51\u7ad9 URL
-dod_dod5015.property.dod_captureMethod.title=\u6355\u6349\u65b9\u6cd5
-dod_dod5015.property.dod_captureMethod.description=\u6355\u6349\u65b9\u6cd5
-dod_dod5015.property.dod_captureDate.title=\u6355\u6349\u65e5\u671f
-dod_dod5015.property.dod_captureDate.description=\u6355\u6349\u65e5\u671f
-dod_dod5015.property.dod_contact.title=\u8054\u7cfb\u4eba
-dod_dod5015.property.dod_contact.description=\u8054\u7cfb\u4eba
-dod_dod5015.property.dod_contentManagementSystem.title=\u5185\u5bb9\u7ba1\u7406\u7cfb\u7edf
-dod_dod5015.property.dod_contentManagementSystem.description=\u5185\u5bb9\u7ba1\u7406\u7cfb\u7edf
-
+dod_dod5015.description=DOD5015 \u5185\u5bb9\u6a21\u578b
+
+dod_dod5015.type.dod_site.title=DOD5015 \u7ad9\u70b9
+dod_dod5015.type.dod_site.description=DOD5015 \u7ad9\u70b9
+
+dod_dod5015.type.dod_filePlan.title=DOD5015 \u5f52\u7c7b\u65b9\u6848
+dod_dod5015.type.dod_filePlan.description=DOD5015 \u5f52\u7c7b\u65b9\u6848
+
+dod_dod5015.type.dod_recordSeries.title=\u8bb0\u5f55\u7cfb\u5217\uff08\u5df2\u5f03\u7528\uff09
+dod_dod5015.type.dod_recordSeries.description=\u8bb0\u5f55\u7cfb\u5217\uff08\u5df2\u5f03\u7528\uff09
+
+dod_dod5015.aspect.dod_dod5015record.title=DOD5015 \u8bb0\u5f55
+dod_dod5015.aspect.dod_dod5015record.description=DOD5015 \u8bb0\u5f55
+dod_dod5015.property.dod_publicationDate.title=\u53d1\u5e03\u65e5\u671f
+dod_dod5015.property.dod_publicationDate.decription=\u53d1\u5e03\u65e5\u671f
+dod_dod5015.property.dod_originator.title=\u5efa\u7acb\u8005
+dod_dod5015.property.dod_originator.decription=\u5efa\u7acb\u8005
+dod_dod5015.property.dod_originatingOrganization.title=\u8d77\u59cb\u7ec4\u7ec7
+dod_dod5015.property.dod_originatingOrganization.decription=\u8d77\u59cb\u7ec4\u7ec7
+dod_dod5015.property.dod_mediaType.title=\u5a92\u4f53\u7c7b\u578b
+dod_dod5015.property.dod_mediaType.decription=\u5a92\u4f53\u7c7b\u578b
+dod_dod5015.property.dod_format.title=\u683c\u5f0f
+dod_dod5015.property.dod_format.decription=\u683c\u5f0f
+dod_dod5015.property.dod_dateReceived.title=\u63a5\u6536\u65e5\u671f
+dod_dod5015.property.dod_dateReceived.decription=\u63a5\u6536\u65e5\u671f
+dod_dod5015.property.dod_address.title=\u6536\u4ef6\u4eba
+dod_dod5015.property.dod_address.decription=\u6536\u4ef6\u4eba
+dod_dod5015.property.dod_otherAddress.title=\u5176\u4ed6\u6536\u4ef6\u4eba
+dod_dod5015.property.dod_otherAddress.decription=\u5176\u4ed6\u6536\u4ef6\u4eba
+
+dod_dod5015.aspect.dod_scannedRecord.title=\u626b\u63cf\u7684\u8bb0\u5f55
+dod_dod5015.aspect.dod_scannedRecord.description=\u626b\u63cf\u7684\u8bb0\u5f55
+dod_dod5015.property.dod_scannedFormat.title=\u56fe\u50cf\u683c\u5f0f
+dod_dod5015.property.dod_scannedFormat.description=\u56fe\u50cf\u683c\u5f0f
+dod_dod5015.property.dod_scannedFormatVersion.title=\u56fe\u50cf\u683c\u5f0f\u548c\u7248\u672c
+dod_dod5015.property.dod_scannedFormatVersion.description=\u56fe\u50cf\u683c\u5f0f\u548c\u7248\u672c
+dod_dod5015.property.dod_resolutionX.title=\u56fe\u50cf\u5206\u8fa8\u7387 X
+dod_dod5015.property.dod_resolutionX.description=\u56fe\u50cf\u5206\u8fa8\u7387 X
+dod_dod5015.property.dod_resolutionY.title=\u56fe\u50cf\u5206\u8fa8\u7387 Y
+dod_dod5015.property.dod_resolutionY.description=\u56fe\u50cf\u5206\u8fa8\u7387 Y
+dod_dod5015.property.dod_scannedBitDepth.title=\u626b\u63cf\u7684\u4f4d\u6df1
+dod_dod5015.property.dod_scannedBitDepth.description=\u626b\u63cf\u7684\u4f4d\u6df1
+
+dod_dod5015.aspect.dod_pdfRecord.title=PDF \u8bb0\u5f55
+dod_dod5015.aspect.dod_pdfRecord.description=PDF \u8bb0\u5f55
+dod_dod5015.property.dod_producingApplication.title=\u751f\u4ea7\u5e94\u7528\u7a0b\u5e8f
+dod_dod5015.property.dod_producingApplication.description=\u751f\u4ea7\u5e94\u7528\u7a0b\u5e8f
+dod_dod5015.property.dod_producingApplicationVersion.title=\u751f\u4ea7\u5e94\u7528\u7a0b\u5e8f\u7248\u672c
+dod_dod5015.property.dod_producingApplicationVersion.description=\u751f\u4ea7\u5e94\u7528\u7a0b\u5e8f\u7248\u672c
+dod_dod5015.property.dod_pdfVersion.title=PDF \u7248\u672c
+dod_dod5015.property.dod_pdfVersion.description=PDF \u7248\u672c
+dod_dod5015.property.dod_creatingApplication.title=\u521b\u5efa\u5e94\u7528\u7a0b\u5e8f
+dod_dod5015.property.dod_creatingApplication.description=\u521b\u5efa\u5e94\u7528\u7a0b\u5e8f
+dod_dod5015.property.dod_documentSecuritySettings.title=\u6587\u6863\u5b89\u5168\u8bbe\u7f6e
+dod_dod5015.property.dod_documentSecuritySettings.description=\u6587\u6863\u5b89\u5168\u8bbe\u7f6e
+
+dod_dod5015.aspect.dod_digitalPhotographRecord.title=\u6570\u7801\u7167\u7247\u8bb0\u5f55
+dod_dod5015.aspect.dod_digitalPhotographRecord.description=\u6570\u7801\u7167\u7247\u8bb0\u5f55
+dod_dod5015.property.dod_caption.title=\u6807\u9898
+dod_dod5015.property.dod_caption.description=\u6807\u9898
+dod_dod5015.property.dod_photographer.title=\u6444\u5f71\u5e08
+dod_dod5015.property.dod_photographer.description=\u6444\u5f71\u5e08
+dod_dod5015.property.dod_copyright.title=\u7248\u6743
+dod_dod5015.property.dod_copyright.description=\u7248\u6743
+dod_dod5015.property.dod_bitDepth.title=\u4f4d\u6df1
+dod_dod5015.property.dod_bitDepth.description=\u4f4d\u6df1
+dod_dod5015.property.dod_imageSizeX.title=\u56fe\u50cf\u5c3a\u5bf8 X
+dod_dod5015.property.dod_imageSizeX.description=\u56fe\u50cf\u5c3a\u5bf8 X
+dod_dod5015.property.dod_imageSizeY.title=\u56fe\u50cf\u5c3a\u5bf8 Y
+dod_dod5015.property.dod_imageSizeY.description=\u56fe\u50cf\u5c3a\u5bf8 Y
+dod_dod5015.property.dod_imageSource.title=\u56fe\u50cf\u6e90
+dod_dod5015.property.dod_imageSource.description=\u56fe\u50cf\u6e90
+dod_dod5015.property.dod_compression.title=\u538b\u7f29
+dod_dod5015.property.dod_compression.description=\u538b\u7f29
+dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM \u914d\u7f6e\u6587\u4ef6
+dod_dod5015.property.dod_iccIcmProfile.description=ICC/ICM \u914d\u7f6e\u6587\u4ef6
+dod_dod5015.property.dod_exifInformation.title=EXIF \u4fe1\u606f
+dod_dod5015.property.dod_exifInformation.description=EXIF \u4fe1\u606f
+
+dod_dod5015.aspect.dod_webRecord.title=Web \u8bb0\u5f55
+dod_dod5015.aspect.dod_webRecord.description=Web \u8bb0\u5f55
+dod_dod5015.property.dod_webFileName.title=Web \u6587\u4ef6\u540d
+dod_dod5015.property.dod_webFileName.description=Web \u6587\u4ef6\u540d
+dod_dod5015.property.dod_webPlatform.title=Web \u5e73\u53f0
+dod_dod5015.property.dod_webPlatform.description=Web \u5e73\u53f0
+dod_dod5015.property.dod_webSiteName.title=\u7f51\u7ad9\u540d\u79f0
+dod_dod5015.property.dod_webSiteName.description=\u7f51\u7ad9\u540d\u79f0
+dod_dod5015.property.dod_webSiteURL.title=\u7f51\u7ad9 URL
+dod_dod5015.property.dod_webSiteURL.description=\u7f51\u7ad9 URL
+dod_dod5015.property.dod_captureMethod.title=\u6355\u6349\u65b9\u6cd5
+dod_dod5015.property.dod_captureMethod.description=\u6355\u6349\u65b9\u6cd5
+dod_dod5015.property.dod_captureDate.title=\u6355\u6349\u65e5\u671f
+dod_dod5015.property.dod_captureDate.description=\u6355\u6349\u65e5\u671f
+dod_dod5015.property.dod_contact.title=\u8054\u7cfb\u4eba
+dod_dod5015.property.dod_contact.description=\u8054\u7cfb\u4eba
+dod_dod5015.property.dod_contentManagementSystem.title=\u5185\u5bb9\u7ba1\u7406\u7cfb\u7edf
+dod_dod5015.property.dod_contentManagementSystem.description=\u5185\u5bb9\u7ba1\u7406\u7cfb\u7edf
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015.properties
index ae0fd1111b..23d5952dfc 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015.properties
@@ -1,8 +1,8 @@
-# Classified Records Capabilities
-capability.group.classifiedRecords.title=Classified Records
-capability.UpdateClassificationDates.title=Update Classification Dates
-capability.CreateModifyDestroyClassificationGuides.title=Create Modify Destroy Classification Guides
-capability.UpgradeDowngradeAndDeclassifyRecords.title=Upgrade Downgrade and Declassify Records
-capability.UpdateExemptionCategories.title=Update Exemption Categories
-capability.MapClassificationGuideMetadata.title=Map Classification Guide Metadata
+# Classified Records Capabilities
+capability.group.classifiedRecords.title=Classified Records
+capability.UpdateClassificationDates.title=Update Classification Dates
+capability.CreateModifyDestroyClassificationGuides.title=Create Modify Destroy Classification Guides
+capability.UpgradeDowngradeAndDeclassifyRecords.title=Upgrade Downgrade and Declassify Records
+capability.UpdateExemptionCategories.title=Update Exemption Categories
+capability.MapClassificationGuideMetadata.title=Map Classification Guide Metadata
capability.CreateModifyDestroyTimeframes.title=Create Modify Destroy Time Frames
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_de.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_de.properties
index 7d3c29ba1d..88de8c3e0e 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_de.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_de.properties
@@ -1,8 +1,8 @@
-# Classified Records Capabilities
-capability.group.classifiedRecords.title=Klassifizierte Records
-capability.UpdateClassificationDates.title=Klassifizierungsdaten aktualisieren
-capability.CreateModifyDestroyClassificationGuides.title=Klassifizierungsleitfaden erstellen/\u00e4ndern/vernichten
-capability.UpgradeDowngradeAndDeclassifyRecords.title=Records h\u00f6her-/herunterstufen und ihre Klassifizierung aufheben
-capability.UpdateExemptionCategories.title=Ausnahmekategorien aktualisieren
-capability.MapClassificationGuideMetadata.title=Metadaten f\u00fcr Klassifizierungsleitfaden zuordnen
+# Classified Records Capabilities
+capability.group.classifiedRecords.title=Klassifizierte Records
+capability.UpdateClassificationDates.title=Klassifizierungsdaten aktualisieren
+capability.CreateModifyDestroyClassificationGuides.title=Klassifizierungsleitfaden erstellen/\u00e4ndern/vernichten
+capability.UpgradeDowngradeAndDeclassifyRecords.title=Records h\u00f6her-/herunterstufen und ihre Klassifizierung aufheben
+capability.UpdateExemptionCategories.title=Ausnahmekategorien aktualisieren
+capability.MapClassificationGuideMetadata.title=Metadaten f\u00fcr Klassifizierungsleitfaden zuordnen
capability.CreateModifyDestroyTimeframes.title=Zeitrahmen erstellen/\u00e4ndern/vernichten
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_es.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_es.properties
index d65adbd457..18a13ca2e5 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_es.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_es.properties
@@ -1,8 +1,8 @@
-# Classified Records Capabilities
-capability.group.classifiedRecords.title=Documentos de archivo clasificados
-capability.UpdateClassificationDates.title=Actualizar fechas de clasificaci\u00f3n
-capability.CreateModifyDestroyClassificationGuides.title=Crear Modificar Destruir gu\u00edas de clasificaci\u00f3n
-capability.UpgradeDowngradeAndDeclassifyRecords.title=Actualizar, degradar y desclasificar documentos de archivo
-capability.UpdateExemptionCategories.title=Actualizar categor\u00edas de exenci\u00f3n
-capability.MapClassificationGuideMetadata.title=Asignar metadatos de gu\u00eda de clasificaci\u00f3n
+# Classified Records Capabilities
+capability.group.classifiedRecords.title=Documentos de archivo clasificados
+capability.UpdateClassificationDates.title=Actualizar fechas de clasificaci\u00f3n
+capability.CreateModifyDestroyClassificationGuides.title=Crear Modificar Destruir gu\u00edas de clasificaci\u00f3n
+capability.UpgradeDowngradeAndDeclassifyRecords.title=Actualizar, degradar y desclasificar documentos de archivo
+capability.UpdateExemptionCategories.title=Actualizar categor\u00edas de exenci\u00f3n
+capability.MapClassificationGuideMetadata.title=Asignar metadatos de gu\u00eda de clasificaci\u00f3n
capability.CreateModifyDestroyTimeframes.title=Crear Modificar Destruir plazos de tiempo
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_fr.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_fr.properties
index 5bc697184c..c20654908c 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_fr.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_fr.properties
@@ -1,8 +1,8 @@
-# Classified Records Capabilities
-capability.group.classifiedRecords.title=Document d'archives class\u00e9s
-capability.UpdateClassificationDates.title=Mettre \u00e0 jour les dates de classement
-capability.CreateModifyDestroyClassificationGuides.title=Cr\u00e9er Modifier D\u00e9truire des guides de classement
-capability.UpgradeDowngradeAndDeclassifyRecords.title=Mettre \u00e0 jour R\u00e9trograder et D\u00e9classer des documents d'archives
-capability.UpdateExemptionCategories.title=Mettre \u00e0 jour les cat\u00e9gories d'exemption
-capability.MapClassificationGuideMetadata.title=Mapper les m\u00e9tadonn\u00e9es de guides de classement
+# Classified Records Capabilities
+capability.group.classifiedRecords.title=Document d'archives class\u00e9s
+capability.UpdateClassificationDates.title=Mettre \u00e0 jour les dates de classement
+capability.CreateModifyDestroyClassificationGuides.title=Cr\u00e9er Modifier D\u00e9truire des guides de classement
+capability.UpgradeDowngradeAndDeclassifyRecords.title=Mettre \u00e0 jour R\u00e9trograder et D\u00e9classer des documents d'archives
+capability.UpdateExemptionCategories.title=Mettre \u00e0 jour les cat\u00e9gories d'exemption
+capability.MapClassificationGuideMetadata.title=Mapper les m\u00e9tadonn\u00e9es de guides de classement
capability.CreateModifyDestroyTimeframes.title=Cr\u00e9er Modifier D\u00e9truire des d\u00e9lais
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_it.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_it.properties
index c098e97e8a..59bfcf86d6 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_it.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_it.properties
@@ -1,8 +1,8 @@
-# Classified Records Capabilities
-capability.group.classifiedRecords.title=Record classificati
-capability.UpdateClassificationDates.title=Aggiorna date di classificazione
-capability.CreateModifyDestroyClassificationGuides.title=Crea Modifica Elimina definitivamente guide di classificazione
-capability.UpgradeDowngradeAndDeclassifyRecords.title=Upgrade Downgrade e Declassifica record
-capability.UpdateExemptionCategories.title=Aggiorna categorie di esenzione
-capability.MapClassificationGuideMetadata.title=Esegui il mapping dei metadati della guida di classificazione
+# Classified Records Capabilities
+capability.group.classifiedRecords.title=Record classificati
+capability.UpdateClassificationDates.title=Aggiorna date di classificazione
+capability.CreateModifyDestroyClassificationGuides.title=Crea Modifica Elimina definitivamente guide di classificazione
+capability.UpgradeDowngradeAndDeclassifyRecords.title=Upgrade Downgrade e Declassifica record
+capability.UpdateExemptionCategories.title=Aggiorna categorie di esenzione
+capability.MapClassificationGuideMetadata.title=Esegui il mapping dei metadati della guida di classificazione
capability.CreateModifyDestroyTimeframes.title=Crea Modifica Elimina definitivamente intervalli di tempo
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_ja.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_ja.properties
index de31d900f5..fdf2104d71 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_ja.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_ja.properties
@@ -1,8 +1,8 @@
-# Classified Records Capabilities
-capability.group.classifiedRecords.title=\u5206\u985e\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
-capability.UpdateClassificationDates.title=\u5206\u985e\u65e5\u306e\u66f4\u65b0
-capability.CreateModifyDestroyClassificationGuides.title=\u5206\u985e\u30ac\u30a4\u30c9\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
-capability.UpgradeDowngradeAndDeclassifyRecords.title=\u30c0\u30a6\u30f3\u30b0\u30ec\u30fc\u30c9\u306e\u66f4\u65b0\u3068\u30ec\u30b3\u30fc\u30c9\u306e\u5206\u985e\u89e3\u9664
-capability.UpdateExemptionCategories.title=\u9664\u5916\u30ab\u30c6\u30b4\u30ea\u306e\u66f4\u65b0
-capability.MapClassificationGuideMetadata.title=\u5206\u985e\u30ac\u30a4\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u30de\u30c3\u30d4\u30f3\u30b0
+# Classified Records Capabilities
+capability.group.classifiedRecords.title=\u5206\u985e\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
+capability.UpdateClassificationDates.title=\u5206\u985e\u65e5\u306e\u66f4\u65b0
+capability.CreateModifyDestroyClassificationGuides.title=\u5206\u985e\u30ac\u30a4\u30c9\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
+capability.UpgradeDowngradeAndDeclassifyRecords.title=\u30c0\u30a6\u30f3\u30b0\u30ec\u30fc\u30c9\u306e\u66f4\u65b0\u3068\u30ec\u30b3\u30fc\u30c9\u306e\u5206\u985e\u89e3\u9664
+capability.UpdateExemptionCategories.title=\u9664\u5916\u30ab\u30c6\u30b4\u30ea\u306e\u66f4\u65b0
+capability.MapClassificationGuideMetadata.title=\u5206\u985e\u30ac\u30a4\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u30de\u30c3\u30d4\u30f3\u30b0
capability.CreateModifyDestroyTimeframes.title=\u30bf\u30a4\u30e0\u30d5\u30ec\u30fc\u30e0\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_nb.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_nb.properties
index 8afbcbda37..2b2676732c 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_nb.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_nb.properties
@@ -1,8 +1,8 @@
-# Classified Records Capabilities
-capability.group.classifiedRecords.title=Klassifiserte oppf\u00f8ringer
-capability.UpdateClassificationDates.title=Oppdater klassifiseringdatoer
-capability.CreateModifyDestroyClassificationGuides.title=Opprett Endre Destruer klassifiseringeveiledninger
-capability.UpgradeDowngradeAndDeclassifyRecords.title=Oppgrader, last ned og deklassifiser oppf\u00f8ringer
-capability.UpdateExemptionCategories.title=Oppdater unntakskategorier
-capability.MapClassificationGuideMetadata.title=Koble klassifiseringsveiledning metadata
+# Classified Records Capabilities
+capability.group.classifiedRecords.title=Klassifiserte oppf\u00f8ringer
+capability.UpdateClassificationDates.title=Oppdater klassifiseringdatoer
+capability.CreateModifyDestroyClassificationGuides.title=Opprett Endre Destruer klassifiseringeveiledninger
+capability.UpgradeDowngradeAndDeclassifyRecords.title=Oppgrader, last ned og deklassifiser oppf\u00f8ringer
+capability.UpdateExemptionCategories.title=Oppdater unntakskategorier
+capability.MapClassificationGuideMetadata.title=Koble klassifiseringsveiledning metadata
capability.CreateModifyDestroyTimeframes.title=Opprett Endre Destruer tidsrammer
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_nl.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_nl.properties
index 3933dd2240..92c80ba122 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_nl.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_nl.properties
@@ -1,8 +1,8 @@
-# Classified Records Capabilities
-capability.group.classifiedRecords.title=Niet geclassificeerde records
-capability.UpdateClassificationDates.title=Classificatiedata bijwerken
-capability.CreateModifyDestroyClassificationGuides.title=Classificatiegidsen maken aanpassen vernietigen
-capability.UpgradeDowngradeAndDeclassifyRecords.title=Records upgraden, downgraden en declassificeren
-capability.UpdateExemptionCategories.title=Uitzonderingscategorie\u00ebn bijwerken
-capability.MapClassificationGuideMetadata.title=Metagegevens classificatiegids toewijzen
+# Classified Records Capabilities
+capability.group.classifiedRecords.title=Niet geclassificeerde records
+capability.UpdateClassificationDates.title=Classificatiedata bijwerken
+capability.CreateModifyDestroyClassificationGuides.title=Classificatiegidsen maken aanpassen vernietigen
+capability.UpgradeDowngradeAndDeclassifyRecords.title=Records upgraden, downgraden en declassificeren
+capability.UpdateExemptionCategories.title=Uitzonderingscategorie\u00ebn bijwerken
+capability.MapClassificationGuideMetadata.title=Metagegevens classificatiegids toewijzen
capability.CreateModifyDestroyTimeframes.title=Tijdsperiodes maken aanpassen vernietigen
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_pt_BR.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_pt_BR.properties
index c229ea5a79..7ea8f652e5 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_pt_BR.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_pt_BR.properties
@@ -1,8 +1,8 @@
-# Classified Records Capabilities
-capability.group.classifiedRecords.title=Documentos arquiv\u00edsticos classificados
-capability.UpdateClassificationDates.title=Atualizar datas de classifica\u00e7\u00e3o
-capability.CreateModifyDestroyClassificationGuides.title=Criar Modificar Destruir guias de classifica\u00e7\u00e3o
-capability.UpgradeDowngradeAndDeclassifyRecords.title=Atualizar Downgrade e Desclassificar documentos arquiv\u00edsticos
-capability.UpdateExemptionCategories.title=Atualizar categorias de isen\u00e7\u00e3o
-capability.MapClassificationGuideMetadata.title=Mapear metadados do guia de classifica\u00e7\u00e3o
+# Classified Records Capabilities
+capability.group.classifiedRecords.title=Documentos arquiv\u00edsticos classificados
+capability.UpdateClassificationDates.title=Atualizar datas de classifica\u00e7\u00e3o
+capability.CreateModifyDestroyClassificationGuides.title=Criar Modificar Destruir guias de classifica\u00e7\u00e3o
+capability.UpgradeDowngradeAndDeclassifyRecords.title=Atualizar Downgrade e Desclassificar documentos arquiv\u00edsticos
+capability.UpdateExemptionCategories.title=Atualizar categorias de isen\u00e7\u00e3o
+capability.MapClassificationGuideMetadata.title=Mapear metadados do guia de classifica\u00e7\u00e3o
capability.CreateModifyDestroyTimeframes.title=Criar Modificar Destruir per\u00edodos de tempo
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_ru.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_ru.properties
index 96a2e98583..d369d06dcb 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_ru.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_ru.properties
@@ -1,8 +1,8 @@
-# Classified Records Capabilities
-capability.group.classifiedRecords.title=\u041a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-capability.UpdateClassificationDates.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u0430\u0442\u044b \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438
-capability.CreateModifyDestroyClassificationGuides.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0438 \u043f\u043e \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438
-capability.UpgradeDowngradeAndDeclassifyRecords.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c, \u043e\u0442\u043a\u0430\u0442\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u043a \u0431\u043e\u043b\u0435\u0435 \u0440\u0430\u043d\u043d\u0438\u043c \u0438 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-capability.UpdateExemptionCategories.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0439
-capability.MapClassificationGuideMetadata.title=\u0421\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0439 \u043f\u043e \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438
+# Classified Records Capabilities
+capability.group.classifiedRecords.title=\u041a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+capability.UpdateClassificationDates.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u0430\u0442\u044b \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438
+capability.CreateModifyDestroyClassificationGuides.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0438 \u043f\u043e \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438
+capability.UpgradeDowngradeAndDeclassifyRecords.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c, \u043e\u0442\u043a\u0430\u0442\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u043a \u0431\u043e\u043b\u0435\u0435 \u0440\u0430\u043d\u043d\u0438\u043c \u0438 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+capability.UpdateExemptionCategories.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0439
+capability.MapClassificationGuideMetadata.title=\u0421\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0439 \u043f\u043e \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438
capability.CreateModifyDestroyTimeframes.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u044b
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_zh_CN.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_zh_CN.properties
index 6c5d96c46a..7a88064b24 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_zh_CN.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015_zh_CN.properties
@@ -1,8 +1,8 @@
-# Classified Records Capabilities
-capability.group.classifiedRecords.title=\u5206\u7c7b\u7684\u8bb0\u5f55
-capability.UpdateClassificationDates.title=\u66f4\u65b0\u5206\u7c7b\u65e5\u671f
-capability.CreateModifyDestroyClassificationGuides.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u5206\u7c7b\u6307\u5357
-capability.UpgradeDowngradeAndDeclassifyRecords.title=\u8bb0\u5f55\u7684\u5347\u7ea7\u3001\u964d\u7ea7\u4ee5\u53ca\u53d6\u6d88\u5206\u7c7b
-capability.UpdateExemptionCategories.title=\u66f4\u65b0\u8c41\u514d\u7c7b\u522b
-capability.MapClassificationGuideMetadata.title=\u6620\u5c04\u5206\u7c7b\u6307\u5357\u5143\u6570\u636e
+# Classified Records Capabilities
+capability.group.classifiedRecords.title=\u5206\u7c7b\u7684\u8bb0\u5f55
+capability.UpdateClassificationDates.title=\u66f4\u65b0\u5206\u7c7b\u65e5\u671f
+capability.CreateModifyDestroyClassificationGuides.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u5206\u7c7b\u6307\u5357
+capability.UpgradeDowngradeAndDeclassifyRecords.title=\u8bb0\u5f55\u7684\u5347\u7ea7\u3001\u964d\u7ea7\u4ee5\u53ca\u53d6\u6d88\u5206\u7c7b
+capability.UpdateExemptionCategories.title=\u66f4\u65b0\u8c41\u514d\u7c7b\u522b
+capability.MapClassificationGuideMetadata.title=\u6620\u5c04\u5206\u7c7b\u6307\u5357\u5143\u6570\u636e
capability.CreateModifyDestroyTimeframes.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u65f6\u95f4\u8303\u56f4
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/extended-repository-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/extended-repository-context.xml
index 27551507da..ea70bd391d 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/extended-repository-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/extended-repository-context.xml
@@ -1,265 +1,265 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.repo.security.permissions.impl.ExtendedPermissionService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.service.cmr.security.PermissionService.getOwnerAuthority=ACL_ALLOW
- org.alfresco.service.cmr.security.PermissionService.getAllAuthorities=ACL_ALLOW
- org.alfresco.service.cmr.security.PermissionService.getAllPermission=ACL_ALLOW
- org.alfresco.service.cmr.security.PermissionService.getPermissions=ACL_NODE.0.sys:base.ReadPermissions
- org.alfresco.service.cmr.security.PermissionService.getAllSetPermissions=ACL_NODE.0.sys:base.ReadPermissions
- org.alfresco.service.cmr.security.PermissionService.getSettablePermissions=ACL_ALLOW
- org.alfresco.service.cmr.security.PermissionService.hasPermission=ACL_ALLOW
- org.alfresco.service.cmr.security.PermissionService.getReaders=ACL_METHOD.ROLE_ADMINISTRATOR
- org.alfresco.repo.security.permissions.impl.ExtendedPermissionService.getWriters=ACL_METHOD.ROLE_ADMINISTRATOR
- org.alfresco.repo.security.permissions.impl.ExtendedPermissionService.getReadersAndWriters=ACL_METHOD.ROLE_ADMINISTRATOR
- org.alfresco.service.cmr.security.PermissionService.deletePermissions=ACL_NODE.0.sys:base.ChangePermissions
- org.alfresco.service.cmr.security.PermissionService.deletePermission=ACL_NODE.0.sys:base.ChangePermissions
- org.alfresco.service.cmr.security.PermissionService.setPermission=ACL_NODE.0.sys:base.ChangePermissions
- org.alfresco.service.cmr.security.PermissionService.setInheritParentPermissions=ACL_NODE.0.sys:base.ChangePermissions
- org.alfresco.service.cmr.security.PermissionService.getInheritParentPermissions=ACL_ALLOW
- org.alfresco.service.cmr.security.PermissionService.clearPermission=ACL_NODE.0.sys:base.ChangePermissions
- org.alfresco.service.cmr.security.PermissionService.*=ACL_DENY
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.writersTransactionalCache
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${rm.autocompletesuggestion.maxsuggestions.node}
-
-
-
-
-
-
-
-
- ${rm.autocompletesuggestion.nodeParameterSuggester.aspectsAndTypes}
-
-
-
-
-
-
- ${rm.autocompletesuggestion.maxsuggestions.date}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- false
-
-
-
-
- ${rm.rule.runasadmin}
-
-
-
-
-
-
-
-
-
-
- org.alfresco.repo.forms.FormService.getForm=ACL_ALLOW
- org.alfresco.repo.forms.FormService.saveForm=ACL_ALLOW
- org.alfresco.repo.forms.FormService.*=ACL_DENY
-
-
-
-
-
-
- search
-
-
-
-
-
-
-
-
-
-
-
- ${spaces.store}
-
-
-
-
-
- true
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.repo.security.permissions.impl.ExtendedPermissionService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.service.cmr.security.PermissionService.getOwnerAuthority=ACL_ALLOW
+ org.alfresco.service.cmr.security.PermissionService.getAllAuthorities=ACL_ALLOW
+ org.alfresco.service.cmr.security.PermissionService.getAllPermission=ACL_ALLOW
+ org.alfresco.service.cmr.security.PermissionService.getPermissions=ACL_NODE.0.sys:base.ReadPermissions
+ org.alfresco.service.cmr.security.PermissionService.getAllSetPermissions=ACL_NODE.0.sys:base.ReadPermissions
+ org.alfresco.service.cmr.security.PermissionService.getSettablePermissions=ACL_ALLOW
+ org.alfresco.service.cmr.security.PermissionService.hasPermission=ACL_ALLOW
+ org.alfresco.service.cmr.security.PermissionService.getReaders=ACL_METHOD.ROLE_ADMINISTRATOR
+ org.alfresco.repo.security.permissions.impl.ExtendedPermissionService.getWriters=ACL_METHOD.ROLE_ADMINISTRATOR
+ org.alfresco.repo.security.permissions.impl.ExtendedPermissionService.getReadersAndWriters=ACL_METHOD.ROLE_ADMINISTRATOR
+ org.alfresco.service.cmr.security.PermissionService.deletePermissions=ACL_NODE.0.sys:base.ChangePermissions
+ org.alfresco.service.cmr.security.PermissionService.deletePermission=ACL_NODE.0.sys:base.ChangePermissions
+ org.alfresco.service.cmr.security.PermissionService.setPermission=ACL_NODE.0.sys:base.ChangePermissions
+ org.alfresco.service.cmr.security.PermissionService.setInheritParentPermissions=ACL_NODE.0.sys:base.ChangePermissions
+ org.alfresco.service.cmr.security.PermissionService.getInheritParentPermissions=ACL_ALLOW
+ org.alfresco.service.cmr.security.PermissionService.clearPermission=ACL_NODE.0.sys:base.ChangePermissions
+ org.alfresco.service.cmr.security.PermissionService.*=ACL_DENY
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.writersTransactionalCache
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${rm.autocompletesuggestion.maxsuggestions.node}
+
+
+
+
+
+
+
+
+ ${rm.autocompletesuggestion.nodeParameterSuggester.aspectsAndTypes}
+
+
+
+
+
+
+ ${rm.autocompletesuggestion.maxsuggestions.date}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+
+
+ ${rm.rule.runasadmin}
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.repo.forms.FormService.getForm=ACL_ALLOW
+ org.alfresco.repo.forms.FormService.saveForm=ACL_ALLOW
+ org.alfresco.repo.forms.FormService.*=ACL_DENY
+
+
+
+
+
+
+ search
+
+
+
+
+
+
+
+
+
+
+
+ ${spaces.store}
+
+
+
+
+
+ true
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/log4j.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/log4j.properties
index 83e724394e..dbdb7913fc 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/log4j.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/log4j.properties
@@ -1,59 +1,59 @@
-#
-# Warnings
-#
-log4j.logger.org.alfresco.module.org_alfresco_module_rm.caveat=warn
-log4j.logger.org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityPostProcessor=warn
-
-#
-# Module patches
-#
-log4j.logger.org.alfresco.module.org_alfresco_module_rm.patch=info
-
-#
-# Set to 'debug' to see details of capability failures when AccessDenied is thrown. May be
-# removed to enhance performance.
-#
-log4j.logger.org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityInterceptor=debug
-
-#
-# RM permission debug
-#
-#log4j.logger.org.alfresco.module.org_alfresco_module_rm.capability.RMEntryVoter=debug
-#log4j.logger.org.alfresco.module.org_alfresco_module_rm.capability.RMAfterInvocationProvider=debug
-#log4j.logger.org.alfresco.module.org_alfresco_module_rm.capability.declarative=debug
-
-#
-# RM Audit service debug
-#
-#log4j.logger.org.alfresco.module.org_alfresco_module_rm.audit.RecordsManagementAuditService=debug
-
-#
-# Job debug
-#
-#log4j.logger.org.alfresco.module.org_alfresco_module_rm.job=debug
-
-#
-# Script logging level
-#
-log4j.logger.org.alfresco.repo.jscript.ScriptLogger=error
-
-#
-# Behaviour debug
-#
-log4j.logger.org.alfresco.repo.policy.annotation.AnnotatedBehaviourPostProcessor=info
-log4j.logger.org.alfresco.module.org_alfresco_module_rm.behaviour.BaseBehaviourBean=info
-
-#
-# Patch debug
-#
-log4j.logger.org.alfresco.module.org_alfresco_module_rm.patch=info
-#
-# RM Audit service debug
-#
-#log4j.logger.org.alfresco.module.org_alfresco_module_rm.audit.RecordsManagementAuditService=debug
-
-#
-# Job debug
-#
-#log4j.logger.org.alfresco.module.org_alfresco_module_rm.job=debug
+#
+# Warnings
+#
+log4j.logger.org.alfresco.module.org_alfresco_module_rm.caveat=warn
+log4j.logger.org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityPostProcessor=warn
+
+#
+# Module patches
+#
+log4j.logger.org.alfresco.module.org_alfresco_module_rm.patch=info
+
+#
+# Set to 'debug' to see details of capability failures when AccessDenied is thrown. May be
+# removed to enhance performance.
+#
+log4j.logger.org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityInterceptor=debug
+
+#
+# RM permission debug
+#
+#log4j.logger.org.alfresco.module.org_alfresco_module_rm.capability.RMEntryVoter=debug
+#log4j.logger.org.alfresco.module.org_alfresco_module_rm.capability.RMAfterInvocationProvider=debug
+#log4j.logger.org.alfresco.module.org_alfresco_module_rm.capability.declarative=debug
+
+#
+# RM Audit service debug
+#
+#log4j.logger.org.alfresco.module.org_alfresco_module_rm.audit.RecordsManagementAuditService=debug
+
+#
+# Job debug
+#
+#log4j.logger.org.alfresco.module.org_alfresco_module_rm.job=debug
+
+#
+# Script logging level
+#
+log4j.logger.org.alfresco.repo.jscript.ScriptLogger=error
+
+#
+# Behaviour debug
+#
+log4j.logger.org.alfresco.repo.policy.annotation.AnnotatedBehaviourPostProcessor=info
+log4j.logger.org.alfresco.module.org_alfresco_module_rm.behaviour.BaseBehaviourBean=info
+
+#
+# Patch debug
+#
+log4j.logger.org.alfresco.module.org_alfresco_module_rm.patch=info
+#
+# RM Audit service debug
+#
+#log4j.logger.org.alfresco.module.org_alfresco_module_rm.audit.RecordsManagementAuditService=debug
+
+#
+# Job debug
+#
+#log4j.logger.org.alfresco.module.org_alfresco_module_rm.job=debug
log4j.logger.org.alfresco.repo.web.scripts.roles.DynamicAuthoritiesGet=info
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service.properties
index d18b73b95a..2c89111f41 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service.properties
@@ -1,42 +1,42 @@
-rm.action.not-defined=The records management action {0} hasn't been defined.
-rm.action.no-implicit-noderef=There was a system error so the action {0} might not be successful.
-rm.action.record-not-declared=The retention action {0} couldn't be performed, because the record {1} isn't complete.
-rm.action.expected-record-level=The retention action {0} couldn't be performed, because {1} isn't a record.
-rm.action.not-all-records-declared=The retention action {0} couldn't be performed, because not all the records in the record folder are complete. (actionedUponNodeRef={1})
-rm.action.not-eligible=The record or record folder {1} isn't yet ready for retention action {0}.
-rm.action.no-disposition-instructions=The retention action {0} couldn't be performed, because no retention instructions could be found. (nodeRef={1})
-rm.action.no-disposition-lisfecycle-set=The retention action {0} couldn't be performed, because there's no available retention life-cycle set. (nodeRef={1})
-rm.action.next-disp-not-set=The retention action {0} couldn't be performed, because the next retention action isn't set. (nodeRef={1})
-rm.action.not-next-disp=The retention action {0} couldn't be performed, because this isn't the next retention action for this record or record folder. (nodeRef={1})
-rm.action.not-record-folder=The retention action {0} couldn't be performed, because {1} isn't a record folder.
-rm.action.actioned-upon-not-record=The action {0} can't be performed because {1} isn't a record.
-rm.action.custom-aspect-not-recognised=The custom type can't be applied because it's not recognised. (customAspect={0})
-rm.action.event-no-disp-lc=The event {0} can't be completed because it's not defined on the retention lifecycle.
-rm.action.undeclared-only-records=Only records can be completed. (nodeRef={0})
-rm.action.no-declare-mand-prop=You need to set all the record's mandatory properties before you can complete the record.
-rm.action.ghosted-prop-update=You can't update the properties of a previously destroyed record.
-rm.action.valid-date-disp-asof=Enter a valid date for the retention action as of date.
-rm.action.disp-asof-lifecycle-applied=You can't edit the retention as of date for a record or record folder which has a lifecycle applied.
-rm.action.hold-edit-reason-none=You can't edit the hold reason because the hold was created without a reason. Try recreating the hold.
-rm.action.hold-edit-type=You can't edit the hold reason for {1} because it isn't a hold.
-rm.action.specify-avlid-date=Enter a valid date for the review as of date.
-rm.action.review-details-only=You can only edit the review details of vital records.
-rm.action.freeze-no-reason=You can't hold a record without a reason. Add a reason to the hold.
-rm.action.freeze-only-records-folders=You can only hold records or record folders.
-rm.action.no-open-record-folder=You can't reopen {0} because it's not a record folder.
-rm.action.not-hold-type=You can't carry out the action on {1} because it isn't a hold.
-rm.action.no-read-mime-message=The filetype message couldn't be read because {0}.
-rm.action.email-declared=We couldn't split the email because the record is complete. (actionedUponNodeRef={0})
-rm.action.email-not-record=We couldn't split the email because the file, folder, or category isn't a record. (actionedUponNodeRef={0})
-rm.action.email-create-child-assoc=We couldn't create a custom child association.
-rm.action.node-already-transfer=The file, folder, or category is already being transferred.
-rm.action.node-not-transfer=The file, folder, or category isn't a transfer object.
-rm.action.undo-not-last=You can't undo the cut off because the last retention action wasn't cut off.
-rm.action.records_only_undeclared=You can only complete records.
-rm.action.event-not-undone=You can't undo the event {0} because it's not defined on the retention lifecycle.
-rm.action.node-not-record-category=You can't create a retention schedule for ({0}) because it's not a record category.
-rm.action.parameter-not-supplied=Add a ''{0}'' to continue.
-rm.action.delete-not-hold-type=We couldn't delete the hold because {1} isn't of type {0}.
-rm.action.cast-to-rm-type=You can't upload a custom folder type to the records management file plan.
-rm.action.record-folder-create=You can't create a record folder in another record folder.
-
+rm.action.not-defined=The records management action {0} hasn't been defined.
+rm.action.no-implicit-noderef=There was a system error so the action {0} might not be successful.
+rm.action.record-not-declared=The retention action {0} couldn't be performed, because the record {1} isn't complete.
+rm.action.expected-record-level=The retention action {0} couldn't be performed, because {1} isn't a record.
+rm.action.not-all-records-declared=The retention action {0} couldn't be performed, because not all the records in the record folder are complete. (actionedUponNodeRef={1})
+rm.action.not-eligible=The record or record folder {1} isn't yet ready for retention action {0}.
+rm.action.no-disposition-instructions=The retention action {0} couldn't be performed, because no retention instructions could be found. (nodeRef={1})
+rm.action.no-disposition-lisfecycle-set=The retention action {0} couldn't be performed, because there's no available retention life-cycle set. (nodeRef={1})
+rm.action.next-disp-not-set=The retention action {0} couldn't be performed, because the next retention action isn't set. (nodeRef={1})
+rm.action.not-next-disp=The retention action {0} couldn't be performed, because this isn't the next retention action for this record or record folder. (nodeRef={1})
+rm.action.not-record-folder=The retention action {0} couldn't be performed, because {1} isn't a record folder.
+rm.action.actioned-upon-not-record=The action {0} can't be performed because {1} isn't a record.
+rm.action.custom-aspect-not-recognised=The custom type can't be applied because it's not recognised. (customAspect={0})
+rm.action.event-no-disp-lc=The event {0} can't be completed because it's not defined on the retention lifecycle.
+rm.action.undeclared-only-records=Only records can be completed. (nodeRef={0})
+rm.action.no-declare-mand-prop=You need to set all the record's mandatory properties before you can complete the record.
+rm.action.ghosted-prop-update=You can't update the properties of a previously destroyed record.
+rm.action.valid-date-disp-asof=Enter a valid date for the retention action as of date.
+rm.action.disp-asof-lifecycle-applied=You can't edit the retention as of date for a record or record folder which has a lifecycle applied.
+rm.action.hold-edit-reason-none=You can't edit the hold reason because the hold was created without a reason. Try recreating the hold.
+rm.action.hold-edit-type=You can't edit the hold reason for {1} because it isn't a hold.
+rm.action.specify-avlid-date=Enter a valid date for the review as of date.
+rm.action.review-details-only=You can only edit the review details of vital records.
+rm.action.freeze-no-reason=You can't hold a record without a reason. Add a reason to the hold.
+rm.action.freeze-only-records-folders=You can only hold records or record folders.
+rm.action.no-open-record-folder=You can't reopen {0} because it's not a record folder.
+rm.action.not-hold-type=You can't carry out the action on {1} because it isn't a hold.
+rm.action.no-read-mime-message=The filetype message couldn't be read because {0}.
+rm.action.email-declared=We couldn't split the email because the record is complete. (actionedUponNodeRef={0})
+rm.action.email-not-record=We couldn't split the email because the file, folder, or category isn't a record. (actionedUponNodeRef={0})
+rm.action.email-create-child-assoc=We couldn't create a custom child association.
+rm.action.node-already-transfer=The file, folder, or category is already being transferred.
+rm.action.node-not-transfer=The file, folder, or category isn't a transfer object.
+rm.action.undo-not-last=You can't undo the cut off because the last retention action wasn't cut off.
+rm.action.records_only_undeclared=You can only complete records.
+rm.action.event-not-undone=You can't undo the event {0} because it's not defined on the retention lifecycle.
+rm.action.node-not-record-category=You can't create a retention schedule for ({0}) because it's not a record category.
+rm.action.parameter-not-supplied=Add a ''{0}'' to continue.
+rm.action.delete-not-hold-type=We couldn't delete the hold because {1} isn't of type {0}.
+rm.action.cast-to-rm-type=You can't upload a custom folder type to the records management file plan.
+rm.action.record-folder-create=You can't create a record folder in another record folder.
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_de.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_de.properties
index 8b3e0607ca..375adf65c2 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_de.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_de.properties
@@ -1,42 +1,42 @@
-rm.action.not-defined=Die Records Management Aktion {0} wurde nicht definiert.
-rm.action.no-implicit-noderef=Es ist ein Systemfehler aufgetreten, sodass die Aktion {0} m\u00f6glicherweise nicht erfolgreich sein wird.
-rm.action.record-not-declared=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da der Record {1} unvollst\u00e4ndig ist.
-rm.action.expected-record-level=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da {1} kein Record ist.
-rm.action.not-all-records-declared=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da nicht alle Records im Record-Ordner abgeschlossen sind. (actionedUponNodeRef={1})
-rm.action.not-eligible=Record oder Record-Ordner {1} ist noch nicht bereit f\u00fcr die Aufbewahrungsaktion {0}.
-rm.action.no-disposition-instructions=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da keine Aufbewahrungsanweisungen gefunden wurden. (nodeRef={1})
-rm.action.no-disposition-lisfecycle-set=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da kein verf\u00fcgbarer Aufbewahrungszyklus festgelegt wurde. (nodeRef={1})
-rm.action.next-disp-not-set=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da keine n\u00e4chste Aufbewahrungsaktion festgelegt wurde. (nodeRef={1})
-rm.action.not-next-disp=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da es sich hierbei nicht um die n\u00e4chste Aufbewahrungsaktion f\u00fcr den Record bzw. den Record-Ordner handelt. (nodeRef={1})
-rm.action.not-record-folder=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da {1} kein Record-Ordner ist.
-rm.action.actioned-upon-not-record=Die Aktion {0} kann nicht durchgef\u00fchrt werden, da {1} kein Record ist.
-rm.action.custom-aspect-not-recognised=Der benutzerdefinierte Typ kann nicht angewendet werden, da er nicht erkannt wird. (customAspect={0})
-rm.action.event-no-disp-lc=Das Ereignis {0} kann nicht abgeschlossen werden, da es nicht im Aufbewahrungszyklus definiert ist.
-rm.action.undeclared-only-records=Nur Records k\u00f6nnen abgeschlossen werden. (nodeRef={0})
-rm.action.no-declare-mand-prop=Um den Record abzuschlie\u00dfen, m\u00fcssen Sie alle erforderlichen Eigenschaften des Record festlegen.
-rm.action.ghosted-prop-update=Die Eigenschaften eines zuvor vernichteten Record k\u00f6nnen nicht aktualisiert werden.
-rm.action.valid-date-disp-asof=Geben Sie ein zul\u00e4ssiges Datum als Startdatum der Aufbewahrungsaktion ein.
-rm.action.disp-asof-lifecycle-applied=Sie k\u00f6nnen das Startdatum der Aufbewahrung f\u00fcr einen Record oder Record-Ordner mit festgelegtem Aufbewahrungszyklus nicht bearbeiten.
-rm.action.hold-edit-reason-none=Der Sperrgrund kann nicht bearbeitet werden, da die Sperre ohne Grund erstellt wurde. Versuchen Sie, die Sperre erneut zu erstellen.
-rm.action.hold-edit-type=Sie k\u00f6nnen den Sperrgrund f\u00fcr {1} nicht bearbeiten, da es sich nicht um eine Sperre handelt.
-rm.action.specify-avlid-date=Geben Sie ein zul\u00e4ssiges Datum als Startdatum der \u00dcberpr\u00fcfung ein.
-rm.action.review-details-only=Sie k\u00f6nnen nur die \u00dcberpr\u00fcfungsdetails besonders relevanter Records bearbeiten.
-rm.action.freeze-no-reason=Ein Record kann nicht ohne Grund gesperrt werden. F\u00fcgen Sie einen Sperrgrund hinzu.
-rm.action.freeze-only-records-folders=Sie k\u00f6nnen nur Records oder Record-Ordner sperren.
-rm.action.no-open-record-folder=Sie k\u00f6nnen {0} nicht erneut \u00f6ffnen, da es sich nicht um einen Record-Ordner handelt.
-rm.action.not-hold-type=Die Aktion kann nicht f\u00fcr {1} durchgef\u00fchrt werden, weil es sich nicht um eine Sperre handelt.
-rm.action.no-read-mime-message=Die Dateityp-Nachricht konnte nicht gelesen werden, da {0}.
-rm.action.email-declared=Die E-Mail konnte nicht geteilt werden, da der Record abgeschlossen ist. (actionedUponNodeRef={0})
-rm.action.email-not-record=Die E-Mail konnte nicht geteilt werden, da die Datei, der Ordner bzw. die Kategorie kein Record ist. (actionedUponNodeRef={0})
-rm.action.email-create-child-assoc=Benutzerdefinierte Kindzuordnung konnte nicht erstellt werden.
-rm.action.node-already-transfer=Datei, Ordner oder Kategorie wird bereits \u00fcbertragen.
-rm.action.node-not-transfer=Datei, Ordner oder Kategorie ist kein \u00dcbertragungsobjekt.
-rm.action.undo-not-last=Trennung kann nicht aufgehoben werden, da die letzte Aufbewahrungsaktion nicht getrennt wurde.
-rm.action.records_only_undeclared=Es k\u00f6nnen nur Records abgeschlossen werden.
-rm.action.event-not-undone=Sie k\u00f6nnen das Ereignis {0} nicht r\u00fcckg\u00e4ngig machen, da es nicht im Aufbewahrungszyklus definiert ist.
-rm.action.node-not-record-category=Sie k\u00f6nnen keinen Aufbewahrungsplan f\u00fcr ({0}) erstellen, da es sich nicht um eine Record-Kategorie handelt.
-rm.action.parameter-not-supplied=F\u00fcgen Sie ''{0}'' hinzu, um fortzufahren.
-rm.action.delete-not-hold-type=Die Sperre konnte nicht gel\u00f6scht werden, da {1} nicht vom Typ {0} ist.
-rm.action.cast-to-rm-type=Ein benutzerdefinierter Ordnertyp kann nicht in einen Records Management Ablageplan hochgeladen werden.
-rm.action.record-folder-create=Ein Record-Ordner kann nicht in einem anderen Record-Ordner erstellt werden.
-
+rm.action.not-defined=Die Records Management Aktion {0} wurde nicht definiert.
+rm.action.no-implicit-noderef=Es ist ein Systemfehler aufgetreten, sodass die Aktion {0} m\u00f6glicherweise nicht erfolgreich sein wird.
+rm.action.record-not-declared=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da der Record {1} unvollst\u00e4ndig ist.
+rm.action.expected-record-level=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da {1} kein Record ist.
+rm.action.not-all-records-declared=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da nicht alle Records im Record-Ordner abgeschlossen sind. (actionedUponNodeRef={1})
+rm.action.not-eligible=Record oder Record-Ordner {1} ist noch nicht bereit f\u00fcr die Aufbewahrungsaktion {0}.
+rm.action.no-disposition-instructions=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da keine Aufbewahrungsanweisungen gefunden wurden. (nodeRef={1})
+rm.action.no-disposition-lisfecycle-set=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da kein verf\u00fcgbarer Aufbewahrungszyklus festgelegt wurde. (nodeRef={1})
+rm.action.next-disp-not-set=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da keine n\u00e4chste Aufbewahrungsaktion festgelegt wurde. (nodeRef={1})
+rm.action.not-next-disp=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da es sich hierbei nicht um die n\u00e4chste Aufbewahrungsaktion f\u00fcr den Record bzw. den Record-Ordner handelt. (nodeRef={1})
+rm.action.not-record-folder=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da {1} kein Record-Ordner ist.
+rm.action.actioned-upon-not-record=Die Aktion {0} kann nicht durchgef\u00fchrt werden, da {1} kein Record ist.
+rm.action.custom-aspect-not-recognised=Der benutzerdefinierte Typ kann nicht angewendet werden, da er nicht erkannt wird. (customAspect={0})
+rm.action.event-no-disp-lc=Das Ereignis {0} kann nicht abgeschlossen werden, da es nicht im Aufbewahrungszyklus definiert ist.
+rm.action.undeclared-only-records=Nur Records k\u00f6nnen abgeschlossen werden. (nodeRef={0})
+rm.action.no-declare-mand-prop=Um den Record abzuschlie\u00dfen, m\u00fcssen Sie alle erforderlichen Eigenschaften des Record festlegen.
+rm.action.ghosted-prop-update=Die Eigenschaften eines zuvor vernichteten Record k\u00f6nnen nicht aktualisiert werden.
+rm.action.valid-date-disp-asof=Geben Sie ein zul\u00e4ssiges Datum als Startdatum der Aufbewahrungsaktion ein.
+rm.action.disp-asof-lifecycle-applied=Sie k\u00f6nnen das Startdatum der Aufbewahrung f\u00fcr einen Record oder Record-Ordner mit festgelegtem Aufbewahrungszyklus nicht bearbeiten.
+rm.action.hold-edit-reason-none=Der Sperrgrund kann nicht bearbeitet werden, da die Sperre ohne Grund erstellt wurde. Versuchen Sie, die Sperre erneut zu erstellen.
+rm.action.hold-edit-type=Sie k\u00f6nnen den Sperrgrund f\u00fcr {1} nicht bearbeiten, da es sich nicht um eine Sperre handelt.
+rm.action.specify-avlid-date=Geben Sie ein zul\u00e4ssiges Datum als Startdatum der \u00dcberpr\u00fcfung ein.
+rm.action.review-details-only=Sie k\u00f6nnen nur die \u00dcberpr\u00fcfungsdetails besonders relevanter Records bearbeiten.
+rm.action.freeze-no-reason=Ein Record kann nicht ohne Grund gesperrt werden. F\u00fcgen Sie einen Sperrgrund hinzu.
+rm.action.freeze-only-records-folders=Sie k\u00f6nnen nur Records oder Record-Ordner sperren.
+rm.action.no-open-record-folder=Sie k\u00f6nnen {0} nicht erneut \u00f6ffnen, da es sich nicht um einen Record-Ordner handelt.
+rm.action.not-hold-type=Die Aktion kann nicht f\u00fcr {1} durchgef\u00fchrt werden, weil es sich nicht um eine Sperre handelt.
+rm.action.no-read-mime-message=Die Dateityp-Nachricht konnte nicht gelesen werden, da {0}.
+rm.action.email-declared=Die E-Mail konnte nicht geteilt werden, da der Record abgeschlossen ist. (actionedUponNodeRef={0})
+rm.action.email-not-record=Die E-Mail konnte nicht geteilt werden, da die Datei, der Ordner bzw. die Kategorie kein Record ist. (actionedUponNodeRef={0})
+rm.action.email-create-child-assoc=Benutzerdefinierte Kindzuordnung konnte nicht erstellt werden.
+rm.action.node-already-transfer=Datei, Ordner oder Kategorie wird bereits \u00fcbertragen.
+rm.action.node-not-transfer=Datei, Ordner oder Kategorie ist kein \u00dcbertragungsobjekt.
+rm.action.undo-not-last=Trennung kann nicht aufgehoben werden, da die letzte Aufbewahrungsaktion nicht getrennt wurde.
+rm.action.records_only_undeclared=Es k\u00f6nnen nur Records abgeschlossen werden.
+rm.action.event-not-undone=Sie k\u00f6nnen das Ereignis {0} nicht r\u00fcckg\u00e4ngig machen, da es nicht im Aufbewahrungszyklus definiert ist.
+rm.action.node-not-record-category=Sie k\u00f6nnen keinen Aufbewahrungsplan f\u00fcr ({0}) erstellen, da es sich nicht um eine Record-Kategorie handelt.
+rm.action.parameter-not-supplied=F\u00fcgen Sie ''{0}'' hinzu, um fortzufahren.
+rm.action.delete-not-hold-type=Die Sperre konnte nicht gel\u00f6scht werden, da {1} nicht vom Typ {0} ist.
+rm.action.cast-to-rm-type=Ein benutzerdefinierter Ordnertyp kann nicht in einen Records Management Ablageplan hochgeladen werden.
+rm.action.record-folder-create=Ein Record-Ordner kann nicht in einem anderen Record-Ordner erstellt werden.
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_es.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_es.properties
index 07a2febbd3..b24be31b4a 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_es.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_es.properties
@@ -1,42 +1,42 @@
-rm.action.not-defined=No se ha definido la acci\u00f3n de Records Management ''{0}''.
-rm.action.no-implicit-noderef=Se produjo un error en el sistema por lo que la acci\u00f3n ''{0}'' puede no ser correcta.
-rm.action.record-not-declared=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque el documento de archivo ''{1}'' no est\u00e1 completo.
-rm.action.expected-record-level=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque ''{1}'' no es un documento de archivo.
-rm.action.not-all-records-declared=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque no todos los documentos de archivo de la carpeta de documentos de archivo est\u00e1n completos. (actionedUponNodeRef={1})
-rm.action.not-eligible=El documento de archivo o carpeta de documentos de archivo ''{1}'' no est\u00e1 preparada todav\u00eda para la acci\u00f3n de retenci\u00f3n ''{0}''.
-rm.action.no-disposition-instructions=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque no se ha encontrado ninguna instrucci\u00f3n de retenci\u00f3n. (nodeRef={1})
-rm.action.no-disposition-lisfecycle-set=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque no hay ning\u00fan ciclo de vida de retenci\u00f3n disponible. (nodeRef={1})
-rm.action.next-disp-not-set=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque la pr\u00f3xima acci\u00f3n de retenci\u00f3n no est\u00e1 definida. (nodeRef={1})
-rm.action.not-next-disp=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque no es la pr\u00f3xima acci\u00f3n de retenci\u00f3n para este documento de archivo o carpeta de documentos de archivo. (nodeRef={1})
-rm.action.not-record-folder=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque ''{1}'' no es una carpeta de documentos de archivo.
-rm.action.actioned-upon-not-record=No se puede realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque ''{1}'' no es un documento de archivo.
-rm.action.custom-aspect-not-recognised=El tipo personalizado no puede aplicarse porque no se reconoce. (customAspect={0})
-rm.action.event-no-disp-lc=No se puede completar el evento ''{0}'' porque no est\u00e1 definido en el ciclo de vida de la retenci\u00f3n.
-rm.action.undeclared-only-records=Solo se pueden completar los documentos de archivo. (nodeRef={0})
-rm.action.no-declare-mand-prop=Debe definir todas las propiedades obligatorias del documento de archivo antes de poder completar el documento de archivo.
-rm.action.ghosted-prop-update=No puede actualizar las propiedades de un documento de archivo destruido anteriormente.
-rm.action.valid-date-disp-asof=Introduzca una fecha v\u00e1lida para la fecha de inicio de acci\u00f3n de la retenci\u00f3n.
-rm.action.disp-asof-lifecycle-applied=No puede editar la fecha de inicio de la retenci\u00f3n para un documento de archivo o carpeta de documentos de archivo que tiene un ciclo de vida aplicado.
-rm.action.hold-edit-reason-none=No puede editar la raz\u00f3n de bloqueo porque el bloqueo se cre\u00f3 sin una raz\u00f3n. Trate de recrear el bloqueo.
-rm.action.hold-edit-type=No puede editar la raz\u00f3n de bloqueo ''{1}'' porque no es un bloqueo.
-rm.action.specify-avlid-date=Introduzca una fecha v\u00e1lida para la fecha de inicio de la revisi\u00f3n.
-rm.action.review-details-only=Solo puede editar los detalles de revisi\u00f3n de documentos de archivo vitales.
-rm.action.freeze-no-reason=No puede bloquear un documento de archivo sin una raz\u00f3n. A\u00f1ada una raz\u00f3n al bloqueo.
-rm.action.freeze-only-records-folders=Solo puede bloquear documentos de archivo o carpetas de documentos de archivo.
-rm.action.no-open-record-folder=No puede volver a abrir ''{0}'' porque no es una carpeta de documentos de archivo.
-rm.action.not-hold-type=No puede llevar a cabo la acci\u00f3n en ''{1}'' porque no es un bloqueo.
-rm.action.no-read-mime-message=No se pudo leer el mensaje de tipo de fichero debido a ''{0}''.
-rm.action.email-declared=No se pudo separar el correo electr\u00f3nico porque el documento de archivo est\u00e1 completo. (actionedUponNodeRef={0})
-rm.action.email-not-record=No se pudo separar el correo electr\u00f3nico porque el fichero, ni la carpeta ni la categor\u00eda son un documento de archivo. (actionedUponNodeRef={0})
-rm.action.email-create-child-assoc=No se puedo crear una asociaci\u00f3n secundaria personalizada.
-rm.action.node-already-transfer=El fichero, carpeta o categor\u00eda ya se est\u00e1 trasfiriendo.
-rm.action.node-not-transfer=El fichero, carpeta o categor\u00eda no es un objeto de transferencia.
-rm.action.undo-not-last=No puede deshacer la interrupci\u00f3n porque la \u00faltima acci\u00f3n de retenci\u00f3n no se interrumpi\u00f3.
-rm.action.records_only_undeclared=Solo puede completar documentos de archivo.
-rm.action.event-not-undone=No puede deshacer el evento ''{0}'' porque no se ha definido en el ciclo de vida de retenci\u00f3n.
-rm.action.node-not-record-category=No puede crear una planificaci\u00f3n de retenci\u00f3n para (''{0}'') porque no es una categor\u00eda de documento de archivo.
-rm.action.parameter-not-supplied=A\u00f1ada un ''{0}'' para continuar.
-rm.action.delete-not-hold-type=No se pudo eliminar el bloqueo porque ''{1}'' no es del tipo ''{0}''.
-rm.action.cast-to-rm-type=No puede cargar un tipo de carpeta personalizada al plan de ficheros de Records Management.
-rm.action.record-folder-create=No puede crear una carpeta de documentos de archivo en otra carpeta de documentos de archivo.
-
+rm.action.not-defined=No se ha definido la acci\u00f3n de Records Management ''{0}''.
+rm.action.no-implicit-noderef=Se produjo un error en el sistema por lo que la acci\u00f3n ''{0}'' puede no ser correcta.
+rm.action.record-not-declared=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque el documento de archivo ''{1}'' no est\u00e1 completo.
+rm.action.expected-record-level=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque ''{1}'' no es un documento de archivo.
+rm.action.not-all-records-declared=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque no todos los documentos de archivo de la carpeta de documentos de archivo est\u00e1n completos. (actionedUponNodeRef={1})
+rm.action.not-eligible=El documento de archivo o carpeta de documentos de archivo ''{1}'' no est\u00e1 preparada todav\u00eda para la acci\u00f3n de retenci\u00f3n ''{0}''.
+rm.action.no-disposition-instructions=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque no se ha encontrado ninguna instrucci\u00f3n de retenci\u00f3n. (nodeRef={1})
+rm.action.no-disposition-lisfecycle-set=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque no hay ning\u00fan ciclo de vida de retenci\u00f3n disponible. (nodeRef={1})
+rm.action.next-disp-not-set=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque la pr\u00f3xima acci\u00f3n de retenci\u00f3n no est\u00e1 definida. (nodeRef={1})
+rm.action.not-next-disp=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque no es la pr\u00f3xima acci\u00f3n de retenci\u00f3n para este documento de archivo o carpeta de documentos de archivo. (nodeRef={1})
+rm.action.not-record-folder=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque ''{1}'' no es una carpeta de documentos de archivo.
+rm.action.actioned-upon-not-record=No se puede realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque ''{1}'' no es un documento de archivo.
+rm.action.custom-aspect-not-recognised=El tipo personalizado no puede aplicarse porque no se reconoce. (customAspect={0})
+rm.action.event-no-disp-lc=No se puede completar el evento ''{0}'' porque no est\u00e1 definido en el ciclo de vida de la retenci\u00f3n.
+rm.action.undeclared-only-records=Solo se pueden completar los documentos de archivo. (nodeRef={0})
+rm.action.no-declare-mand-prop=Debe definir todas las propiedades obligatorias del documento de archivo antes de poder completar el documento de archivo.
+rm.action.ghosted-prop-update=No puede actualizar las propiedades de un documento de archivo destruido anteriormente.
+rm.action.valid-date-disp-asof=Introduzca una fecha v\u00e1lida para la fecha de inicio de acci\u00f3n de la retenci\u00f3n.
+rm.action.disp-asof-lifecycle-applied=No puede editar la fecha de inicio de la retenci\u00f3n para un documento de archivo o carpeta de documentos de archivo que tiene un ciclo de vida aplicado.
+rm.action.hold-edit-reason-none=No puede editar la raz\u00f3n de bloqueo porque el bloqueo se cre\u00f3 sin una raz\u00f3n. Trate de recrear el bloqueo.
+rm.action.hold-edit-type=No puede editar la raz\u00f3n de bloqueo ''{1}'' porque no es un bloqueo.
+rm.action.specify-avlid-date=Introduzca una fecha v\u00e1lida para la fecha de inicio de la revisi\u00f3n.
+rm.action.review-details-only=Solo puede editar los detalles de revisi\u00f3n de documentos de archivo vitales.
+rm.action.freeze-no-reason=No puede bloquear un documento de archivo sin una raz\u00f3n. A\u00f1ada una raz\u00f3n al bloqueo.
+rm.action.freeze-only-records-folders=Solo puede bloquear documentos de archivo o carpetas de documentos de archivo.
+rm.action.no-open-record-folder=No puede volver a abrir ''{0}'' porque no es una carpeta de documentos de archivo.
+rm.action.not-hold-type=No puede llevar a cabo la acci\u00f3n en ''{1}'' porque no es un bloqueo.
+rm.action.no-read-mime-message=No se pudo leer el mensaje de tipo de fichero debido a ''{0}''.
+rm.action.email-declared=No se pudo separar el correo electr\u00f3nico porque el documento de archivo est\u00e1 completo. (actionedUponNodeRef={0})
+rm.action.email-not-record=No se pudo separar el correo electr\u00f3nico porque el fichero, ni la carpeta ni la categor\u00eda son un documento de archivo. (actionedUponNodeRef={0})
+rm.action.email-create-child-assoc=No se puedo crear una asociaci\u00f3n secundaria personalizada.
+rm.action.node-already-transfer=El fichero, carpeta o categor\u00eda ya se est\u00e1 trasfiriendo.
+rm.action.node-not-transfer=El fichero, carpeta o categor\u00eda no es un objeto de transferencia.
+rm.action.undo-not-last=No puede deshacer la interrupci\u00f3n porque la \u00faltima acci\u00f3n de retenci\u00f3n no se interrumpi\u00f3.
+rm.action.records_only_undeclared=Solo puede completar documentos de archivo.
+rm.action.event-not-undone=No puede deshacer el evento ''{0}'' porque no se ha definido en el ciclo de vida de retenci\u00f3n.
+rm.action.node-not-record-category=No puede crear una planificaci\u00f3n de retenci\u00f3n para (''{0}'') porque no es una categor\u00eda de documento de archivo.
+rm.action.parameter-not-supplied=A\u00f1ada un ''{0}'' para continuar.
+rm.action.delete-not-hold-type=No se pudo eliminar el bloqueo porque ''{1}'' no es del tipo ''{0}''.
+rm.action.cast-to-rm-type=No puede cargar un tipo de carpeta personalizada al plan de ficheros de Records Management.
+rm.action.record-folder-create=No puede crear una carpeta de documentos de archivo en otra carpeta de documentos de archivo.
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_fr.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_fr.properties
index 013ff52619..464ff32942 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_fr.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_fr.properties
@@ -1,42 +1,42 @@
-rm.action.not-defined=L''action de gestion des archives {0} n''a pas \u00e9t\u00e9 d\u00e9finie.
-rm.action.no-implicit-noderef=Suite \u00e0 une erreur syst\u00e8me, \u00e9chec de l''action {0} possible.
-rm.action.record-not-declared=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car le document d''archives {1} n''est pas complet.
-rm.action.expected-record-level=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car {1} n''est pas un document d''archives.
-rm.action.not-all-records-declared=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car les documents d''archives dans le dossier d''archives ne sont pas tous complets. (actionedUponNodeRef={1})
-rm.action.not-eligible=Le document d''archives ou dossier d''archives {1} n''est pas encore pr\u00eat pour l''action de r\u00e9tention {0}.
-rm.action.no-disposition-instructions=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car aucune instruction de r\u00e9tention n''a \u00e9t\u00e9 trouv\u00e9e. (nodeRef={1})
-rm.action.no-disposition-lisfecycle-set=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car aucun ensemble de cycles de vie de r\u00e9tention n''est disponible. (nodeRef={1})
-rm.action.next-disp-not-set=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car l''\u00e9tape suivante du d\u00e9lai de r\u00e9tention n''est pas d\u00e9finie. (nodeRef={1})
-rm.action.not-next-disp=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car il ne s''agit pas de l''\u00e9tape suivante du d\u00e9lai de r\u00e9tention pour ce document d''archives ou ce dossier d''archives. (nodeRef={1})
-rm.action.not-record-folder=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car {1} n''est pas un dossier d''archives.
-rm.action.actioned-upon-not-record=L''action {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car {1} n''est pas un document d''archives.
-rm.action.custom-aspect-not-recognised=Le type personnalis\u00e9 ne peut pas \u00eatre appliqu\u00e9, car il n''est pas reconnu. (customAspect={0})
-rm.action.event-no-disp-lc=L''\u00e9v\u00e9nement {0} ne peut pas \u00eatre compl\u00e9t\u00e9, car il n''est pas d\u00e9fini dans les \u00e9tapes du d\u00e9lai de r\u00e9tention.
-rm.action.undeclared-only-records=Seuls les documents d''archives peuvent \u00eatre compl\u00e9t\u00e9s. (nodeRef={0})
-rm.action.no-declare-mand-prop=Avant de compl\u00e9ter le document d'archives, vous devez d\u00e9finir toutes ses propri\u00e9t\u00e9s obligatoires.
-rm.action.ghosted-prop-update=Impossible de mettre \u00e0 jour les propri\u00e9t\u00e9s d'un document d'archives d\u00e9truit pr\u00e9c\u00e9demment.
-rm.action.valid-date-disp-asof=Entrez une date valide pour la date de d\u00e9but de l'action de r\u00e9tention.
-rm.action.disp-asof-lifecycle-applied=Vous ne pouvez pas modifier la date de d\u00e9but d'action de r\u00e9tention d'un document d'archives ou dossier d'archives auquel est appliqu\u00e9 un cycle de vie.
-rm.action.hold-edit-reason-none=Impossible de modifier le motif de suspension car la suspension a \u00e9t\u00e9 cr\u00e9\u00e9e sans motif. Essayez de recr\u00e9er la suspension.
-rm.action.hold-edit-type=Impossible de modifier le motif de suspension pour {1}, car ce n''est pas une suspension.
-rm.action.specify-avlid-date=Entrez une date valide pour la date de d\u00e9but de la r\u00e9vision.
-rm.action.review-details-only=Seules les informations de v\u00e9rification des documents d'archives essentiels peuvent \u00eatre modifi\u00e9es.
-rm.action.freeze-no-reason=Un document d'archives ne peut pas \u00eatre suspendu sans motif. Ajoutez un motif pour la suspension.
-rm.action.freeze-only-records-folders=Seuls des documents d'archives ou dossiers d'archives peuvent \u00eatre suspendus.
-rm.action.no-open-record-folder=Impossible de rouvrir {0}, car ce n''est pas un dossier d''archives.
-rm.action.not-hold-type=Impossible d''effectuer l''action sur {1}, car ce n''est pas une suspension.
-rm.action.no-read-mime-message=Le message filetype est illisible, car {0}.
-rm.action.email-declared=Impossible de partager l''e-mail, car le document d''archives n''est pas complet. (actionedUponNodeRef={0})
-rm.action.email-not-record=Impossible de partager l''e-mail, car le fichier, le dossier ou la cat\u00e9gorie n''est pas un document d''archives. (actionedUponNodeRef={0})
-rm.action.email-create-child-assoc=Impossible de cr\u00e9er une association d'enfant personnalis\u00e9e.
-rm.action.node-already-transfer=Le fichier, le dossier ou la cat\u00e9gorie est d\u00e9j\u00e0 en cours de transfert.
-rm.action.node-not-transfer=Le fichier, le dossier ou la cat\u00e9gorie n'est pas un objet de transfert.
-rm.action.undo-not-last=Impossible d'annuler le d\u00e9classement car la derni\u00e8re action de r\u00e9tention n'\u00e9tait pas un d\u00e9classement.
-rm.action.records_only_undeclared=Seuls les documents d'archives peuvent \u00eatre compl\u00e9t\u00e9s.
-rm.action.event-not-undone=Impossible d''annuler l''\u00e9v\u00e9nement {0}, car il n''est pas d\u00e9fini dans les \u00e9tapes du d\u00e9lai de r\u00e9tention.
-rm.action.node-not-record-category=Impossible de cr\u00e9er une r\u00e8gle de r\u00e9tention pour ({0}), car ce n''est pas une cat\u00e9gorie de document d''archives.
-rm.action.parameter-not-supplied=Ajouter un(e) ''{0}'' pour continuer.
-rm.action.delete-not-hold-type=Impossible de supprimer la suspension, car {1} n''est pas de type {0}.
-rm.action.cast-to-rm-type=Impossible de t\u00e9l\u00e9charger un type de dossier personnalis\u00e9 dans le plan de classification de gestion des archives.
-rm.action.record-folder-create=Impossible de cr\u00e9er un dossier d'archives dans un autre dossier d'archives.
-
+rm.action.not-defined=L''action de gestion des archives {0} n''a pas \u00e9t\u00e9 d\u00e9finie.
+rm.action.no-implicit-noderef=Suite \u00e0 une erreur syst\u00e8me, \u00e9chec de l''action {0} possible.
+rm.action.record-not-declared=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car le document d''archives {1} n''est pas complet.
+rm.action.expected-record-level=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car {1} n''est pas un document d''archives.
+rm.action.not-all-records-declared=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car les documents d''archives dans le dossier d''archives ne sont pas tous complets. (actionedUponNodeRef={1})
+rm.action.not-eligible=Le document d''archives ou dossier d''archives {1} n''est pas encore pr\u00eat pour l''action de r\u00e9tention {0}.
+rm.action.no-disposition-instructions=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car aucune instruction de r\u00e9tention n''a \u00e9t\u00e9 trouv\u00e9e. (nodeRef={1})
+rm.action.no-disposition-lisfecycle-set=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car aucun ensemble de cycles de vie de r\u00e9tention n''est disponible. (nodeRef={1})
+rm.action.next-disp-not-set=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car l''\u00e9tape suivante du d\u00e9lai de r\u00e9tention n''est pas d\u00e9finie. (nodeRef={1})
+rm.action.not-next-disp=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car il ne s''agit pas de l''\u00e9tape suivante du d\u00e9lai de r\u00e9tention pour ce document d''archives ou ce dossier d''archives. (nodeRef={1})
+rm.action.not-record-folder=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car {1} n''est pas un dossier d''archives.
+rm.action.actioned-upon-not-record=L''action {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car {1} n''est pas un document d''archives.
+rm.action.custom-aspect-not-recognised=Le type personnalis\u00e9 ne peut pas \u00eatre appliqu\u00e9, car il n''est pas reconnu. (customAspect={0})
+rm.action.event-no-disp-lc=L''\u00e9v\u00e9nement {0} ne peut pas \u00eatre compl\u00e9t\u00e9, car il n''est pas d\u00e9fini dans les \u00e9tapes du d\u00e9lai de r\u00e9tention.
+rm.action.undeclared-only-records=Seuls les documents d''archives peuvent \u00eatre compl\u00e9t\u00e9s. (nodeRef={0})
+rm.action.no-declare-mand-prop=Avant de compl\u00e9ter le document d'archives, vous devez d\u00e9finir toutes ses propri\u00e9t\u00e9s obligatoires.
+rm.action.ghosted-prop-update=Impossible de mettre \u00e0 jour les propri\u00e9t\u00e9s d'un document d'archives d\u00e9truit pr\u00e9c\u00e9demment.
+rm.action.valid-date-disp-asof=Entrez une date valide pour la date de d\u00e9but de l'action de r\u00e9tention.
+rm.action.disp-asof-lifecycle-applied=Vous ne pouvez pas modifier la date de d\u00e9but d'action de r\u00e9tention d'un document d'archives ou dossier d'archives auquel est appliqu\u00e9 un cycle de vie.
+rm.action.hold-edit-reason-none=Impossible de modifier le motif de suspension car la suspension a \u00e9t\u00e9 cr\u00e9\u00e9e sans motif. Essayez de recr\u00e9er la suspension.
+rm.action.hold-edit-type=Impossible de modifier le motif de suspension pour {1}, car ce n''est pas une suspension.
+rm.action.specify-avlid-date=Entrez une date valide pour la date de d\u00e9but de la r\u00e9vision.
+rm.action.review-details-only=Seules les informations de v\u00e9rification des documents d'archives essentiels peuvent \u00eatre modifi\u00e9es.
+rm.action.freeze-no-reason=Un document d'archives ne peut pas \u00eatre suspendu sans motif. Ajoutez un motif pour la suspension.
+rm.action.freeze-only-records-folders=Seuls des documents d'archives ou dossiers d'archives peuvent \u00eatre suspendus.
+rm.action.no-open-record-folder=Impossible de rouvrir {0}, car ce n''est pas un dossier d''archives.
+rm.action.not-hold-type=Impossible d''effectuer l''action sur {1}, car ce n''est pas une suspension.
+rm.action.no-read-mime-message=Le message filetype est illisible, car {0}.
+rm.action.email-declared=Impossible de partager l''e-mail, car le document d''archives n''est pas complet. (actionedUponNodeRef={0})
+rm.action.email-not-record=Impossible de partager l''e-mail, car le fichier, le dossier ou la cat\u00e9gorie n''est pas un document d''archives. (actionedUponNodeRef={0})
+rm.action.email-create-child-assoc=Impossible de cr\u00e9er une association d'enfant personnalis\u00e9e.
+rm.action.node-already-transfer=Le fichier, le dossier ou la cat\u00e9gorie est d\u00e9j\u00e0 en cours de transfert.
+rm.action.node-not-transfer=Le fichier, le dossier ou la cat\u00e9gorie n'est pas un objet de transfert.
+rm.action.undo-not-last=Impossible d'annuler le d\u00e9classement car la derni\u00e8re action de r\u00e9tention n'\u00e9tait pas un d\u00e9classement.
+rm.action.records_only_undeclared=Seuls les documents d'archives peuvent \u00eatre compl\u00e9t\u00e9s.
+rm.action.event-not-undone=Impossible d''annuler l''\u00e9v\u00e9nement {0}, car il n''est pas d\u00e9fini dans les \u00e9tapes du d\u00e9lai de r\u00e9tention.
+rm.action.node-not-record-category=Impossible de cr\u00e9er une r\u00e8gle de r\u00e9tention pour ({0}), car ce n''est pas une cat\u00e9gorie de document d''archives.
+rm.action.parameter-not-supplied=Ajouter un(e) ''{0}'' pour continuer.
+rm.action.delete-not-hold-type=Impossible de supprimer la suspension, car {1} n''est pas de type {0}.
+rm.action.cast-to-rm-type=Impossible de t\u00e9l\u00e9charger un type de dossier personnalis\u00e9 dans le plan de classification de gestion des archives.
+rm.action.record-folder-create=Impossible de cr\u00e9er un dossier d'archives dans un autre dossier d'archives.
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_it.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_it.properties
index e31fca1a7d..9ba4c44010 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_it.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_it.properties
@@ -1,42 +1,42 @@
-rm.action.not-defined=L''azione di gestione dei record {0} non \u00e8 stata definita.
-rm.action.no-implicit-noderef=Si \u00e8 verificato un errore di sistema per cui l''azione {0} potrebbe non riuscire.
-rm.action.record-not-declared=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 il record {1} \u00e8 incompleto.
-rm.action.expected-record-level=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 {1} non costituisce un record.
-rm.action.not-all-records-declared=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 non tutti i record nella cartella di record sono completi. (actionedUponNodeRef={1})
-rm.action.not-eligible=Il record o la cartella di record {1} non sono pronti per l''azione di conservazione {0}.
-rm.action.no-disposition-instructions=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 non sono state trovate le istruzioni di conservazione. (nodeRef={1})
-rm.action.no-disposition-lisfecycle-set=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 non \u00e8 disponibile alcun set di ciclo di vita di conservazione. (nodeRef={1})
-rm.action.next-disp-not-set=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 l''azione di conservazione successiva non \u00e8 stata impostata. (nodeRef={1})
-rm.action.not-next-disp=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 quest''ultima non costituisce l''azione di conservazione successiva per questo record o cartella di record. (nodeRef={1})
-rm.action.not-record-folder=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 {1} non costituisce una cartella di record.
-rm.action.actioned-upon-not-record=Impossibile eseguire l''azione {0}, poich\u00e9 {1} non costituisce un record.
-rm.action.custom-aspect-not-recognised=Impossibile applicare il tipo personalizzato poich\u00e9 non viene riconosciuto. (customAspect={0})
-rm.action.event-no-disp-lc=Impossibile completare l''evento {0}, poich\u00e9 non \u00e8 definito nel ciclo di vita di conservazione.
-rm.action.undeclared-only-records=Solo i record possono essere completati. (nodeRef={0})
-rm.action.no-declare-mand-prop=\u00c8 necessario impostare tutte le propriet\u00e0 obbligatorie del record prima di completare il record.
-rm.action.ghosted-prop-update=Impossibile aggiornare le propriet\u00e0 di un record precedentemente eliminato in maniera definitiva.
-rm.action.valid-date-disp-asof=Inserire una data valida come data di inizio dell'azione di conservazione.
-rm.action.disp-asof-lifecycle-applied=Impossibile modificare la data di inizio di conservazione per un record o cartella di record per cui \u00e8 stato impostato un ciclo di vita.
-rm.action.hold-edit-reason-none=Impossibile modificare il motivo della sospensione poich\u00e9 la sospensione \u00e8 stata creata senza un motivo. Provare a ricreare la sospensione.
-rm.action.hold-edit-type=Impossibile modificare la sospensione per {1} poich\u00e9 non \u00e8 una sospensione.
-rm.action.specify-avlid-date=Inserire una data valida come data di inizio dell'esame.
-rm.action.review-details-only=\u00c8 possibile modificare solo i dettagli dell'esame dei record fondamentali.
-rm.action.freeze-no-reason=Impossibile sospendere un record senza un motivo. Aggiungere un motivo alla sospensione.
-rm.action.freeze-only-records-folders=\u00c8 possibile sospendere solo record o cartelle di record.
-rm.action.no-open-record-folder=Impossibile riaprire {0} poich\u00e9 non si tratta di una cartella di record.
-rm.action.not-hold-type=Impossibile eseguire l''azione su {1} poich\u00e9 non \u00e8 una sospensione.
-rm.action.no-read-mime-message=Impossibile leggere il messaggio di tipo file, poich\u00e9 {0}.
-rm.action.email-declared=Impossibile dividere l''e-mail poich\u00e9 il record \u00e8 completo. (actionedUponNodeRef={0})
-rm.action.email-not-record=Impossibile dividere l''e-mail poich\u00e9 il file, la cartella o la categoria non sono un record. (actionedUponNodeRef={0})
-rm.action.email-create-child-assoc=Impossibile creare un'associazione secondaria personalizzata.
-rm.action.node-already-transfer=Il file, la cartella o la categoria sono gi\u00e0 in fase di trasferimento.
-rm.action.node-not-transfer=Il file, la cartella o la categoria non sono oggetti da trasferire.
-rm.action.undo-not-last=Impossibile annullare il cut off poich\u00e9 l'ultima azione di conservazione non \u00e8 stata interrotta.
-rm.action.records_only_undeclared=\u00c8 solo possibile completare i record.
-rm.action.event-not-undone=Non \u00e8 possibile annullare l''evento {0} poich\u00e9 non \u00e8 definito sul ciclo di vita di conservazione.
-rm.action.node-not-record-category=Impossibile creare un programma di conservazione per {0} poich\u00e9 non si tratta di una categoria di record.
-rm.action.parameter-not-supplied=Aggiungi un ''{0}'' per continuare.
-rm.action.delete-not-hold-type=Impossibile eliminare la sospensione poich\u00e9 {1} non \u00e8 del tipo {0}.
-rm.action.cast-to-rm-type=Impossibile caricare un tipo di cartella personalizzata sul piano file di Records Management.
-rm.action.record-folder-create=Impossibile creare una cartella di record in un'altra cartella di record.
-
+rm.action.not-defined=L''azione di gestione dei record {0} non \u00e8 stata definita.
+rm.action.no-implicit-noderef=Si \u00e8 verificato un errore di sistema per cui l''azione {0} potrebbe non riuscire.
+rm.action.record-not-declared=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 il record {1} \u00e8 incompleto.
+rm.action.expected-record-level=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 {1} non costituisce un record.
+rm.action.not-all-records-declared=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 non tutti i record nella cartella di record sono completi. (actionedUponNodeRef={1})
+rm.action.not-eligible=Il record o la cartella di record {1} non sono pronti per l''azione di conservazione {0}.
+rm.action.no-disposition-instructions=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 non sono state trovate le istruzioni di conservazione. (nodeRef={1})
+rm.action.no-disposition-lisfecycle-set=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 non \u00e8 disponibile alcun set di ciclo di vita di conservazione. (nodeRef={1})
+rm.action.next-disp-not-set=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 l''azione di conservazione successiva non \u00e8 stata impostata. (nodeRef={1})
+rm.action.not-next-disp=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 quest''ultima non costituisce l''azione di conservazione successiva per questo record o cartella di record. (nodeRef={1})
+rm.action.not-record-folder=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 {1} non costituisce una cartella di record.
+rm.action.actioned-upon-not-record=Impossibile eseguire l''azione {0}, poich\u00e9 {1} non costituisce un record.
+rm.action.custom-aspect-not-recognised=Impossibile applicare il tipo personalizzato poich\u00e9 non viene riconosciuto. (customAspect={0})
+rm.action.event-no-disp-lc=Impossibile completare l''evento {0}, poich\u00e9 non \u00e8 definito nel ciclo di vita di conservazione.
+rm.action.undeclared-only-records=Solo i record possono essere completati. (nodeRef={0})
+rm.action.no-declare-mand-prop=\u00c8 necessario impostare tutte le propriet\u00e0 obbligatorie del record prima di completare il record.
+rm.action.ghosted-prop-update=Impossibile aggiornare le propriet\u00e0 di un record precedentemente eliminato in maniera definitiva.
+rm.action.valid-date-disp-asof=Inserire una data valida come data di inizio dell'azione di conservazione.
+rm.action.disp-asof-lifecycle-applied=Impossibile modificare la data di inizio di conservazione per un record o cartella di record per cui \u00e8 stato impostato un ciclo di vita.
+rm.action.hold-edit-reason-none=Impossibile modificare il motivo della sospensione poich\u00e9 la sospensione \u00e8 stata creata senza un motivo. Provare a ricreare la sospensione.
+rm.action.hold-edit-type=Impossibile modificare la sospensione per {1} poich\u00e9 non \u00e8 una sospensione.
+rm.action.specify-avlid-date=Inserire una data valida come data di inizio dell'esame.
+rm.action.review-details-only=\u00c8 possibile modificare solo i dettagli dell'esame dei record fondamentali.
+rm.action.freeze-no-reason=Impossibile sospendere un record senza un motivo. Aggiungere un motivo alla sospensione.
+rm.action.freeze-only-records-folders=\u00c8 possibile sospendere solo record o cartelle di record.
+rm.action.no-open-record-folder=Impossibile riaprire {0} poich\u00e9 non si tratta di una cartella di record.
+rm.action.not-hold-type=Impossibile eseguire l''azione su {1} poich\u00e9 non \u00e8 una sospensione.
+rm.action.no-read-mime-message=Impossibile leggere il messaggio di tipo file, poich\u00e9 {0}.
+rm.action.email-declared=Impossibile dividere l''e-mail poich\u00e9 il record \u00e8 completo. (actionedUponNodeRef={0})
+rm.action.email-not-record=Impossibile dividere l''e-mail poich\u00e9 il file, la cartella o la categoria non sono un record. (actionedUponNodeRef={0})
+rm.action.email-create-child-assoc=Impossibile creare un'associazione secondaria personalizzata.
+rm.action.node-already-transfer=Il file, la cartella o la categoria sono gi\u00e0 in fase di trasferimento.
+rm.action.node-not-transfer=Il file, la cartella o la categoria non sono oggetti da trasferire.
+rm.action.undo-not-last=Impossibile annullare il cut off poich\u00e9 l'ultima azione di conservazione non \u00e8 stata interrotta.
+rm.action.records_only_undeclared=\u00c8 solo possibile completare i record.
+rm.action.event-not-undone=Non \u00e8 possibile annullare l''evento {0} poich\u00e9 non \u00e8 definito sul ciclo di vita di conservazione.
+rm.action.node-not-record-category=Impossibile creare un programma di conservazione per {0} poich\u00e9 non si tratta di una categoria di record.
+rm.action.parameter-not-supplied=Aggiungi un ''{0}'' per continuare.
+rm.action.delete-not-hold-type=Impossibile eliminare la sospensione poich\u00e9 {1} non \u00e8 del tipo {0}.
+rm.action.cast-to-rm-type=Impossibile caricare un tipo di cartella personalizzata sul piano file di Records Management.
+rm.action.record-folder-create=Impossibile creare una cartella di record in un'altra cartella di record.
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_ja.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_ja.properties
index b4ac62fa2f..62ebe34330 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_ja.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_ja.properties
@@ -1,42 +1,42 @@
-rm.action.not-defined=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u51e6\u7406 ''{0}'' \u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
-rm.action.no-implicit-noderef=\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u305f\u3081\u3001\u51e6\u7406 ''{0}'' \u306f\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u3066\u3044\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002
-rm.action.record-not-declared=\u30ec\u30b3\u30fc\u30c9 ''{1}'' \u304c\u5b8c\u4e86\u3057\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
-rm.action.expected-record-level=''{1}'' \u306f\u30ec\u30b3\u30fc\u30c9\u3067\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
-rm.action.not-all-records-declared=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u5185\u306e\u4e00\u90e8\u306e\u30ec\u30b3\u30fc\u30c9\u304c\u5b8c\u4e86\u3057\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (actionedUponNodeRef={1})
-rm.action.not-eligible=\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0 ''{1}'' \u306f\u3001\u307e\u3060\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u306e\u6e96\u5099\u304c\u3067\u304d\u3066\u3044\u307e\u305b\u3093\u3002
-rm.action.no-disposition-instructions=\u4fdd\u7ba1\u6307\u793a\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={1})
-rm.action.no-disposition-lisfecycle-set=\u4f7f\u7528\u53ef\u80fd\u306a\u4fdd\u7ba1\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u30bb\u30c3\u30c8\u304c\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={1})
-rm.action.next-disp-not-set=\u6b21\u306e\u4fdd\u7ba1\u51e6\u7406\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={1})
-rm.action.not-next-disp=\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u306f\u3053\u306e\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u7528\u306e\u6b21\u306e\u4fdd\u7ba1\u51e6\u7406\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={1})
-rm.action.not-record-folder=''{1}'' \u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
-rm.action.actioned-upon-not-record=''{1}'' \u306f\u30ec\u30b3\u30fc\u30c9\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
-rm.action.custom-aspect-not-recognised=\u30ab\u30b9\u30bf\u30e0\u30bf\u30a4\u30d7\u304c\u8a8d\u8b58\u3055\u308c\u306a\u3044\u305f\u3081\u3001\u9069\u7528\u3067\u304d\u307e\u305b\u3093\u3002 (customAspect={0})
-rm.action.event-no-disp-lc=\u30a4\u30d9\u30f3\u30c8 ''{0}'' \u306f\u4fdd\u7ba1\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u5b8c\u4e86\u3067\u304d\u307e\u305b\u3093\u3002
-rm.action.undeclared-only-records=\u5b8c\u4e86\u3067\u304d\u308b\u306e\u306f\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u3067\u3059\u3002 (nodeRef={0})
-rm.action.no-declare-mand-prop=\u30ec\u30b3\u30fc\u30c9\u3092\u5b8c\u4e86\u3059\u308b\u306b\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u306e\u3059\u3079\u3066\u306e\u5fc5\u9808\u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u8a2d\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
-rm.action.ghosted-prop-update=\u4ee5\u524d\u306b\u7834\u68c4\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u306f\u66f4\u65b0\u3067\u304d\u307e\u305b\u3093\u3002
-rm.action.valid-date-disp-asof=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9f\u884c\u65e5\u306b\u6709\u52b9\u306a\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
-rm.action.disp-asof-lifecycle-applied=\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u304c\u9069\u7528\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u4fdd\u7ba1\u51e6\u7406\u5b9f\u884c\u65e5\u306f\u3001\u7de8\u96c6\u3067\u304d\u307e\u305b\u3093\u3002
-rm.action.hold-edit-reason-none=\u3053\u306e\u30db\u30fc\u30eb\u30c9\u306f\u7406\u7531\u306a\u3057\u3067\u4f5c\u6210\u3055\u308c\u305f\u305f\u3081\u3001\u30db\u30fc\u30eb\u30c9\u7406\u7531\u3092\u7de8\u96c6\u3067\u304d\u307e\u305b\u3093\u3002 \u30db\u30fc\u30eb\u30c9\u3092\u4f5c\u6210\u3057\u76f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002
-rm.action.hold-edit-type=''{1}'' \u306f\u30db\u30fc\u30eb\u30c9\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u30db\u30fc\u30eb\u30c9\u7406\u7531\u3092\u7de8\u96c6\u3067\u304d\u307e\u305b\u3093\u3002
-rm.action.specify-avlid-date=\u30ec\u30d3\u30e5\u30fc\u306e\u5b9f\u884c\u65e5\u306b\u6709\u52b9\u306a\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
-rm.action.review-details-only=\u7de8\u96c6\u3067\u304d\u308b\u306e\u306f\u3001\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u30ec\u30d3\u30e5\u30fc\u306e\u8a73\u7d30\u306e\u307f\u3067\u3059\u3002
-rm.action.freeze-no-reason=\u7406\u7531\u304c\u306a\u3044\u3068\u3001\u30ec\u30b3\u30fc\u30c9\u3092\u30db\u30fc\u30eb\u30c9\u306b\u3067\u304d\u307e\u305b\u3093\u3002 \u30db\u30fc\u30eb\u30c9\u306b\u3059\u308b\u7406\u7531\u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002
-rm.action.freeze-only-records-folders=\u30db\u30fc\u30eb\u30c9\u306b\u3067\u304d\u308b\u306e\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u304b\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u307f\u3067\u3059\u3002
-rm.action.no-open-record-folder=''{0}'' \u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u518d\u5ea6\u958b\u304f\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002
-rm.action.not-hold-type=''{1}'' \u306f\u30db\u30fc\u30eb\u30c9\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u51e6\u7406\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3002
-rm.action.no-read-mime-message={0} \u306e\u305f\u3081\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u7a2e\u985e\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u8aad\u307f\u53d6\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
-rm.action.email-declared=\u30ec\u30b3\u30fc\u30c9\u304c\u5b8c\u4e86\u3057\u3066\u3044\u308b\u305f\u3081\u3001E \u30e1\u30fc\u30eb\u3092\u5206\u96e2\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (actionedUponNodeRef={0})
-rm.action.email-not-record=\u30d5\u30a1\u30a4\u30eb\u3001\u30d5\u30a9\u30eb\u30c0\u3001\u30ab\u30c6\u30b4\u30ea\u306e\u3044\u305a\u308c\u304b\u304c\u30ec\u30b3\u30fc\u30c9\u3067\u306a\u3044\u305f\u3081\u3001E \u30e1\u30fc\u30eb\u3092\u5206\u96e2\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (actionedUponNodeRef={0})
-rm.action.email-create-child-assoc=\u30ab\u30b9\u30bf\u30e0\u306e\u5b50\u95a2\u9023\u4ed8\u3051\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
-rm.action.node-already-transfer=\u30d5\u30a1\u30a4\u30eb\u3001\u30d5\u30a9\u30eb\u30c0\u3001\u307e\u305f\u306f\u30ab\u30c6\u30b4\u30ea\u304c\u3059\u3067\u306b\u8ee2\u9001\u4e2d\u3067\u3059\u3002
-rm.action.node-not-transfer=\u30d5\u30a1\u30a4\u30eb\u3001\u30d5\u30a9\u30eb\u30c0\u3001\u307e\u305f\u306f\u30ab\u30c6\u30b4\u30ea\u304c\u8ee2\u9001\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002
-rm.action.undo-not-last=\u76f4\u524d\u306e\u4fdd\u7ba1\u51e6\u7406\u306f\u30ab\u30c3\u30c8\u30aa\u30d5\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u30ab\u30c3\u30c8\u30aa\u30d5\u3092\u5143\u306b\u623b\u3059\u64cd\u4f5c\u306f\u884c\u3048\u307e\u305b\u3093\u3002
-rm.action.records_only_undeclared=\u5b8c\u4e86\u3067\u304d\u308b\u306e\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u3067\u3059\u3002
-rm.action.event-not-undone=\u30a4\u30d9\u30f3\u30c8 ''{0}'' \u306f\u4fdd\u7ba1\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u5143\u306b\u623b\u3059\u64cd\u4f5c\u306f\u884c\u3048\u307e\u305b\u3093\u3002
-rm.action.node-not-record-category=''{0}'' \u306f\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002
-rm.action.parameter-not-supplied=''{0}'' \u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002
-rm.action.delete-not-hold-type=''{1}'' \u306f\u30bf\u30a4\u30d7 ''{0}'' \u3067\u306f\u306a\u3044\u305f\u3081\u3001\u30db\u30fc\u30eb\u30c9\u3092\u524a\u9664\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
-rm.action.cast-to-rm-type=\u30ab\u30b9\u30bf\u30e0\u306e\u30d5\u30a9\u30eb\u30c0\u30bf\u30a4\u30d7\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093\u3002
-rm.action.record-folder-create=\u5225\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u5185\u306b\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002
-
+rm.action.not-defined=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u51e6\u7406 ''{0}'' \u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
+rm.action.no-implicit-noderef=\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u305f\u3081\u3001\u51e6\u7406 ''{0}'' \u306f\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u3066\u3044\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002
+rm.action.record-not-declared=\u30ec\u30b3\u30fc\u30c9 ''{1}'' \u304c\u5b8c\u4e86\u3057\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
+rm.action.expected-record-level=''{1}'' \u306f\u30ec\u30b3\u30fc\u30c9\u3067\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
+rm.action.not-all-records-declared=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u5185\u306e\u4e00\u90e8\u306e\u30ec\u30b3\u30fc\u30c9\u304c\u5b8c\u4e86\u3057\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (actionedUponNodeRef={1})
+rm.action.not-eligible=\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0 ''{1}'' \u306f\u3001\u307e\u3060\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u306e\u6e96\u5099\u304c\u3067\u304d\u3066\u3044\u307e\u305b\u3093\u3002
+rm.action.no-disposition-instructions=\u4fdd\u7ba1\u6307\u793a\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={1})
+rm.action.no-disposition-lisfecycle-set=\u4f7f\u7528\u53ef\u80fd\u306a\u4fdd\u7ba1\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u30bb\u30c3\u30c8\u304c\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={1})
+rm.action.next-disp-not-set=\u6b21\u306e\u4fdd\u7ba1\u51e6\u7406\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={1})
+rm.action.not-next-disp=\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u306f\u3053\u306e\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u7528\u306e\u6b21\u306e\u4fdd\u7ba1\u51e6\u7406\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={1})
+rm.action.not-record-folder=''{1}'' \u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
+rm.action.actioned-upon-not-record=''{1}'' \u306f\u30ec\u30b3\u30fc\u30c9\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
+rm.action.custom-aspect-not-recognised=\u30ab\u30b9\u30bf\u30e0\u30bf\u30a4\u30d7\u304c\u8a8d\u8b58\u3055\u308c\u306a\u3044\u305f\u3081\u3001\u9069\u7528\u3067\u304d\u307e\u305b\u3093\u3002 (customAspect={0})
+rm.action.event-no-disp-lc=\u30a4\u30d9\u30f3\u30c8 ''{0}'' \u306f\u4fdd\u7ba1\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u5b8c\u4e86\u3067\u304d\u307e\u305b\u3093\u3002
+rm.action.undeclared-only-records=\u5b8c\u4e86\u3067\u304d\u308b\u306e\u306f\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u3067\u3059\u3002 (nodeRef={0})
+rm.action.no-declare-mand-prop=\u30ec\u30b3\u30fc\u30c9\u3092\u5b8c\u4e86\u3059\u308b\u306b\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u306e\u3059\u3079\u3066\u306e\u5fc5\u9808\u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u8a2d\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
+rm.action.ghosted-prop-update=\u4ee5\u524d\u306b\u7834\u68c4\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u306f\u66f4\u65b0\u3067\u304d\u307e\u305b\u3093\u3002
+rm.action.valid-date-disp-asof=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9f\u884c\u65e5\u306b\u6709\u52b9\u306a\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
+rm.action.disp-asof-lifecycle-applied=\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u304c\u9069\u7528\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u4fdd\u7ba1\u51e6\u7406\u5b9f\u884c\u65e5\u306f\u3001\u7de8\u96c6\u3067\u304d\u307e\u305b\u3093\u3002
+rm.action.hold-edit-reason-none=\u3053\u306e\u30db\u30fc\u30eb\u30c9\u306f\u7406\u7531\u306a\u3057\u3067\u4f5c\u6210\u3055\u308c\u305f\u305f\u3081\u3001\u30db\u30fc\u30eb\u30c9\u7406\u7531\u3092\u7de8\u96c6\u3067\u304d\u307e\u305b\u3093\u3002 \u30db\u30fc\u30eb\u30c9\u3092\u4f5c\u6210\u3057\u76f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002
+rm.action.hold-edit-type=''{1}'' \u306f\u30db\u30fc\u30eb\u30c9\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u30db\u30fc\u30eb\u30c9\u7406\u7531\u3092\u7de8\u96c6\u3067\u304d\u307e\u305b\u3093\u3002
+rm.action.specify-avlid-date=\u30ec\u30d3\u30e5\u30fc\u306e\u5b9f\u884c\u65e5\u306b\u6709\u52b9\u306a\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
+rm.action.review-details-only=\u7de8\u96c6\u3067\u304d\u308b\u306e\u306f\u3001\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u30ec\u30d3\u30e5\u30fc\u306e\u8a73\u7d30\u306e\u307f\u3067\u3059\u3002
+rm.action.freeze-no-reason=\u7406\u7531\u304c\u306a\u3044\u3068\u3001\u30ec\u30b3\u30fc\u30c9\u3092\u30db\u30fc\u30eb\u30c9\u306b\u3067\u304d\u307e\u305b\u3093\u3002 \u30db\u30fc\u30eb\u30c9\u306b\u3059\u308b\u7406\u7531\u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002
+rm.action.freeze-only-records-folders=\u30db\u30fc\u30eb\u30c9\u306b\u3067\u304d\u308b\u306e\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u304b\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u307f\u3067\u3059\u3002
+rm.action.no-open-record-folder=''{0}'' \u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u518d\u5ea6\u958b\u304f\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002
+rm.action.not-hold-type=''{1}'' \u306f\u30db\u30fc\u30eb\u30c9\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u51e6\u7406\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3002
+rm.action.no-read-mime-message={0} \u306e\u305f\u3081\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u7a2e\u985e\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u8aad\u307f\u53d6\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
+rm.action.email-declared=\u30ec\u30b3\u30fc\u30c9\u304c\u5b8c\u4e86\u3057\u3066\u3044\u308b\u305f\u3081\u3001E \u30e1\u30fc\u30eb\u3092\u5206\u96e2\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (actionedUponNodeRef={0})
+rm.action.email-not-record=\u30d5\u30a1\u30a4\u30eb\u3001\u30d5\u30a9\u30eb\u30c0\u3001\u30ab\u30c6\u30b4\u30ea\u306e\u3044\u305a\u308c\u304b\u304c\u30ec\u30b3\u30fc\u30c9\u3067\u306a\u3044\u305f\u3081\u3001E \u30e1\u30fc\u30eb\u3092\u5206\u96e2\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (actionedUponNodeRef={0})
+rm.action.email-create-child-assoc=\u30ab\u30b9\u30bf\u30e0\u306e\u5b50\u95a2\u9023\u4ed8\u3051\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
+rm.action.node-already-transfer=\u30d5\u30a1\u30a4\u30eb\u3001\u30d5\u30a9\u30eb\u30c0\u3001\u307e\u305f\u306f\u30ab\u30c6\u30b4\u30ea\u304c\u3059\u3067\u306b\u8ee2\u9001\u4e2d\u3067\u3059\u3002
+rm.action.node-not-transfer=\u30d5\u30a1\u30a4\u30eb\u3001\u30d5\u30a9\u30eb\u30c0\u3001\u307e\u305f\u306f\u30ab\u30c6\u30b4\u30ea\u304c\u8ee2\u9001\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002
+rm.action.undo-not-last=\u76f4\u524d\u306e\u4fdd\u7ba1\u51e6\u7406\u306f\u30ab\u30c3\u30c8\u30aa\u30d5\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u30ab\u30c3\u30c8\u30aa\u30d5\u3092\u5143\u306b\u623b\u3059\u64cd\u4f5c\u306f\u884c\u3048\u307e\u305b\u3093\u3002
+rm.action.records_only_undeclared=\u5b8c\u4e86\u3067\u304d\u308b\u306e\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u3067\u3059\u3002
+rm.action.event-not-undone=\u30a4\u30d9\u30f3\u30c8 ''{0}'' \u306f\u4fdd\u7ba1\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u5143\u306b\u623b\u3059\u64cd\u4f5c\u306f\u884c\u3048\u307e\u305b\u3093\u3002
+rm.action.node-not-record-category=''{0}'' \u306f\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002
+rm.action.parameter-not-supplied=''{0}'' \u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002
+rm.action.delete-not-hold-type=''{1}'' \u306f\u30bf\u30a4\u30d7 ''{0}'' \u3067\u306f\u306a\u3044\u305f\u3081\u3001\u30db\u30fc\u30eb\u30c9\u3092\u524a\u9664\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
+rm.action.cast-to-rm-type=\u30ab\u30b9\u30bf\u30e0\u306e\u30d5\u30a9\u30eb\u30c0\u30bf\u30a4\u30d7\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093\u3002
+rm.action.record-folder-create=\u5225\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u5185\u306b\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_nb.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_nb.properties
index 80aa41c6a0..f815e606b4 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_nb.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_nb.properties
@@ -1,42 +1,42 @@
-rm.action.not-defined=Oppf\u00f8ringsh\u00e5ndteringshandlingen {0} er ikke definert.
-rm.action.no-implicit-noderef=Det oppsto en systemfeil. derfor det mulig at handlingen {0} ikke var vellykket.
-rm.action.record-not-declared=Retensjonshandlingen {0} kunne ikke utf\u00f8re fordi oppf\u00f8ringen {1} ikke er fullf\u00f8rt.
-rm.action.expected-record-level=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi dette {1} ikke er en oppf\u00f8ring.
-rm.action.not-all-records-declared=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi ikke alle oppf\u00f8ringene i oppf\u00f8ringsmappen var fullf\u00f8rt. (actionedUponNodeRef={1})
-rm.action.not-eligible=Oppf\u00f8ringen eller oppf\u00f8ringsmappen {1} er enn\u00e5 ikke klar for retensjonshandlingen {0}.
-rm.action.no-disposition-instructions=Retensjonsh\u00e5ndlingen {0} kunne ikke utf\u00f8res fordi ingen retensjonsinstruksjoner ble funnet. (nodeRef={1})
-rm.action.no-disposition-lisfecycle-set=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi det ikke fantes noe tilgjengelig livssyklussett ved retensjon. (nodeRef={1})
-rm.action.next-disp-not-set=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi neste retensjonshandling ikke er et sett. (nodeRef={1})
-rm.action.not-next-disp=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi dette ikke er den neste retensjonshandlingen til denne oppf\u00f8ringen eller oppf\u00f8ringsmappen. (nodeRef={1})
-rm.action.not-record-folder=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi {1} ikke er en oppf\u00f8ringsmappe.
-rm.action.actioned-upon-not-record=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi {1} ikke er en oppf\u00f8ring.
-rm.action.custom-aspect-not-recognised=Den tilpassede typen kan ikke brukes fordi den ikke gjenkjennes. (customAspect={0})
-rm.action.event-no-disp-lc=Hendelsen {0} kan ikke fullf\u00f8res fordi den ikke er definert p\u00e5 livssyklusen ved retensjon.
-rm.action.undeclared-only-records=Kun oppf\u00f8ringer kan fullf\u00f8res. (nodeRef={0})
-rm.action.no-declare-mand-prop=Alle de obligatoriske egenskapene til oppf\u00f8ringen m\u00e5 stilles inn f\u00f8r oppf\u00f8ringen kan fullf\u00f8res.
-rm.action.ghosted-prop-update=Du kan ikke oppdatere egenskapene til en oppf\u00f8ring som er destruert tidligere.
-rm.action.valid-date-disp-asof=Angi en gyldig dato for retensjonshandlingen per datoen.
-rm.action.disp-asof-lifecycle-applied=Retensjonen per en dato til en oppf\u00f8ring eller oppf\u00f8ringsmappe der en livssyklus er p\u00e5f\u00f8rt, kan ikke redigeres.
-rm.action.hold-edit-reason-none=Grunnen til holdet kan ikke redigeres fordi holdet ble opprettet uten grunn. Pr\u00f8v \u00e5 opprette holdet p\u00e5 nytt.
-rm.action.hold-edit-type=Grunnen til holdet for {1} kan ikke redigeres fordi det ikke er et hold.
-rm.action.specify-avlid-date=Angi en gyldig dato for gjennomgang per datoen.
-rm.action.review-details-only=Kun Gjennomgangsdetaljene til de sv\u00e6rt viktige oppf\u00f8ringene kan redigeres.
-rm.action.freeze-no-reason=En oppf\u00f8ring kan ikke holdes uten grunn. Legg til en grunn til holdet.
-rm.action.freeze-only-records-folders=Du kan bare holde oppf\u00f8ringer eller oppf\u00f8ringsmapper.
-rm.action.no-open-record-folder={0} kan ikke \u00e5pnes p\u00e5 nytt fordi den er ikke en oppf\u00f8ringsmappe.
-rm.action.not-hold-type=Handlingen kan ikke utf\u00f8res p\u00e5 {1} fordi den ikke er p\u00e5 hold.
-rm.action.no-read-mime-message=Filtypemeldingen kunne ikke leses fordi {0}.
-rm.action.email-declared=E-posten kan ikke deles fordi oppf\u00f8ringen er fullf\u00f8rt. (actionedUponNodeRef={0})
-rm.action.email-not-record=E-posten kan ikke deles fordi filen, mappen eller kategorien ikke er en oppf\u00f8ring. (actionedUponNodeRef={0})
-rm.action.email-create-child-assoc=Kunne ikke opprette en egendefinert barnassosiasjon.
-rm.action.node-already-transfer=Filen, mappen eller kategorien er overf\u00f8res allerede.
-rm.action.node-not-transfer=Filen, mappen eller kategorien er ikke et overf\u00f8ringselement.
-rm.action.undo-not-last=Cut off kan ikke angres fordi den siste retensjonshandlingen ikke ble cut off.
-rm.action.records_only_undeclared=Du kan bare fullf\u00f8re oppf\u00f8ringer.
-rm.action.event-not-undone=Hendelsen {0} kan ikke angres fordi den ikke p\u00e5 definert i livssyklusen ved retensjon.
-rm.action.node-not-record-category=Retensjonsplanen til {0} kan ikke opprett fordi den er ikke en oppf\u00f8ringskategori.
-rm.action.parameter-not-supplied=Legg til ''{0}'' for \u00e5 fortsette.
-rm.action.delete-not-hold-type=Holdet kan ikke slettes fordi {1} ikke er en type {0}.
-rm.action.cast-to-rm-type=En tilpasset mappetype kan ikke lastes opp p\u00e5 oppf\u00f8ringsh\u00e5ndteringsfilplanen.
-rm.action.record-folder-create=En oppf\u00f8ringsmappen kan ikke opprettes i en annen oppf\u00f8ringsmappe.
-
+rm.action.not-defined=Oppf\u00f8ringsh\u00e5ndteringshandlingen {0} er ikke definert.
+rm.action.no-implicit-noderef=Det oppsto en systemfeil. derfor det mulig at handlingen {0} ikke var vellykket.
+rm.action.record-not-declared=Retensjonshandlingen {0} kunne ikke utf\u00f8re fordi oppf\u00f8ringen {1} ikke er fullf\u00f8rt.
+rm.action.expected-record-level=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi dette {1} ikke er en oppf\u00f8ring.
+rm.action.not-all-records-declared=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi ikke alle oppf\u00f8ringene i oppf\u00f8ringsmappen var fullf\u00f8rt. (actionedUponNodeRef={1})
+rm.action.not-eligible=Oppf\u00f8ringen eller oppf\u00f8ringsmappen {1} er enn\u00e5 ikke klar for retensjonshandlingen {0}.
+rm.action.no-disposition-instructions=Retensjonsh\u00e5ndlingen {0} kunne ikke utf\u00f8res fordi ingen retensjonsinstruksjoner ble funnet. (nodeRef={1})
+rm.action.no-disposition-lisfecycle-set=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi det ikke fantes noe tilgjengelig livssyklussett ved retensjon. (nodeRef={1})
+rm.action.next-disp-not-set=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi neste retensjonshandling ikke er et sett. (nodeRef={1})
+rm.action.not-next-disp=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi dette ikke er den neste retensjonshandlingen til denne oppf\u00f8ringen eller oppf\u00f8ringsmappen. (nodeRef={1})
+rm.action.not-record-folder=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi {1} ikke er en oppf\u00f8ringsmappe.
+rm.action.actioned-upon-not-record=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi {1} ikke er en oppf\u00f8ring.
+rm.action.custom-aspect-not-recognised=Den tilpassede typen kan ikke brukes fordi den ikke gjenkjennes. (customAspect={0})
+rm.action.event-no-disp-lc=Hendelsen {0} kan ikke fullf\u00f8res fordi den ikke er definert p\u00e5 livssyklusen ved retensjon.
+rm.action.undeclared-only-records=Kun oppf\u00f8ringer kan fullf\u00f8res. (nodeRef={0})
+rm.action.no-declare-mand-prop=Alle de obligatoriske egenskapene til oppf\u00f8ringen m\u00e5 stilles inn f\u00f8r oppf\u00f8ringen kan fullf\u00f8res.
+rm.action.ghosted-prop-update=Du kan ikke oppdatere egenskapene til en oppf\u00f8ring som er destruert tidligere.
+rm.action.valid-date-disp-asof=Angi en gyldig dato for retensjonshandlingen per datoen.
+rm.action.disp-asof-lifecycle-applied=Retensjonen per en dato til en oppf\u00f8ring eller oppf\u00f8ringsmappe der en livssyklus er p\u00e5f\u00f8rt, kan ikke redigeres.
+rm.action.hold-edit-reason-none=Grunnen til holdet kan ikke redigeres fordi holdet ble opprettet uten grunn. Pr\u00f8v \u00e5 opprette holdet p\u00e5 nytt.
+rm.action.hold-edit-type=Grunnen til holdet for {1} kan ikke redigeres fordi det ikke er et hold.
+rm.action.specify-avlid-date=Angi en gyldig dato for gjennomgang per datoen.
+rm.action.review-details-only=Kun Gjennomgangsdetaljene til de sv\u00e6rt viktige oppf\u00f8ringene kan redigeres.
+rm.action.freeze-no-reason=En oppf\u00f8ring kan ikke holdes uten grunn. Legg til en grunn til holdet.
+rm.action.freeze-only-records-folders=Du kan bare holde oppf\u00f8ringer eller oppf\u00f8ringsmapper.
+rm.action.no-open-record-folder={0} kan ikke \u00e5pnes p\u00e5 nytt fordi den er ikke en oppf\u00f8ringsmappe.
+rm.action.not-hold-type=Handlingen kan ikke utf\u00f8res p\u00e5 {1} fordi den ikke er p\u00e5 hold.
+rm.action.no-read-mime-message=Filtypemeldingen kunne ikke leses fordi {0}.
+rm.action.email-declared=E-posten kan ikke deles fordi oppf\u00f8ringen er fullf\u00f8rt. (actionedUponNodeRef={0})
+rm.action.email-not-record=E-posten kan ikke deles fordi filen, mappen eller kategorien ikke er en oppf\u00f8ring. (actionedUponNodeRef={0})
+rm.action.email-create-child-assoc=Kunne ikke opprette en egendefinert barnassosiasjon.
+rm.action.node-already-transfer=Filen, mappen eller kategorien er overf\u00f8res allerede.
+rm.action.node-not-transfer=Filen, mappen eller kategorien er ikke et overf\u00f8ringselement.
+rm.action.undo-not-last=Cut off kan ikke angres fordi den siste retensjonshandlingen ikke ble cut off.
+rm.action.records_only_undeclared=Du kan bare fullf\u00f8re oppf\u00f8ringer.
+rm.action.event-not-undone=Hendelsen {0} kan ikke angres fordi den ikke p\u00e5 definert i livssyklusen ved retensjon.
+rm.action.node-not-record-category=Retensjonsplanen til {0} kan ikke opprett fordi den er ikke en oppf\u00f8ringskategori.
+rm.action.parameter-not-supplied=Legg til ''{0}'' for \u00e5 fortsette.
+rm.action.delete-not-hold-type=Holdet kan ikke slettes fordi {1} ikke er en type {0}.
+rm.action.cast-to-rm-type=En tilpasset mappetype kan ikke lastes opp p\u00e5 oppf\u00f8ringsh\u00e5ndteringsfilplanen.
+rm.action.record-folder-create=En oppf\u00f8ringsmappen kan ikke opprettes i en annen oppf\u00f8ringsmappe.
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_nl.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_nl.properties
index 33c6ffdf99..084f6340e8 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_nl.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_nl.properties
@@ -1,42 +1,42 @@
-rm.action.not-defined=De Records Management-actie {0} is niet gedefinieerd.
-rm.action.no-implicit-noderef=Er is een systeemfout opgetreden en de actie {0} is mogelijk niet geslaagd.
-rm.action.record-not-declared=De retentieactie {0} kon niet worden uitgevoerd omdat de record {1} niet afgerond is.
-rm.action.expected-record-level=De retentieactie {0} kon niet worden uitgevoerd omdat {1} geen record is.
-rm.action.not-all-records-declared=De retentieactie {0} kon niet worden uitgevoerd omdat niet alle records in de archiefmap afgerond zijn. (actionedUponNodeRef={1})
-rm.action.not-eligible=De record of archiefmap {1} is nog niet gereed voor de retentieactie {0}.
-rm.action.no-disposition-instructions=De retentieactie {0} kon niet worden uitgevoerd omdat er geen retentie-instructies zijn gevonden. (nodeRef={1})
-rm.action.no-disposition-lisfecycle-set=De retentieactie {0} kon niet worden uitgevoerd omdat er geen retentiecyclus is ingesteld. (nodeRef={1})
-rm.action.next-disp-not-set=De retentiesactie {0} kon niet worden uitgevoerd omdat de volgende retentieactie niet is ingesteld. (nodeRef={1})
-rm.action.not-next-disp=De retentieactie {0} kon niet worden uitgevoerd omdat dit niet de volgende retentieactie voor deze record of deze archiefmap is. (nodeRef={1})
-rm.action.not-record-folder=De retentieactie {0} kon niet worden uitgevoerd omdat {1} geen archiefmap is.
-rm.action.actioned-upon-not-record=De actie {0} kan niet worden uitgevoerd omdat {1} geen record is.
-rm.action.custom-aspect-not-recognised=Het aangepaste type kan niet worden toegepast omdat het niet wordt herkend. (customAspect={0})
-rm.action.event-no-disp-lc=De gebeurtenis {0} kan niet worden afgerond omdat deze niet is gedefinieerd in de retentiecyclus.
-rm.action.undeclared-only-records=Er kunnen alleen records worden afgerond. (nodeRef={0})
-rm.action.no-declare-mand-prop=U moet alle verplichte eigenschappen van de record instellen voordat u de record kunt afronden.
-rm.action.ghosted-prop-update=U kunt de eigenschappen van een eerder vernietigde record niet bijwerken.
-rm.action.valid-date-disp-asof=Voer een geldige datum in voor de begindatum van de retentieactie.
-rm.action.disp-asof-lifecycle-applied=U kunt de begindatum van de retentie van een record of archiefmap waarvoor een levenscyclus is toegepast niet bewerken.
-rm.action.hold-edit-reason-none=U kunt de reden van de wachtstand niet bewerken omdat de wachtstand is gemaakt zonder reden. Probeer de wachtstand opnieuw te maken.
-rm.action.hold-edit-type=U kunt de reden van de wachtstand voor {1} niet bewerken omdat dit geen wachtstand is.
-rm.action.specify-avlid-date=Voer een geldige datum in voor de begindatum van de revisie.
-rm.action.review-details-only=U kunt alleen de revisiegegevens van vitale records bewerken.
-rm.action.freeze-no-reason=U kunt een record niet zonder reden in de wachtstand plaatsen. Voeg een reden toe aan de wachtstand.
-rm.action.freeze-only-records-folders=U kunt alleen records of archiefmappen in de wachtstand plaatsen.
-rm.action.no-open-record-folder=U kunt {0} niet heropenen omdat dit geen archiefmap is.
-rm.action.not-hold-type=U kunt de actie niet uitvoeren voor {1} omdat dit geen wachtstand is.
-rm.action.no-read-mime-message=Het bestandstype kon niet worden gelezen omdat {0}.
-rm.action.email-declared=De e-mail kan niet worden opgesplitst omdat de record is afgerond. (actionedUponNodeRef={0})
-rm.action.email-not-record=De e-mail kan niet worden opgesplitst omdat het bestand, de map of de categorie geen record is. (actionedUponNodeRef={0})
-rm.action.email-create-child-assoc=Er kan geen aangepaste onderliggende koppeling worden gemaakt.
-rm.action.node-already-transfer=Het bestand, de map of de categorie wordt al overgezet.
-rm.action.node-not-transfer=Het bestand, de map of de categorie is geen overzetobject.
-rm.action.undo-not-last=U kunt het afsluiten niet ongedaan maken omdat de laatste retentieactie niet was afgesloten.
-rm.action.records_only_undeclared=U kunt alleen records afronden.
-rm.action.event-not-undone=U kunt de gebeurtenis {0} niet ongedaan maken omdat deze niet in de retentiecyclus is gedefinieerd.
-rm.action.node-not-record-category=U kunt geen retentieschema maken voor {0} omdat dit geen recordcategorie is.
-rm.action.parameter-not-supplied=Voeg een ''{0}'' toe om door te gaan.
-rm.action.delete-not-hold-type=De wachtstand kan niet worden verwijderd omdat {1} niet van het type {0} is.
-rm.action.cast-to-rm-type=U kunt geen aangepast maptype uploaden naar het ordeningsplan van Records Management.
-rm.action.record-folder-create=U kunt geen archiefmap in een andere archiefmap maken.
-
+rm.action.not-defined=De Records Management-actie {0} is niet gedefinieerd.
+rm.action.no-implicit-noderef=Er is een systeemfout opgetreden en de actie {0} is mogelijk niet geslaagd.
+rm.action.record-not-declared=De retentieactie {0} kon niet worden uitgevoerd omdat de record {1} niet afgerond is.
+rm.action.expected-record-level=De retentieactie {0} kon niet worden uitgevoerd omdat {1} geen record is.
+rm.action.not-all-records-declared=De retentieactie {0} kon niet worden uitgevoerd omdat niet alle records in de archiefmap afgerond zijn. (actionedUponNodeRef={1})
+rm.action.not-eligible=De record of archiefmap {1} is nog niet gereed voor de retentieactie {0}.
+rm.action.no-disposition-instructions=De retentieactie {0} kon niet worden uitgevoerd omdat er geen retentie-instructies zijn gevonden. (nodeRef={1})
+rm.action.no-disposition-lisfecycle-set=De retentieactie {0} kon niet worden uitgevoerd omdat er geen retentiecyclus is ingesteld. (nodeRef={1})
+rm.action.next-disp-not-set=De retentiesactie {0} kon niet worden uitgevoerd omdat de volgende retentieactie niet is ingesteld. (nodeRef={1})
+rm.action.not-next-disp=De retentieactie {0} kon niet worden uitgevoerd omdat dit niet de volgende retentieactie voor deze record of deze archiefmap is. (nodeRef={1})
+rm.action.not-record-folder=De retentieactie {0} kon niet worden uitgevoerd omdat {1} geen archiefmap is.
+rm.action.actioned-upon-not-record=De actie {0} kan niet worden uitgevoerd omdat {1} geen record is.
+rm.action.custom-aspect-not-recognised=Het aangepaste type kan niet worden toegepast omdat het niet wordt herkend. (customAspect={0})
+rm.action.event-no-disp-lc=De gebeurtenis {0} kan niet worden afgerond omdat deze niet is gedefinieerd in de retentiecyclus.
+rm.action.undeclared-only-records=Er kunnen alleen records worden afgerond. (nodeRef={0})
+rm.action.no-declare-mand-prop=U moet alle verplichte eigenschappen van de record instellen voordat u de record kunt afronden.
+rm.action.ghosted-prop-update=U kunt de eigenschappen van een eerder vernietigde record niet bijwerken.
+rm.action.valid-date-disp-asof=Voer een geldige datum in voor de begindatum van de retentieactie.
+rm.action.disp-asof-lifecycle-applied=U kunt de begindatum van de retentie van een record of archiefmap waarvoor een levenscyclus is toegepast niet bewerken.
+rm.action.hold-edit-reason-none=U kunt de reden van de wachtstand niet bewerken omdat de wachtstand is gemaakt zonder reden. Probeer de wachtstand opnieuw te maken.
+rm.action.hold-edit-type=U kunt de reden van de wachtstand voor {1} niet bewerken omdat dit geen wachtstand is.
+rm.action.specify-avlid-date=Voer een geldige datum in voor de begindatum van de revisie.
+rm.action.review-details-only=U kunt alleen de revisiegegevens van vitale records bewerken.
+rm.action.freeze-no-reason=U kunt een record niet zonder reden in de wachtstand plaatsen. Voeg een reden toe aan de wachtstand.
+rm.action.freeze-only-records-folders=U kunt alleen records of archiefmappen in de wachtstand plaatsen.
+rm.action.no-open-record-folder=U kunt {0} niet heropenen omdat dit geen archiefmap is.
+rm.action.not-hold-type=U kunt de actie niet uitvoeren voor {1} omdat dit geen wachtstand is.
+rm.action.no-read-mime-message=Het bestandstype kon niet worden gelezen omdat {0}.
+rm.action.email-declared=De e-mail kan niet worden opgesplitst omdat de record is afgerond. (actionedUponNodeRef={0})
+rm.action.email-not-record=De e-mail kan niet worden opgesplitst omdat het bestand, de map of de categorie geen record is. (actionedUponNodeRef={0})
+rm.action.email-create-child-assoc=Er kan geen aangepaste onderliggende koppeling worden gemaakt.
+rm.action.node-already-transfer=Het bestand, de map of de categorie wordt al overgezet.
+rm.action.node-not-transfer=Het bestand, de map of de categorie is geen overzetobject.
+rm.action.undo-not-last=U kunt het afsluiten niet ongedaan maken omdat de laatste retentieactie niet was afgesloten.
+rm.action.records_only_undeclared=U kunt alleen records afronden.
+rm.action.event-not-undone=U kunt de gebeurtenis {0} niet ongedaan maken omdat deze niet in de retentiecyclus is gedefinieerd.
+rm.action.node-not-record-category=U kunt geen retentieschema maken voor {0} omdat dit geen recordcategorie is.
+rm.action.parameter-not-supplied=Voeg een ''{0}'' toe om door te gaan.
+rm.action.delete-not-hold-type=De wachtstand kan niet worden verwijderd omdat {1} niet van het type {0} is.
+rm.action.cast-to-rm-type=U kunt geen aangepast maptype uploaden naar het ordeningsplan van Records Management.
+rm.action.record-folder-create=U kunt geen archiefmap in een andere archiefmap maken.
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_pt_BR.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_pt_BR.properties
index 97c8d07d13..fddaeebd06 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_pt_BR.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_pt_BR.properties
@@ -1,42 +1,42 @@
-rm.action.not-defined=A a\u00e7\u00e3o {0} do Records Management n\u00e3o foi definida.
-rm.action.no-implicit-noderef=Houve um erro do sistema e a a\u00e7\u00e3o {0} pode n\u00e3o ter sucesso.
-rm.action.record-not-declared=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois o documento arquiv\u00edstico {1} n\u00e3o est\u00e1 conclu\u00eddo.
-rm.action.expected-record-level=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois {1} n\u00e3o \u00e9 um documento arquiv\u00edstico.
-rm.action.not-all-records-declared=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois nem todos os documentos arquiv\u00edsticos na pasta de documentos arquiv\u00edsticos est\u00e3o conclu\u00eddos. (actionedUponNodeRef={1})
-rm.action.not-eligible=O documento arquiv\u00edstico ou pasta de documento arquiv\u00edstico {1} n\u00e3o est\u00e1 pronto para a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}.
-rm.action.no-disposition-instructions=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois nenhuma instru\u00e7\u00e3o de reten\u00e7\u00e3o foi localizada. (nodeRef={1})
-rm.action.no-disposition-lisfecycle-set=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois n\u00e3o h\u00e1 conjunto de ciclo de vida de reten\u00e7\u00e3o dispon\u00edvel. (nodeRef={1})
-rm.action.next-disp-not-set=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois a pr\u00f3xima a\u00e7\u00e3o de reten\u00e7\u00e3o n\u00e3o est\u00e1 definida. (nodeRef={1})
-rm.action.not-next-disp=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois esta n\u00e3o \u00e9 a pr\u00f3xima a\u00e7\u00e3o de reten\u00e7\u00e3o para este documento arquiv\u00edstico ou esta pasta de documento arquiv\u00edstico. (nodeRef={1})
-rm.action.not-record-folder=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois {1} n\u00e3o \u00e9 uma pasta de documento arquiv\u00edstico.
-rm.action.actioned-upon-not-record=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o {0} porque {1} n\u00e3o \u00e9 um documento arquiv\u00edstico.
-rm.action.custom-aspect-not-recognised=N\u00e3o \u00e9 poss\u00edvel aplicar o tipo personalizado porque ele n\u00e3o \u00e9 reconhecido. (customAspect={0})
-rm.action.event-no-disp-lc=N\u00e3o \u00e9 poss\u00edvel concluir o evento {0}, pois ele n\u00e3o est\u00e1 definido no ciclo de vida da reten\u00e7\u00e3o.
-rm.action.undeclared-only-records=Apenas documentos arquiv\u00edsticos podem ser conclu\u00eddos. (nodeRef={0})
-rm.action.no-declare-mand-prop=Voc\u00ea deve definir todas as propriedades obrigat\u00f3rias do documento arquiv\u00edstico antes de poder concluir o documento arquiv\u00edstico.
-rm.action.ghosted-prop-update=N\u00e3o \u00e9 poss\u00edvel atualizar as propriedades de um documento arquiv\u00edstico destru\u00eddo anteriormente.
-rm.action.valid-date-disp-asof=Insira uma data v\u00e1lida para a data de in\u00edcio da a\u00e7\u00e3o de reten\u00e7\u00e3o.
-rm.action.disp-asof-lifecycle-applied=N\u00e3o \u00e9 poss\u00edvel editar a data de in\u00edcio da reten\u00e7\u00e3o de um documento arquiv\u00edstico ou uma pasta de documento arquiv\u00edstico que tenha um ciclo de vida aplicado.
-rm.action.hold-edit-reason-none=N\u00e3o \u00e9 poss\u00edvel editar o motivo para manter, pois a espera foi criada sem um motivo. Tente recriar a espera.
-rm.action.hold-edit-type=N\u00e3o \u00e9 poss\u00edvel editar o motivo para manter de {1}, pois isso n\u00e3o \u00e9 uma espera.
-rm.action.specify-avlid-date=Insira uma data v\u00e1lida para a data de in\u00edcio da revis\u00e3o.
-rm.action.review-details-only=Voc\u00ea somente pode editar os detalhes de revis\u00e3o de documentos arquiv\u00edsticos vitais.
-rm.action.freeze-no-reason=N\u00e3o \u00e9 poss\u00edvel manter um documento arquiv\u00edstico sem um motivo. Adicione um motivo para manter.
-rm.action.freeze-only-records-folders=Voc\u00ea pode manter somente documentos arquiv\u00edsticos ou pastas de documentos arquiv\u00edsticos.
-rm.action.no-open-record-folder=N\u00e3o \u00e9 poss\u00edvel reabrir {0}, pois isso n\u00e3o \u00e9 uma pasta de documento arquiv\u00edstico.
-rm.action.not-hold-type=N\u00e3o \u00e9 poss\u00edvel realizar a a\u00e7\u00e3o em {1}, pois isso n\u00e3o \u00e9 uma espera.
-rm.action.no-read-mime-message=N\u00e3o foi poss\u00edvel ler a mensagem de tipo de arquivo, pois {0}.
-rm.action.email-declared=N\u00e3o foi poss\u00edvel dividir o e-mail, pois o documento arquiv\u00edstico est\u00e1 conclu\u00eddo. (actionedUponNodeRef={0})
-rm.action.email-not-record=N\u00e3o foi poss\u00edvel dividir o e-mail, pois o arquivo, pasta ou categoria n\u00e3o \u00e9 um documento arquiv\u00edstico. (actionedUponNodeRef={0})
-rm.action.email-create-child-assoc=N\u00e3o foi poss\u00edvel criar uma associa\u00e7\u00e3o secund\u00e1ria personalizada.
-rm.action.node-already-transfer=O arquivo, pasta ou categoria j\u00e1 est\u00e1 sendo transferido.
-rm.action.node-not-transfer=O arquivo, pasta ou categoria n\u00e3o \u00e9 um objeto de transfer\u00eancia.
-rm.action.undo-not-last=N\u00e3o \u00e9 poss\u00edvel desfazer o corte, pois a \u00faltima a\u00e7\u00e3o de reten\u00e7\u00e3o n\u00e3o foi cortada.
-rm.action.records_only_undeclared=Voc\u00ea s\u00f3 pode concluir documentos arquiv\u00edsticos.
-rm.action.event-not-undone=N\u00e3o \u00e9 poss\u00edvel desfazer o evento {0}, pois ele n\u00e3o est\u00e1 definido no ciclo de vida de reten\u00e7\u00e3o.
-rm.action.node-not-record-category=N\u00e3o \u00e9 poss\u00edvel criar uma programa\u00e7\u00e3o de reten\u00e7\u00e3o para ({0}), pois n\u00e3o \u00e9 uma categoria de documento arquiv\u00edstico.
-rm.action.parameter-not-supplied=Adicione um(a) ''{0}'' para continuar.
-rm.action.delete-not-hold-type=N\u00e3o foi poss\u00edvel excluir a espera, pois {1} n\u00e3o \u00e9 do tipo {0}.
-rm.action.cast-to-rm-type=N\u00e3o \u00e9 poss\u00edvel carregar um tipo de pasta personalizada para o plano de arquivo do Records Management.
-rm.action.record-folder-create=N\u00e3o \u00e9 poss\u00edvel criar uma pasta de documento arquiv\u00edstico em outra pasta de documento arquiv\u00edstico.
-
+rm.action.not-defined=A a\u00e7\u00e3o {0} do Records Management n\u00e3o foi definida.
+rm.action.no-implicit-noderef=Houve um erro do sistema e a a\u00e7\u00e3o {0} pode n\u00e3o ter sucesso.
+rm.action.record-not-declared=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois o documento arquiv\u00edstico {1} n\u00e3o est\u00e1 conclu\u00eddo.
+rm.action.expected-record-level=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois {1} n\u00e3o \u00e9 um documento arquiv\u00edstico.
+rm.action.not-all-records-declared=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois nem todos os documentos arquiv\u00edsticos na pasta de documentos arquiv\u00edsticos est\u00e3o conclu\u00eddos. (actionedUponNodeRef={1})
+rm.action.not-eligible=O documento arquiv\u00edstico ou pasta de documento arquiv\u00edstico {1} n\u00e3o est\u00e1 pronto para a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}.
+rm.action.no-disposition-instructions=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois nenhuma instru\u00e7\u00e3o de reten\u00e7\u00e3o foi localizada. (nodeRef={1})
+rm.action.no-disposition-lisfecycle-set=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois n\u00e3o h\u00e1 conjunto de ciclo de vida de reten\u00e7\u00e3o dispon\u00edvel. (nodeRef={1})
+rm.action.next-disp-not-set=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois a pr\u00f3xima a\u00e7\u00e3o de reten\u00e7\u00e3o n\u00e3o est\u00e1 definida. (nodeRef={1})
+rm.action.not-next-disp=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois esta n\u00e3o \u00e9 a pr\u00f3xima a\u00e7\u00e3o de reten\u00e7\u00e3o para este documento arquiv\u00edstico ou esta pasta de documento arquiv\u00edstico. (nodeRef={1})
+rm.action.not-record-folder=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois {1} n\u00e3o \u00e9 uma pasta de documento arquiv\u00edstico.
+rm.action.actioned-upon-not-record=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o {0} porque {1} n\u00e3o \u00e9 um documento arquiv\u00edstico.
+rm.action.custom-aspect-not-recognised=N\u00e3o \u00e9 poss\u00edvel aplicar o tipo personalizado porque ele n\u00e3o \u00e9 reconhecido. (customAspect={0})
+rm.action.event-no-disp-lc=N\u00e3o \u00e9 poss\u00edvel concluir o evento {0}, pois ele n\u00e3o est\u00e1 definido no ciclo de vida da reten\u00e7\u00e3o.
+rm.action.undeclared-only-records=Apenas documentos arquiv\u00edsticos podem ser conclu\u00eddos. (nodeRef={0})
+rm.action.no-declare-mand-prop=Voc\u00ea deve definir todas as propriedades obrigat\u00f3rias do documento arquiv\u00edstico antes de poder concluir o documento arquiv\u00edstico.
+rm.action.ghosted-prop-update=N\u00e3o \u00e9 poss\u00edvel atualizar as propriedades de um documento arquiv\u00edstico destru\u00eddo anteriormente.
+rm.action.valid-date-disp-asof=Insira uma data v\u00e1lida para a data de in\u00edcio da a\u00e7\u00e3o de reten\u00e7\u00e3o.
+rm.action.disp-asof-lifecycle-applied=N\u00e3o \u00e9 poss\u00edvel editar a data de in\u00edcio da reten\u00e7\u00e3o de um documento arquiv\u00edstico ou uma pasta de documento arquiv\u00edstico que tenha um ciclo de vida aplicado.
+rm.action.hold-edit-reason-none=N\u00e3o \u00e9 poss\u00edvel editar o motivo para manter, pois a espera foi criada sem um motivo. Tente recriar a espera.
+rm.action.hold-edit-type=N\u00e3o \u00e9 poss\u00edvel editar o motivo para manter de {1}, pois isso n\u00e3o \u00e9 uma espera.
+rm.action.specify-avlid-date=Insira uma data v\u00e1lida para a data de in\u00edcio da revis\u00e3o.
+rm.action.review-details-only=Voc\u00ea somente pode editar os detalhes de revis\u00e3o de documentos arquiv\u00edsticos vitais.
+rm.action.freeze-no-reason=N\u00e3o \u00e9 poss\u00edvel manter um documento arquiv\u00edstico sem um motivo. Adicione um motivo para manter.
+rm.action.freeze-only-records-folders=Voc\u00ea pode manter somente documentos arquiv\u00edsticos ou pastas de documentos arquiv\u00edsticos.
+rm.action.no-open-record-folder=N\u00e3o \u00e9 poss\u00edvel reabrir {0}, pois isso n\u00e3o \u00e9 uma pasta de documento arquiv\u00edstico.
+rm.action.not-hold-type=N\u00e3o \u00e9 poss\u00edvel realizar a a\u00e7\u00e3o em {1}, pois isso n\u00e3o \u00e9 uma espera.
+rm.action.no-read-mime-message=N\u00e3o foi poss\u00edvel ler a mensagem de tipo de arquivo, pois {0}.
+rm.action.email-declared=N\u00e3o foi poss\u00edvel dividir o e-mail, pois o documento arquiv\u00edstico est\u00e1 conclu\u00eddo. (actionedUponNodeRef={0})
+rm.action.email-not-record=N\u00e3o foi poss\u00edvel dividir o e-mail, pois o arquivo, pasta ou categoria n\u00e3o \u00e9 um documento arquiv\u00edstico. (actionedUponNodeRef={0})
+rm.action.email-create-child-assoc=N\u00e3o foi poss\u00edvel criar uma associa\u00e7\u00e3o secund\u00e1ria personalizada.
+rm.action.node-already-transfer=O arquivo, pasta ou categoria j\u00e1 est\u00e1 sendo transferido.
+rm.action.node-not-transfer=O arquivo, pasta ou categoria n\u00e3o \u00e9 um objeto de transfer\u00eancia.
+rm.action.undo-not-last=N\u00e3o \u00e9 poss\u00edvel desfazer o corte, pois a \u00faltima a\u00e7\u00e3o de reten\u00e7\u00e3o n\u00e3o foi cortada.
+rm.action.records_only_undeclared=Voc\u00ea s\u00f3 pode concluir documentos arquiv\u00edsticos.
+rm.action.event-not-undone=N\u00e3o \u00e9 poss\u00edvel desfazer o evento {0}, pois ele n\u00e3o est\u00e1 definido no ciclo de vida de reten\u00e7\u00e3o.
+rm.action.node-not-record-category=N\u00e3o \u00e9 poss\u00edvel criar uma programa\u00e7\u00e3o de reten\u00e7\u00e3o para ({0}), pois n\u00e3o \u00e9 uma categoria de documento arquiv\u00edstico.
+rm.action.parameter-not-supplied=Adicione um(a) ''{0}'' para continuar.
+rm.action.delete-not-hold-type=N\u00e3o foi poss\u00edvel excluir a espera, pois {1} n\u00e3o \u00e9 do tipo {0}.
+rm.action.cast-to-rm-type=N\u00e3o \u00e9 poss\u00edvel carregar um tipo de pasta personalizada para o plano de arquivo do Records Management.
+rm.action.record-folder-create=N\u00e3o \u00e9 poss\u00edvel criar uma pasta de documento arquiv\u00edstico em outra pasta de documento arquiv\u00edstico.
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_ru.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_ru.properties
index 20cab5a8ed..701808232d 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_ru.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_ru.properties
@@ -1,42 +1,42 @@
-rm.action.not-defined=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438 {0} \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e.
-rm.action.no-implicit-noderef=\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 {0} \u043c\u043e\u0433\u043b\u043e \u0431\u044b\u0442\u044c \u043d\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e.
-rm.action.record-not-declared=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u0437\u0430\u043f\u0438\u0441\u044c {1} \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0435\u043f\u043e\u043b\u043d\u043e\u0439.
-rm.action.expected-record-level=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u044d\u043b\u0435\u043c\u0435\u043d\u0442 {1} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c\u044e.
-rm.action.not-all-records-declared=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u0432 \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0438\u043c\u0435\u044e\u0442\u0441\u044f \u043d\u0435\u043f\u043e\u043b\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438. (actionedUponNodeRef={1})
-rm.action.not-eligible=\u0417\u0430\u043f\u0438\u0441\u044c \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 {1} \u0435\u0449\u0435 \u043d\u0435 \u0433\u043e\u0442\u043e\u0432\u044b \u0434\u043b\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}.
-rm.action.no-disposition-instructions=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e. (nodeRef={1})
-rm.action.no-disposition-lisfecycle-set=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u044b\u0439 \u0446\u0438\u043a\u043b \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f. (nodeRef={1})
-rm.action.next-disp-not-set=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f. (nodeRef={1})
-rm.action.not-next-disp=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u0434\u0430\u043d\u043d\u043e\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435\u043c \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439. (nodeRef={1})
-rm.action.not-record-folder=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u044d\u043b\u0435\u043c\u0435\u043d\u0442 {1} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u0430\u043f\u043a\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
-rm.action.actioned-upon-not-record=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 {0}: \u044d\u043b\u0435\u043c\u0435\u043d\u0442 {1} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c\u044e.
-rm.action.custom-aspect-not-recognised=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0442\u0438\u043f: \u0442\u0438\u043f \u043d\u0435 \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d. (customAspect={0})
-rm.action.event-no-disp-lc=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435 {0}: \u0441\u043e\u0431\u044b\u0442\u0438\u0435 \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e \u0432 \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u043e\u043c \u0446\u0438\u043a\u043b\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f.
-rm.action.undeclared-only-records=\u0422\u043e\u043b\u044c\u043a\u043e \u0437\u0430\u043f\u0438\u0441\u0438 \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0442 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044e. (nodeRef={0})
-rm.action.no-declare-mand-prop=\u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0432\u0441\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0437\u0430\u043f\u0438\u0441\u0438.
-rm.action.ghosted-prop-update=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438.
-rm.action.valid-date-disp-asof=\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u0443\u044e \u0434\u0430\u0442\u0443 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u043d\u0430 \u0434\u0430\u0442\u0443.
-rm.action.disp-asof-lifecycle-applied=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0434\u0430\u0442\u0443 \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u043a \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u0431\u044b\u043b \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u044b\u0439 \u0446\u0438\u043a\u043b.
-rm.action.hold-edit-reason-none=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438: \u043f\u0440\u0438\u0447\u0438\u043d\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u0430. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u0443\u044e \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443.
-rm.action.hold-edit-type=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 {1}: \u0434\u0430\u043d\u043d\u043e\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u043e\u0439.
-rm.action.specify-avlid-date=\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u0443\u044e \u0434\u0430\u0442\u0443 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u043d\u0430 \u0434\u0430\u0442\u0443.
-rm.action.review-details-only=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044e \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
-rm.action.freeze-no-reason=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c \u0431\u0435\u0437 \u0443\u043a\u0430\u0437\u0430\u043d\u0438\u044f \u043f\u0440\u0438\u0447\u0438\u043d\u044b. \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438.
-rm.action.freeze-only-records-folders=\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0438\u043b\u0438 \u043f\u0430\u043f\u043e\u043a \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
-rm.action.no-open-record-folder=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u043e\u0442\u043a\u0440\u044b\u0442\u044c {0}: \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u0430\u043f\u043a\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
-rm.action.not-hold-type=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0441 {1}: \u0434\u0430\u043d\u043d\u043e\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u043e\u0439.
-rm.action.no-read-mime-message=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043e \u0442\u0438\u043f\u0435 \u0444\u0430\u0439\u043b\u0430 \u0438\u0437-\u0437\u0430 {0}.
-rm.action.email-declared=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435: \u0437\u0430\u043f\u0438\u0441\u044c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u043d\u043e\u0439. (actionedUponNodeRef={0})
-rm.action.email-not-record=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435: \u0444\u0430\u0439\u043b, \u043f\u0430\u043f\u043a\u0430 \u0438\u043b\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c\u044e. (actionedUponNodeRef={0})
-rm.action.email-create-child-assoc=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0443\u044e \u0434\u043e\u0447\u0435\u0440\u043d\u044e\u044e \u0430\u0441\u0441\u043e\u0446\u0438\u0430\u0446\u0438\u044e.
-rm.action.node-already-transfer=\u0424\u0430\u0439\u043b, \u043f\u0430\u043f\u043a\u0430 \u0438\u043b\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0443\u0436\u0435 \u043f\u0435\u0440\u0435\u0434\u0430\u044e\u0442\u0441\u044f.
-rm.action.node-not-transfer=\u0424\u0430\u0439\u043b, \u043f\u0430\u043f\u043a\u0430 \u0438\u043b\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u043c \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438.
-rm.action.undo-not-last=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435: \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u043d\u0435 \u0431\u044b\u043b\u043e \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435\u043c.
-rm.action.records_only_undeclared=\u041c\u043e\u0436\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438.
-rm.action.event-not-undone=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435 {0}: \u0434\u0430\u043d\u043d\u043e\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0435 \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e \u0432 \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u043e\u043c \u0446\u0438\u043a\u043b\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f.
-rm.action.node-not-record-category=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0433\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0434\u043b\u044f ({0}): \u0434\u0430\u043d\u043d\u044b\u0439 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0435\u0439 \u0437\u0430\u043f\u0438\u0441\u0438.
-rm.action.parameter-not-supplied=\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 ''{0}'', \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c.
-rm.action.delete-not-hold-type=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443: {1} \u043d\u0435 \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0441\u044f \u043a \u0442\u0438\u043f\u0443 {0}.
-rm.action.cast-to-rm-type=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0442\u0438\u043f \u043f\u0430\u043f\u043a\u0438 \u0432 \u0430\u0440\u0445\u0438\u0432 \u043f\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438.
-rm.action.record-folder-create=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0432 \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
-
+rm.action.not-defined=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438 {0} \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e.
+rm.action.no-implicit-noderef=\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 {0} \u043c\u043e\u0433\u043b\u043e \u0431\u044b\u0442\u044c \u043d\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e.
+rm.action.record-not-declared=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u0437\u0430\u043f\u0438\u0441\u044c {1} \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0435\u043f\u043e\u043b\u043d\u043e\u0439.
+rm.action.expected-record-level=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u044d\u043b\u0435\u043c\u0435\u043d\u0442 {1} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c\u044e.
+rm.action.not-all-records-declared=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u0432 \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0438\u043c\u0435\u044e\u0442\u0441\u044f \u043d\u0435\u043f\u043e\u043b\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438. (actionedUponNodeRef={1})
+rm.action.not-eligible=\u0417\u0430\u043f\u0438\u0441\u044c \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 {1} \u0435\u0449\u0435 \u043d\u0435 \u0433\u043e\u0442\u043e\u0432\u044b \u0434\u043b\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}.
+rm.action.no-disposition-instructions=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e. (nodeRef={1})
+rm.action.no-disposition-lisfecycle-set=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u044b\u0439 \u0446\u0438\u043a\u043b \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f. (nodeRef={1})
+rm.action.next-disp-not-set=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f. (nodeRef={1})
+rm.action.not-next-disp=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u0434\u0430\u043d\u043d\u043e\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435\u043c \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439. (nodeRef={1})
+rm.action.not-record-folder=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u044d\u043b\u0435\u043c\u0435\u043d\u0442 {1} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u0430\u043f\u043a\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
+rm.action.actioned-upon-not-record=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 {0}: \u044d\u043b\u0435\u043c\u0435\u043d\u0442 {1} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c\u044e.
+rm.action.custom-aspect-not-recognised=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0442\u0438\u043f: \u0442\u0438\u043f \u043d\u0435 \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d. (customAspect={0})
+rm.action.event-no-disp-lc=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435 {0}: \u0441\u043e\u0431\u044b\u0442\u0438\u0435 \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e \u0432 \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u043e\u043c \u0446\u0438\u043a\u043b\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f.
+rm.action.undeclared-only-records=\u0422\u043e\u043b\u044c\u043a\u043e \u0437\u0430\u043f\u0438\u0441\u0438 \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0442 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044e. (nodeRef={0})
+rm.action.no-declare-mand-prop=\u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0432\u0441\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0437\u0430\u043f\u0438\u0441\u0438.
+rm.action.ghosted-prop-update=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438.
+rm.action.valid-date-disp-asof=\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u0443\u044e \u0434\u0430\u0442\u0443 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u043d\u0430 \u0434\u0430\u0442\u0443.
+rm.action.disp-asof-lifecycle-applied=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0434\u0430\u0442\u0443 \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u043a \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u0431\u044b\u043b \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u044b\u0439 \u0446\u0438\u043a\u043b.
+rm.action.hold-edit-reason-none=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438: \u043f\u0440\u0438\u0447\u0438\u043d\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u0430. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u0443\u044e \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443.
+rm.action.hold-edit-type=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 {1}: \u0434\u0430\u043d\u043d\u043e\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u043e\u0439.
+rm.action.specify-avlid-date=\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u0443\u044e \u0434\u0430\u0442\u0443 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u043d\u0430 \u0434\u0430\u0442\u0443.
+rm.action.review-details-only=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044e \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
+rm.action.freeze-no-reason=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c \u0431\u0435\u0437 \u0443\u043a\u0430\u0437\u0430\u043d\u0438\u044f \u043f\u0440\u0438\u0447\u0438\u043d\u044b. \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438.
+rm.action.freeze-only-records-folders=\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0438\u043b\u0438 \u043f\u0430\u043f\u043e\u043a \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
+rm.action.no-open-record-folder=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u043e\u0442\u043a\u0440\u044b\u0442\u044c {0}: \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u0430\u043f\u043a\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
+rm.action.not-hold-type=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0441 {1}: \u0434\u0430\u043d\u043d\u043e\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u043e\u0439.
+rm.action.no-read-mime-message=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043e \u0442\u0438\u043f\u0435 \u0444\u0430\u0439\u043b\u0430 \u0438\u0437-\u0437\u0430 {0}.
+rm.action.email-declared=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435: \u0437\u0430\u043f\u0438\u0441\u044c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u043d\u043e\u0439. (actionedUponNodeRef={0})
+rm.action.email-not-record=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435: \u0444\u0430\u0439\u043b, \u043f\u0430\u043f\u043a\u0430 \u0438\u043b\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c\u044e. (actionedUponNodeRef={0})
+rm.action.email-create-child-assoc=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0443\u044e \u0434\u043e\u0447\u0435\u0440\u043d\u044e\u044e \u0430\u0441\u0441\u043e\u0446\u0438\u0430\u0446\u0438\u044e.
+rm.action.node-already-transfer=\u0424\u0430\u0439\u043b, \u043f\u0430\u043f\u043a\u0430 \u0438\u043b\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0443\u0436\u0435 \u043f\u0435\u0440\u0435\u0434\u0430\u044e\u0442\u0441\u044f.
+rm.action.node-not-transfer=\u0424\u0430\u0439\u043b, \u043f\u0430\u043f\u043a\u0430 \u0438\u043b\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u043c \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438.
+rm.action.undo-not-last=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435: \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u043d\u0435 \u0431\u044b\u043b\u043e \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435\u043c.
+rm.action.records_only_undeclared=\u041c\u043e\u0436\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438.
+rm.action.event-not-undone=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435 {0}: \u0434\u0430\u043d\u043d\u043e\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0435 \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e \u0432 \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u043e\u043c \u0446\u0438\u043a\u043b\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f.
+rm.action.node-not-record-category=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0433\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0434\u043b\u044f ({0}): \u0434\u0430\u043d\u043d\u044b\u0439 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0435\u0439 \u0437\u0430\u043f\u0438\u0441\u0438.
+rm.action.parameter-not-supplied=\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 ''{0}'', \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c.
+rm.action.delete-not-hold-type=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443: {1} \u043d\u0435 \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0441\u044f \u043a \u0442\u0438\u043f\u0443 {0}.
+rm.action.cast-to-rm-type=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0442\u0438\u043f \u043f\u0430\u043f\u043a\u0438 \u0432 \u0430\u0440\u0445\u0438\u0432 \u043f\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438.
+rm.action.record-folder-create=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0432 \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_zh_CN.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_zh_CN.properties
index 2fdda420f1..44663bcb67 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_zh_CN.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/action-service_zh_CN.properties
@@ -1,42 +1,42 @@
-rm.action.not-defined=\u5c1a\u672a\u5b9a\u4e49\u8bb0\u5f55\u7ba1\u7406\u64cd\u4f5c {0}\u3002
-rm.action.no-implicit-noderef=\u5b58\u5728\u7cfb\u7edf\u9519\u8bef\uff0c\u56e0\u6b64\u64cd\u4f5c {0} \u65e0\u6cd5\u6210\u529f\u5b8c\u6210\u3002
-rm.action.record-not-declared=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u8bb0\u5f55 {1} \u4e0d\u5b8c\u6574\u3002
-rm.action.expected-record-level=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a {1} \u4e0d\u662f\u8bb0\u5f55\u3002
-rm.action.not-all-records-declared=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u5e76\u975e\u8bb0\u5f55\u6587\u4ef6\u5939\u4e2d\u7684\u6240\u6709\u8bb0\u5f55\u90fd\u5b8c\u6574\u3002 (actionedUponNodeRef={1})
-rm.action.not-eligible=\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939 {1} \u672a\u505a\u597d\u4fdd\u7559\u64cd\u4f5c {0} \u51c6\u5907\u3002
-rm.action.no-disposition-instructions=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u65e0\u6cd5\u627e\u5230\u4fdd\u7559\u8bf4\u660e\u3002 (nodeRef={1})
-rm.action.no-disposition-lisfecycle-set=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u6ca1\u6709\u53ef\u7528\u7684\u4fdd\u7559\u751f\u547d\u5468\u671f\u8bbe\u7f6e\u3002 (nodeRef={1})
-rm.action.next-disp-not-set=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u6ca1\u6709\u8bbe\u7f6e\u4e0b\u4e2a\u4fdd\u7559\u64cd\u4f5c\u3002 (nodeRef={1})
-rm.action.not-next-disp=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u8fd9\u5e76\u975e\u8be5\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u4e0b\u4e2a\u4fdd\u7559\u64cd\u4f5c\u3002 (nodeRef={1})
-rm.action.not-record-folder=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a {1} \u4e0d\u662f\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
-rm.action.actioned-upon-not-record=\u65e0\u6cd5\u6267\u884c\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a {1} \u4e0d\u662f\u8bb0\u5f55\u3002
-rm.action.custom-aspect-not-recognised=\u56e0\u4e3a\u672a\u8bc6\u522b\u81ea\u5b9a\u4e49\u7c7b\u578b\uff0c\u6240\u4ee5\u65e0\u6cd5\u5e94\u7528\u3002 (customAspect={0})
-rm.action.event-no-disp-lc=\u65e0\u6cd5\u5b8c\u6210\u4e8b\u4ef6 {0}\uff0c\u56e0\u4e3a\u5176\u672a\u5728\u4fdd\u7559\u751f\u547d\u5468\u671f\u4e0a\u5b9a\u4e49\u3002
-rm.action.undeclared-only-records=\u4ec5\u80fd\u5b8c\u6210\u8bb0\u5f55\u3002 (nodeRef={0})
-rm.action.no-declare-mand-prop=\u60a8\u9700\u8981\u8bbe\u7f6e\u6240\u6709\u8bb0\u5f55\u7684\u5fc5\u9009\u5c5e\u6027\uff0c\u7136\u540e\u624d\u80fd\u5b8c\u6210\u8bb0\u5f55\u3002
-rm.action.ghosted-prop-update=\u60a8\u65e0\u6cd5\u66f4\u65b0\u5148\u524d\u5df2\u9500\u6bc1\u8bb0\u5f55\u7684\u5c5e\u6027\u3002
-rm.action.valid-date-disp-asof=\u8f93\u5165\u6709\u6548\u65e5\u671f\u4f5c\u4e3a\u4fdd\u7559\u64cd\u4f5c\u622a\u6b62\u65e5\u671f\u3002
-rm.action.disp-asof-lifecycle-applied=\u60a8\u65e0\u6cd5\u7f16\u8f91\u5e94\u7528\u4e86\u751f\u547d\u5468\u671f\u7684\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u4fdd\u7559\u622a\u6b62\u65e5\u671f\u3002
-rm.action.hold-edit-reason-none=\u60a8\u65e0\u6cd5\u7f16\u8f91\u4fdd\u5b58\u539f\u56e0\uff0c\u56e0\u4e3a\u4fdd\u5b58\u662f\u5728\u6ca1\u6709\u539f\u56e0\u7684\u60c5\u51b5\u4e0b\u521b\u5efa\u7684\u3002 \u8bf7\u5c1d\u8bd5\u91cd\u65b0\u521b\u5efa\u4fdd\u5b58\u3002
-rm.action.hold-edit-type=\u60a8\u65e0\u6cd5\u7f16\u8f91 {1} \u7684\u4fdd\u5b58\u539f\u56e0\uff0c\u56e0\u4e3a\u5b83\u4e0d\u662f\u4fdd\u5b58\u3002
-rm.action.specify-avlid-date=\u8f93\u5165\u6709\u6548\u65e5\u671f\u4f5c\u4e3a\u590d\u67e5\u622a\u6b62\u65e5\u671f\u3002
-rm.action.review-details-only=\u60a8\u53ea\u80fd\u7f16\u8f91\u6709\u6548\u8bb0\u5f55\u7684\u590d\u67e5\u8be6\u7ec6\u4fe1\u606f\u3002
-rm.action.freeze-no-reason=\u60a8\u4e0d\u80fd\u5728\u6ca1\u6709\u539f\u56e0\u7684\u60c5\u51b5\u4e0b\u4fdd\u5b58\u8bb0\u5f55\u3002 \u6dfb\u52a0\u4fdd\u5b58\u7684\u539f\u56e0\u3002
-rm.action.freeze-only-records-folders=\u60a8\u53ea\u80fd\u4fdd\u5b58\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
-rm.action.no-open-record-folder=\u60a8\u65e0\u6cd5\u91cd\u65b0\u6253\u5f00 {0}\uff0c\u56e0\u4e3a\u5b83\u4e0d\u662f\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
-rm.action.not-hold-type=\u60a8\u65e0\u6cd5\u5bf9 {1} \u6267\u884c\u64cd\u4f5c\uff0c\u56e0\u4e3a\u5b83\u4e0d\u662f\u4fdd\u5b58\u3002
-rm.action.no-read-mime-message=\u65e0\u6cd5\u8bfb\u53d6\u6587\u4ef6\u7c7b\u578b\u6d88\u606f\uff0c\u539f\u56e0\u4e3a {0}\u3002
-rm.action.email-declared=\u6211\u4eec\u65e0\u6cd5\u62c6\u5206\u7535\u5b50\u90ae\u4ef6\uff0c\u56e0\u4e3a\u8bb0\u5f55\u5df2\u5b8c\u6210\u3002 (actionedUponNodeRef={0})
-rm.action.email-not-record=\u6211\u4eec\u65e0\u6cd5\u62c6\u5206\u7535\u5b50\u90ae\u4ef6\uff0c\u56e0\u4e3a\u6587\u4ef6\u3001\u6587\u4ef6\u5939\u6216\u7c7b\u522b\u4e0d\u662f\u8bb0\u5f55\u3002 (actionedUponNodeRef={0})
-rm.action.email-create-child-assoc=\u6211\u4eec\u65e0\u6cd5\u521b\u5efa\u81ea\u5b9a\u4e49\u5b50\u5173\u8054\u3002
-rm.action.node-already-transfer=\u6587\u4ef6\u3001\u6587\u4ef6\u5939\u6216\u7c7b\u522b\u5df2\u88ab\u4f20\u8f93\u3002
-rm.action.node-not-transfer=\u6587\u4ef6\u3001\u6587\u4ef6\u5939\u6216\u7c7b\u522b\u4e0d\u662f\u4f20\u8f93\u5bf9\u8c61\u3002
-rm.action.undo-not-last=\u60a8\u65e0\u6cd5\u64a4\u9500\u4e2d\u65ad\uff0c\u56e0\u4e3a\u4e0a\u4e00\u4e2a\u4fdd\u7559\u64cd\u4f5c\u6ca1\u6709\u4e2d\u65ad\u3002
-rm.action.records_only_undeclared=\u60a8\u53ea\u80fd\u5b8c\u6210\u8bb0\u5f55\u3002
-rm.action.event-not-undone=\u60a8\u65e0\u6cd5\u64a4\u9500\u4e8b\u4ef6 {0}\uff0c\u56e0\u4e3a\u5176\u672a\u5728\u4fdd\u7559\u751f\u547d\u5468\u671f\u4e0a\u5b9a\u4e49\u3002
-rm.action.node-not-record-category=\u60a8\u65e0\u6cd5\u4e3a ({0}) \u521b\u5efa\u4fdd\u7559\u8ba1\u5212\uff0c\u56e0\u4e3a\u5b83\u4e0d\u662f\u8bb0\u5f55\u7c7b\u522b\u3002
-rm.action.parameter-not-supplied=\u6dfb\u52a0\u4e00\u4e2a ''{0}'' \u4ee5\u7ee7\u7eed\u3002
-rm.action.delete-not-hold-type=\u6211\u4eec\u65e0\u6cd5\u5220\u9664\u4fdd\u5b58\uff0c\u56e0\u4e3a {1} \u5e76\u672a {0} \u7c7b\u578b\u3002
-rm.action.cast-to-rm-type=\u60a8\u65e0\u6cd5\u4e0a\u4f20\u81ea\u5b9a\u4e49\u6587\u4ef6\u5939\u7c7b\u578b\u5230\u8bb0\u5f55\u7ba1\u7406\u5f52\u7c7b\u65b9\u6848\u3002
-rm.action.record-folder-create=\u60a8\u65e0\u6cd5\u5728\u53e6\u4e00\u4e2a\u8bb0\u5f55\u6587\u4ef6\u5939\u4e2d\u521b\u5efa\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
-
+rm.action.not-defined=\u5c1a\u672a\u5b9a\u4e49\u8bb0\u5f55\u7ba1\u7406\u64cd\u4f5c {0}\u3002
+rm.action.no-implicit-noderef=\u5b58\u5728\u7cfb\u7edf\u9519\u8bef\uff0c\u56e0\u6b64\u64cd\u4f5c {0} \u65e0\u6cd5\u6210\u529f\u5b8c\u6210\u3002
+rm.action.record-not-declared=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u8bb0\u5f55 {1} \u4e0d\u5b8c\u6574\u3002
+rm.action.expected-record-level=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a {1} \u4e0d\u662f\u8bb0\u5f55\u3002
+rm.action.not-all-records-declared=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u5e76\u975e\u8bb0\u5f55\u6587\u4ef6\u5939\u4e2d\u7684\u6240\u6709\u8bb0\u5f55\u90fd\u5b8c\u6574\u3002 (actionedUponNodeRef={1})
+rm.action.not-eligible=\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939 {1} \u672a\u505a\u597d\u4fdd\u7559\u64cd\u4f5c {0} \u51c6\u5907\u3002
+rm.action.no-disposition-instructions=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u65e0\u6cd5\u627e\u5230\u4fdd\u7559\u8bf4\u660e\u3002 (nodeRef={1})
+rm.action.no-disposition-lisfecycle-set=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u6ca1\u6709\u53ef\u7528\u7684\u4fdd\u7559\u751f\u547d\u5468\u671f\u8bbe\u7f6e\u3002 (nodeRef={1})
+rm.action.next-disp-not-set=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u6ca1\u6709\u8bbe\u7f6e\u4e0b\u4e2a\u4fdd\u7559\u64cd\u4f5c\u3002 (nodeRef={1})
+rm.action.not-next-disp=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u8fd9\u5e76\u975e\u8be5\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u4e0b\u4e2a\u4fdd\u7559\u64cd\u4f5c\u3002 (nodeRef={1})
+rm.action.not-record-folder=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a {1} \u4e0d\u662f\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
+rm.action.actioned-upon-not-record=\u65e0\u6cd5\u6267\u884c\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a {1} \u4e0d\u662f\u8bb0\u5f55\u3002
+rm.action.custom-aspect-not-recognised=\u56e0\u4e3a\u672a\u8bc6\u522b\u81ea\u5b9a\u4e49\u7c7b\u578b\uff0c\u6240\u4ee5\u65e0\u6cd5\u5e94\u7528\u3002 (customAspect={0})
+rm.action.event-no-disp-lc=\u65e0\u6cd5\u5b8c\u6210\u4e8b\u4ef6 {0}\uff0c\u56e0\u4e3a\u5176\u672a\u5728\u4fdd\u7559\u751f\u547d\u5468\u671f\u4e0a\u5b9a\u4e49\u3002
+rm.action.undeclared-only-records=\u4ec5\u80fd\u5b8c\u6210\u8bb0\u5f55\u3002 (nodeRef={0})
+rm.action.no-declare-mand-prop=\u60a8\u9700\u8981\u8bbe\u7f6e\u6240\u6709\u8bb0\u5f55\u7684\u5fc5\u9009\u5c5e\u6027\uff0c\u7136\u540e\u624d\u80fd\u5b8c\u6210\u8bb0\u5f55\u3002
+rm.action.ghosted-prop-update=\u60a8\u65e0\u6cd5\u66f4\u65b0\u5148\u524d\u5df2\u9500\u6bc1\u8bb0\u5f55\u7684\u5c5e\u6027\u3002
+rm.action.valid-date-disp-asof=\u8f93\u5165\u6709\u6548\u65e5\u671f\u4f5c\u4e3a\u4fdd\u7559\u64cd\u4f5c\u622a\u6b62\u65e5\u671f\u3002
+rm.action.disp-asof-lifecycle-applied=\u60a8\u65e0\u6cd5\u7f16\u8f91\u5e94\u7528\u4e86\u751f\u547d\u5468\u671f\u7684\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u4fdd\u7559\u622a\u6b62\u65e5\u671f\u3002
+rm.action.hold-edit-reason-none=\u60a8\u65e0\u6cd5\u7f16\u8f91\u4fdd\u5b58\u539f\u56e0\uff0c\u56e0\u4e3a\u4fdd\u5b58\u662f\u5728\u6ca1\u6709\u539f\u56e0\u7684\u60c5\u51b5\u4e0b\u521b\u5efa\u7684\u3002 \u8bf7\u5c1d\u8bd5\u91cd\u65b0\u521b\u5efa\u4fdd\u5b58\u3002
+rm.action.hold-edit-type=\u60a8\u65e0\u6cd5\u7f16\u8f91 {1} \u7684\u4fdd\u5b58\u539f\u56e0\uff0c\u56e0\u4e3a\u5b83\u4e0d\u662f\u4fdd\u5b58\u3002
+rm.action.specify-avlid-date=\u8f93\u5165\u6709\u6548\u65e5\u671f\u4f5c\u4e3a\u590d\u67e5\u622a\u6b62\u65e5\u671f\u3002
+rm.action.review-details-only=\u60a8\u53ea\u80fd\u7f16\u8f91\u6709\u6548\u8bb0\u5f55\u7684\u590d\u67e5\u8be6\u7ec6\u4fe1\u606f\u3002
+rm.action.freeze-no-reason=\u60a8\u4e0d\u80fd\u5728\u6ca1\u6709\u539f\u56e0\u7684\u60c5\u51b5\u4e0b\u4fdd\u5b58\u8bb0\u5f55\u3002 \u6dfb\u52a0\u4fdd\u5b58\u7684\u539f\u56e0\u3002
+rm.action.freeze-only-records-folders=\u60a8\u53ea\u80fd\u4fdd\u5b58\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
+rm.action.no-open-record-folder=\u60a8\u65e0\u6cd5\u91cd\u65b0\u6253\u5f00 {0}\uff0c\u56e0\u4e3a\u5b83\u4e0d\u662f\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
+rm.action.not-hold-type=\u60a8\u65e0\u6cd5\u5bf9 {1} \u6267\u884c\u64cd\u4f5c\uff0c\u56e0\u4e3a\u5b83\u4e0d\u662f\u4fdd\u5b58\u3002
+rm.action.no-read-mime-message=\u65e0\u6cd5\u8bfb\u53d6\u6587\u4ef6\u7c7b\u578b\u6d88\u606f\uff0c\u539f\u56e0\u4e3a {0}\u3002
+rm.action.email-declared=\u6211\u4eec\u65e0\u6cd5\u62c6\u5206\u7535\u5b50\u90ae\u4ef6\uff0c\u56e0\u4e3a\u8bb0\u5f55\u5df2\u5b8c\u6210\u3002 (actionedUponNodeRef={0})
+rm.action.email-not-record=\u6211\u4eec\u65e0\u6cd5\u62c6\u5206\u7535\u5b50\u90ae\u4ef6\uff0c\u56e0\u4e3a\u6587\u4ef6\u3001\u6587\u4ef6\u5939\u6216\u7c7b\u522b\u4e0d\u662f\u8bb0\u5f55\u3002 (actionedUponNodeRef={0})
+rm.action.email-create-child-assoc=\u6211\u4eec\u65e0\u6cd5\u521b\u5efa\u81ea\u5b9a\u4e49\u5b50\u5173\u8054\u3002
+rm.action.node-already-transfer=\u6587\u4ef6\u3001\u6587\u4ef6\u5939\u6216\u7c7b\u522b\u5df2\u88ab\u4f20\u8f93\u3002
+rm.action.node-not-transfer=\u6587\u4ef6\u3001\u6587\u4ef6\u5939\u6216\u7c7b\u522b\u4e0d\u662f\u4f20\u8f93\u5bf9\u8c61\u3002
+rm.action.undo-not-last=\u60a8\u65e0\u6cd5\u64a4\u9500\u4e2d\u65ad\uff0c\u56e0\u4e3a\u4e0a\u4e00\u4e2a\u4fdd\u7559\u64cd\u4f5c\u6ca1\u6709\u4e2d\u65ad\u3002
+rm.action.records_only_undeclared=\u60a8\u53ea\u80fd\u5b8c\u6210\u8bb0\u5f55\u3002
+rm.action.event-not-undone=\u60a8\u65e0\u6cd5\u64a4\u9500\u4e8b\u4ef6 {0}\uff0c\u56e0\u4e3a\u5176\u672a\u5728\u4fdd\u7559\u751f\u547d\u5468\u671f\u4e0a\u5b9a\u4e49\u3002
+rm.action.node-not-record-category=\u60a8\u65e0\u6cd5\u4e3a ({0}) \u521b\u5efa\u4fdd\u7559\u8ba1\u5212\uff0c\u56e0\u4e3a\u5b83\u4e0d\u662f\u8bb0\u5f55\u7c7b\u522b\u3002
+rm.action.parameter-not-supplied=\u6dfb\u52a0\u4e00\u4e2a ''{0}'' \u4ee5\u7ee7\u7eed\u3002
+rm.action.delete-not-hold-type=\u6211\u4eec\u65e0\u6cd5\u5220\u9664\u4fdd\u5b58\uff0c\u56e0\u4e3a {1} \u5e76\u672a {0} \u7c7b\u578b\u3002
+rm.action.cast-to-rm-type=\u60a8\u65e0\u6cd5\u4e0a\u4f20\u81ea\u5b9a\u4e49\u6587\u4ef6\u5939\u7c7b\u578b\u5230\u8bb0\u5f55\u7ba1\u7406\u5f52\u7c7b\u65b9\u6848\u3002
+rm.action.record-folder-create=\u60a8\u65e0\u6cd5\u5728\u53e6\u4e00\u4e2a\u8bb0\u5f55\u6587\u4ef6\u5939\u4e2d\u521b\u5efa\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions.properties
index 40fa60e0d6..3b4c93b3d4 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions.properties
@@ -1,211 +1,211 @@
-#
-# i18n for Records Management Action Conditions
-#
-# Are classified
-isClassified.title=Classified by Retention Schedule
-isClassified.description=Records or record folders been classified by a retention schedule
-
-# Are cutoff
-isCutoff.title=Cut Off
-isCutoff.description=Records or record folders are cut off
-
-# Are declared
-isDeclared.title=Record Completed
-isDeclared.description=Record is complete
-
-# Is on hold
-isFrozen.title=On Hold
-isFrozen.description=Record or record folder on hold
-
-# Are filed
-isRecordFiled.title=Record Filed
-isRecordFiled.description=Record is filed
-
-# Are closed record folders
-isRecordFolderClosed.title=Record Folder Closed
-isRecordFolderClosed.description=Record folder is closed
-
-# Are vital
-isVital.title=Vital Record
-isVital.description=Record or record folder is a vital record
-
-# Have Rentention Action
-hasDispositionAction.title=Has Retention Action
-hasDispositionAction.description=Records and folders have the specified associated retention action at the specified relative position
-
-# Are kind
-isKind.title=Type of Records Management Item
-isKind.description=Items are a file plan component kind
-isKind.kind.display-label=Kind
-
-# Are Record Type
-isRecordType.title=Has Record Type
-isRecordType.description=Records have a specified record type
-
-
-#
-# i18n for Records Management Actions
-#
-# Declare As Record
-create-record.title=Declare as Record
-create-record.description=Declares file as a record
-create-record.file-plan.display-label=File Plan
-create-record.hide-record.display-label=Hide Record
-# Declare As Version Record
-declare-as-version-record.title=Declare Version as Record
-declare-as-version-record.description=Declares this version of the file as a record
-declare-as-version-record.file-plan.display-label=File Plan
-# Complete record
-declareRecord.title=Complete Record
-declareRecord.description=Completes a record
-# Reopens record
-undeclareRecord.title=Reopen Record
-undeclareRecord.description=Reopens a record
-# Open record folder
-openRecordFolder.title=Open Record Folder
-openRecordFolder.description=Opens a record folder
-# Close record folder
-closeRecordFolder.title=Close Record Folder
-closeRecordFolder.description=Closes a Record Folder
-# Complete event
-completeEvent.title=Complete Event
-completeEvent.description=Completes an event
-completeEvent.eventName.display-label=Event
-# Freeze
-freeze.title=Freeze
-freeze.description=Freezes a record
-freeze.reason.display-label=Reason
-# Unfreeze
-unfreeze.title=Unfreeze
-unfreeze.description=Unfreezes a record
-# File to
-fileTo.title=File to
-fileTo.description=Files a record to the specified record folder
-fileTo.path.display-label=Path to Record Folder
-fileTo.createRecordPath.display-label=Create Record Path
-# Copy to
-copyTo.title=Copy to
-copyTo.description=Copies a record to the specified record folder
-copyTo.path.display-label=Path to Record Folder
-copyTo.createRecordPath.display-label=Create Record Path
-# Move to
-moveTo.title=Move to
-moveTo.description=Moves a record to the specified record folder
-moveTo.path.display-label=Path to Record Folder
-moveTo.createRecordPath.display-label=Create Record Path
-# Link to
-linkTo.title=Link to
-linkTo.description=Links a record to the specified record folder
-linkTo.path.display-label=Path to Record Folder
-linkTo.createRecordPath.display-label=Create Record Path
-# Reject
-reject.title=Reject
-reject.description=Rejects a record and moves the file to its original location
-reject.reason.display-label=Reject Reason
-# Request Information
-requestInfo.title=Request Information
-requestInfo.description=Starts a workflow for requesting more information for a record
-# Execute script
-executeScript.title=Execute Script
-executeScript.description=Execute a script
-executeScript.script-ref.display-label=Script
-# Send Email
-sendEmail.title=Send Email
-sendEmail.description=Send an email
-# Set Property
-setPropertyValue.title=Set Property Value
-setPropertyValue.description=Set a property value
-
-# Edit Hold Reason
-editHoldReason.title=Edit Hold Reason
-editHoldReason.description=Edit the hold reason
-# Relinquish Hold
-relinquishHold.title=Relinquish Hold
-relinquishHold.description=Relinquish the hold
-# Edit Review As Of Date
-editReviewAsOfDate.title=Edit Review As Of Date
-editReviewAsOfDate.description=Edit review as of date
-# Edit Disposition Action As Of Date
-editDispositionActionAsOfDate.title=Edit Retention Action As Of Date
-editDispositionActionAsOfDate.description=Edit the retention action as of date
-# Broadcast Vital Record Definition
-broadcastVitalRecordDefinition.title=Broadcast Vital Record Definition
-broadcastVitalRecordDefinition.description=Broadcast the vital record definition
-# Broadcast Disposition Action Definition Update
-broadcastDispositionActionDefinitionUpdate.title=Broadcast Retention Action Definition Update
-broadcastDispositionActionDefinitionUpdate.description=Broadcast retention action definition update
-# Undo Event
-undoEvent.title=Undo Event
-undoEvent.description=Undo event
-# Transfer Complete
-transferComplete.title=Transfer Complete
-transferComplete.description=Transfer complete
-# Accession Complete
-accessionComplete.title=Accession Complete
-accessionComplete.description=Accession complete
-# Split Email
-splitEmail.title=Split Email
-splitEmail.description=Split email
-# Create Rentention Schedule
-createDispositionSchedule.title=Create Retention Schedule
-createDispositionSchedule.description=Create retention schedule
-# File Destruction Report
-fileDestructionReport.title=File Destruction Report
-fileDestructionReport.description=File destruction report
-# Cut off
-cutoff.title=Cut Off
-cutoff.description=Cut off
-# Destroy
-destroy.title=Destroy
-destroy.description=Destroy
-# Reviewed
-reviewed.title=Reviewed
-reviewed.description=Reviewed
-# Hide Record
-hide-record.title=Hide Record
-hide-record.description=Hide record
-# Transfer
-transfer.title=Transfer
-transfer.description=Transfer
-# Uncut off
-unCutoff.title=Undo Cut Off
-unCutoff.description=Undo cut off
-# Accession
-accession.title=Accession
-accession.description=Accession
-# Retain
-retain.title=Retain
-retain.description=Retain
-# Add Record Types
-addRecordTypes.title=Add Record Types
-addRecordTypes.description=Adds the selected type(s) to the record
-# File report
-fileReport.title=File Report
-fileReport.description=File report
-# Delete Hold
-deleteHold.title=Delete Hold
-deleteHold.description=Delete hold
-# Move DM record
-move-dm-record.title=Move Record
-move-dm-record.description=Move record
-# Unlink from
-unlinkFrom.title=Unlink from
-unlinkFrom.description=Unlink from
-
-# Recordable version config
-recordable-version-config.title=Auto-Declare Options
-recordable-version-config.description=Auto-Declare Options
-recordable-version-config.version.display-label=Automatically declare versions as records
-
-# Action parameter constraints
-rm-ac-is-kind-kinds.record_category=Record Category
-rm-ac-is-kind-kinds.record_folder=Record Folder
-rm-ac-is-kind-kinds.record=Record
-
-rm-ac-disposition-action-relative-positions.next=Next
-rm-ac-disposition-action-relative-positions.previous=Previous
-rm-ac-disposition-action-relative-positions.any=Any
-
-ac-versions.none=Never
-ac-versions.major_only=For major versions only
+#
+# i18n for Records Management Action Conditions
+#
+# Are classified
+isClassified.title=Classified by Retention Schedule
+isClassified.description=Records or record folders been classified by a retention schedule
+
+# Are cutoff
+isCutoff.title=Cut Off
+isCutoff.description=Records or record folders are cut off
+
+# Are declared
+isDeclared.title=Record Completed
+isDeclared.description=Record is complete
+
+# Is on hold
+isFrozen.title=On Hold
+isFrozen.description=Record or record folder on hold
+
+# Are filed
+isRecordFiled.title=Record Filed
+isRecordFiled.description=Record is filed
+
+# Are closed record folders
+isRecordFolderClosed.title=Record Folder Closed
+isRecordFolderClosed.description=Record folder is closed
+
+# Are vital
+isVital.title=Vital Record
+isVital.description=Record or record folder is a vital record
+
+# Have Rentention Action
+hasDispositionAction.title=Has Retention Action
+hasDispositionAction.description=Records and folders have the specified associated retention action at the specified relative position
+
+# Are kind
+isKind.title=Type of Records Management Item
+isKind.description=Items are a file plan component kind
+isKind.kind.display-label=Kind
+
+# Are Record Type
+isRecordType.title=Has Record Type
+isRecordType.description=Records have a specified record type
+
+
+#
+# i18n for Records Management Actions
+#
+# Declare As Record
+create-record.title=Declare as Record
+create-record.description=Declares file as a record
+create-record.file-plan.display-label=File Plan
+create-record.hide-record.display-label=Hide Record
+# Declare As Version Record
+declare-as-version-record.title=Declare Version as Record
+declare-as-version-record.description=Declares this version of the file as a record
+declare-as-version-record.file-plan.display-label=File Plan
+# Complete record
+declareRecord.title=Complete Record
+declareRecord.description=Completes a record
+# Reopens record
+undeclareRecord.title=Reopen Record
+undeclareRecord.description=Reopens a record
+# Open record folder
+openRecordFolder.title=Open Record Folder
+openRecordFolder.description=Opens a record folder
+# Close record folder
+closeRecordFolder.title=Close Record Folder
+closeRecordFolder.description=Closes a Record Folder
+# Complete event
+completeEvent.title=Complete Event
+completeEvent.description=Completes an event
+completeEvent.eventName.display-label=Event
+# Freeze
+freeze.title=Freeze
+freeze.description=Freezes a record
+freeze.reason.display-label=Reason
+# Unfreeze
+unfreeze.title=Unfreeze
+unfreeze.description=Unfreezes a record
+# File to
+fileTo.title=File to
+fileTo.description=Files a record to the specified record folder
+fileTo.path.display-label=Path to Record Folder
+fileTo.createRecordPath.display-label=Create Record Path
+# Copy to
+copyTo.title=Copy to
+copyTo.description=Copies a record to the specified record folder
+copyTo.path.display-label=Path to Record Folder
+copyTo.createRecordPath.display-label=Create Record Path
+# Move to
+moveTo.title=Move to
+moveTo.description=Moves a record to the specified record folder
+moveTo.path.display-label=Path to Record Folder
+moveTo.createRecordPath.display-label=Create Record Path
+# Link to
+linkTo.title=Link to
+linkTo.description=Links a record to the specified record folder
+linkTo.path.display-label=Path to Record Folder
+linkTo.createRecordPath.display-label=Create Record Path
+# Reject
+reject.title=Reject
+reject.description=Rejects a record and moves the file to its original location
+reject.reason.display-label=Reject Reason
+# Request Information
+requestInfo.title=Request Information
+requestInfo.description=Starts a workflow for requesting more information for a record
+# Execute script
+executeScript.title=Execute Script
+executeScript.description=Execute a script
+executeScript.script-ref.display-label=Script
+# Send Email
+sendEmail.title=Send Email
+sendEmail.description=Send an email
+# Set Property
+setPropertyValue.title=Set Property Value
+setPropertyValue.description=Set a property value
+
+# Edit Hold Reason
+editHoldReason.title=Edit Hold Reason
+editHoldReason.description=Edit the hold reason
+# Relinquish Hold
+relinquishHold.title=Relinquish Hold
+relinquishHold.description=Relinquish the hold
+# Edit Review As Of Date
+editReviewAsOfDate.title=Edit Review As Of Date
+editReviewAsOfDate.description=Edit review as of date
+# Edit Disposition Action As Of Date
+editDispositionActionAsOfDate.title=Edit Retention Action As Of Date
+editDispositionActionAsOfDate.description=Edit the retention action as of date
+# Broadcast Vital Record Definition
+broadcastVitalRecordDefinition.title=Broadcast Vital Record Definition
+broadcastVitalRecordDefinition.description=Broadcast the vital record definition
+# Broadcast Disposition Action Definition Update
+broadcastDispositionActionDefinitionUpdate.title=Broadcast Retention Action Definition Update
+broadcastDispositionActionDefinitionUpdate.description=Broadcast retention action definition update
+# Undo Event
+undoEvent.title=Undo Event
+undoEvent.description=Undo event
+# Transfer Complete
+transferComplete.title=Transfer Complete
+transferComplete.description=Transfer complete
+# Accession Complete
+accessionComplete.title=Accession Complete
+accessionComplete.description=Accession complete
+# Split Email
+splitEmail.title=Split Email
+splitEmail.description=Split email
+# Create Rentention Schedule
+createDispositionSchedule.title=Create Retention Schedule
+createDispositionSchedule.description=Create retention schedule
+# File Destruction Report
+fileDestructionReport.title=File Destruction Report
+fileDestructionReport.description=File destruction report
+# Cut off
+cutoff.title=Cut Off
+cutoff.description=Cut off
+# Destroy
+destroy.title=Destroy
+destroy.description=Destroy
+# Reviewed
+reviewed.title=Reviewed
+reviewed.description=Reviewed
+# Hide Record
+hide-record.title=Hide Record
+hide-record.description=Hide record
+# Transfer
+transfer.title=Transfer
+transfer.description=Transfer
+# Uncut off
+unCutoff.title=Undo Cut Off
+unCutoff.description=Undo cut off
+# Accession
+accession.title=Accession
+accession.description=Accession
+# Retain
+retain.title=Retain
+retain.description=Retain
+# Add Record Types
+addRecordTypes.title=Add Record Types
+addRecordTypes.description=Adds the selected type(s) to the record
+# File report
+fileReport.title=File Report
+fileReport.description=File report
+# Delete Hold
+deleteHold.title=Delete Hold
+deleteHold.description=Delete hold
+# Move DM record
+move-dm-record.title=Move Record
+move-dm-record.description=Move record
+# Unlink from
+unlinkFrom.title=Unlink from
+unlinkFrom.description=Unlink from
+
+# Recordable version config
+recordable-version-config.title=Auto-Declare Options
+recordable-version-config.description=Auto-Declare Options
+recordable-version-config.version.display-label=Automatically declare versions as records
+
+# Action parameter constraints
+rm-ac-is-kind-kinds.record_category=Record Category
+rm-ac-is-kind-kinds.record_folder=Record Folder
+rm-ac-is-kind-kinds.record=Record
+
+rm-ac-disposition-action-relative-positions.next=Next
+rm-ac-disposition-action-relative-positions.previous=Previous
+rm-ac-disposition-action-relative-positions.any=Any
+
+ac-versions.none=Never
+ac-versions.major_only=For major versions only
ac-versions.all=For all major and minor versions
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_de.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_de.properties
index 99e6c1ead2..9d16bc1422 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_de.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_de.properties
@@ -1,211 +1,211 @@
-#
-# i18n for Records Management Action Conditions
-#
-# Are classified
-isClassified.title=Nach Aufbewahrungsplan klassifiziert
-isClassified.description=Records oder Record-Ordner wurden nach einem Aufbewahrungsplan klassifiziert.
-
-# Are cutoff
-isCutoff.title=Trennen
-isCutoff.description=Records oder Record-Ordner sind getrennt.
-
-# Are declared
-isDeclared.title=Record abgeschlossen
-isDeclared.description=Record ist abgeschlossen.
-
-# Is on hold
-isFrozen.title=Gesperrt
-isFrozen.description=Record oder Record-Ordner ist gesperrt.
-
-# Are filed
-isRecordFiled.title=Record abgelegt
-isRecordFiled.description=Record ist angelegt.
-
-# Are closed record folders
-isRecordFolderClosed.title=Record-Ordner geschlossen
-isRecordFolderClosed.description=Record-Ordner ist geschlossen.
-
-# Are vital
-isVital.title=Besonders relevanter Record
-isVital.description=Record oder Record-Ordner ist ein besonders relevanter Record.
-
-# Have Rentention Action
-hasDispositionAction.title=Hat Aufbewahrungsaktion
-hasDispositionAction.description=Records und Ordner verf\u00fcgen \u00fcber die angegebene zugeordnete Aufbewahrungsaktion an der angegebenen relativen Position.
-
-# Are kind
-isKind.title=Typ des Records Management Elements
-isKind.description=Elemente sind vom Typ Ablageplan-Komponente.
-isKind.kind.display-label=Art
-
-# Are Record Type
-isRecordType.title=Hat Record-Typ
-isRecordType.description=Records verf\u00fcgen \u00fcber einen angegebenen Record-Typ.
-
-
-#
-# i18n for Records Management Actions
-#
-# Declare As Record
-create-record.title=Als Record deklarieren
-create-record.description=Deklariert die Datei als Record
-create-record.file-plan.display-label=Ablageplan
-create-record.hide-record.display-label=Record ausblenden
-# Declare As Version Record
-declare-as-version-record.title=Version als Record deklarieren
-declare-as-version-record.description=Deklariert diese Version der Datei als Record
-declare-as-version-record.file-plan.display-label=Ablageplan
-# Complete record
-declareRecord.title=Record abschlie\u00dfen
-declareRecord.description=Schlie\u00dft einen Record ab
-# Reopens record
-undeclareRecord.title=Record neu \u00f6ffnen
-undeclareRecord.description=\u00d6ffnet einen Record neu
-# Open record folder
-openRecordFolder.title=Record-Ordner \u00f6ffnen
-openRecordFolder.description=\u00d6ffnet einen Record-Ordner
-# Close record folder
-closeRecordFolder.title=Record-Ordner schlie\u00dfen
-closeRecordFolder.description=Schlie\u00dft einen Record-Ordner
-# Complete event
-completeEvent.title=Ereignis abschlie\u00dfen
-completeEvent.description=Schlie\u00dft ein Ereignis ab
-completeEvent.eventName.display-label=Ereignis
-# Freeze
-freeze.title=Fixieren
-freeze.description=Fixiert einen Record
-freeze.reason.display-label=Grund
-# Unfreeze
-unfreeze.title=Fixierung aufheben
-unfreeze.description=Hebt die Fixierung eines Record auf
-# File to
-fileTo.title=Ablegen unter
-fileTo.description=Legt einen Record in einem bestimmten Record-Ordner ab
-fileTo.path.display-label=Pfad zum Record-Ordner
-fileTo.createRecordPath.display-label=Record-Pfad erstellen
-# Copy to
-copyTo.title=Kopieren nach
-copyTo.description=Kopiert einen Record in einen bestimmten Record-Ordner
-copyTo.path.display-label=Pfad zum Record-Ordner
-copyTo.createRecordPath.display-label=Record-Pfad erstellen
-# Move to
-moveTo.title=Verschieben nach
-moveTo.description=Verschiebt einen Record in einen bestimmten Record-Ordner
-moveTo.path.display-label=Pfad zum Record-Ordner
-moveTo.createRecordPath.display-label=Record-Pfad erstellen
-# Link to
-linkTo.title=Link zu
-linkTo.description=Verkn\u00fcpft einen Record mit einem bestimmten Record-Ordner
-linkTo.path.display-label=Pfad zum Record-Ordner
-linkTo.createRecordPath.display-label=Record-Pfad erstellen
-# Reject
-reject.title=Ablehnen
-reject.description=Lehnt einen Record ab und verschiebt die Datei an ihren urspr\u00fcnglichen Speicherort
-reject.reason.display-label=Ablehnungsgrund
-# Request Information
-requestInfo.title=Informationen anfordern
-requestInfo.description=Startet einen Workflow zur Anforderung weiterer Informationen zu einem Record.
-# Execute script
-executeScript.title=Skript ausf\u00fchren
-executeScript.description=F\u00fchrt ein Skript aus
-executeScript.script-ref.display-label=Skript
-# Send Email
-sendEmail.title=E-Mail senden
-sendEmail.description=Sendet eine E-Mail
-# Set Property
-setPropertyValue.title=Wert einer Eigenschaft setzen
-setPropertyValue.description=Setzt den Wert einer Eigenschaft
-
-# Edit Hold Reason
-editHoldReason.title=Sperrgrund bearbeiten
-editHoldReason.description=Bearbeitet den Sperrgrund
-# Relinquish Hold
-relinquishHold.title=Sperre aufheben
-relinquishHold.description=Hebt eine Sperre auf
-# Edit Review As Of Date
-editReviewAsOfDate.title=Startdatum der \u00dcberpr\u00fcfung bearbeiten
-editReviewAsOfDate.description=Bearbeitet das Startdatum der \u00dcberpr\u00fcfung
-# Edit Disposition Action As Of Date
-editDispositionActionAsOfDate.title=Startdatum der Aufbewahrungsaktion bearbeiten
-editDispositionActionAsOfDate.description=Bearbeitet das Startdatum der Aufbewahrungsaktion
-# Broadcast Vital Record Definition
-broadcastVitalRecordDefinition.title=Definition f\u00fcr besonders relevanten Record senden
-broadcastVitalRecordDefinition.description=Sendet die Definition f\u00fcr einen besonders relevanten Record
-# Broadcast Disposition Action Definition Update
-broadcastDispositionActionDefinitionUpdate.title=Aktualisierung der Definition der Aufbewahrungsaktion senden
-broadcastDispositionActionDefinitionUpdate.description=Sendet die Aktualisierung der Definition der Aufbewahrungsaktion
-# Undo Event
-undoEvent.title=Ereignis r\u00fcckg\u00e4ngig machen
-undoEvent.description=Ereignis r\u00fcckg\u00e4ngig machen
-# Transfer Complete
-transferComplete.title=\u00dcbertragung abgeschlossen
-transferComplete.description=\u00dcbertragung abgeschlossen
-# Accession Complete
-accessionComplete.title=Aufnahme abgeschlossen
-accessionComplete.description=Aufnahme abgeschlossen
-# Split Email
-splitEmail.title=E-Mail teilen
-splitEmail.description=E-Mail teilen
-# Create Rentention Schedule
-createDispositionSchedule.title=Aufbewahrungsplan erstellen
-createDispositionSchedule.description=Erstellt einen Aufbewahrungsplan
-# File Destruction Report
-fileDestructionReport.title=Vernichtungsprotokoll ablegen
-fileDestructionReport.description=Vernichtungsprotokoll ablegen
-# Cut off
-cutoff.title=Trennen
-cutoff.description=Trennen
-# Destroy
-destroy.title=Vernichten
-destroy.description=Vernichten
-# Reviewed
-reviewed.title=\u00dcberpr\u00fcft
-reviewed.description=\u00dcberpr\u00fcft
-# Hide Record
-hide-record.title=Record ausblenden
-hide-record.description=Record ausblenden
-# Transfer
-transfer.title=\u00dcbertragen
-transfer.description=\u00dcbertragen
-# Uncut off
-unCutoff.title=Trennung aufheben
-unCutoff.description=Trennung aufheben
-# Accession
-accession.title=Aufnahme
-accession.description=Aufnahme
-# Retain
-retain.title=Aufbewahren
-retain.description=Aufbewahren
-# Add Record Types
-addRecordTypes.title=Record-Typen hinzuf\u00fcgen
-addRecordTypes.description=F\u00fcgt ausgew\u00e4hlte Typen zum Record hinzu
-# File report
-fileReport.title=Bericht ablegen
-fileReport.description=Bericht ablegen
-# Delete Hold
-deleteHold.title=Sperrbereich l\u00f6schen
-deleteHold.description=Sperrbereich l\u00f6schen
-# Move DM record
-move-dm-record.title=Record verschieben
-move-dm-record.description=Record verschieben
-# Unlink from
-unlinkFrom.title=Verkn\u00fcpfung aufheben von
-unlinkFrom.description=Verkn\u00fcpfung aufheben von
-
-# Recordable version config
-recordable-version-config.title=Optionen f\u00fcr automatische Deklaration
-recordable-version-config.description=Optionen f\u00fcr automatische Deklaration
-recordable-version-config.version.display-label=Versionen automatisch als Record deklarieren
-
-# Action parameter constraints
-rm-ac-is-kind-kinds.record_category=Record-Kategorie
-rm-ac-is-kind-kinds.record_folder=Record-Ordner
-rm-ac-is-kind-kinds.record=Record
-
-rm-ac-disposition-action-relative-positions.next=Weiter
-rm-ac-disposition-action-relative-positions.previous=Vorherige
-rm-ac-disposition-action-relative-positions.any=Jede
-
-ac-versions.none=Nie
-ac-versions.major_only=Nur f\u00fcr Hauptversionen
+#
+# i18n for Records Management Action Conditions
+#
+# Are classified
+isClassified.title=Nach Aufbewahrungsplan klassifiziert
+isClassified.description=Records oder Record-Ordner wurden nach einem Aufbewahrungsplan klassifiziert.
+
+# Are cutoff
+isCutoff.title=Trennen
+isCutoff.description=Records oder Record-Ordner sind getrennt.
+
+# Are declared
+isDeclared.title=Record abgeschlossen
+isDeclared.description=Record ist abgeschlossen.
+
+# Is on hold
+isFrozen.title=Gesperrt
+isFrozen.description=Record oder Record-Ordner ist gesperrt.
+
+# Are filed
+isRecordFiled.title=Record abgelegt
+isRecordFiled.description=Record ist angelegt.
+
+# Are closed record folders
+isRecordFolderClosed.title=Record-Ordner geschlossen
+isRecordFolderClosed.description=Record-Ordner ist geschlossen.
+
+# Are vital
+isVital.title=Besonders relevanter Record
+isVital.description=Record oder Record-Ordner ist ein besonders relevanter Record.
+
+# Have Rentention Action
+hasDispositionAction.title=Hat Aufbewahrungsaktion
+hasDispositionAction.description=Records und Ordner verf\u00fcgen \u00fcber die angegebene zugeordnete Aufbewahrungsaktion an der angegebenen relativen Position.
+
+# Are kind
+isKind.title=Typ des Records Management Elements
+isKind.description=Elemente sind vom Typ Ablageplan-Komponente.
+isKind.kind.display-label=Art
+
+# Are Record Type
+isRecordType.title=Hat Record-Typ
+isRecordType.description=Records verf\u00fcgen \u00fcber einen angegebenen Record-Typ.
+
+
+#
+# i18n for Records Management Actions
+#
+# Declare As Record
+create-record.title=Als Record deklarieren
+create-record.description=Deklariert die Datei als Record
+create-record.file-plan.display-label=Ablageplan
+create-record.hide-record.display-label=Record ausblenden
+# Declare As Version Record
+declare-as-version-record.title=Version als Record deklarieren
+declare-as-version-record.description=Deklariert diese Version der Datei als Record
+declare-as-version-record.file-plan.display-label=Ablageplan
+# Complete record
+declareRecord.title=Record abschlie\u00dfen
+declareRecord.description=Schlie\u00dft einen Record ab
+# Reopens record
+undeclareRecord.title=Record neu \u00f6ffnen
+undeclareRecord.description=\u00d6ffnet einen Record neu
+# Open record folder
+openRecordFolder.title=Record-Ordner \u00f6ffnen
+openRecordFolder.description=\u00d6ffnet einen Record-Ordner
+# Close record folder
+closeRecordFolder.title=Record-Ordner schlie\u00dfen
+closeRecordFolder.description=Schlie\u00dft einen Record-Ordner
+# Complete event
+completeEvent.title=Ereignis abschlie\u00dfen
+completeEvent.description=Schlie\u00dft ein Ereignis ab
+completeEvent.eventName.display-label=Ereignis
+# Freeze
+freeze.title=Fixieren
+freeze.description=Fixiert einen Record
+freeze.reason.display-label=Grund
+# Unfreeze
+unfreeze.title=Fixierung aufheben
+unfreeze.description=Hebt die Fixierung eines Record auf
+# File to
+fileTo.title=Ablegen unter
+fileTo.description=Legt einen Record in einem bestimmten Record-Ordner ab
+fileTo.path.display-label=Pfad zum Record-Ordner
+fileTo.createRecordPath.display-label=Record-Pfad erstellen
+# Copy to
+copyTo.title=Kopieren nach
+copyTo.description=Kopiert einen Record in einen bestimmten Record-Ordner
+copyTo.path.display-label=Pfad zum Record-Ordner
+copyTo.createRecordPath.display-label=Record-Pfad erstellen
+# Move to
+moveTo.title=Verschieben nach
+moveTo.description=Verschiebt einen Record in einen bestimmten Record-Ordner
+moveTo.path.display-label=Pfad zum Record-Ordner
+moveTo.createRecordPath.display-label=Record-Pfad erstellen
+# Link to
+linkTo.title=Link zu
+linkTo.description=Verkn\u00fcpft einen Record mit einem bestimmten Record-Ordner
+linkTo.path.display-label=Pfad zum Record-Ordner
+linkTo.createRecordPath.display-label=Record-Pfad erstellen
+# Reject
+reject.title=Ablehnen
+reject.description=Lehnt einen Record ab und verschiebt die Datei an ihren urspr\u00fcnglichen Speicherort
+reject.reason.display-label=Ablehnungsgrund
+# Request Information
+requestInfo.title=Informationen anfordern
+requestInfo.description=Startet einen Workflow zur Anforderung weiterer Informationen zu einem Record.
+# Execute script
+executeScript.title=Skript ausf\u00fchren
+executeScript.description=F\u00fchrt ein Skript aus
+executeScript.script-ref.display-label=Skript
+# Send Email
+sendEmail.title=E-Mail senden
+sendEmail.description=Sendet eine E-Mail
+# Set Property
+setPropertyValue.title=Wert einer Eigenschaft setzen
+setPropertyValue.description=Setzt den Wert einer Eigenschaft
+
+# Edit Hold Reason
+editHoldReason.title=Sperrgrund bearbeiten
+editHoldReason.description=Bearbeitet den Sperrgrund
+# Relinquish Hold
+relinquishHold.title=Sperre aufheben
+relinquishHold.description=Hebt eine Sperre auf
+# Edit Review As Of Date
+editReviewAsOfDate.title=Startdatum der \u00dcberpr\u00fcfung bearbeiten
+editReviewAsOfDate.description=Bearbeitet das Startdatum der \u00dcberpr\u00fcfung
+# Edit Disposition Action As Of Date
+editDispositionActionAsOfDate.title=Startdatum der Aufbewahrungsaktion bearbeiten
+editDispositionActionAsOfDate.description=Bearbeitet das Startdatum der Aufbewahrungsaktion
+# Broadcast Vital Record Definition
+broadcastVitalRecordDefinition.title=Definition f\u00fcr besonders relevanten Record senden
+broadcastVitalRecordDefinition.description=Sendet die Definition f\u00fcr einen besonders relevanten Record
+# Broadcast Disposition Action Definition Update
+broadcastDispositionActionDefinitionUpdate.title=Aktualisierung der Definition der Aufbewahrungsaktion senden
+broadcastDispositionActionDefinitionUpdate.description=Sendet die Aktualisierung der Definition der Aufbewahrungsaktion
+# Undo Event
+undoEvent.title=Ereignis r\u00fcckg\u00e4ngig machen
+undoEvent.description=Ereignis r\u00fcckg\u00e4ngig machen
+# Transfer Complete
+transferComplete.title=\u00dcbertragung abgeschlossen
+transferComplete.description=\u00dcbertragung abgeschlossen
+# Accession Complete
+accessionComplete.title=Aufnahme abgeschlossen
+accessionComplete.description=Aufnahme abgeschlossen
+# Split Email
+splitEmail.title=E-Mail teilen
+splitEmail.description=E-Mail teilen
+# Create Rentention Schedule
+createDispositionSchedule.title=Aufbewahrungsplan erstellen
+createDispositionSchedule.description=Erstellt einen Aufbewahrungsplan
+# File Destruction Report
+fileDestructionReport.title=Vernichtungsprotokoll ablegen
+fileDestructionReport.description=Vernichtungsprotokoll ablegen
+# Cut off
+cutoff.title=Trennen
+cutoff.description=Trennen
+# Destroy
+destroy.title=Vernichten
+destroy.description=Vernichten
+# Reviewed
+reviewed.title=\u00dcberpr\u00fcft
+reviewed.description=\u00dcberpr\u00fcft
+# Hide Record
+hide-record.title=Record ausblenden
+hide-record.description=Record ausblenden
+# Transfer
+transfer.title=\u00dcbertragen
+transfer.description=\u00dcbertragen
+# Uncut off
+unCutoff.title=Trennung aufheben
+unCutoff.description=Trennung aufheben
+# Accession
+accession.title=Aufnahme
+accession.description=Aufnahme
+# Retain
+retain.title=Aufbewahren
+retain.description=Aufbewahren
+# Add Record Types
+addRecordTypes.title=Record-Typen hinzuf\u00fcgen
+addRecordTypes.description=F\u00fcgt ausgew\u00e4hlte Typen zum Record hinzu
+# File report
+fileReport.title=Bericht ablegen
+fileReport.description=Bericht ablegen
+# Delete Hold
+deleteHold.title=Sperrbereich l\u00f6schen
+deleteHold.description=Sperrbereich l\u00f6schen
+# Move DM record
+move-dm-record.title=Record verschieben
+move-dm-record.description=Record verschieben
+# Unlink from
+unlinkFrom.title=Verkn\u00fcpfung aufheben von
+unlinkFrom.description=Verkn\u00fcpfung aufheben von
+
+# Recordable version config
+recordable-version-config.title=Optionen f\u00fcr automatische Deklaration
+recordable-version-config.description=Optionen f\u00fcr automatische Deklaration
+recordable-version-config.version.display-label=Versionen automatisch als Record deklarieren
+
+# Action parameter constraints
+rm-ac-is-kind-kinds.record_category=Record-Kategorie
+rm-ac-is-kind-kinds.record_folder=Record-Ordner
+rm-ac-is-kind-kinds.record=Record
+
+rm-ac-disposition-action-relative-positions.next=Weiter
+rm-ac-disposition-action-relative-positions.previous=Vorherige
+rm-ac-disposition-action-relative-positions.any=Jede
+
+ac-versions.none=Nie
+ac-versions.major_only=Nur f\u00fcr Hauptversionen
ac-versions.all=F\u00fcr alle Haupt- und Nebenversionen
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_es.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_es.properties
index f95845da4a..f6514b27d5 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_es.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_es.properties
@@ -1,211 +1,211 @@
-#
-# i18n for Records Management Action Conditions
-#
-# Are classified
-isClassified.title=Clasificado por planificaci\u00f3n de retenci\u00f3n
-isClassified.description=Los documentos de archivo o las carpetas de documentos de archivo se han clasificado por una planificaci\u00f3n de retenci\u00f3n
-
-# Are cutoff
-isCutoff.title=Interrumpir
-isCutoff.description=Los documentos de archivo o las carpetas de documentos de archivo est\u00e1n interrumpidos
-
-# Are declared
-isDeclared.title=Documento de archivo completado
-isDeclared.description=Documento de archivo completo
-
-# Is on hold
-isFrozen.title=En espera
-isFrozen.description=Documento de archivo o carpeta de documentos de archivo en espera
-
-# Are filed
-isRecordFiled.title=Documento de archivo archivado
-isRecordFiled.description=El documento de archivo se ha archivado
-
-# Are closed record folders
-isRecordFolderClosed.title=Carpeta de documentos de archivo cerrada
-isRecordFolderClosed.description=La carpeta de documentos de archivo est\u00e1 cerrada
-
-# Are vital
-isVital.title=Documento de archivo vital
-isVital.description=El documento de archivo o la carpeta de documentos de archivo es un documento de archivo vital
-
-# Have Rentention Action
-hasDispositionAction.title=Tiene acci\u00f3n de retenci\u00f3n
-hasDispositionAction.description=Los documentos de archivo y las carpetas tienen la acci\u00f3n de retenci\u00f3n asociada especificada en la posici\u00f3n relativa especificada
-
-# Are kind
-isKind.title=Tipo de elemento de Records Management
-isKind.description=Los elementos son una clase de componente del plan de ficheros
-isKind.kind.display-label=Clase
-
-# Are Record Type
-isRecordType.title=Tiene tipo de documento de archivo
-isRecordType.description=Los documentos de archivo tienen un tipo de documento de archivo especificado
-
-
-#
-# i18n for Records Management Actions
-#
-# Declare As Record
-create-record.title=Declarar como documento de archivo
-create-record.description=Declara el fichero como un documento de archivo
-create-record.file-plan.display-label=Plan de ficheros
-create-record.hide-record.display-label=Ocultar documento de archivo
-# Declare As Version Record
-declare-as-version-record.title=Declarar la versi\u00f3n como documento de archivo
-declare-as-version-record.description=Declara esta versi\u00f3n del fichero como un documento de archivo
-declare-as-version-record.file-plan.display-label=Plan de ficheros
-# Complete record
-declareRecord.title=Documento de archivo completo
-declareRecord.description=Completa un documento de archivo
-# Reopens record
-undeclareRecord.title=Reabrir documento de archivo
-undeclareRecord.description=Reabre un documento de archivo
-# Open record folder
-openRecordFolder.title=Abrir carpeta de documentos de archivo
-openRecordFolder.description=Abre una carpeta de documentos de archivo
-# Close record folder
-closeRecordFolder.title=Cerrar carpeta de documentos de archivo
-closeRecordFolder.description=Cierra una carpeta de documentos de archivo
-# Complete event
-completeEvent.title=Completar evento
-completeEvent.description=Completa un evento
-completeEvent.eventName.display-label=Evento
-# Freeze
-freeze.title=Congelar
-freeze.description=Congela un documento de archivo
-freeze.reason.display-label=Raz\u00f3n
-# Unfreeze
-unfreeze.title=Descongelar
-unfreeze.description=Descongela un documento de archivo
-# File to
-fileTo.title=Archivar en
-fileTo.description=Archiva un documento de archivo en la carpeta de documentos de archivo especificada
-fileTo.path.display-label=Ruta a la carpeta de documentos de archivo
-fileTo.createRecordPath.display-label=Crear ruta de documentos de archivo
-# Copy to
-copyTo.title=Copiar a
-copyTo.description=Copia un documento de archivo en la carpeta de documentos de archivo especificada
-copyTo.path.display-label=Ruta a la carpeta de documentos de archivo
-copyTo.createRecordPath.display-label=Crear ruta de documentos de archivo
-# Move to
-moveTo.title=Mover a
-moveTo.description=Mueve un documento de archivo a la carpeta de documentos de archivo especificada
-moveTo.path.display-label=Ruta a la carpeta de documentos de archivo
-moveTo.createRecordPath.display-label=Crear ruta de documentos de archivo
-# Link to
-linkTo.title=Enlace a
-linkTo.description=Enlaza un documento de archivo a la carpeta de documentos de archivo especificada
-linkTo.path.display-label=Ruta a la carpeta de documentos de archivo
-linkTo.createRecordPath.display-label=Crear ruta de documentos de archivo
-# Reject
-reject.title=Rechazar
-reject.description=Rechaza un documento de archivo y mueve el fichero a su ubicaci\u00f3n original
-reject.reason.display-label=Rechazar raz\u00f3n
-# Request Information
-requestInfo.title=Solicitar informaci\u00f3n
-requestInfo.description=Inicia un flujo de trabajo para solicitar m\u00e1s informaci\u00f3n para un documento de archivo
-# Execute script
-executeScript.title=Ejecutar script
-executeScript.description=Ejecuta un script
-executeScript.script-ref.display-label=Script
-# Send Email
-sendEmail.title=Env\u00edar correo electr\u00f3nico
-sendEmail.description=Env\u00eda un correo electr\u00f3nico
-# Set Property
-setPropertyValue.title=Establecer valor de la propiedad
-setPropertyValue.description=Establece un valor de la propiedad
-
-# Edit Hold Reason
-editHoldReason.title=Editar raz\u00f3n de bloqueo
-editHoldReason.description=Edita la raz\u00f3n de bloqueo
-# Relinquish Hold
-relinquishHold.title=Eliminar bloqueo
-relinquishHold.description=Elimina el bloqueo
-# Edit Review As Of Date
-editReviewAsOfDate.title=Editar fecha de inicio de revisi\u00f3n
-editReviewAsOfDate.description=Editar fecha de inicio de revisi\u00f3n
-# Edit Disposition Action As Of Date
-editDispositionActionAsOfDate.title=Editar fecha de inicio de acci\u00f3n de disposici\u00f3n
-editDispositionActionAsOfDate.description=Editar fecha de inicio de la acci\u00f3n de retenci\u00f3n
-# Broadcast Vital Record Definition
-broadcastVitalRecordDefinition.title=Difundir definici\u00f3n de documento de archivo vital
-broadcastVitalRecordDefinition.description=Difunde la definici\u00f3n de documento de archivo vital
-# Broadcast Disposition Action Definition Update
-broadcastDispositionActionDefinitionUpdate.title=Difundir actualizaci\u00f3n de definici\u00f3n de acciones de retenci\u00f3n
-broadcastDispositionActionDefinitionUpdate.description=Difunde actualizaci\u00f3n de definici\u00f3n de acciones de retenci\u00f3n
-# Undo Event
-undoEvent.title=Deshacer evento
-undoEvent.description=Deshace evento
-# Transfer Complete
-transferComplete.title=Transferencia completa
-transferComplete.description=Transferencia completa
-# Accession Complete
-accessionComplete.title=Adhesi\u00f3n completa
-accessionComplete.description=Adhesi\u00f3n completa
-# Split Email
-splitEmail.title=Separar correo electr\u00f3nico
-splitEmail.description=Separa correo electr\u00f3nico
-# Create Rentention Schedule
-createDispositionSchedule.title=Crear planificaci\u00f3n de retenci\u00f3n
-createDispositionSchedule.description=Crea planificaci\u00f3n de retenci\u00f3n
-# File Destruction Report
-fileDestructionReport.title=Archivar informe de destrucci\u00f3n
-fileDestructionReport.description=Archiva informe de destrucci\u00f3n
-# Cut off
-cutoff.title=Interrumpir
-cutoff.description=Interrumpe
-# Destroy
-destroy.title=Destruir
-destroy.description=Destruye
-# Reviewed
-reviewed.title=Revisado
-reviewed.description=Revisado
-# Hide Record
-hide-record.title=Ocultar documento de archivo
-hide-record.description=Oculta documento de archivo
-# Transfer
-transfer.title=Transferencia
-transfer.description=Transferencia
-# Uncut off
-unCutoff.title=Deshacer interrupci\u00f3n
-unCutoff.description=Deshace interrupci\u00f3n
-# Accession
-accession.title=Adhesi\u00f3n
-accession.description=Adhesi\u00f3n
-# Retain
-retain.title=Retener
-retain.description=Retiene
-# Add Record Types
-addRecordTypes.title=A\u00f1adir tipos de documento de archivo
-addRecordTypes.description=A\u00f1ade los tipos seleccionados al documento de archivo
-# File report
-fileReport.title=Archivar informe
-fileReport.description=Archiva informe
-# Delete Hold
-deleteHold.title=Eliminar bloqueo
-deleteHold.description=Elimina bloqueo
-# Move DM record
-move-dm-record.title=Mover documento de archivo
-move-dm-record.description=Mueve documento de archivo
-# Unlink from
-unlinkFrom.title=Desvincular de
-unlinkFrom.description=Desvincula de
-
-# Recordable version config
-recordable-version-config.title=Opciones de declaraci\u00f3n autom\u00e1tica
-recordable-version-config.description=Opciones de declaraci\u00f3n autom\u00e1tica
-recordable-version-config.version.display-label=Declarar autom\u00e1ticamente versiones como documentos de archivo
-
-# Action parameter constraints
-rm-ac-is-kind-kinds.record_category=Categor\u00eda de documentos de archivo
-rm-ac-is-kind-kinds.record_folder=Carpeta de documentos de archivo
-rm-ac-is-kind-kinds.record=Documento de archivo
-
-rm-ac-disposition-action-relative-positions.next=Siguiente
-rm-ac-disposition-action-relative-positions.previous=Anterior
-rm-ac-disposition-action-relative-positions.any=Cualquiera
-
-ac-versions.none=Nunca
-ac-versions.major_only=Solo para versiones mayores
+#
+# i18n for Records Management Action Conditions
+#
+# Are classified
+isClassified.title=Clasificado por planificaci\u00f3n de retenci\u00f3n
+isClassified.description=Los documentos de archivo o las carpetas de documentos de archivo se han clasificado por una planificaci\u00f3n de retenci\u00f3n
+
+# Are cutoff
+isCutoff.title=Interrumpir
+isCutoff.description=Los documentos de archivo o las carpetas de documentos de archivo est\u00e1n interrumpidos
+
+# Are declared
+isDeclared.title=Documento de archivo completado
+isDeclared.description=Documento de archivo completo
+
+# Is on hold
+isFrozen.title=En espera
+isFrozen.description=Documento de archivo o carpeta de documentos de archivo en espera
+
+# Are filed
+isRecordFiled.title=Documento de archivo archivado
+isRecordFiled.description=El documento de archivo se ha archivado
+
+# Are closed record folders
+isRecordFolderClosed.title=Carpeta de documentos de archivo cerrada
+isRecordFolderClosed.description=La carpeta de documentos de archivo est\u00e1 cerrada
+
+# Are vital
+isVital.title=Documento de archivo vital
+isVital.description=El documento de archivo o la carpeta de documentos de archivo es un documento de archivo vital
+
+# Have Rentention Action
+hasDispositionAction.title=Tiene acci\u00f3n de retenci\u00f3n
+hasDispositionAction.description=Los documentos de archivo y las carpetas tienen la acci\u00f3n de retenci\u00f3n asociada especificada en la posici\u00f3n relativa especificada
+
+# Are kind
+isKind.title=Tipo de elemento de Records Management
+isKind.description=Los elementos son una clase de componente del plan de ficheros
+isKind.kind.display-label=Clase
+
+# Are Record Type
+isRecordType.title=Tiene tipo de documento de archivo
+isRecordType.description=Los documentos de archivo tienen un tipo de documento de archivo especificado
+
+
+#
+# i18n for Records Management Actions
+#
+# Declare As Record
+create-record.title=Declarar como documento de archivo
+create-record.description=Declara el fichero como un documento de archivo
+create-record.file-plan.display-label=Plan de ficheros
+create-record.hide-record.display-label=Ocultar documento de archivo
+# Declare As Version Record
+declare-as-version-record.title=Declarar la versi\u00f3n como documento de archivo
+declare-as-version-record.description=Declara esta versi\u00f3n del fichero como un documento de archivo
+declare-as-version-record.file-plan.display-label=Plan de ficheros
+# Complete record
+declareRecord.title=Documento de archivo completo
+declareRecord.description=Completa un documento de archivo
+# Reopens record
+undeclareRecord.title=Reabrir documento de archivo
+undeclareRecord.description=Reabre un documento de archivo
+# Open record folder
+openRecordFolder.title=Abrir carpeta de documentos de archivo
+openRecordFolder.description=Abre una carpeta de documentos de archivo
+# Close record folder
+closeRecordFolder.title=Cerrar carpeta de documentos de archivo
+closeRecordFolder.description=Cierra una carpeta de documentos de archivo
+# Complete event
+completeEvent.title=Completar evento
+completeEvent.description=Completa un evento
+completeEvent.eventName.display-label=Evento
+# Freeze
+freeze.title=Congelar
+freeze.description=Congela un documento de archivo
+freeze.reason.display-label=Raz\u00f3n
+# Unfreeze
+unfreeze.title=Descongelar
+unfreeze.description=Descongela un documento de archivo
+# File to
+fileTo.title=Archivar en
+fileTo.description=Archiva un documento de archivo en la carpeta de documentos de archivo especificada
+fileTo.path.display-label=Ruta a la carpeta de documentos de archivo
+fileTo.createRecordPath.display-label=Crear ruta de documentos de archivo
+# Copy to
+copyTo.title=Copiar a
+copyTo.description=Copia un documento de archivo en la carpeta de documentos de archivo especificada
+copyTo.path.display-label=Ruta a la carpeta de documentos de archivo
+copyTo.createRecordPath.display-label=Crear ruta de documentos de archivo
+# Move to
+moveTo.title=Mover a
+moveTo.description=Mueve un documento de archivo a la carpeta de documentos de archivo especificada
+moveTo.path.display-label=Ruta a la carpeta de documentos de archivo
+moveTo.createRecordPath.display-label=Crear ruta de documentos de archivo
+# Link to
+linkTo.title=Enlace a
+linkTo.description=Enlaza un documento de archivo a la carpeta de documentos de archivo especificada
+linkTo.path.display-label=Ruta a la carpeta de documentos de archivo
+linkTo.createRecordPath.display-label=Crear ruta de documentos de archivo
+# Reject
+reject.title=Rechazar
+reject.description=Rechaza un documento de archivo y mueve el fichero a su ubicaci\u00f3n original
+reject.reason.display-label=Rechazar raz\u00f3n
+# Request Information
+requestInfo.title=Solicitar informaci\u00f3n
+requestInfo.description=Inicia un flujo de trabajo para solicitar m\u00e1s informaci\u00f3n para un documento de archivo
+# Execute script
+executeScript.title=Ejecutar script
+executeScript.description=Ejecuta un script
+executeScript.script-ref.display-label=Script
+# Send Email
+sendEmail.title=Env\u00edar correo electr\u00f3nico
+sendEmail.description=Env\u00eda un correo electr\u00f3nico
+# Set Property
+setPropertyValue.title=Establecer valor de la propiedad
+setPropertyValue.description=Establece un valor de la propiedad
+
+# Edit Hold Reason
+editHoldReason.title=Editar raz\u00f3n de bloqueo
+editHoldReason.description=Edita la raz\u00f3n de bloqueo
+# Relinquish Hold
+relinquishHold.title=Eliminar bloqueo
+relinquishHold.description=Elimina el bloqueo
+# Edit Review As Of Date
+editReviewAsOfDate.title=Editar fecha de inicio de revisi\u00f3n
+editReviewAsOfDate.description=Editar fecha de inicio de revisi\u00f3n
+# Edit Disposition Action As Of Date
+editDispositionActionAsOfDate.title=Editar fecha de inicio de acci\u00f3n de disposici\u00f3n
+editDispositionActionAsOfDate.description=Editar fecha de inicio de la acci\u00f3n de retenci\u00f3n
+# Broadcast Vital Record Definition
+broadcastVitalRecordDefinition.title=Difundir definici\u00f3n de documento de archivo vital
+broadcastVitalRecordDefinition.description=Difunde la definici\u00f3n de documento de archivo vital
+# Broadcast Disposition Action Definition Update
+broadcastDispositionActionDefinitionUpdate.title=Difundir actualizaci\u00f3n de definici\u00f3n de acciones de retenci\u00f3n
+broadcastDispositionActionDefinitionUpdate.description=Difunde actualizaci\u00f3n de definici\u00f3n de acciones de retenci\u00f3n
+# Undo Event
+undoEvent.title=Deshacer evento
+undoEvent.description=Deshace evento
+# Transfer Complete
+transferComplete.title=Transferencia completa
+transferComplete.description=Transferencia completa
+# Accession Complete
+accessionComplete.title=Adhesi\u00f3n completa
+accessionComplete.description=Adhesi\u00f3n completa
+# Split Email
+splitEmail.title=Separar correo electr\u00f3nico
+splitEmail.description=Separa correo electr\u00f3nico
+# Create Rentention Schedule
+createDispositionSchedule.title=Crear planificaci\u00f3n de retenci\u00f3n
+createDispositionSchedule.description=Crea planificaci\u00f3n de retenci\u00f3n
+# File Destruction Report
+fileDestructionReport.title=Archivar informe de destrucci\u00f3n
+fileDestructionReport.description=Archiva informe de destrucci\u00f3n
+# Cut off
+cutoff.title=Interrumpir
+cutoff.description=Interrumpe
+# Destroy
+destroy.title=Destruir
+destroy.description=Destruye
+# Reviewed
+reviewed.title=Revisado
+reviewed.description=Revisado
+# Hide Record
+hide-record.title=Ocultar documento de archivo
+hide-record.description=Oculta documento de archivo
+# Transfer
+transfer.title=Transferencia
+transfer.description=Transferencia
+# Uncut off
+unCutoff.title=Deshacer interrupci\u00f3n
+unCutoff.description=Deshace interrupci\u00f3n
+# Accession
+accession.title=Adhesi\u00f3n
+accession.description=Adhesi\u00f3n
+# Retain
+retain.title=Retener
+retain.description=Retiene
+# Add Record Types
+addRecordTypes.title=A\u00f1adir tipos de documento de archivo
+addRecordTypes.description=A\u00f1ade los tipos seleccionados al documento de archivo
+# File report
+fileReport.title=Archivar informe
+fileReport.description=Archiva informe
+# Delete Hold
+deleteHold.title=Eliminar bloqueo
+deleteHold.description=Elimina bloqueo
+# Move DM record
+move-dm-record.title=Mover documento de archivo
+move-dm-record.description=Mueve documento de archivo
+# Unlink from
+unlinkFrom.title=Desvincular de
+unlinkFrom.description=Desvincula de
+
+# Recordable version config
+recordable-version-config.title=Opciones de declaraci\u00f3n autom\u00e1tica
+recordable-version-config.description=Opciones de declaraci\u00f3n autom\u00e1tica
+recordable-version-config.version.display-label=Declarar autom\u00e1ticamente versiones como documentos de archivo
+
+# Action parameter constraints
+rm-ac-is-kind-kinds.record_category=Categor\u00eda de documentos de archivo
+rm-ac-is-kind-kinds.record_folder=Carpeta de documentos de archivo
+rm-ac-is-kind-kinds.record=Documento de archivo
+
+rm-ac-disposition-action-relative-positions.next=Siguiente
+rm-ac-disposition-action-relative-positions.previous=Anterior
+rm-ac-disposition-action-relative-positions.any=Cualquiera
+
+ac-versions.none=Nunca
+ac-versions.major_only=Solo para versiones mayores
ac-versions.all=Para todas las versiones mayores y menores
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_fr.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_fr.properties
index a7d4d1e999..7ddffe7a72 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_fr.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_fr.properties
@@ -1,211 +1,211 @@
-#
-# i18n for Records Management Action Conditions
-#
-# Are classified
-isClassified.title=Class\u00e9 par r\u00e8gle de r\u00e9tention
-isClassified.description=Les documents d'archives ou dossiers d'archives sont class\u00e9s par une r\u00e8gle de r\u00e9tention
-
-# Are cutoff
-isCutoff.title=D\u00e9classer
-isCutoff.description=Les documents d'archives ou dossiers d'archives sont d\u00e9class\u00e9s
-
-# Are declared
-isDeclared.title=Document d'archives termin\u00e9
-isDeclared.description=Le document d'archives est termin\u00e9
-
-# Is on hold
-isFrozen.title=Suspendu
-isFrozen.description=Le document d'archives ou le dossier d'archives est suspendu
-
-# Are filed
-isRecordFiled.title=Document d'archives archiv\u00e9
-isRecordFiled.description=Le document d'archives est archiv\u00e9
-
-# Are closed record folders
-isRecordFolderClosed.title=Dossier d'archives ferm\u00e9
-isRecordFolderClosed.description=Le dossier d'archives est ferm\u00e9
-
-# Are vital
-isVital.title=Document d'archives essentiel
-isVital.description=Le document d'archives ou le dossier d'archives est essentiel
-
-# Have Rentention Action
-hasDispositionAction.title=A une action de r\u00e9tention
-hasDispositionAction.description=Les documents d'archives et dossiers d'archives ont l'action de r\u00e9tention associ\u00e9e d\u00e9finie \u00e0 la position relative d\u00e9finie
-
-# Are kind
-isKind.title=Type d'\u00e9l\u00e9ment de gestion des archives
-isKind.description=Les \u00e9l\u00e9ments sont un type de composant du plan de classification
-isKind.kind.display-label=Type
-
-# Are Record Type
-isRecordType.title=A le type de document d'archives
-isRecordType.description=Les documents d'archives ont un type de document d'archives d\u00e9fini
-
-
-#
-# i18n for Records Management Actions
-#
-# Declare As Record
-create-record.title=D\u00e9clarer comme document d'archives
-create-record.description=D\u00e9clare un fichier comme document d'archives
-create-record.file-plan.display-label=Plan de classification
-create-record.hide-record.display-label=Masquer le document d'archives
-# Declare As Version Record
-declare-as-version-record.title=D\u00e9clarer la version comme document d'archives
-declare-as-version-record.description=D\u00e9clare cette version du fichier comme document d'archives
-declare-as-version-record.file-plan.display-label=Plan de classification
-# Complete record
-declareRecord.title=Compl\u00e9ter un document d'archives
-declareRecord.description=Compl\u00e8te un document d'archives
-# Reopens record
-undeclareRecord.title=Rouvrir un document d'archives
-undeclareRecord.description=Rouvre un document d'archives
-# Open record folder
-openRecordFolder.title=Ouvrir un dossier d'archives
-openRecordFolder.description=Ouvre un dossier d'archives
-# Close record folder
-closeRecordFolder.title=Fermer un dossier d'archives
-closeRecordFolder.description=Ferme un dossier d'archives
-# Complete event
-completeEvent.title=Compl\u00e9ter un \u00e9v\u00e9nement
-completeEvent.description=Compl\u00e8te un \u00e9v\u00e9nement
-completeEvent.eventName.display-label=Ev\u00e9nement
-# Freeze
-freeze.title=Geler
-freeze.description=G\u00e8le un document d'archives
-freeze.reason.display-label=Motif
-# Unfreeze
-unfreeze.title=D\u00e9geler
-unfreeze.description=D\u00e9g\u00e8le un document d'archives
-# File to
-fileTo.title=Archiver dans
-fileTo.description=Archive un document d'archives dans le dossier d'archives d\u00e9fini
-fileTo.path.display-label=Chemin de dossier d'archives
-fileTo.createRecordPath.display-label=Cr\u00e9er un chemin d'acc\u00e8s du document d'archives
-# Copy to
-copyTo.title=Copier vers...
-copyTo.description=Copie un document d'archives vers le dossier d'archives d\u00e9fini
-copyTo.path.display-label=Chemin de dossier d'archives
-copyTo.createRecordPath.display-label=Cr\u00e9er un chemin d'acc\u00e8s du document d'archives
-# Move to
-moveTo.title=D\u00e9placer vers...
-moveTo.description=D\u00e9place un document d'archives vers le dossier d'archives d\u00e9fini
-moveTo.path.display-label=Chemin de dossier d'archives
-moveTo.createRecordPath.display-label=Cr\u00e9er un chemin d'acc\u00e8s du document d'archives
-# Link to
-linkTo.title=Lier \u00e0
-linkTo.description=Lie un document d'archives vers le dossier d'archives d\u00e9fini
-linkTo.path.display-label=Chemin de dossier d'archives
-linkTo.createRecordPath.display-label=Cr\u00e9er un chemin d'acc\u00e8s du document d'archives
-# Reject
-reject.title=Rejeter
-reject.description=Rejette un document d'archives et place le fichier dans son emplacement d'origine
-reject.reason.display-label=Motif du rejet
-# Request Information
-requestInfo.title=Demander des informations
-requestInfo.description=D\u00e9marre un workflow pour demander plus d'informations sur un document d'archives
-# Execute script
-executeScript.title=Ex\u00e9cuter le script
-executeScript.description=Ex\u00e9cuter un script
-executeScript.script-ref.display-label=Script
-# Send Email
-sendEmail.title=Envoyer un e-mail
-sendEmail.description=Envoyer un e-mail
-# Set Property
-setPropertyValue.title=D\u00e9finir la valeur de la propri\u00e9t\u00e9
-setPropertyValue.description=D\u00e9finir une valeur de propri\u00e9t\u00e9
-
-# Edit Hold Reason
-editHoldReason.title=Modifier le motif de suspension
-editHoldReason.description=Modifier le motif de suspension
-# Relinquish Hold
-relinquishHold.title=Lever la suspension
-relinquishHold.description=Lever la suspension
-# Edit Review As Of Date
-editReviewAsOfDate.title=Modifier la date de d\u00e9but de la r\u00e9vision
-editReviewAsOfDate.description=Modifier la date de d\u00e9but de la r\u00e9vision
-# Edit Disposition Action As Of Date
-editDispositionActionAsOfDate.title=Modifier la date de d\u00e9but de l'action de r\u00e9tention
-editDispositionActionAsOfDate.description=Modifier la date de d\u00e9but de l'action de r\u00e9tention
-# Broadcast Vital Record Definition
-broadcastVitalRecordDefinition.title=D\u00e9finition du document d'archives essentiel diffus\u00e9e
-broadcastVitalRecordDefinition.description=D\u00e9finition du document d'archives essentiel diffus\u00e9e
-# Broadcast Disposition Action Definition Update
-broadcastDispositionActionDefinitionUpdate.title=Mise \u00e0 jour de la d\u00e9finition de l'action de r\u00e9tention diffus\u00e9e
-broadcastDispositionActionDefinitionUpdate.description=Mise \u00e0 jour de la d\u00e9finition de l'action de r\u00e9tention diffus\u00e9e
-# Undo Event
-undoEvent.title=Annuler l'\u00e9v\u00e9nement
-undoEvent.description=Annuler l'\u00e9v\u00e9nement
-# Transfer Complete
-transferComplete.title=Transfert termin\u00e9
-transferComplete.description=Transfert termin\u00e9
-# Accession Complete
-accessionComplete.title=Versement \u00e0 un autre organisme termin\u00e9
-accessionComplete.description=Versement \u00e0 un autre organisme termin\u00e9
-# Split Email
-splitEmail.title=Partager l'e-mail
-splitEmail.description=Partager l'e-mail
-# Create Rentention Schedule
-createDispositionSchedule.title=Cr\u00e9er une r\u00e8gle de r\u00e9tention
-createDispositionSchedule.description=Cr\u00e9er une r\u00e8gle de r\u00e9tention
-# File Destruction Report
-fileDestructionReport.title=Rapport de destruction de fichier
-fileDestructionReport.description=Rapport de destruction de fichier
-# Cut off
-cutoff.title=D\u00e9classer
-cutoff.description=D\u00e9classer
-# Destroy
-destroy.title=D\u00e9truire
-destroy.description=D\u00e9truire
-# Reviewed
-reviewed.title=V\u00e9rifi\u00e9
-reviewed.description=V\u00e9rifi\u00e9
-# Hide Record
-hide-record.title=Masquer le document d'archives
-hide-record.description=Masquer le document d'archives
-# Transfer
-transfer.title=Transf\u00e9rer
-transfer.description=Transf\u00e9rer
-# Uncut off
-unCutoff.title=Annuler le d\u00e9classement
-unCutoff.description=Annuler le d\u00e9classement
-# Accession
-accession.title=Versement \u00e0 un autre organisme
-accession.description=Versement \u00e0 un autre organisme
-# Retain
-retain.title=Retenir
-retain.description=Retenir
-# Add Record Types
-addRecordTypes.title=Ajouter des types de document d'archives
-addRecordTypes.description=Ajoute le(s) type(s) s\u00e9lectionn\u00e9(s) au document d'archives
-# File report
-fileReport.title=Archiver le rapport
-fileReport.description=Archiver le rapport
-# Delete Hold
-deleteHold.title=Supprimer la suspension
-deleteHold.description=Supprimer la suspension
-# Move DM record
-move-dm-record.title=D\u00e9placer le document d'archives
-move-dm-record.description=D\u00e9placer le document d'archives
-# Unlink from
-unlinkFrom.title=Supprimer le lien de
-unlinkFrom.description=Supprimer le lien de
-
-# Recordable version config
-recordable-version-config.title=Options de d\u00e9claration automatique
-recordable-version-config.description=Options de d\u00e9claration automatique
-recordable-version-config.version.display-label=D\u00e9clarer automatiquement les versions comme documents d'archives
-
-# Action parameter constraints
-rm-ac-is-kind-kinds.record_category=Cat\u00e9gorie de document d'archives
-rm-ac-is-kind-kinds.record_folder=Dossier d'archives
-rm-ac-is-kind-kinds.record=Document d'archives
-
-rm-ac-disposition-action-relative-positions.next=Suivant
-rm-ac-disposition-action-relative-positions.previous=Pr\u00e9c\u00e9dent
-rm-ac-disposition-action-relative-positions.any=N'importe lequel
-
-ac-versions.none=Jamais
-ac-versions.major_only=Uniquement les versions majeures
+#
+# i18n for Records Management Action Conditions
+#
+# Are classified
+isClassified.title=Class\u00e9 par r\u00e8gle de r\u00e9tention
+isClassified.description=Les documents d'archives ou dossiers d'archives sont class\u00e9s par une r\u00e8gle de r\u00e9tention
+
+# Are cutoff
+isCutoff.title=D\u00e9classer
+isCutoff.description=Les documents d'archives ou dossiers d'archives sont d\u00e9class\u00e9s
+
+# Are declared
+isDeclared.title=Document d'archives termin\u00e9
+isDeclared.description=Le document d'archives est termin\u00e9
+
+# Is on hold
+isFrozen.title=Suspendu
+isFrozen.description=Le document d'archives ou le dossier d'archives est suspendu
+
+# Are filed
+isRecordFiled.title=Document d'archives archiv\u00e9
+isRecordFiled.description=Le document d'archives est archiv\u00e9
+
+# Are closed record folders
+isRecordFolderClosed.title=Dossier d'archives ferm\u00e9
+isRecordFolderClosed.description=Le dossier d'archives est ferm\u00e9
+
+# Are vital
+isVital.title=Document d'archives essentiel
+isVital.description=Le document d'archives ou le dossier d'archives est essentiel
+
+# Have Rentention Action
+hasDispositionAction.title=A une action de r\u00e9tention
+hasDispositionAction.description=Les documents d'archives et dossiers d'archives ont l'action de r\u00e9tention associ\u00e9e d\u00e9finie \u00e0 la position relative d\u00e9finie
+
+# Are kind
+isKind.title=Type d'\u00e9l\u00e9ment de gestion des archives
+isKind.description=Les \u00e9l\u00e9ments sont un type de composant du plan de classification
+isKind.kind.display-label=Type
+
+# Are Record Type
+isRecordType.title=A le type de document d'archives
+isRecordType.description=Les documents d'archives ont un type de document d'archives d\u00e9fini
+
+
+#
+# i18n for Records Management Actions
+#
+# Declare As Record
+create-record.title=D\u00e9clarer comme document d'archives
+create-record.description=D\u00e9clare un fichier comme document d'archives
+create-record.file-plan.display-label=Plan de classification
+create-record.hide-record.display-label=Masquer le document d'archives
+# Declare As Version Record
+declare-as-version-record.title=D\u00e9clarer la version comme document d'archives
+declare-as-version-record.description=D\u00e9clare cette version du fichier comme document d'archives
+declare-as-version-record.file-plan.display-label=Plan de classification
+# Complete record
+declareRecord.title=Compl\u00e9ter un document d'archives
+declareRecord.description=Compl\u00e8te un document d'archives
+# Reopens record
+undeclareRecord.title=Rouvrir un document d'archives
+undeclareRecord.description=Rouvre un document d'archives
+# Open record folder
+openRecordFolder.title=Ouvrir un dossier d'archives
+openRecordFolder.description=Ouvre un dossier d'archives
+# Close record folder
+closeRecordFolder.title=Fermer un dossier d'archives
+closeRecordFolder.description=Ferme un dossier d'archives
+# Complete event
+completeEvent.title=Compl\u00e9ter un \u00e9v\u00e9nement
+completeEvent.description=Compl\u00e8te un \u00e9v\u00e9nement
+completeEvent.eventName.display-label=Ev\u00e9nement
+# Freeze
+freeze.title=Geler
+freeze.description=G\u00e8le un document d'archives
+freeze.reason.display-label=Motif
+# Unfreeze
+unfreeze.title=D\u00e9geler
+unfreeze.description=D\u00e9g\u00e8le un document d'archives
+# File to
+fileTo.title=Archiver dans
+fileTo.description=Archive un document d'archives dans le dossier d'archives d\u00e9fini
+fileTo.path.display-label=Chemin de dossier d'archives
+fileTo.createRecordPath.display-label=Cr\u00e9er un chemin d'acc\u00e8s du document d'archives
+# Copy to
+copyTo.title=Copier vers...
+copyTo.description=Copie un document d'archives vers le dossier d'archives d\u00e9fini
+copyTo.path.display-label=Chemin de dossier d'archives
+copyTo.createRecordPath.display-label=Cr\u00e9er un chemin d'acc\u00e8s du document d'archives
+# Move to
+moveTo.title=D\u00e9placer vers...
+moveTo.description=D\u00e9place un document d'archives vers le dossier d'archives d\u00e9fini
+moveTo.path.display-label=Chemin de dossier d'archives
+moveTo.createRecordPath.display-label=Cr\u00e9er un chemin d'acc\u00e8s du document d'archives
+# Link to
+linkTo.title=Lier \u00e0
+linkTo.description=Lie un document d'archives vers le dossier d'archives d\u00e9fini
+linkTo.path.display-label=Chemin de dossier d'archives
+linkTo.createRecordPath.display-label=Cr\u00e9er un chemin d'acc\u00e8s du document d'archives
+# Reject
+reject.title=Rejeter
+reject.description=Rejette un document d'archives et place le fichier dans son emplacement d'origine
+reject.reason.display-label=Motif du rejet
+# Request Information
+requestInfo.title=Demander des informations
+requestInfo.description=D\u00e9marre un workflow pour demander plus d'informations sur un document d'archives
+# Execute script
+executeScript.title=Ex\u00e9cuter le script
+executeScript.description=Ex\u00e9cuter un script
+executeScript.script-ref.display-label=Script
+# Send Email
+sendEmail.title=Envoyer un e-mail
+sendEmail.description=Envoyer un e-mail
+# Set Property
+setPropertyValue.title=D\u00e9finir la valeur de la propri\u00e9t\u00e9
+setPropertyValue.description=D\u00e9finir une valeur de propri\u00e9t\u00e9
+
+# Edit Hold Reason
+editHoldReason.title=Modifier le motif de suspension
+editHoldReason.description=Modifier le motif de suspension
+# Relinquish Hold
+relinquishHold.title=Lever la suspension
+relinquishHold.description=Lever la suspension
+# Edit Review As Of Date
+editReviewAsOfDate.title=Modifier la date de d\u00e9but de la r\u00e9vision
+editReviewAsOfDate.description=Modifier la date de d\u00e9but de la r\u00e9vision
+# Edit Disposition Action As Of Date
+editDispositionActionAsOfDate.title=Modifier la date de d\u00e9but de l'action de r\u00e9tention
+editDispositionActionAsOfDate.description=Modifier la date de d\u00e9but de l'action de r\u00e9tention
+# Broadcast Vital Record Definition
+broadcastVitalRecordDefinition.title=D\u00e9finition du document d'archives essentiel diffus\u00e9e
+broadcastVitalRecordDefinition.description=D\u00e9finition du document d'archives essentiel diffus\u00e9e
+# Broadcast Disposition Action Definition Update
+broadcastDispositionActionDefinitionUpdate.title=Mise \u00e0 jour de la d\u00e9finition de l'action de r\u00e9tention diffus\u00e9e
+broadcastDispositionActionDefinitionUpdate.description=Mise \u00e0 jour de la d\u00e9finition de l'action de r\u00e9tention diffus\u00e9e
+# Undo Event
+undoEvent.title=Annuler l'\u00e9v\u00e9nement
+undoEvent.description=Annuler l'\u00e9v\u00e9nement
+# Transfer Complete
+transferComplete.title=Transfert termin\u00e9
+transferComplete.description=Transfert termin\u00e9
+# Accession Complete
+accessionComplete.title=Versement \u00e0 un autre organisme termin\u00e9
+accessionComplete.description=Versement \u00e0 un autre organisme termin\u00e9
+# Split Email
+splitEmail.title=Partager l'e-mail
+splitEmail.description=Partager l'e-mail
+# Create Rentention Schedule
+createDispositionSchedule.title=Cr\u00e9er une r\u00e8gle de r\u00e9tention
+createDispositionSchedule.description=Cr\u00e9er une r\u00e8gle de r\u00e9tention
+# File Destruction Report
+fileDestructionReport.title=Rapport de destruction de fichier
+fileDestructionReport.description=Rapport de destruction de fichier
+# Cut off
+cutoff.title=D\u00e9classer
+cutoff.description=D\u00e9classer
+# Destroy
+destroy.title=D\u00e9truire
+destroy.description=D\u00e9truire
+# Reviewed
+reviewed.title=V\u00e9rifi\u00e9
+reviewed.description=V\u00e9rifi\u00e9
+# Hide Record
+hide-record.title=Masquer le document d'archives
+hide-record.description=Masquer le document d'archives
+# Transfer
+transfer.title=Transf\u00e9rer
+transfer.description=Transf\u00e9rer
+# Uncut off
+unCutoff.title=Annuler le d\u00e9classement
+unCutoff.description=Annuler le d\u00e9classement
+# Accession
+accession.title=Versement \u00e0 un autre organisme
+accession.description=Versement \u00e0 un autre organisme
+# Retain
+retain.title=Retenir
+retain.description=Retenir
+# Add Record Types
+addRecordTypes.title=Ajouter des types de document d'archives
+addRecordTypes.description=Ajoute le(s) type(s) s\u00e9lectionn\u00e9(s) au document d'archives
+# File report
+fileReport.title=Archiver le rapport
+fileReport.description=Archiver le rapport
+# Delete Hold
+deleteHold.title=Supprimer la suspension
+deleteHold.description=Supprimer la suspension
+# Move DM record
+move-dm-record.title=D\u00e9placer le document d'archives
+move-dm-record.description=D\u00e9placer le document d'archives
+# Unlink from
+unlinkFrom.title=Supprimer le lien de
+unlinkFrom.description=Supprimer le lien de
+
+# Recordable version config
+recordable-version-config.title=Options de d\u00e9claration automatique
+recordable-version-config.description=Options de d\u00e9claration automatique
+recordable-version-config.version.display-label=D\u00e9clarer automatiquement les versions comme documents d'archives
+
+# Action parameter constraints
+rm-ac-is-kind-kinds.record_category=Cat\u00e9gorie de document d'archives
+rm-ac-is-kind-kinds.record_folder=Dossier d'archives
+rm-ac-is-kind-kinds.record=Document d'archives
+
+rm-ac-disposition-action-relative-positions.next=Suivant
+rm-ac-disposition-action-relative-positions.previous=Pr\u00e9c\u00e9dent
+rm-ac-disposition-action-relative-positions.any=N'importe lequel
+
+ac-versions.none=Jamais
+ac-versions.major_only=Uniquement les versions majeures
ac-versions.all=Versions majeures et mineures
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_it.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_it.properties
index caa872c432..36cc1cd0d4 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_it.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_it.properties
@@ -1,211 +1,211 @@
-#
-# i18n for Records Management Action Conditions
-#
-# Are classified
-isClassified.title=Classificato in base al programma di conservazione
-isClassified.description=I record o le cartelle di record sono stati classificati in base al programma di conservazione
-
-# Are cutoff
-isCutoff.title=Cut off
-isCutoff.description=Record o cartelle di record separati
-
-# Are declared
-isDeclared.title=Record completati
-isDeclared.description=Il record \u00e8 completo
-
-# Is on hold
-isFrozen.title=Sospeso
-isFrozen.description=Il record o la cartella di record sono in sospeso
-
-# Are filed
-isRecordFiled.title=Record archiviato
-isRecordFiled.description=Il record \u00e8 archiviato
-
-# Are closed record folders
-isRecordFolderClosed.title=Cartella di record chiusa
-isRecordFolderClosed.description=La cartella di record \u00e8 chiusa
-
-# Are vital
-isVital.title=Record fondamentale
-isVital.description=Il record o la cartella di record sono record fondamentali
-
-# Have Rentention Action
-hasDispositionAction.title=Con azione di conservazione
-hasDispositionAction.description=I record e le cartelle hanno ottenuto la relativa azione di conservazione specificata alla relativa posizione specificata
-
-# Are kind
-isKind.title=Tipo di elemento di Records Management
-isKind.description=Gli elementi sono del tipo componente piano file
-isKind.kind.display-label=Tipo
-
-# Are Record Type
-isRecordType.title=Con tipo di record
-isRecordType.description=I record hanno un tipo di record specificato
-
-
-#
-# i18n for Records Management Actions
-#
-# Declare As Record
-create-record.title=Dichiara come record
-create-record.description=Dichiara file come record
-create-record.file-plan.display-label=Piano file
-create-record.hide-record.display-label=Nascondi record
-# Declare As Version Record
-declare-as-version-record.title=Dichiara versione come record
-declare-as-version-record.description=Dichiara questa versione del file come record
-declare-as-version-record.file-plan.display-label=Piano file
-# Complete record
-declareRecord.title=Completa record
-declareRecord.description=Completa un record.
-# Reopens record
-undeclareRecord.title=Riapri record
-undeclareRecord.description=Riapre un record
-# Open record folder
-openRecordFolder.title=Apri cartella di record
-openRecordFolder.description=Apre una cartella di record
-# Close record folder
-closeRecordFolder.title=Chiudi cartella di record
-closeRecordFolder.description=Chiude una cartella di record
-# Complete event
-completeEvent.title=Completa evento
-completeEvent.description=Completa un evento
-completeEvent.eventName.display-label=Evento
-# Freeze
-freeze.title=Blocca
-freeze.description=Blocca un record
-freeze.reason.display-label=Motivo
-# Unfreeze
-unfreeze.title=Sblocca
-unfreeze.description=Sblocca un record
-# File to
-fileTo.title=Archivia in
-fileTo.description=Archivia un record nella cartella di record specificata
-fileTo.path.display-label=Indirizza nella cartella di record
-fileTo.createRecordPath.display-label=Crea percorso del record
-# Copy to
-copyTo.title=Copia in
-copyTo.description=Copia un record nella cartella di record specificata
-copyTo.path.display-label=Indirizza nella cartella di record
-copyTo.createRecordPath.display-label=Crea percorso del record
-# Move to
-moveTo.title=Sposta in
-moveTo.description=Sposta un record nella cartella di record specificata
-moveTo.path.display-label=Indirizza nella cartella di record
-moveTo.createRecordPath.display-label=Crea percorso del record
-# Link to
-linkTo.title=Collega a
-linkTo.description=Collega un record alla cartella di record specificata
-linkTo.path.display-label=Indirizza nella cartella di record
-linkTo.createRecordPath.display-label=Crea percorso del record
-# Reject
-reject.title=Respingi
-reject.description=Respinge un record e sposta il file nella sua posizione originale
-reject.reason.display-label=Respingi motivo
-# Request Information
-requestInfo.title=Richiedi informazioni
-requestInfo.description=Avvia un flusso di lavoro per richiedere pi\u00f9 informazioni per un record
-# Execute script
-executeScript.title=Esegui script
-executeScript.description=Esegui uno script
-executeScript.script-ref.display-label=Script
-# Send Email
-sendEmail.title=Invia e-mail
-sendEmail.description=Invia un'e-mail
-# Set Property
-setPropertyValue.title=Imposta valore di propriet\u00e0
-setPropertyValue.description=Imposta un valore di propriet\u00e0
-
-# Edit Hold Reason
-editHoldReason.title=Modifica motivo sospensione
-editHoldReason.description=Modifica il motivo della sospensione
-# Relinquish Hold
-relinquishHold.title=Lascia sospensione
-relinquishHold.description=Lascia la sospensione
-# Edit Review As Of Date
-editReviewAsOfDate.title=Modifica data di inizio esame
-editReviewAsOfDate.description=Modifica data di inizio esame
-# Edit Disposition Action As Of Date
-editDispositionActionAsOfDate.title=Modifica data di inizio azione di conservazione
-editDispositionActionAsOfDate.description=Modifica la data di inizio azione di conservazione
-# Broadcast Vital Record Definition
-broadcastVitalRecordDefinition.title=Trasmetti definizione di record fondamentale
-broadcastVitalRecordDefinition.description=Trasmetti la definizione di record fondamentale
-# Broadcast Disposition Action Definition Update
-broadcastDispositionActionDefinitionUpdate.title=Trasmetti aggiornamento definizione di azione di conservazione
-broadcastDispositionActionDefinitionUpdate.description=Trasmetti aggiornamento definizione di azione di conservazione
-# Undo Event
-undoEvent.title=Annulla evento
-undoEvent.description=Annulla evento
-# Transfer Complete
-transferComplete.title=Trasferimento completato
-transferComplete.description=Trasferimento completato
-# Accession Complete
-accessionComplete.title=Trasferimento ad altri completato
-accessionComplete.description=Trasferimento ad altri completato
-# Split Email
-splitEmail.title=Dividi e-mail
-splitEmail.description=Dividi e-mail
-# Create Rentention Schedule
-createDispositionSchedule.title=Crea Programma di conservazione
-createDispositionSchedule.description=Crea Programma di conservazione
-# File Destruction Report
-fileDestructionReport.title=Archivia rapporto di eliminazione definitiva
-fileDestructionReport.description=Archivia rapporto di eliminazione definitiva
-# Cut off
-cutoff.title=Cut off
-cutoff.description=Cut off
-# Destroy
-destroy.title=Elimina definitivamente
-destroy.description=Elimina definitivamente
-# Reviewed
-reviewed.title=Esaminato
-reviewed.description=Esaminato
-# Hide Record
-hide-record.title=Nascondi record
-hide-record.description=Nascondi record
-# Transfer
-transfer.title=Trasferisci
-transfer.description=Trasferisci
-# Uncut off
-unCutoff.title=Annulla cut off
-unCutoff.description=Annulla cut off
-# Accession
-accession.title=Trasferimento ad altri
-accession.description=Trasferimento ad altri
-# Retain
-retain.title=Conserva
-retain.description=Conserva
-# Add Record Types
-addRecordTypes.title=Aggiungi tipi di record
-addRecordTypes.description=Aggiunge i tipi selezionati al record
-# File report
-fileReport.title=Archivia rapporto
-fileReport.description=Archivia rapporto
-# Delete Hold
-deleteHold.title=Annulla sospensione
-deleteHold.description=Annulla sospensione
-# Move DM record
-move-dm-record.title=Sposta record
-move-dm-record.description=Sposta record
-# Unlink from
-unlinkFrom.title=Scollega da
-unlinkFrom.description=Scollega da
-
-# Recordable version config
-recordable-version-config.title=Opzioni di dichiarazione automatica
-recordable-version-config.description=Opzioni di dichiarazione automatica
-recordable-version-config.version.display-label=Dichiara automaticamente versioni come record
-
-# Action parameter constraints
-rm-ac-is-kind-kinds.record_category=Categoria record
-rm-ac-is-kind-kinds.record_folder=Cartella di record
-rm-ac-is-kind-kinds.record=Record
-
-rm-ac-disposition-action-relative-positions.next=Successivo
-rm-ac-disposition-action-relative-positions.previous=Precedente
-rm-ac-disposition-action-relative-positions.any=Qualsiasi
-
-ac-versions.none=Mai
-ac-versions.major_only=Solo per versioni maggiori
+#
+# i18n for Records Management Action Conditions
+#
+# Are classified
+isClassified.title=Classificato in base al programma di conservazione
+isClassified.description=I record o le cartelle di record sono stati classificati in base al programma di conservazione
+
+# Are cutoff
+isCutoff.title=Cut off
+isCutoff.description=Record o cartelle di record separati
+
+# Are declared
+isDeclared.title=Record completati
+isDeclared.description=Il record \u00e8 completo
+
+# Is on hold
+isFrozen.title=Sospeso
+isFrozen.description=Il record o la cartella di record sono in sospeso
+
+# Are filed
+isRecordFiled.title=Record archiviato
+isRecordFiled.description=Il record \u00e8 archiviato
+
+# Are closed record folders
+isRecordFolderClosed.title=Cartella di record chiusa
+isRecordFolderClosed.description=La cartella di record \u00e8 chiusa
+
+# Are vital
+isVital.title=Record fondamentale
+isVital.description=Il record o la cartella di record sono record fondamentali
+
+# Have Rentention Action
+hasDispositionAction.title=Con azione di conservazione
+hasDispositionAction.description=I record e le cartelle hanno ottenuto la relativa azione di conservazione specificata alla relativa posizione specificata
+
+# Are kind
+isKind.title=Tipo di elemento di Records Management
+isKind.description=Gli elementi sono del tipo componente piano file
+isKind.kind.display-label=Tipo
+
+# Are Record Type
+isRecordType.title=Con tipo di record
+isRecordType.description=I record hanno un tipo di record specificato
+
+
+#
+# i18n for Records Management Actions
+#
+# Declare As Record
+create-record.title=Dichiara come record
+create-record.description=Dichiara file come record
+create-record.file-plan.display-label=Piano file
+create-record.hide-record.display-label=Nascondi record
+# Declare As Version Record
+declare-as-version-record.title=Dichiara versione come record
+declare-as-version-record.description=Dichiara questa versione del file come record
+declare-as-version-record.file-plan.display-label=Piano file
+# Complete record
+declareRecord.title=Completa record
+declareRecord.description=Completa un record.
+# Reopens record
+undeclareRecord.title=Riapri record
+undeclareRecord.description=Riapre un record
+# Open record folder
+openRecordFolder.title=Apri cartella di record
+openRecordFolder.description=Apre una cartella di record
+# Close record folder
+closeRecordFolder.title=Chiudi cartella di record
+closeRecordFolder.description=Chiude una cartella di record
+# Complete event
+completeEvent.title=Completa evento
+completeEvent.description=Completa un evento
+completeEvent.eventName.display-label=Evento
+# Freeze
+freeze.title=Blocca
+freeze.description=Blocca un record
+freeze.reason.display-label=Motivo
+# Unfreeze
+unfreeze.title=Sblocca
+unfreeze.description=Sblocca un record
+# File to
+fileTo.title=Archivia in
+fileTo.description=Archivia un record nella cartella di record specificata
+fileTo.path.display-label=Indirizza nella cartella di record
+fileTo.createRecordPath.display-label=Crea percorso del record
+# Copy to
+copyTo.title=Copia in
+copyTo.description=Copia un record nella cartella di record specificata
+copyTo.path.display-label=Indirizza nella cartella di record
+copyTo.createRecordPath.display-label=Crea percorso del record
+# Move to
+moveTo.title=Sposta in
+moveTo.description=Sposta un record nella cartella di record specificata
+moveTo.path.display-label=Indirizza nella cartella di record
+moveTo.createRecordPath.display-label=Crea percorso del record
+# Link to
+linkTo.title=Collega a
+linkTo.description=Collega un record alla cartella di record specificata
+linkTo.path.display-label=Indirizza nella cartella di record
+linkTo.createRecordPath.display-label=Crea percorso del record
+# Reject
+reject.title=Respingi
+reject.description=Respinge un record e sposta il file nella sua posizione originale
+reject.reason.display-label=Respingi motivo
+# Request Information
+requestInfo.title=Richiedi informazioni
+requestInfo.description=Avvia un flusso di lavoro per richiedere pi\u00f9 informazioni per un record
+# Execute script
+executeScript.title=Esegui script
+executeScript.description=Esegui uno script
+executeScript.script-ref.display-label=Script
+# Send Email
+sendEmail.title=Invia e-mail
+sendEmail.description=Invia un'e-mail
+# Set Property
+setPropertyValue.title=Imposta valore di propriet\u00e0
+setPropertyValue.description=Imposta un valore di propriet\u00e0
+
+# Edit Hold Reason
+editHoldReason.title=Modifica motivo sospensione
+editHoldReason.description=Modifica il motivo della sospensione
+# Relinquish Hold
+relinquishHold.title=Lascia sospensione
+relinquishHold.description=Lascia la sospensione
+# Edit Review As Of Date
+editReviewAsOfDate.title=Modifica data di inizio esame
+editReviewAsOfDate.description=Modifica data di inizio esame
+# Edit Disposition Action As Of Date
+editDispositionActionAsOfDate.title=Modifica data di inizio azione di conservazione
+editDispositionActionAsOfDate.description=Modifica la data di inizio azione di conservazione
+# Broadcast Vital Record Definition
+broadcastVitalRecordDefinition.title=Trasmetti definizione di record fondamentale
+broadcastVitalRecordDefinition.description=Trasmetti la definizione di record fondamentale
+# Broadcast Disposition Action Definition Update
+broadcastDispositionActionDefinitionUpdate.title=Trasmetti aggiornamento definizione di azione di conservazione
+broadcastDispositionActionDefinitionUpdate.description=Trasmetti aggiornamento definizione di azione di conservazione
+# Undo Event
+undoEvent.title=Annulla evento
+undoEvent.description=Annulla evento
+# Transfer Complete
+transferComplete.title=Trasferimento completato
+transferComplete.description=Trasferimento completato
+# Accession Complete
+accessionComplete.title=Trasferimento ad altri completato
+accessionComplete.description=Trasferimento ad altri completato
+# Split Email
+splitEmail.title=Dividi e-mail
+splitEmail.description=Dividi e-mail
+# Create Rentention Schedule
+createDispositionSchedule.title=Crea Programma di conservazione
+createDispositionSchedule.description=Crea Programma di conservazione
+# File Destruction Report
+fileDestructionReport.title=Archivia rapporto di eliminazione definitiva
+fileDestructionReport.description=Archivia rapporto di eliminazione definitiva
+# Cut off
+cutoff.title=Cut off
+cutoff.description=Cut off
+# Destroy
+destroy.title=Elimina definitivamente
+destroy.description=Elimina definitivamente
+# Reviewed
+reviewed.title=Esaminato
+reviewed.description=Esaminato
+# Hide Record
+hide-record.title=Nascondi record
+hide-record.description=Nascondi record
+# Transfer
+transfer.title=Trasferisci
+transfer.description=Trasferisci
+# Uncut off
+unCutoff.title=Annulla cut off
+unCutoff.description=Annulla cut off
+# Accession
+accession.title=Trasferimento ad altri
+accession.description=Trasferimento ad altri
+# Retain
+retain.title=Conserva
+retain.description=Conserva
+# Add Record Types
+addRecordTypes.title=Aggiungi tipi di record
+addRecordTypes.description=Aggiunge i tipi selezionati al record
+# File report
+fileReport.title=Archivia rapporto
+fileReport.description=Archivia rapporto
+# Delete Hold
+deleteHold.title=Annulla sospensione
+deleteHold.description=Annulla sospensione
+# Move DM record
+move-dm-record.title=Sposta record
+move-dm-record.description=Sposta record
+# Unlink from
+unlinkFrom.title=Scollega da
+unlinkFrom.description=Scollega da
+
+# Recordable version config
+recordable-version-config.title=Opzioni di dichiarazione automatica
+recordable-version-config.description=Opzioni di dichiarazione automatica
+recordable-version-config.version.display-label=Dichiara automaticamente versioni come record
+
+# Action parameter constraints
+rm-ac-is-kind-kinds.record_category=Categoria record
+rm-ac-is-kind-kinds.record_folder=Cartella di record
+rm-ac-is-kind-kinds.record=Record
+
+rm-ac-disposition-action-relative-positions.next=Successivo
+rm-ac-disposition-action-relative-positions.previous=Precedente
+rm-ac-disposition-action-relative-positions.any=Qualsiasi
+
+ac-versions.none=Mai
+ac-versions.major_only=Solo per versioni maggiori
ac-versions.all=Per tutte le versioni maggiori e minori
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_ja.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_ja.properties
index b08182692c..3a487c02aa 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_ja.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_ja.properties
@@ -1,211 +1,211 @@
-#
-# i18n for Records Management Action Conditions
-#
-# Are classified
-isClassified.title=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u306b\u3088\u308a\u5206\u985e\u6e08\u307f
-isClassified.description=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u306b\u3088\u3063\u3066\u5206\u985e\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
-
-# Are cutoff
-isCutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5
-isCutoff.description=\u30ab\u30c3\u30c8\u30aa\u30d5\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
-
-# Are declared
-isDeclared.title=\u5b8c\u4e86\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
-isDeclared.description=\u30ec\u30b3\u30fc\u30c9\u306f\u5b8c\u4e86\u3057\u3066\u3044\u307e\u3059
-
-# Is on hold
-isFrozen.title=\u30db\u30fc\u30eb\u30c9\u4e2d
-isFrozen.description=\u30db\u30fc\u30eb\u30c9\u4e2d\u306e\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
-
-# Are filed
-isRecordFiled.title=\u6574\u7406\u4fdd\u7ba1\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
-isRecordFiled.description=\u30ec\u30b3\u30fc\u30c9\u306f\u6574\u7406\u4fdd\u7ba1\u3055\u308c\u3066\u3044\u307e\u3059
-
-# Are closed record folders
-isRecordFolderClosed.title=\u9589\u3058\u3089\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
-isRecordFolderClosed.description=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306f\u9589\u3058\u3089\u308c\u3066\u3044\u307e\u3059
-
-# Are vital
-isVital.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9
-isVital.description=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u3068\u3057\u3066\u5206\u985e\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
-
-# Have Rentention Action
-hasDispositionAction.title=\u4fdd\u7ba1\u51e6\u7406\u3042\u308a
-hasDispositionAction.description=\u7279\u5b9a\u306e\u76f8\u5bfe\u4f4d\u7f6e\u306b\u4fdd\u7ba1\u51e6\u7406\u304c\u95a2\u9023\u4ed8\u3051\u3089\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u3068\u30d5\u30a9\u30eb\u30c0
-
-# Are kind
-isKind.title=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30a2\u30a4\u30c6\u30e0\u306e\u30bf\u30a4\u30d7
-isKind.description=\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u306e\u4e00\u90e8\u3092\u306a\u3059\u30a2\u30a4\u30c6\u30e0
-isKind.kind.display-label=\u7a2e\u985e
-
-# Are Record Type
-isRecordType.title=\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7\u3042\u308a
-isRecordType.description=\u7279\u5b9a\u306e\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7\u3092\u6301\u3064\u30ec\u30b3\u30fc\u30c9
-
-
-#
-# i18n for Records Management Actions
-#
-# Declare As Record
-create-record.title=\u30ec\u30b3\u30fc\u30c9\u3068\u3057\u3066\u5ba3\u8a00\u3059\u308b
-create-record.description=\u30d5\u30a1\u30a4\u30eb\u3092\u30ec\u30b3\u30fc\u30c9\u3068\u3057\u3066\u5ba3\u8a00\u3057\u307e\u3059
-create-record.file-plan.display-label=\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3
-create-record.hide-record.display-label=\u30ec\u30b3\u30fc\u30c9\u3092\u975e\u8868\u793a\u306b\u3059\u308b
-# Declare As Version Record
-declare-as-version-record.title=\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u30ec\u30b3\u30fc\u30c9\u3068\u3057\u3066\u5ba3\u8a00\u3059\u308b
-declare-as-version-record.description=\u30d5\u30a1\u30a4\u30eb\u306e\u3053\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u30ec\u30b3\u30fc\u30c9\u3068\u3057\u3066\u5ba3\u8a00\u3057\u307e\u3059
-declare-as-version-record.file-plan.display-label=\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3
-# Complete record
-declareRecord.title=\u30ec\u30b3\u30fc\u30c9\u306e\u5b8c\u4e86
-declareRecord.description=\u30ec\u30b3\u30fc\u30c9\u3092\u5b8c\u4e86\u3057\u307e\u3059
-# Reopens record
-undeclareRecord.title=\u30ec\u30b3\u30fc\u30c9\u3092\u518d\u5ea6\u958b\u304f
-undeclareRecord.description=\u30ec\u30b3\u30fc\u30c9\u3092\u518d\u5ea6\u958b\u304d\u307e\u3059
-# Open record folder
-openRecordFolder.title=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u958b\u304f
-openRecordFolder.description=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u958b\u304d\u307e\u3059
-# Close record folder
-closeRecordFolder.title=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u9589\u3058\u308b
-closeRecordFolder.description=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u9589\u3058\u307e\u3059
-# Complete event
-completeEvent.title=\u30a4\u30d9\u30f3\u30c8\u306e\u5b8c\u4e86
-completeEvent.description=\u30a4\u30d9\u30f3\u30c8\u3092\u5b8c\u4e86\u3057\u307e\u3059
-completeEvent.eventName.display-label=\u30a4\u30d9\u30f3\u30c8
-# Freeze
-freeze.title=\u51cd\u7d50
-freeze.description=\u30ec\u30b3\u30fc\u30c9\u3092\u51cd\u7d50\u3057\u307e\u3059
-freeze.reason.display-label=\u7406\u7531
-# Unfreeze
-unfreeze.title=\u51cd\u7d50\u89e3\u9664
-unfreeze.description=\u30ec\u30b3\u30fc\u30c9\u306e\u51cd\u7d50\u3092\u89e3\u9664\u3057\u307e\u3059
-# File to
-fileTo.title=\u6574\u7406\u4fdd\u7ba1\u5148
-fileTo.description=\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306b\u6574\u7406\u4fdd\u7ba1\u3057\u307e\u3059
-fileTo.path.display-label=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u30d1\u30b9
-fileTo.createRecordPath.display-label=\u30ec\u30b3\u30fc\u30c9\u30d1\u30b9\u306e\u4f5c\u6210
-# Copy to
-copyTo.title=\u30b3\u30d4\u30fc\u5148
-copyTo.description=\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306b\u30b3\u30d4\u30fc\u3057\u307e\u3059
-copyTo.path.display-label=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u30d1\u30b9
-copyTo.createRecordPath.display-label=\u30ec\u30b3\u30fc\u30c9\u30d1\u30b9\u306e\u4f5c\u6210
-# Move to
-moveTo.title=\u79fb\u52d5\u5148
-moveTo.description=\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306b\u79fb\u52d5\u3057\u307e\u3059
-moveTo.path.display-label=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u30d1\u30b9
-moveTo.createRecordPath.display-label=\u30ec\u30b3\u30fc\u30c9\u30d1\u30b9\u306e\u4f5c\u6210
-# Link to
-linkTo.title=\u30ea\u30f3\u30af\u5148
-linkTo.description=\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306b\u30ea\u30f3\u30af\u3057\u307e\u3059
-linkTo.path.display-label=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u30d1\u30b9
-linkTo.createRecordPath.display-label=\u30ec\u30b3\u30fc\u30c9\u30d1\u30b9\u306e\u4f5c\u6210
-# Reject
-reject.title=\u5374\u4e0b
-reject.description=\u30ec\u30b3\u30fc\u30c9\u3092\u5374\u4e0b\u3057\u3001\u30d5\u30a1\u30a4\u30eb\u3092\u5143\u306e\u5834\u6240\u306b\u79fb\u52d5\u3057\u307e\u3059
-reject.reason.display-label=\u5374\u4e0b\u306e\u7406\u7531
-# Request Information
-requestInfo.title=\u60c5\u5831\u306e\u30ea\u30af\u30a8\u30b9\u30c8
-requestInfo.description=\u30ec\u30b3\u30fc\u30c9\u306e\u8a73\u7d30\u60c5\u5831\u3092\u30ea\u30af\u30a8\u30b9\u30c8\u3059\u308b\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u3092\u958b\u59cb\u3057\u307e\u3059
-# Execute script
-executeScript.title=\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c
-executeScript.description=\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059
-executeScript.script-ref.display-label=\u30b9\u30af\u30ea\u30d7\u30c8
-# Send Email
-sendEmail.title=E \u30e1\u30fc\u30eb\u306e\u9001\u4fe1
-sendEmail.description=E \u30e1\u30fc\u30eb\u3092\u9001\u4fe1\u3057\u307e\u3059
-# Set Property
-setPropertyValue.title=\u30d7\u30ed\u30d1\u30c6\u30a3\u5024\u306e\u8a2d\u5b9a
-setPropertyValue.description=\u30d7\u30ed\u30d1\u30c6\u30a3\u306e\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059
-
-# Edit Hold Reason
-editHoldReason.title=\u30db\u30fc\u30eb\u30c9\u7406\u7531\u306e\u7de8\u96c6
-editHoldReason.description=\u30db\u30fc\u30eb\u30c9\u306e\u7406\u7531\u3092\u7de8\u96c6\u3057\u307e\u3059
-# Relinquish Hold
-relinquishHold.title=\u30db\u30fc\u30eb\u30c9\u306e\u89e3\u9664
-relinquishHold.description=\u30db\u30fc\u30eb\u30c9\u3092\u89e3\u9664\u3057\u307e\u3059
-# Edit Review As Of Date
-editReviewAsOfDate.title=\u30ec\u30d3\u30e5\u30fc\u5b9f\u884c\u65e5\u306e\u7de8\u96c6
-editReviewAsOfDate.description=\u30ec\u30d3\u30e5\u30fc\u5b9f\u884c\u65e5\u3092\u7de8\u96c6\u3057\u307e\u3059
-# Edit Disposition Action As Of Date
-editDispositionActionAsOfDate.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9f\u884c\u65e5\u3092\u7de8\u96c6
-editDispositionActionAsOfDate.description=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9f\u884c\u65e5\u3092\u7de8\u96c6\u3057\u307e\u3059
-# Broadcast Vital Record Definition
-broadcastVitalRecordDefinition.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u5b9a\u7fa9\u3092\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8
-broadcastVitalRecordDefinition.description=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u5b9a\u7fa9\u3092\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8\u3057\u307e\u3059
-# Broadcast Disposition Action Definition Update
-broadcastDispositionActionDefinitionUpdate.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9a\u7fa9\u306e\u66f4\u65b0\u60c5\u5831\u3092\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8
-broadcastDispositionActionDefinitionUpdate.description=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9a\u7fa9\u306e\u66f4\u65b0\u60c5\u5831\u3092\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8\u3057\u307e\u3059
-# Undo Event
-undoEvent.title=\u30a4\u30d9\u30f3\u30c8\u3092\u5143\u306b\u623b\u3059
-undoEvent.description=\u30a4\u30d9\u30f3\u30c8\u3092\u5143\u306b\u623b\u3057\u307e\u3059
-# Transfer Complete
-transferComplete.title=\u8ee2\u9001\u5b8c\u4e86
-transferComplete.description=\u8ee2\u9001\u5b8c\u4e86
-# Accession Complete
-accessionComplete.title=\u53d7\u8afe\u5b8c\u4e86
-accessionComplete.description=\u53d7\u8afe\u5b8c\u4e86
-# Split Email
-splitEmail.title=E \u30e1\u30fc\u30eb\u306e\u5206\u96e2
-splitEmail.description=E \u30e1\u30fc\u30eb\u3092\u5206\u96e2\u3057\u307e\u3059
-# Create Rentention Schedule
-createDispositionSchedule.title=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u306e\u4f5c\u6210
-createDispositionSchedule.description=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3092\u4f5c\u6210\u3057\u307e\u3059
-# File Destruction Report
-fileDestructionReport.title=\u7834\u68c4\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1
-fileDestructionReport.description=\u7834\u68c4\u30ec\u30dd\u30fc\u30c8\u3092\u6574\u7406\u4fdd\u7ba1\u3057\u307e\u3059
-# Cut off
-cutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5
-cutoff.description=\u30ab\u30c3\u30c8\u30aa\u30d5
-# Destroy
-destroy.title=\u7834\u68c4
-destroy.description=\u7834\u68c4
-# Reviewed
-reviewed.title=\u30ec\u30d3\u30e5\u30fc\u6e08\u307f
-reviewed.description=\u30ec\u30d3\u30e5\u30fc\u6e08\u307f
-# Hide Record
-hide-record.title=\u30ec\u30b3\u30fc\u30c9\u3092\u975e\u8868\u793a\u306b\u3059\u308b
-hide-record.description=\u30ec\u30b3\u30fc\u30c9\u3092\u975e\u8868\u793a\u306b\u3057\u307e\u3059
-# Transfer
-transfer.title=\u8ee2\u9001
-transfer.description=\u8ee2\u9001
-# Uncut off
-unCutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5\u3092\u53d6\u308a\u6d88\u3059
-unCutoff.description=\u30ab\u30c3\u30c8\u30aa\u30d5\u3092\u53d6\u308a\u6d88\u3057\u307e\u3059
-# Accession
-accession.title=\u53d7\u8afe
-accession.description=\u53d7\u8afe
-# Retain
-retain.title=\u4fdd\u7ba1
-retain.description=\u4fdd\u7ba1
-# Add Record Types
-addRecordTypes.title=\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7\u306e\u8ffd\u52a0
-addRecordTypes.description=\u9078\u629e\u3057\u305f\u30bf\u30a4\u30d7\u3092\u30ec\u30b3\u30fc\u30c9\u306b\u8ffd\u52a0\u3057\u307e\u3059
-# File report
-fileReport.title=\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1
-fileReport.description=\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1
-# Delete Hold
-deleteHold.title=\u30db\u30fc\u30eb\u30c9\u306e\u524a\u9664
-deleteHold.description=\u30db\u30fc\u30eb\u30c9\u306e\u524a\u9664
-# Move DM record
-move-dm-record.title=\u30ec\u30b3\u30fc\u30c9\u306e\u79fb\u52d5
-move-dm-record.description=\u30ec\u30b3\u30fc\u30c9\u306e\u79fb\u52d5
-# Unlink from
-unlinkFrom.title=\u30ea\u30f3\u30af\u306e\u89e3\u9664\u5143
-unlinkFrom.description=\u30ea\u30f3\u30af\u306e\u89e3\u9664\u5143
-
-# Recordable version config
-recordable-version-config.title=\u81ea\u52d5\u5ba3\u8a00\u30aa\u30d7\u30b7\u30e7\u30f3
-recordable-version-config.description=\u81ea\u52d5\u5ba3\u8a00\u30aa\u30d7\u30b7\u30e7\u30f3
-recordable-version-config.version.display-label=\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u81ea\u52d5\u7684\u306b\u30ec\u30b3\u30fc\u30c9\u3068\u3057\u3066\u5ba3\u8a00\u3059\u308b
-
-# Action parameter constraints
-rm-ac-is-kind-kinds.record_category=\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea
-rm-ac-is-kind-kinds.record_folder=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
-rm-ac-is-kind-kinds.record=\u30ec\u30b3\u30fc\u30c9
-
-rm-ac-disposition-action-relative-positions.next=\u6b21\u3078
-rm-ac-disposition-action-relative-positions.previous=\u524d\u3078
-rm-ac-disposition-action-relative-positions.any=\u4efb\u610f
-
-ac-versions.none=\u8a2d\u5b9a\u3057\u306a\u3044
-ac-versions.major_only=\u30e1\u30b8\u30e3\u30fc\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u307f
+#
+# i18n for Records Management Action Conditions
+#
+# Are classified
+isClassified.title=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u306b\u3088\u308a\u5206\u985e\u6e08\u307f
+isClassified.description=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u306b\u3088\u3063\u3066\u5206\u985e\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
+
+# Are cutoff
+isCutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5
+isCutoff.description=\u30ab\u30c3\u30c8\u30aa\u30d5\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
+
+# Are declared
+isDeclared.title=\u5b8c\u4e86\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
+isDeclared.description=\u30ec\u30b3\u30fc\u30c9\u306f\u5b8c\u4e86\u3057\u3066\u3044\u307e\u3059
+
+# Is on hold
+isFrozen.title=\u30db\u30fc\u30eb\u30c9\u4e2d
+isFrozen.description=\u30db\u30fc\u30eb\u30c9\u4e2d\u306e\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
+
+# Are filed
+isRecordFiled.title=\u6574\u7406\u4fdd\u7ba1\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
+isRecordFiled.description=\u30ec\u30b3\u30fc\u30c9\u306f\u6574\u7406\u4fdd\u7ba1\u3055\u308c\u3066\u3044\u307e\u3059
+
+# Are closed record folders
+isRecordFolderClosed.title=\u9589\u3058\u3089\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
+isRecordFolderClosed.description=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306f\u9589\u3058\u3089\u308c\u3066\u3044\u307e\u3059
+
+# Are vital
+isVital.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9
+isVital.description=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u3068\u3057\u3066\u5206\u985e\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
+
+# Have Rentention Action
+hasDispositionAction.title=\u4fdd\u7ba1\u51e6\u7406\u3042\u308a
+hasDispositionAction.description=\u7279\u5b9a\u306e\u76f8\u5bfe\u4f4d\u7f6e\u306b\u4fdd\u7ba1\u51e6\u7406\u304c\u95a2\u9023\u4ed8\u3051\u3089\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u3068\u30d5\u30a9\u30eb\u30c0
+
+# Are kind
+isKind.title=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30a2\u30a4\u30c6\u30e0\u306e\u30bf\u30a4\u30d7
+isKind.description=\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u306e\u4e00\u90e8\u3092\u306a\u3059\u30a2\u30a4\u30c6\u30e0
+isKind.kind.display-label=\u7a2e\u985e
+
+# Are Record Type
+isRecordType.title=\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7\u3042\u308a
+isRecordType.description=\u7279\u5b9a\u306e\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7\u3092\u6301\u3064\u30ec\u30b3\u30fc\u30c9
+
+
+#
+# i18n for Records Management Actions
+#
+# Declare As Record
+create-record.title=\u30ec\u30b3\u30fc\u30c9\u3068\u3057\u3066\u5ba3\u8a00\u3059\u308b
+create-record.description=\u30d5\u30a1\u30a4\u30eb\u3092\u30ec\u30b3\u30fc\u30c9\u3068\u3057\u3066\u5ba3\u8a00\u3057\u307e\u3059
+create-record.file-plan.display-label=\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3
+create-record.hide-record.display-label=\u30ec\u30b3\u30fc\u30c9\u3092\u975e\u8868\u793a\u306b\u3059\u308b
+# Declare As Version Record
+declare-as-version-record.title=\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u30ec\u30b3\u30fc\u30c9\u3068\u3057\u3066\u5ba3\u8a00\u3059\u308b
+declare-as-version-record.description=\u30d5\u30a1\u30a4\u30eb\u306e\u3053\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u30ec\u30b3\u30fc\u30c9\u3068\u3057\u3066\u5ba3\u8a00\u3057\u307e\u3059
+declare-as-version-record.file-plan.display-label=\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3
+# Complete record
+declareRecord.title=\u30ec\u30b3\u30fc\u30c9\u306e\u5b8c\u4e86
+declareRecord.description=\u30ec\u30b3\u30fc\u30c9\u3092\u5b8c\u4e86\u3057\u307e\u3059
+# Reopens record
+undeclareRecord.title=\u30ec\u30b3\u30fc\u30c9\u3092\u518d\u5ea6\u958b\u304f
+undeclareRecord.description=\u30ec\u30b3\u30fc\u30c9\u3092\u518d\u5ea6\u958b\u304d\u307e\u3059
+# Open record folder
+openRecordFolder.title=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u958b\u304f
+openRecordFolder.description=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u958b\u304d\u307e\u3059
+# Close record folder
+closeRecordFolder.title=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u9589\u3058\u308b
+closeRecordFolder.description=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u9589\u3058\u307e\u3059
+# Complete event
+completeEvent.title=\u30a4\u30d9\u30f3\u30c8\u306e\u5b8c\u4e86
+completeEvent.description=\u30a4\u30d9\u30f3\u30c8\u3092\u5b8c\u4e86\u3057\u307e\u3059
+completeEvent.eventName.display-label=\u30a4\u30d9\u30f3\u30c8
+# Freeze
+freeze.title=\u51cd\u7d50
+freeze.description=\u30ec\u30b3\u30fc\u30c9\u3092\u51cd\u7d50\u3057\u307e\u3059
+freeze.reason.display-label=\u7406\u7531
+# Unfreeze
+unfreeze.title=\u51cd\u7d50\u89e3\u9664
+unfreeze.description=\u30ec\u30b3\u30fc\u30c9\u306e\u51cd\u7d50\u3092\u89e3\u9664\u3057\u307e\u3059
+# File to
+fileTo.title=\u6574\u7406\u4fdd\u7ba1\u5148
+fileTo.description=\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306b\u6574\u7406\u4fdd\u7ba1\u3057\u307e\u3059
+fileTo.path.display-label=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u30d1\u30b9
+fileTo.createRecordPath.display-label=\u30ec\u30b3\u30fc\u30c9\u30d1\u30b9\u306e\u4f5c\u6210
+# Copy to
+copyTo.title=\u30b3\u30d4\u30fc\u5148
+copyTo.description=\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306b\u30b3\u30d4\u30fc\u3057\u307e\u3059
+copyTo.path.display-label=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u30d1\u30b9
+copyTo.createRecordPath.display-label=\u30ec\u30b3\u30fc\u30c9\u30d1\u30b9\u306e\u4f5c\u6210
+# Move to
+moveTo.title=\u79fb\u52d5\u5148
+moveTo.description=\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306b\u79fb\u52d5\u3057\u307e\u3059
+moveTo.path.display-label=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u30d1\u30b9
+moveTo.createRecordPath.display-label=\u30ec\u30b3\u30fc\u30c9\u30d1\u30b9\u306e\u4f5c\u6210
+# Link to
+linkTo.title=\u30ea\u30f3\u30af\u5148
+linkTo.description=\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306b\u30ea\u30f3\u30af\u3057\u307e\u3059
+linkTo.path.display-label=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u30d1\u30b9
+linkTo.createRecordPath.display-label=\u30ec\u30b3\u30fc\u30c9\u30d1\u30b9\u306e\u4f5c\u6210
+# Reject
+reject.title=\u5374\u4e0b
+reject.description=\u30ec\u30b3\u30fc\u30c9\u3092\u5374\u4e0b\u3057\u3001\u30d5\u30a1\u30a4\u30eb\u3092\u5143\u306e\u5834\u6240\u306b\u79fb\u52d5\u3057\u307e\u3059
+reject.reason.display-label=\u5374\u4e0b\u306e\u7406\u7531
+# Request Information
+requestInfo.title=\u60c5\u5831\u306e\u30ea\u30af\u30a8\u30b9\u30c8
+requestInfo.description=\u30ec\u30b3\u30fc\u30c9\u306e\u8a73\u7d30\u60c5\u5831\u3092\u30ea\u30af\u30a8\u30b9\u30c8\u3059\u308b\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u3092\u958b\u59cb\u3057\u307e\u3059
+# Execute script
+executeScript.title=\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c
+executeScript.description=\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059
+executeScript.script-ref.display-label=\u30b9\u30af\u30ea\u30d7\u30c8
+# Send Email
+sendEmail.title=E \u30e1\u30fc\u30eb\u306e\u9001\u4fe1
+sendEmail.description=E \u30e1\u30fc\u30eb\u3092\u9001\u4fe1\u3057\u307e\u3059
+# Set Property
+setPropertyValue.title=\u30d7\u30ed\u30d1\u30c6\u30a3\u5024\u306e\u8a2d\u5b9a
+setPropertyValue.description=\u30d7\u30ed\u30d1\u30c6\u30a3\u306e\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059
+
+# Edit Hold Reason
+editHoldReason.title=\u30db\u30fc\u30eb\u30c9\u7406\u7531\u306e\u7de8\u96c6
+editHoldReason.description=\u30db\u30fc\u30eb\u30c9\u306e\u7406\u7531\u3092\u7de8\u96c6\u3057\u307e\u3059
+# Relinquish Hold
+relinquishHold.title=\u30db\u30fc\u30eb\u30c9\u306e\u89e3\u9664
+relinquishHold.description=\u30db\u30fc\u30eb\u30c9\u3092\u89e3\u9664\u3057\u307e\u3059
+# Edit Review As Of Date
+editReviewAsOfDate.title=\u30ec\u30d3\u30e5\u30fc\u5b9f\u884c\u65e5\u306e\u7de8\u96c6
+editReviewAsOfDate.description=\u30ec\u30d3\u30e5\u30fc\u5b9f\u884c\u65e5\u3092\u7de8\u96c6\u3057\u307e\u3059
+# Edit Disposition Action As Of Date
+editDispositionActionAsOfDate.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9f\u884c\u65e5\u3092\u7de8\u96c6
+editDispositionActionAsOfDate.description=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9f\u884c\u65e5\u3092\u7de8\u96c6\u3057\u307e\u3059
+# Broadcast Vital Record Definition
+broadcastVitalRecordDefinition.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u5b9a\u7fa9\u3092\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8
+broadcastVitalRecordDefinition.description=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u5b9a\u7fa9\u3092\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8\u3057\u307e\u3059
+# Broadcast Disposition Action Definition Update
+broadcastDispositionActionDefinitionUpdate.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9a\u7fa9\u306e\u66f4\u65b0\u60c5\u5831\u3092\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8
+broadcastDispositionActionDefinitionUpdate.description=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9a\u7fa9\u306e\u66f4\u65b0\u60c5\u5831\u3092\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8\u3057\u307e\u3059
+# Undo Event
+undoEvent.title=\u30a4\u30d9\u30f3\u30c8\u3092\u5143\u306b\u623b\u3059
+undoEvent.description=\u30a4\u30d9\u30f3\u30c8\u3092\u5143\u306b\u623b\u3057\u307e\u3059
+# Transfer Complete
+transferComplete.title=\u8ee2\u9001\u5b8c\u4e86
+transferComplete.description=\u8ee2\u9001\u5b8c\u4e86
+# Accession Complete
+accessionComplete.title=\u53d7\u8afe\u5b8c\u4e86
+accessionComplete.description=\u53d7\u8afe\u5b8c\u4e86
+# Split Email
+splitEmail.title=E \u30e1\u30fc\u30eb\u306e\u5206\u96e2
+splitEmail.description=E \u30e1\u30fc\u30eb\u3092\u5206\u96e2\u3057\u307e\u3059
+# Create Rentention Schedule
+createDispositionSchedule.title=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u306e\u4f5c\u6210
+createDispositionSchedule.description=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3092\u4f5c\u6210\u3057\u307e\u3059
+# File Destruction Report
+fileDestructionReport.title=\u7834\u68c4\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1
+fileDestructionReport.description=\u7834\u68c4\u30ec\u30dd\u30fc\u30c8\u3092\u6574\u7406\u4fdd\u7ba1\u3057\u307e\u3059
+# Cut off
+cutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5
+cutoff.description=\u30ab\u30c3\u30c8\u30aa\u30d5
+# Destroy
+destroy.title=\u7834\u68c4
+destroy.description=\u7834\u68c4
+# Reviewed
+reviewed.title=\u30ec\u30d3\u30e5\u30fc\u6e08\u307f
+reviewed.description=\u30ec\u30d3\u30e5\u30fc\u6e08\u307f
+# Hide Record
+hide-record.title=\u30ec\u30b3\u30fc\u30c9\u3092\u975e\u8868\u793a\u306b\u3059\u308b
+hide-record.description=\u30ec\u30b3\u30fc\u30c9\u3092\u975e\u8868\u793a\u306b\u3057\u307e\u3059
+# Transfer
+transfer.title=\u8ee2\u9001
+transfer.description=\u8ee2\u9001
+# Uncut off
+unCutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5\u3092\u53d6\u308a\u6d88\u3059
+unCutoff.description=\u30ab\u30c3\u30c8\u30aa\u30d5\u3092\u53d6\u308a\u6d88\u3057\u307e\u3059
+# Accession
+accession.title=\u53d7\u8afe
+accession.description=\u53d7\u8afe
+# Retain
+retain.title=\u4fdd\u7ba1
+retain.description=\u4fdd\u7ba1
+# Add Record Types
+addRecordTypes.title=\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7\u306e\u8ffd\u52a0
+addRecordTypes.description=\u9078\u629e\u3057\u305f\u30bf\u30a4\u30d7\u3092\u30ec\u30b3\u30fc\u30c9\u306b\u8ffd\u52a0\u3057\u307e\u3059
+# File report
+fileReport.title=\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1
+fileReport.description=\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1
+# Delete Hold
+deleteHold.title=\u30db\u30fc\u30eb\u30c9\u306e\u524a\u9664
+deleteHold.description=\u30db\u30fc\u30eb\u30c9\u306e\u524a\u9664
+# Move DM record
+move-dm-record.title=\u30ec\u30b3\u30fc\u30c9\u306e\u79fb\u52d5
+move-dm-record.description=\u30ec\u30b3\u30fc\u30c9\u306e\u79fb\u52d5
+# Unlink from
+unlinkFrom.title=\u30ea\u30f3\u30af\u306e\u89e3\u9664\u5143
+unlinkFrom.description=\u30ea\u30f3\u30af\u306e\u89e3\u9664\u5143
+
+# Recordable version config
+recordable-version-config.title=\u81ea\u52d5\u5ba3\u8a00\u30aa\u30d7\u30b7\u30e7\u30f3
+recordable-version-config.description=\u81ea\u52d5\u5ba3\u8a00\u30aa\u30d7\u30b7\u30e7\u30f3
+recordable-version-config.version.display-label=\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u81ea\u52d5\u7684\u306b\u30ec\u30b3\u30fc\u30c9\u3068\u3057\u3066\u5ba3\u8a00\u3059\u308b
+
+# Action parameter constraints
+rm-ac-is-kind-kinds.record_category=\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea
+rm-ac-is-kind-kinds.record_folder=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
+rm-ac-is-kind-kinds.record=\u30ec\u30b3\u30fc\u30c9
+
+rm-ac-disposition-action-relative-positions.next=\u6b21\u3078
+rm-ac-disposition-action-relative-positions.previous=\u524d\u3078
+rm-ac-disposition-action-relative-positions.any=\u4efb\u610f
+
+ac-versions.none=\u8a2d\u5b9a\u3057\u306a\u3044
+ac-versions.major_only=\u30e1\u30b8\u30e3\u30fc\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u307f
ac-versions.all=\u3059\u3079\u3066\u306e\u30e1\u30b8\u30e3\u30fc\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u30de\u30a4\u30ca\u30fc\u30d0\u30fc\u30b8\u30e7\u30f3
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_nb.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_nb.properties
index 030f8b1f9b..f042d4f798 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_nb.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_nb.properties
@@ -1,211 +1,211 @@
-#
-# i18n for Records Management Action Conditions
-#
-# Are classified
-isClassified.title=Klassifisert etter retensjonsplanen
-isClassified.description=Oppf\u00f8ringer og oppf\u00f8ringsmapper klassifisert etter en retensjonsplan
-
-# Are cutoff
-isCutoff.title=Cut off
-isCutoff.description=Cut off av oppf\u00f8ringer og oppf\u00f8ringsmapper.
-
-# Are declared
-isDeclared.title=Oppf\u00f8ring fullf\u00f8rt
-isDeclared.description=Oppf\u00f8ring er fullf\u00f8rt
-
-# Is on hold
-isFrozen.title=P\u00e5 hold
-isFrozen.description=Oppf\u00f8ring eller oppf\u00f8ringsmappe p\u00e5 hold.
-
-# Are filed
-isRecordFiled.title=Oppf\u00f8ring registrert
-isRecordFiled.description=Oppf\u00f8ring er registrert
-
-# Are closed record folders
-isRecordFolderClosed.title=Oppf\u00f8ringsmappe lukket
-isRecordFolderClosed.description=Oppf\u00f8ringsmappe er lukket
-
-# Are vital
-isVital.title=Sv\u00e6rt viktig oppf\u00f8ring
-isVital.description=Oppf\u00f8ring eller oppf\u00f8ringsmappe er en v\u00e6rt viktig oppf\u00f8ring
-
-# Have Rentention Action
-hasDispositionAction.title=Har retensjonshandling
-hasDispositionAction.description=Oppf\u00f8ringene og mappene har de spesifikke assosierte retensjonshandlingen p\u00e5 den spesifiserte relative posisjonen
-
-# Are kind
-isKind.title=Type element ved oppf\u00f8ringsh\u00e5ndtering
-isKind.description=Elementer er en type filplankomponent
-isKind.kind.display-label=Type
-
-# Are Record Type
-isRecordType.title=Har oppf\u00f8ringstype
-isRecordType.description=Oppf\u00f8ringer har en bestemt oppf\u00f8ringstype
-
-
-#
-# i18n for Records Management Actions
-#
-# Declare As Record
-create-record.title=Erkl\u00e6r som oppf\u00f8ring
-create-record.description=Erkl\u00e6rer filen som oppf\u00f8ring
-create-record.file-plan.display-label=Filplan
-create-record.hide-record.display-label=Skjul oppf\u00f8ring
-# Declare As Version Record
-declare-as-version-record.title=Erkl\u00e6r versjonen som oppf\u00f8ring
-declare-as-version-record.description=Erkl\u00e6rer denne versjonen av filen som er oppf\u00f8ring
-declare-as-version-record.file-plan.display-label=Filplan
-# Complete record
-declareRecord.title=Fullf\u00f8r oppf\u00f8ring
-declareRecord.description=Fullf\u00f8rer en oppf\u00f8ring
-# Reopens record
-undeclareRecord.title=\u00c5pne oppf\u00f8ring p\u00e5 nytt
-undeclareRecord.description=\u00c5pner en oppf\u00f8ring p\u00e5 nytt
-# Open record folder
-openRecordFolder.title=\u00c5pne oppf\u00f8ringsmappe
-openRecordFolder.description=\u00c5pner en oppf\u00f8ringsmappe
-# Close record folder
-closeRecordFolder.title=Lukk oppf\u00f8ringsmappe
-closeRecordFolder.description=Lukker en oppf\u00f8ringsmappe
-# Complete event
-completeEvent.title=Fullf\u00f8r hendelse
-completeEvent.description=Fullf\u00f8rer en hendelse
-completeEvent.eventName.display-label=Hendelse
-# Freeze
-freeze.title=Frys
-freeze.description=Fryser en oppf\u00f8ring
-freeze.reason.display-label=Grunn
-# Unfreeze
-unfreeze.title=T\u00f8 opp
-unfreeze.description=T\u00f8r opp en oppf\u00f8ring
-# File to
-fileTo.title=Arkiver i
-fileTo.description=En oppf\u00f8ring arkiveres i en bestemt oppf\u00f8ringsmappe
-fileTo.path.display-label=Bane til oppf\u00f8ringsmappe
-fileTo.createRecordPath.display-label=Opprett oppf\u00f8ringsbane
-# Copy to
-copyTo.title=Kopier til
-copyTo.description=En oppf\u00f8ring kopieres i en bestemt oppf\u00f8ringsmappe
-copyTo.path.display-label=Bane til oppf\u00f8ringsmappe
-copyTo.createRecordPath.display-label=Opprett oppf\u00f8ringsbane
-# Move to
-moveTo.title=Flytt til
-moveTo.description=En oppf\u00f8ring flyttes til i en bestemt oppf\u00f8ringsmappe
-moveTo.path.display-label=Bane til oppf\u00f8ringsmappe
-moveTo.createRecordPath.display-label=Opprett oppf\u00f8ringsbane
-# Link to
-linkTo.title=Koble til
-linkTo.description=En oppf\u00f8ring kobles til i en bestemt oppf\u00f8ringsmappe
-linkTo.path.display-label=Bane til oppf\u00f8ringsmappe
-linkTo.createRecordPath.display-label=Opprett oppf\u00f8ringsbane
-# Reject
-reject.title=Avvis
-reject.description=En oppf\u00f8ring avvises, og filen flyttes til det opprinnelige stedet
-reject.reason.display-label=\u00c5rsak til avvisning
-# Request Information
-requestInfo.title=Be om informasjon
-requestInfo.description=Starter en arbeidsflyt for \u00e5 be om mer informasjon om en oppf\u00f8ring
-# Execute script
-executeScript.title=Kj\u00f8r skript
-executeScript.description=Kj\u00f8r et skript.
-executeScript.script-ref.display-label=Skript
-# Send Email
-sendEmail.title=Send e-post
-sendEmail.description=Send en e-post
-# Set Property
-setPropertyValue.title=Still inn egenskapsverdi
-setPropertyValue.description=Still inn en egenskapsverdi
-
-# Edit Hold Reason
-editHoldReason.title=Rediger grunn til holdet
-editHoldReason.description=Rediger grunnen til holdet
-# Relinquish Hold
-relinquishHold.title=Avslutt hold
-relinquishHold.description=Avslutt holdet
-# Edit Review As Of Date
-editReviewAsOfDate.title=Rediger gjennomgang per datoen
-editReviewAsOfDate.description=Rediger gjennomgang per datoen
-# Edit Disposition Action As Of Date
-editDispositionActionAsOfDate.title=Rediger retensjonshandling per datoen
-editDispositionActionAsOfDate.description=Rediger retensjonshandlingen per datoen
-# Broadcast Vital Record Definition
-broadcastVitalRecordDefinition.title=Kringkast definisjonen til sv\u00e6rt viktig oppf\u00f8ring
-broadcastVitalRecordDefinition.description=Kringkast definisjonen til den sv\u00e6rt viktige oppf\u00f8ringen
-# Broadcast Disposition Action Definition Update
-broadcastDispositionActionDefinitionUpdate.title=Kringkast oppdatering av definisjonen til retensjonshandling
-broadcastDispositionActionDefinitionUpdate.description=Kringkast oppdatering av definisjonen til retensjonshandling
-# Undo Event
-undoEvent.title=Angre hendelse
-undoEvent.description=Angre hendelse
-# Transfer Complete
-transferComplete.title=Overf\u00f8ring fullf\u00f8rt
-transferComplete.description=Overf\u00f8ring fullf\u00f8rt
-# Accession Complete
-accessionComplete.title=Tilgang fullf\u00f8rt
-accessionComplete.description=Tilgang fullf\u00f8rt
-# Split Email
-splitEmail.title=Delt e-post
-splitEmail.description=Delt e-post
-# Create Rentention Schedule
-createDispositionSchedule.title=Opprett retensjonsplan
-createDispositionSchedule.description=Opprett retensjonsplan
-# File Destruction Report
-fileDestructionReport.title=Fildestruksjonsrapport
-fileDestructionReport.description=Fildestruksjonsrapport
-# Cut off
-cutoff.title=Cut off
-cutoff.description=Cut off
-# Destroy
-destroy.title=Destruer
-destroy.description=Destruer
-# Reviewed
-reviewed.title=Gjennomg\u00e5tt
-reviewed.description=Gjennomg\u00e5tt
-# Hide Record
-hide-record.title=Skjul oppf\u00f8ring
-hide-record.description=Skjul oppf\u00f8ring
-# Transfer
-transfer.title=Overf\u00f8r
-transfer.description=Overf\u00f8r
-# Uncut off
-unCutoff.title=Angre cut off
-unCutoff.description=Angre cut off
-# Accession
-accession.title=Tilgang
-accession.description=Tilgang
-# Retain
-retain.title=Behold
-retain.description=Behold
-# Add Record Types
-addRecordTypes.title=Legg til oppf\u00f8ringstyper
-addRecordTypes.description=Legger valgt(e) type(r) til oppf\u00f8ringen
-# File report
-fileReport.title=Registrer rapport
-fileReport.description=Registrer rapport
-# Delete Hold
-deleteHold.title=Slett hold
-deleteHold.description=Slett hold
-# Move DM record
-move-dm-record.title=Flytt oppf\u00f8ring
-move-dm-record.description=Flytt oppf\u00f8ring
-# Unlink from
-unlinkFrom.title=Koble fra
-unlinkFrom.description=Koble fra
-
-# Recordable version config
-recordable-version-config.title=Alternativer med automatiske erkl\u00e6ringer
-recordable-version-config.description=Alternativer med automatiske erkl\u00e6ringer
-recordable-version-config.version.display-label=Erkl\u00e6rer alternativene med automatiske erkl\u00e6ringer som oppf\u00f8ringer
-
-# Action parameter constraints
-rm-ac-is-kind-kinds.record_category=Oppf\u00f8ringskategori
-rm-ac-is-kind-kinds.record_folder=Oppf\u00f8ringsmappe
-rm-ac-is-kind-kinds.record=Oppf\u00f8ring
-
-rm-ac-disposition-action-relative-positions.next=Neste
-rm-ac-disposition-action-relative-positions.previous=Forrige
-rm-ac-disposition-action-relative-positions.any=Enhver
-
-ac-versions.none=Aldri
-ac-versions.major_only=Kun hovedversjoner
+#
+# i18n for Records Management Action Conditions
+#
+# Are classified
+isClassified.title=Klassifisert etter retensjonsplanen
+isClassified.description=Oppf\u00f8ringer og oppf\u00f8ringsmapper klassifisert etter en retensjonsplan
+
+# Are cutoff
+isCutoff.title=Cut off
+isCutoff.description=Cut off av oppf\u00f8ringer og oppf\u00f8ringsmapper.
+
+# Are declared
+isDeclared.title=Oppf\u00f8ring fullf\u00f8rt
+isDeclared.description=Oppf\u00f8ring er fullf\u00f8rt
+
+# Is on hold
+isFrozen.title=P\u00e5 hold
+isFrozen.description=Oppf\u00f8ring eller oppf\u00f8ringsmappe p\u00e5 hold.
+
+# Are filed
+isRecordFiled.title=Oppf\u00f8ring registrert
+isRecordFiled.description=Oppf\u00f8ring er registrert
+
+# Are closed record folders
+isRecordFolderClosed.title=Oppf\u00f8ringsmappe lukket
+isRecordFolderClosed.description=Oppf\u00f8ringsmappe er lukket
+
+# Are vital
+isVital.title=Sv\u00e6rt viktig oppf\u00f8ring
+isVital.description=Oppf\u00f8ring eller oppf\u00f8ringsmappe er en v\u00e6rt viktig oppf\u00f8ring
+
+# Have Rentention Action
+hasDispositionAction.title=Har retensjonshandling
+hasDispositionAction.description=Oppf\u00f8ringene og mappene har de spesifikke assosierte retensjonshandlingen p\u00e5 den spesifiserte relative posisjonen
+
+# Are kind
+isKind.title=Type element ved oppf\u00f8ringsh\u00e5ndtering
+isKind.description=Elementer er en type filplankomponent
+isKind.kind.display-label=Type
+
+# Are Record Type
+isRecordType.title=Har oppf\u00f8ringstype
+isRecordType.description=Oppf\u00f8ringer har en bestemt oppf\u00f8ringstype
+
+
+#
+# i18n for Records Management Actions
+#
+# Declare As Record
+create-record.title=Erkl\u00e6r som oppf\u00f8ring
+create-record.description=Erkl\u00e6rer filen som oppf\u00f8ring
+create-record.file-plan.display-label=Filplan
+create-record.hide-record.display-label=Skjul oppf\u00f8ring
+# Declare As Version Record
+declare-as-version-record.title=Erkl\u00e6r versjonen som oppf\u00f8ring
+declare-as-version-record.description=Erkl\u00e6rer denne versjonen av filen som er oppf\u00f8ring
+declare-as-version-record.file-plan.display-label=Filplan
+# Complete record
+declareRecord.title=Fullf\u00f8r oppf\u00f8ring
+declareRecord.description=Fullf\u00f8rer en oppf\u00f8ring
+# Reopens record
+undeclareRecord.title=\u00c5pne oppf\u00f8ring p\u00e5 nytt
+undeclareRecord.description=\u00c5pner en oppf\u00f8ring p\u00e5 nytt
+# Open record folder
+openRecordFolder.title=\u00c5pne oppf\u00f8ringsmappe
+openRecordFolder.description=\u00c5pner en oppf\u00f8ringsmappe
+# Close record folder
+closeRecordFolder.title=Lukk oppf\u00f8ringsmappe
+closeRecordFolder.description=Lukker en oppf\u00f8ringsmappe
+# Complete event
+completeEvent.title=Fullf\u00f8r hendelse
+completeEvent.description=Fullf\u00f8rer en hendelse
+completeEvent.eventName.display-label=Hendelse
+# Freeze
+freeze.title=Frys
+freeze.description=Fryser en oppf\u00f8ring
+freeze.reason.display-label=Grunn
+# Unfreeze
+unfreeze.title=T\u00f8 opp
+unfreeze.description=T\u00f8r opp en oppf\u00f8ring
+# File to
+fileTo.title=Arkiver i
+fileTo.description=En oppf\u00f8ring arkiveres i en bestemt oppf\u00f8ringsmappe
+fileTo.path.display-label=Bane til oppf\u00f8ringsmappe
+fileTo.createRecordPath.display-label=Opprett oppf\u00f8ringsbane
+# Copy to
+copyTo.title=Kopier til
+copyTo.description=En oppf\u00f8ring kopieres i en bestemt oppf\u00f8ringsmappe
+copyTo.path.display-label=Bane til oppf\u00f8ringsmappe
+copyTo.createRecordPath.display-label=Opprett oppf\u00f8ringsbane
+# Move to
+moveTo.title=Flytt til
+moveTo.description=En oppf\u00f8ring flyttes til i en bestemt oppf\u00f8ringsmappe
+moveTo.path.display-label=Bane til oppf\u00f8ringsmappe
+moveTo.createRecordPath.display-label=Opprett oppf\u00f8ringsbane
+# Link to
+linkTo.title=Koble til
+linkTo.description=En oppf\u00f8ring kobles til i en bestemt oppf\u00f8ringsmappe
+linkTo.path.display-label=Bane til oppf\u00f8ringsmappe
+linkTo.createRecordPath.display-label=Opprett oppf\u00f8ringsbane
+# Reject
+reject.title=Avvis
+reject.description=En oppf\u00f8ring avvises, og filen flyttes til det opprinnelige stedet
+reject.reason.display-label=\u00c5rsak til avvisning
+# Request Information
+requestInfo.title=Be om informasjon
+requestInfo.description=Starter en arbeidsflyt for \u00e5 be om mer informasjon om en oppf\u00f8ring
+# Execute script
+executeScript.title=Kj\u00f8r skript
+executeScript.description=Kj\u00f8r et skript.
+executeScript.script-ref.display-label=Skript
+# Send Email
+sendEmail.title=Send e-post
+sendEmail.description=Send en e-post
+# Set Property
+setPropertyValue.title=Still inn egenskapsverdi
+setPropertyValue.description=Still inn en egenskapsverdi
+
+# Edit Hold Reason
+editHoldReason.title=Rediger grunn til holdet
+editHoldReason.description=Rediger grunnen til holdet
+# Relinquish Hold
+relinquishHold.title=Avslutt hold
+relinquishHold.description=Avslutt holdet
+# Edit Review As Of Date
+editReviewAsOfDate.title=Rediger gjennomgang per datoen
+editReviewAsOfDate.description=Rediger gjennomgang per datoen
+# Edit Disposition Action As Of Date
+editDispositionActionAsOfDate.title=Rediger retensjonshandling per datoen
+editDispositionActionAsOfDate.description=Rediger retensjonshandlingen per datoen
+# Broadcast Vital Record Definition
+broadcastVitalRecordDefinition.title=Kringkast definisjonen til sv\u00e6rt viktig oppf\u00f8ring
+broadcastVitalRecordDefinition.description=Kringkast definisjonen til den sv\u00e6rt viktige oppf\u00f8ringen
+# Broadcast Disposition Action Definition Update
+broadcastDispositionActionDefinitionUpdate.title=Kringkast oppdatering av definisjonen til retensjonshandling
+broadcastDispositionActionDefinitionUpdate.description=Kringkast oppdatering av definisjonen til retensjonshandling
+# Undo Event
+undoEvent.title=Angre hendelse
+undoEvent.description=Angre hendelse
+# Transfer Complete
+transferComplete.title=Overf\u00f8ring fullf\u00f8rt
+transferComplete.description=Overf\u00f8ring fullf\u00f8rt
+# Accession Complete
+accessionComplete.title=Tilgang fullf\u00f8rt
+accessionComplete.description=Tilgang fullf\u00f8rt
+# Split Email
+splitEmail.title=Delt e-post
+splitEmail.description=Delt e-post
+# Create Rentention Schedule
+createDispositionSchedule.title=Opprett retensjonsplan
+createDispositionSchedule.description=Opprett retensjonsplan
+# File Destruction Report
+fileDestructionReport.title=Fildestruksjonsrapport
+fileDestructionReport.description=Fildestruksjonsrapport
+# Cut off
+cutoff.title=Cut off
+cutoff.description=Cut off
+# Destroy
+destroy.title=Destruer
+destroy.description=Destruer
+# Reviewed
+reviewed.title=Gjennomg\u00e5tt
+reviewed.description=Gjennomg\u00e5tt
+# Hide Record
+hide-record.title=Skjul oppf\u00f8ring
+hide-record.description=Skjul oppf\u00f8ring
+# Transfer
+transfer.title=Overf\u00f8r
+transfer.description=Overf\u00f8r
+# Uncut off
+unCutoff.title=Angre cut off
+unCutoff.description=Angre cut off
+# Accession
+accession.title=Tilgang
+accession.description=Tilgang
+# Retain
+retain.title=Behold
+retain.description=Behold
+# Add Record Types
+addRecordTypes.title=Legg til oppf\u00f8ringstyper
+addRecordTypes.description=Legger valgt(e) type(r) til oppf\u00f8ringen
+# File report
+fileReport.title=Registrer rapport
+fileReport.description=Registrer rapport
+# Delete Hold
+deleteHold.title=Slett hold
+deleteHold.description=Slett hold
+# Move DM record
+move-dm-record.title=Flytt oppf\u00f8ring
+move-dm-record.description=Flytt oppf\u00f8ring
+# Unlink from
+unlinkFrom.title=Koble fra
+unlinkFrom.description=Koble fra
+
+# Recordable version config
+recordable-version-config.title=Alternativer med automatiske erkl\u00e6ringer
+recordable-version-config.description=Alternativer med automatiske erkl\u00e6ringer
+recordable-version-config.version.display-label=Erkl\u00e6rer alternativene med automatiske erkl\u00e6ringer som oppf\u00f8ringer
+
+# Action parameter constraints
+rm-ac-is-kind-kinds.record_category=Oppf\u00f8ringskategori
+rm-ac-is-kind-kinds.record_folder=Oppf\u00f8ringsmappe
+rm-ac-is-kind-kinds.record=Oppf\u00f8ring
+
+rm-ac-disposition-action-relative-positions.next=Neste
+rm-ac-disposition-action-relative-positions.previous=Forrige
+rm-ac-disposition-action-relative-positions.any=Enhver
+
+ac-versions.none=Aldri
+ac-versions.major_only=Kun hovedversjoner
ac-versions.all=Til alle hovedversjoner og mindre versjoner
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_nl.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_nl.properties
index 46ef73ce32..9dccabde5d 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_nl.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_nl.properties
@@ -1,211 +1,211 @@
-#
-# i18n for Records Management Action Conditions
-#
-# Are classified
-isClassified.title=Geclassificeerd op retentieschema
-isClassified.description=Records of archiefmappen zijn geclassificeerd op een retentieschema
-
-# Are cutoff
-isCutoff.title=Afsluiten
-isCutoff.description=Records of archiefmappen zijn afgesloten
-
-# Are declared
-isDeclared.title=Record afgerond
-isDeclared.description=Record is afgerond
-
-# Is on hold
-isFrozen.title=In wachtstand
-isFrozen.description=Record of archiefmap in wachtstand
-
-# Are filed
-isRecordFiled.title=Record gearchiveerd
-isRecordFiled.description=Record is gearchiveerd
-
-# Are closed record folders
-isRecordFolderClosed.title=Archiefmap gesloten
-isRecordFolderClosed.description=Archiefmap is gesloten
-
-# Are vital
-isVital.title=Vitale record
-isVital.description=Record of archiefmap is een vitale record
-
-# Have Rentention Action
-hasDispositionAction.title=Heeft retentieactie
-hasDispositionAction.description=Records en mappen hebben de opgegeven gekoppelde retentieactie op de opgegeven relatieve positie
-
-# Are kind
-isKind.title=Type onderdeel Records Management
-isKind.description=Onderdelen zijn van een type ordeningsplancomponent
-isKind.kind.display-label=Type
-
-# Are Record Type
-isRecordType.title=Heeft recordtype
-isRecordType.description=Records hebben een opgegeven recordtype
-
-
-#
-# i18n for Records Management Actions
-#
-# Declare As Record
-create-record.title=Declareren als record
-create-record.description=Hiermee wordt een bestand gedeclareerd als een record
-create-record.file-plan.display-label=Ordeningsplan
-create-record.hide-record.display-label=Record verbergen
-# Declare As Version Record
-declare-as-version-record.title=Versie declareren als record
-declare-as-version-record.description=Hiermee wordt deze versie van het bestand gedeclareerd als een record
-declare-as-version-record.file-plan.display-label=Ordeningsplan
-# Complete record
-declareRecord.title=Record afronden
-declareRecord.description=Hiermee wordt een record afgerond
-# Reopens record
-undeclareRecord.title=Record heropenen
-undeclareRecord.description=Hiermee wordt een record heropend
-# Open record folder
-openRecordFolder.title=Archiefmap openen
-openRecordFolder.description=Hiermee wordt een archiefmap geopend
-# Close record folder
-closeRecordFolder.title=Archiefmap sluiten
-closeRecordFolder.description=Hiermee wordt een archiefmap gesloten
-# Complete event
-completeEvent.title=Gebeurtenis afronden
-completeEvent.description=Hiermee wordt een gebeurtenis afgerond
-completeEvent.eventName.display-label=Gebeurtenis
-# Freeze
-freeze.title=Bevriezen
-freeze.description=Hiermee wordt een record bevroren
-freeze.reason.display-label=Reden
-# Unfreeze
-unfreeze.title=Bevriezen opheffen
-unfreeze.description=Hiermee wordt de bevriezing van een record opgeheven
-# File to
-fileTo.title=Archiveren in
-fileTo.description=Hiermee wordt een record gearchiveerd in de opgegeven archiefmap
-fileTo.path.display-label=Pad naar archiefmap
-fileTo.createRecordPath.display-label=Recordpad maken
-# Copy to
-copyTo.title=Kopi\u00ebren naar
-copyTo.description=Hiermee wordt een record gekopieerd naar de opgegeven archiefmap
-copyTo.path.display-label=Pad naar archiefmap
-copyTo.createRecordPath.display-label=Recordpad maken
-# Move to
-moveTo.title=Verplaatsen naar
-moveTo.description=Hiermee wordt een record verplaatst naar de opgegeven archiefmap
-moveTo.path.display-label=Pad naar archiefmap
-moveTo.createRecordPath.display-label=Recordpad maken
-# Link to
-linkTo.title=Koppelen naar
-linkTo.description=Hiermee wordt een record gekoppeld naar de opgegeven archiefmap
-linkTo.path.display-label=Pad naar archiefmap
-linkTo.createRecordPath.display-label=Recordpad maken
-# Reject
-reject.title=Afwijzen
-reject.description=Hiermee wordt een record afgewezen en wordt het document naar de originele locatie verplaatst
-reject.reason.display-label=Reden voor afwijzing
-# Request Information
-requestInfo.title=Informatie aanvragen
-requestInfo.description=Hiermee wordt een workflow gestart voor het aanvragen van meer informatie over een record.
-# Execute script
-executeScript.title=Script uitvoeren
-executeScript.description=Een script uitvoeren
-executeScript.script-ref.display-label=Script
-# Send Email
-sendEmail.title=E-mail verzenden
-sendEmail.description=Een e-mail verzenden
-# Set Property
-setPropertyValue.title=Eigenschapwaarde instellen
-setPropertyValue.description=Een eigenschapwaarde instellen
-
-# Edit Hold Reason
-editHoldReason.title=Reden van wachtstand bewerken
-editHoldReason.description=De reden van de wachtstand bewerken
-# Relinquish Hold
-relinquishHold.title=Wachtstand afwijzen
-relinquishHold.description=De wachtstand afwijzen
-# Edit Review As Of Date
-editReviewAsOfDate.title=Begindatum revisie bewerken
-editReviewAsOfDate.description=Begindatum revisie bewerken
-# Edit Disposition Action As Of Date
-editDispositionActionAsOfDate.title=Begindatum retentieactie bewerken
-editDispositionActionAsOfDate.description=De begindatum van de retentieactie bewerken
-# Broadcast Vital Record Definition
-broadcastVitalRecordDefinition.title=Definitie vitale record uitzenden
-broadcastVitalRecordDefinition.description=Definitie van de vitale record uitzenden
-# Broadcast Disposition Action Definition Update
-broadcastDispositionActionDefinitionUpdate.title=Update van definitie retentieactie uitzenden
-broadcastDispositionActionDefinitionUpdate.description=Update van definitie retentieactie uitzenden
-# Undo Event
-undoEvent.title=Gebeurtenis ongedaan maken
-undoEvent.description=Gebeurtenis ongedaan maken
-# Transfer Complete
-transferComplete.title=Overzetten afgerond
-transferComplete.description=Overzetten afgerond
-# Accession Complete
-accessionComplete.title=Overdracht afgerond
-accessionComplete.description=Overdracht afgerond
-# Split Email
-splitEmail.title=E-mail opsplitsen
-splitEmail.description=E-mail opsplitsen
-# Create Rentention Schedule
-createDispositionSchedule.title=Retentieschema maken
-createDispositionSchedule.description=Retentieschema maken
-# File Destruction Report
-fileDestructionReport.title=Vernietigingsrapport archiveren
-fileDestructionReport.description=Vernietigingsrapport archiveren
-# Cut off
-cutoff.title=Afsluiten
-cutoff.description=Afsluiten
-# Destroy
-destroy.title=Vernietigen
-destroy.description=Vernietigen
-# Reviewed
-reviewed.title=Gereviseerd
-reviewed.description=Gereviseerd
-# Hide Record
-hide-record.title=Record verbergen
-hide-record.description=Record verbergen
-# Transfer
-transfer.title=Overzetten
-transfer.description=Overzetten
-# Uncut off
-unCutoff.title=Afsluiten ongedaan maken
-unCutoff.description=Afsluiten ongedaan maken
-# Accession
-accession.title=Overdracht
-accession.description=Overdracht
-# Retain
-retain.title=Behouden
-retain.description=Behouden
-# Add Record Types
-addRecordTypes.title=Recordtypes toevoegen
-addRecordTypes.description=Hiermee worden de geselecteerde types aan de record toegevoegd.
-# File report
-fileReport.title=Rapport archiveren
-fileReport.description=Rapport archiveren
-# Delete Hold
-deleteHold.title=Wachtstand verwijderen
-deleteHold.description=Wachtstand verwijderen
-# Move DM record
-move-dm-record.title=Record verplaatsen
-move-dm-record.description=Record verplaatsen
-# Unlink from
-unlinkFrom.title=Koppeling opheffen met
-unlinkFrom.description=Koppeling opheffen met
-
-# Recordable version config
-recordable-version-config.title=Opties voor automatisch declareren
-recordable-version-config.description=Opties voor automatisch declareren
-recordable-version-config.version.display-label=Versies automatisch declareren als records
-
-# Action parameter constraints
-rm-ac-is-kind-kinds.record_category=Recordcategorie
-rm-ac-is-kind-kinds.record_folder=Archiefmap
-rm-ac-is-kind-kinds.record=Record
-
-rm-ac-disposition-action-relative-positions.next=Volgende
-rm-ac-disposition-action-relative-positions.previous=Vorige
-rm-ac-disposition-action-relative-positions.any=Willekeurig
-
-ac-versions.none=Nooit
-ac-versions.major_only=Alleen voor primaire versies
+#
+# i18n for Records Management Action Conditions
+#
+# Are classified
+isClassified.title=Geclassificeerd op retentieschema
+isClassified.description=Records of archiefmappen zijn geclassificeerd op een retentieschema
+
+# Are cutoff
+isCutoff.title=Afsluiten
+isCutoff.description=Records of archiefmappen zijn afgesloten
+
+# Are declared
+isDeclared.title=Record afgerond
+isDeclared.description=Record is afgerond
+
+# Is on hold
+isFrozen.title=In wachtstand
+isFrozen.description=Record of archiefmap in wachtstand
+
+# Are filed
+isRecordFiled.title=Record gearchiveerd
+isRecordFiled.description=Record is gearchiveerd
+
+# Are closed record folders
+isRecordFolderClosed.title=Archiefmap gesloten
+isRecordFolderClosed.description=Archiefmap is gesloten
+
+# Are vital
+isVital.title=Vitale record
+isVital.description=Record of archiefmap is een vitale record
+
+# Have Rentention Action
+hasDispositionAction.title=Heeft retentieactie
+hasDispositionAction.description=Records en mappen hebben de opgegeven gekoppelde retentieactie op de opgegeven relatieve positie
+
+# Are kind
+isKind.title=Type onderdeel Records Management
+isKind.description=Onderdelen zijn van een type ordeningsplancomponent
+isKind.kind.display-label=Type
+
+# Are Record Type
+isRecordType.title=Heeft recordtype
+isRecordType.description=Records hebben een opgegeven recordtype
+
+
+#
+# i18n for Records Management Actions
+#
+# Declare As Record
+create-record.title=Declareren als record
+create-record.description=Hiermee wordt een bestand gedeclareerd als een record
+create-record.file-plan.display-label=Ordeningsplan
+create-record.hide-record.display-label=Record verbergen
+# Declare As Version Record
+declare-as-version-record.title=Versie declareren als record
+declare-as-version-record.description=Hiermee wordt deze versie van het bestand gedeclareerd als een record
+declare-as-version-record.file-plan.display-label=Ordeningsplan
+# Complete record
+declareRecord.title=Record afronden
+declareRecord.description=Hiermee wordt een record afgerond
+# Reopens record
+undeclareRecord.title=Record heropenen
+undeclareRecord.description=Hiermee wordt een record heropend
+# Open record folder
+openRecordFolder.title=Archiefmap openen
+openRecordFolder.description=Hiermee wordt een archiefmap geopend
+# Close record folder
+closeRecordFolder.title=Archiefmap sluiten
+closeRecordFolder.description=Hiermee wordt een archiefmap gesloten
+# Complete event
+completeEvent.title=Gebeurtenis afronden
+completeEvent.description=Hiermee wordt een gebeurtenis afgerond
+completeEvent.eventName.display-label=Gebeurtenis
+# Freeze
+freeze.title=Bevriezen
+freeze.description=Hiermee wordt een record bevroren
+freeze.reason.display-label=Reden
+# Unfreeze
+unfreeze.title=Bevriezen opheffen
+unfreeze.description=Hiermee wordt de bevriezing van een record opgeheven
+# File to
+fileTo.title=Archiveren in
+fileTo.description=Hiermee wordt een record gearchiveerd in de opgegeven archiefmap
+fileTo.path.display-label=Pad naar archiefmap
+fileTo.createRecordPath.display-label=Recordpad maken
+# Copy to
+copyTo.title=Kopi\u00ebren naar
+copyTo.description=Hiermee wordt een record gekopieerd naar de opgegeven archiefmap
+copyTo.path.display-label=Pad naar archiefmap
+copyTo.createRecordPath.display-label=Recordpad maken
+# Move to
+moveTo.title=Verplaatsen naar
+moveTo.description=Hiermee wordt een record verplaatst naar de opgegeven archiefmap
+moveTo.path.display-label=Pad naar archiefmap
+moveTo.createRecordPath.display-label=Recordpad maken
+# Link to
+linkTo.title=Koppelen naar
+linkTo.description=Hiermee wordt een record gekoppeld naar de opgegeven archiefmap
+linkTo.path.display-label=Pad naar archiefmap
+linkTo.createRecordPath.display-label=Recordpad maken
+# Reject
+reject.title=Afwijzen
+reject.description=Hiermee wordt een record afgewezen en wordt het document naar de originele locatie verplaatst
+reject.reason.display-label=Reden voor afwijzing
+# Request Information
+requestInfo.title=Informatie aanvragen
+requestInfo.description=Hiermee wordt een workflow gestart voor het aanvragen van meer informatie over een record.
+# Execute script
+executeScript.title=Script uitvoeren
+executeScript.description=Een script uitvoeren
+executeScript.script-ref.display-label=Script
+# Send Email
+sendEmail.title=E-mail verzenden
+sendEmail.description=Een e-mail verzenden
+# Set Property
+setPropertyValue.title=Eigenschapwaarde instellen
+setPropertyValue.description=Een eigenschapwaarde instellen
+
+# Edit Hold Reason
+editHoldReason.title=Reden van wachtstand bewerken
+editHoldReason.description=De reden van de wachtstand bewerken
+# Relinquish Hold
+relinquishHold.title=Wachtstand afwijzen
+relinquishHold.description=De wachtstand afwijzen
+# Edit Review As Of Date
+editReviewAsOfDate.title=Begindatum revisie bewerken
+editReviewAsOfDate.description=Begindatum revisie bewerken
+# Edit Disposition Action As Of Date
+editDispositionActionAsOfDate.title=Begindatum retentieactie bewerken
+editDispositionActionAsOfDate.description=De begindatum van de retentieactie bewerken
+# Broadcast Vital Record Definition
+broadcastVitalRecordDefinition.title=Definitie vitale record uitzenden
+broadcastVitalRecordDefinition.description=Definitie van de vitale record uitzenden
+# Broadcast Disposition Action Definition Update
+broadcastDispositionActionDefinitionUpdate.title=Update van definitie retentieactie uitzenden
+broadcastDispositionActionDefinitionUpdate.description=Update van definitie retentieactie uitzenden
+# Undo Event
+undoEvent.title=Gebeurtenis ongedaan maken
+undoEvent.description=Gebeurtenis ongedaan maken
+# Transfer Complete
+transferComplete.title=Overzetten afgerond
+transferComplete.description=Overzetten afgerond
+# Accession Complete
+accessionComplete.title=Overdracht afgerond
+accessionComplete.description=Overdracht afgerond
+# Split Email
+splitEmail.title=E-mail opsplitsen
+splitEmail.description=E-mail opsplitsen
+# Create Rentention Schedule
+createDispositionSchedule.title=Retentieschema maken
+createDispositionSchedule.description=Retentieschema maken
+# File Destruction Report
+fileDestructionReport.title=Vernietigingsrapport archiveren
+fileDestructionReport.description=Vernietigingsrapport archiveren
+# Cut off
+cutoff.title=Afsluiten
+cutoff.description=Afsluiten
+# Destroy
+destroy.title=Vernietigen
+destroy.description=Vernietigen
+# Reviewed
+reviewed.title=Gereviseerd
+reviewed.description=Gereviseerd
+# Hide Record
+hide-record.title=Record verbergen
+hide-record.description=Record verbergen
+# Transfer
+transfer.title=Overzetten
+transfer.description=Overzetten
+# Uncut off
+unCutoff.title=Afsluiten ongedaan maken
+unCutoff.description=Afsluiten ongedaan maken
+# Accession
+accession.title=Overdracht
+accession.description=Overdracht
+# Retain
+retain.title=Behouden
+retain.description=Behouden
+# Add Record Types
+addRecordTypes.title=Recordtypes toevoegen
+addRecordTypes.description=Hiermee worden de geselecteerde types aan de record toegevoegd.
+# File report
+fileReport.title=Rapport archiveren
+fileReport.description=Rapport archiveren
+# Delete Hold
+deleteHold.title=Wachtstand verwijderen
+deleteHold.description=Wachtstand verwijderen
+# Move DM record
+move-dm-record.title=Record verplaatsen
+move-dm-record.description=Record verplaatsen
+# Unlink from
+unlinkFrom.title=Koppeling opheffen met
+unlinkFrom.description=Koppeling opheffen met
+
+# Recordable version config
+recordable-version-config.title=Opties voor automatisch declareren
+recordable-version-config.description=Opties voor automatisch declareren
+recordable-version-config.version.display-label=Versies automatisch declareren als records
+
+# Action parameter constraints
+rm-ac-is-kind-kinds.record_category=Recordcategorie
+rm-ac-is-kind-kinds.record_folder=Archiefmap
+rm-ac-is-kind-kinds.record=Record
+
+rm-ac-disposition-action-relative-positions.next=Volgende
+rm-ac-disposition-action-relative-positions.previous=Vorige
+rm-ac-disposition-action-relative-positions.any=Willekeurig
+
+ac-versions.none=Nooit
+ac-versions.major_only=Alleen voor primaire versies
ac-versions.all=Voor alle primaire en secundaire versies
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_pt_BR.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_pt_BR.properties
index 3bbf0484da..565de14090 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_pt_BR.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_pt_BR.properties
@@ -1,211 +1,211 @@
-#
-# i18n for Records Management Action Conditions
-#
-# Are classified
-isClassified.title=Classificado por programa\u00e7\u00e3o de reten\u00e7\u00e3o
-isClassified.description=Os documentos arquiv\u00edsticos ou as pastas de documentos arquiv\u00edsticos foram classificados por uma programa\u00e7\u00e3o de reten\u00e7\u00e3o
-
-# Are cutoff
-isCutoff.title=Cortar
-isCutoff.description=Os documentos arquiv\u00edsticos ou as pastas de documentos arquiv\u00edsticos s\u00e3o cortados
-
-# Are declared
-isDeclared.title=Documento arquiv\u00edstico conclu\u00eddo
-isDeclared.description=Documento arquiv\u00edstico foi conclu\u00eddo
-
-# Is on hold
-isFrozen.title=Em espera
-isFrozen.description=O documento arquiv\u00edstico ou a pasta de documento arquiv\u00edstico est\u00e1 em espera
-
-# Are filed
-isRecordFiled.title=Documento arquiv\u00edstico arquivado
-isRecordFiled.description=Documento arquiv\u00edstico est\u00e1 arquivado
-
-# Are closed record folders
-isRecordFolderClosed.title=Pasta de documento arquiv\u00edstico fechada
-isRecordFolderClosed.description=Pasta de documento arquiv\u00edstico est\u00e1 fechada
-
-# Are vital
-isVital.title=Documento arquiv\u00edstico vital
-isVital.description=O documento arquiv\u00edstico ou a pasta de documento arquiv\u00edstico \u00e9 um documento arquiv\u00edstico vital
-
-# Have Rentention Action
-hasDispositionAction.title=Tem a\u00e7\u00e3o de reten\u00e7\u00e3o
-hasDispositionAction.description=Os documentos arquiv\u00edsticos e pastas obtiveram a a\u00e7\u00e3o de reten\u00e7\u00e3o associada especificada na posi\u00e7\u00e3o relativa especificada
-
-# Are kind
-isKind.title=Tipo de item do Records Management
-isKind.description=Os itens s\u00e3o de um tipo de componente de plano de arquivo
-isKind.kind.display-label=Tipo
-
-# Are Record Type
-isRecordType.title=Tem tipo de documento arquiv\u00edstico
-isRecordType.description=Os documentos arquiv\u00edsticos t\u00eam um tipo de documento arquiv\u00edstico especificado
-
-
-#
-# i18n for Records Management Actions
-#
-# Declare As Record
-create-record.title=Declarar como documento arquiv\u00edstico
-create-record.description=Declara o arquivo com um documento arquiv\u00edstico.
-create-record.file-plan.display-label=Plano de arquivo
-create-record.hide-record.display-label=Ocultar documento arquiv\u00edstico
-# Declare As Version Record
-declare-as-version-record.title=Declarar vers\u00e3o como documento arquiv\u00edstico
-declare-as-version-record.description=Declara essa vers\u00e3o do arquivo como um documento arquiv\u00edstico
-declare-as-version-record.file-plan.display-label=Plano de arquivo
-# Complete record
-declareRecord.title=Concluir documento arquiv\u00edstico
-declareRecord.description=Conclui um documento arquiv\u00edstico
-# Reopens record
-undeclareRecord.title=Reabrir documento arquiv\u00edstico
-undeclareRecord.description=Reabre um documento arquiv\u00edstico
-# Open record folder
-openRecordFolder.title=Abrir pasta de documento arquiv\u00edstico
-openRecordFolder.description=Abre uma pasta de documento arquiv\u00edstico
-# Close record folder
-closeRecordFolder.title=Fechar pasta de documento arquiv\u00edstico
-closeRecordFolder.description=Fecha uma pasta de documento arquiv\u00edstico
-# Complete event
-completeEvent.title=Concluir evento
-completeEvent.description=Conclui um evento
-completeEvent.eventName.display-label=Evento
-# Freeze
-freeze.title=Congelar
-freeze.description=Congela um documento arquiv\u00edstico
-freeze.reason.display-label=Motivo
-# Unfreeze
-unfreeze.title=Descongelar
-unfreeze.description=Descongela um documento arquiv\u00edstico
-# File to
-fileTo.title=Arquivar em
-fileTo.description=Arquiva um documento arquiv\u00edstico na pasta de documento arquiv\u00edstico especificada
-fileTo.path.display-label=Caminho para pasta de documento arquiv\u00edstico
-fileTo.createRecordPath.display-label=Criar caminho do documento arquiv\u00edstico
-# Copy to
-copyTo.title=Copiar para
-copyTo.description=Copia um documento arquiv\u00edstico para a pasta de documento arquiv\u00edstico especificada
-copyTo.path.display-label=Caminho para pasta de documento arquiv\u00edstico
-copyTo.createRecordPath.display-label=Criar caminho do documento arquiv\u00edstico
-# Move to
-moveTo.title=Mover para
-moveTo.description=Move um documento arquiv\u00edstico para a pasta de documento arquiv\u00edstico especificada
-moveTo.path.display-label=Caminho para pasta de documento arquiv\u00edstico
-moveTo.createRecordPath.display-label=Criar caminho do documento arquiv\u00edstico
-# Link to
-linkTo.title=Vincular a
-linkTo.description=Vincula um documento arquiv\u00edstico \u00e0 pasta de documento arquiv\u00edstico especificada
-linkTo.path.display-label=Caminho para pasta de documento arquiv\u00edstico
-linkTo.createRecordPath.display-label=Criar caminho do documento arquiv\u00edstico
-# Reject
-reject.title=Rejeitar
-reject.description=Rejeita um documento arquiv\u00edstico e move o arquivo para seu local original
-reject.reason.display-label=Motivo da rejei\u00e7\u00e3o
-# Request Information
-requestInfo.title=Solicitar informa\u00e7\u00f5es
-requestInfo.description=Inicia um fluxo de trabalho para solicitar mais informa\u00e7\u00f5es de um documento arquiv\u00edstico
-# Execute script
-executeScript.title=Executar script
-executeScript.description=Executa um script
-executeScript.script-ref.display-label=Script
-# Send Email
-sendEmail.title=Enviar e-mail
-sendEmail.description=Envia um e-mail
-# Set Property
-setPropertyValue.title=Definir valor da propriedade
-setPropertyValue.description=Define um valor de propriedade
-
-# Edit Hold Reason
-editHoldReason.title=Editar motivo para manter
-editHoldReason.description=Edita o motivo para manter
-# Relinquish Hold
-relinquishHold.title=Desistir da espera
-relinquishHold.description=Desiste da espera
-# Edit Review As Of Date
-editReviewAsOfDate.title=Editar data inicial de revis\u00e3o
-editReviewAsOfDate.description=Editar data inicial de revis\u00e3o
-# Edit Disposition Action As Of Date
-editDispositionActionAsOfDate.title=Editar data de in\u00edcio da a\u00e7\u00e3o de reten\u00e7\u00e3o
-editDispositionActionAsOfDate.description=Editar a data de in\u00edcio da a\u00e7\u00e3o de reten\u00e7\u00e3o
-# Broadcast Vital Record Definition
-broadcastVitalRecordDefinition.title=Transmitir defini\u00e7\u00e3o do documento arquiv\u00edstico vital
-broadcastVitalRecordDefinition.description=Transmitir a defini\u00e7\u00e3o do documento arquiv\u00edstico vital
-# Broadcast Disposition Action Definition Update
-broadcastDispositionActionDefinitionUpdate.title=Transmitir atualiza\u00e7\u00e3o da defini\u00e7\u00e3o da a\u00e7\u00e3o de reten\u00e7\u00e3o
-broadcastDispositionActionDefinitionUpdate.description=Transmitir atualiza\u00e7\u00e3o da defini\u00e7\u00e3o da a\u00e7\u00e3o de reten\u00e7\u00e3o
-# Undo Event
-undoEvent.title=Desfazer evento
-undoEvent.description=Desfazer evento
-# Transfer Complete
-transferComplete.title=Transfer\u00eancia conclu\u00edda
-transferComplete.description=Transfer\u00eancia conclu\u00edda
-# Accession Complete
-accessionComplete.title=Ades\u00e3o conclu\u00edda
-accessionComplete.description=Ades\u00e3o conclu\u00edda
-# Split Email
-splitEmail.title=Dividir e-mail
-splitEmail.description=Dividir e-mail
-# Create Rentention Schedule
-createDispositionSchedule.title=Criar programa\u00e7\u00e3o de reten\u00e7\u00e3o
-createDispositionSchedule.description=Criar programa\u00e7\u00e3o de reten\u00e7\u00e3o
-# File Destruction Report
-fileDestructionReport.title=Relat\u00f3rio de destrui\u00e7\u00e3o de arquivos
-fileDestructionReport.description=Relat\u00f3rio de destrui\u00e7\u00e3o de arquivos
-# Cut off
-cutoff.title=Cortar
-cutoff.description=Cortar
-# Destroy
-destroy.title=Destruir
-destroy.description=Destruir
-# Reviewed
-reviewed.title=Revisado
-reviewed.description=Revisado
-# Hide Record
-hide-record.title=Ocultar documento arquiv\u00edstico
-hide-record.description=Ocultar documento arquiv\u00edstico
-# Transfer
-transfer.title=Transferir
-transfer.description=Transferir
-# Uncut off
-unCutoff.title=Desfazer corte
-unCutoff.description=Desfazer corte
-# Accession
-accession.title=Ades\u00e3o
-accession.description=Ades\u00e3o
-# Retain
-retain.title=Manter
-retain.description=Manter
-# Add Record Types
-addRecordTypes.title=Adicionar tipos de documento arquiv\u00edstico
-addRecordTypes.description=Adiciona o(s) tipo(s) selecionado(s) ao documento arquiv\u00edstico
-# File report
-fileReport.title=Arquivar relat\u00f3rio
-fileReport.description=Arquivar relat\u00f3rio
-# Delete Hold
-deleteHold.title=Excluir espera
-deleteHold.description=Excluir espera
-# Move DM record
-move-dm-record.title=Mover documento arquiv\u00edstico
-move-dm-record.description=Mover documento arquiv\u00edstico
-# Unlink from
-unlinkFrom.title=Desvincular de
-unlinkFrom.description=Desvincular de
-
-# Recordable version config
-recordable-version-config.title=Op\u00e7\u00f5es de auto declara\u00e7\u00e3o
-recordable-version-config.description=Op\u00e7\u00f5es de auto declara\u00e7\u00e3o
-recordable-version-config.version.display-label=Declarar automaticamente vers\u00f5es como documentos arquiv\u00edsticos
-
-# Action parameter constraints
-rm-ac-is-kind-kinds.record_category=Categoria de documento arquiv\u00edstico
-rm-ac-is-kind-kinds.record_folder=Pasta de documento arquiv\u00edstico
-rm-ac-is-kind-kinds.record=Documento arquiv\u00edstico
-
-rm-ac-disposition-action-relative-positions.next=Pr\u00f3ximo
-rm-ac-disposition-action-relative-positions.previous=Anterior
-rm-ac-disposition-action-relative-positions.any=Qualquer
-
-ac-versions.none=Nunca
-ac-versions.major_only=Somente para vers\u00f5es principais
+#
+# i18n for Records Management Action Conditions
+#
+# Are classified
+isClassified.title=Classificado por programa\u00e7\u00e3o de reten\u00e7\u00e3o
+isClassified.description=Os documentos arquiv\u00edsticos ou as pastas de documentos arquiv\u00edsticos foram classificados por uma programa\u00e7\u00e3o de reten\u00e7\u00e3o
+
+# Are cutoff
+isCutoff.title=Cortar
+isCutoff.description=Os documentos arquiv\u00edsticos ou as pastas de documentos arquiv\u00edsticos s\u00e3o cortados
+
+# Are declared
+isDeclared.title=Documento arquiv\u00edstico conclu\u00eddo
+isDeclared.description=Documento arquiv\u00edstico foi conclu\u00eddo
+
+# Is on hold
+isFrozen.title=Em espera
+isFrozen.description=O documento arquiv\u00edstico ou a pasta de documento arquiv\u00edstico est\u00e1 em espera
+
+# Are filed
+isRecordFiled.title=Documento arquiv\u00edstico arquivado
+isRecordFiled.description=Documento arquiv\u00edstico est\u00e1 arquivado
+
+# Are closed record folders
+isRecordFolderClosed.title=Pasta de documento arquiv\u00edstico fechada
+isRecordFolderClosed.description=Pasta de documento arquiv\u00edstico est\u00e1 fechada
+
+# Are vital
+isVital.title=Documento arquiv\u00edstico vital
+isVital.description=O documento arquiv\u00edstico ou a pasta de documento arquiv\u00edstico \u00e9 um documento arquiv\u00edstico vital
+
+# Have Rentention Action
+hasDispositionAction.title=Tem a\u00e7\u00e3o de reten\u00e7\u00e3o
+hasDispositionAction.description=Os documentos arquiv\u00edsticos e pastas obtiveram a a\u00e7\u00e3o de reten\u00e7\u00e3o associada especificada na posi\u00e7\u00e3o relativa especificada
+
+# Are kind
+isKind.title=Tipo de item do Records Management
+isKind.description=Os itens s\u00e3o de um tipo de componente de plano de arquivo
+isKind.kind.display-label=Tipo
+
+# Are Record Type
+isRecordType.title=Tem tipo de documento arquiv\u00edstico
+isRecordType.description=Os documentos arquiv\u00edsticos t\u00eam um tipo de documento arquiv\u00edstico especificado
+
+
+#
+# i18n for Records Management Actions
+#
+# Declare As Record
+create-record.title=Declarar como documento arquiv\u00edstico
+create-record.description=Declara o arquivo com um documento arquiv\u00edstico.
+create-record.file-plan.display-label=Plano de arquivo
+create-record.hide-record.display-label=Ocultar documento arquiv\u00edstico
+# Declare As Version Record
+declare-as-version-record.title=Declarar vers\u00e3o como documento arquiv\u00edstico
+declare-as-version-record.description=Declara essa vers\u00e3o do arquivo como um documento arquiv\u00edstico
+declare-as-version-record.file-plan.display-label=Plano de arquivo
+# Complete record
+declareRecord.title=Concluir documento arquiv\u00edstico
+declareRecord.description=Conclui um documento arquiv\u00edstico
+# Reopens record
+undeclareRecord.title=Reabrir documento arquiv\u00edstico
+undeclareRecord.description=Reabre um documento arquiv\u00edstico
+# Open record folder
+openRecordFolder.title=Abrir pasta de documento arquiv\u00edstico
+openRecordFolder.description=Abre uma pasta de documento arquiv\u00edstico
+# Close record folder
+closeRecordFolder.title=Fechar pasta de documento arquiv\u00edstico
+closeRecordFolder.description=Fecha uma pasta de documento arquiv\u00edstico
+# Complete event
+completeEvent.title=Concluir evento
+completeEvent.description=Conclui um evento
+completeEvent.eventName.display-label=Evento
+# Freeze
+freeze.title=Congelar
+freeze.description=Congela um documento arquiv\u00edstico
+freeze.reason.display-label=Motivo
+# Unfreeze
+unfreeze.title=Descongelar
+unfreeze.description=Descongela um documento arquiv\u00edstico
+# File to
+fileTo.title=Arquivar em
+fileTo.description=Arquiva um documento arquiv\u00edstico na pasta de documento arquiv\u00edstico especificada
+fileTo.path.display-label=Caminho para pasta de documento arquiv\u00edstico
+fileTo.createRecordPath.display-label=Criar caminho do documento arquiv\u00edstico
+# Copy to
+copyTo.title=Copiar para
+copyTo.description=Copia um documento arquiv\u00edstico para a pasta de documento arquiv\u00edstico especificada
+copyTo.path.display-label=Caminho para pasta de documento arquiv\u00edstico
+copyTo.createRecordPath.display-label=Criar caminho do documento arquiv\u00edstico
+# Move to
+moveTo.title=Mover para
+moveTo.description=Move um documento arquiv\u00edstico para a pasta de documento arquiv\u00edstico especificada
+moveTo.path.display-label=Caminho para pasta de documento arquiv\u00edstico
+moveTo.createRecordPath.display-label=Criar caminho do documento arquiv\u00edstico
+# Link to
+linkTo.title=Vincular a
+linkTo.description=Vincula um documento arquiv\u00edstico \u00e0 pasta de documento arquiv\u00edstico especificada
+linkTo.path.display-label=Caminho para pasta de documento arquiv\u00edstico
+linkTo.createRecordPath.display-label=Criar caminho do documento arquiv\u00edstico
+# Reject
+reject.title=Rejeitar
+reject.description=Rejeita um documento arquiv\u00edstico e move o arquivo para seu local original
+reject.reason.display-label=Motivo da rejei\u00e7\u00e3o
+# Request Information
+requestInfo.title=Solicitar informa\u00e7\u00f5es
+requestInfo.description=Inicia um fluxo de trabalho para solicitar mais informa\u00e7\u00f5es de um documento arquiv\u00edstico
+# Execute script
+executeScript.title=Executar script
+executeScript.description=Executa um script
+executeScript.script-ref.display-label=Script
+# Send Email
+sendEmail.title=Enviar e-mail
+sendEmail.description=Envia um e-mail
+# Set Property
+setPropertyValue.title=Definir valor da propriedade
+setPropertyValue.description=Define um valor de propriedade
+
+# Edit Hold Reason
+editHoldReason.title=Editar motivo para manter
+editHoldReason.description=Edita o motivo para manter
+# Relinquish Hold
+relinquishHold.title=Desistir da espera
+relinquishHold.description=Desiste da espera
+# Edit Review As Of Date
+editReviewAsOfDate.title=Editar data inicial de revis\u00e3o
+editReviewAsOfDate.description=Editar data inicial de revis\u00e3o
+# Edit Disposition Action As Of Date
+editDispositionActionAsOfDate.title=Editar data de in\u00edcio da a\u00e7\u00e3o de reten\u00e7\u00e3o
+editDispositionActionAsOfDate.description=Editar a data de in\u00edcio da a\u00e7\u00e3o de reten\u00e7\u00e3o
+# Broadcast Vital Record Definition
+broadcastVitalRecordDefinition.title=Transmitir defini\u00e7\u00e3o do documento arquiv\u00edstico vital
+broadcastVitalRecordDefinition.description=Transmitir a defini\u00e7\u00e3o do documento arquiv\u00edstico vital
+# Broadcast Disposition Action Definition Update
+broadcastDispositionActionDefinitionUpdate.title=Transmitir atualiza\u00e7\u00e3o da defini\u00e7\u00e3o da a\u00e7\u00e3o de reten\u00e7\u00e3o
+broadcastDispositionActionDefinitionUpdate.description=Transmitir atualiza\u00e7\u00e3o da defini\u00e7\u00e3o da a\u00e7\u00e3o de reten\u00e7\u00e3o
+# Undo Event
+undoEvent.title=Desfazer evento
+undoEvent.description=Desfazer evento
+# Transfer Complete
+transferComplete.title=Transfer\u00eancia conclu\u00edda
+transferComplete.description=Transfer\u00eancia conclu\u00edda
+# Accession Complete
+accessionComplete.title=Ades\u00e3o conclu\u00edda
+accessionComplete.description=Ades\u00e3o conclu\u00edda
+# Split Email
+splitEmail.title=Dividir e-mail
+splitEmail.description=Dividir e-mail
+# Create Rentention Schedule
+createDispositionSchedule.title=Criar programa\u00e7\u00e3o de reten\u00e7\u00e3o
+createDispositionSchedule.description=Criar programa\u00e7\u00e3o de reten\u00e7\u00e3o
+# File Destruction Report
+fileDestructionReport.title=Relat\u00f3rio de destrui\u00e7\u00e3o de arquivos
+fileDestructionReport.description=Relat\u00f3rio de destrui\u00e7\u00e3o de arquivos
+# Cut off
+cutoff.title=Cortar
+cutoff.description=Cortar
+# Destroy
+destroy.title=Destruir
+destroy.description=Destruir
+# Reviewed
+reviewed.title=Revisado
+reviewed.description=Revisado
+# Hide Record
+hide-record.title=Ocultar documento arquiv\u00edstico
+hide-record.description=Ocultar documento arquiv\u00edstico
+# Transfer
+transfer.title=Transferir
+transfer.description=Transferir
+# Uncut off
+unCutoff.title=Desfazer corte
+unCutoff.description=Desfazer corte
+# Accession
+accession.title=Ades\u00e3o
+accession.description=Ades\u00e3o
+# Retain
+retain.title=Manter
+retain.description=Manter
+# Add Record Types
+addRecordTypes.title=Adicionar tipos de documento arquiv\u00edstico
+addRecordTypes.description=Adiciona o(s) tipo(s) selecionado(s) ao documento arquiv\u00edstico
+# File report
+fileReport.title=Arquivar relat\u00f3rio
+fileReport.description=Arquivar relat\u00f3rio
+# Delete Hold
+deleteHold.title=Excluir espera
+deleteHold.description=Excluir espera
+# Move DM record
+move-dm-record.title=Mover documento arquiv\u00edstico
+move-dm-record.description=Mover documento arquiv\u00edstico
+# Unlink from
+unlinkFrom.title=Desvincular de
+unlinkFrom.description=Desvincular de
+
+# Recordable version config
+recordable-version-config.title=Op\u00e7\u00f5es de auto declara\u00e7\u00e3o
+recordable-version-config.description=Op\u00e7\u00f5es de auto declara\u00e7\u00e3o
+recordable-version-config.version.display-label=Declarar automaticamente vers\u00f5es como documentos arquiv\u00edsticos
+
+# Action parameter constraints
+rm-ac-is-kind-kinds.record_category=Categoria de documento arquiv\u00edstico
+rm-ac-is-kind-kinds.record_folder=Pasta de documento arquiv\u00edstico
+rm-ac-is-kind-kinds.record=Documento arquiv\u00edstico
+
+rm-ac-disposition-action-relative-positions.next=Pr\u00f3ximo
+rm-ac-disposition-action-relative-positions.previous=Anterior
+rm-ac-disposition-action-relative-positions.any=Qualquer
+
+ac-versions.none=Nunca
+ac-versions.major_only=Somente para vers\u00f5es principais
ac-versions.all=Para todas as vers\u00f5es principais e secund\u00e1rias
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_ru.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_ru.properties
index 8bbcdb49c1..313be895b1 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_ru.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_ru.properties
@@ -1,211 +1,211 @@
-#
-# i18n for Records Management Action Conditions
-#
-# Are classified
-isClassified.title=\u041a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043f\u043e \u0433\u0440\u0430\u0444\u0438\u043a\u0443 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-isClassified.description=\u0417\u0430\u043f\u0438\u0441\u0438 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043f\u043e \u0433\u0440\u0430\u0444\u0438\u043a\u0443 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-
-# Are cutoff
-isCutoff.title=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
-isCutoff.description=\u0417\u0430\u043f\u0438\u0441\u0438 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438 \u0441 \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438 \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u044b
-
-# Are declared
-isDeclared.title=\u0417\u0430\u043f\u0438\u0441\u044c \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430
-isDeclared.description=\u0417\u0430\u043f\u0438\u0441\u044c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u043d\u043e\u0439
-
-# Is on hold
-isFrozen.title=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0430
-isFrozen.description=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-
-# Are filed
-isRecordFiled.title=\u0417\u0430\u043f\u0438\u0441\u044c \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430 \u0432 \u0444\u0430\u0439\u043b
-isRecordFiled.description=\u0417\u0430\u043f\u0438\u0441\u044c \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430 \u0432 \u0444\u0430\u0439\u043b
-
-# Are closed record folders
-isRecordFolderClosed.title=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0437\u0430\u043a\u0440\u044b\u0442\u0430
-isRecordFolderClosed.description=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0437\u0430\u043a\u0440\u044b\u0442\u0430
-
-# Are vital
-isVital.title=\u041a\u043b\u044e\u0447\u0435\u0432\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
-isVital.description=\u0417\u0430\u043f\u0438\u0441\u044c \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u044c\u044e
-
-# Have Rentention Action
-hasDispositionAction.title=\u0415\u0441\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-hasDispositionAction.description=\u0423 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0438 \u043f\u0430\u043f\u043e\u043a \u0435\u0441\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u0432 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u043c \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u043c \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438
-
-# Are kind
-isKind.title=\u0422\u0438\u043f \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-isKind.description=\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c\u0438 \u0430\u0440\u0445\u0438\u0432\u0430
-isKind.kind.display-label=\u0422\u0438\u043f
-
-# Are Record Type
-isRecordType.title=\u0415\u0441\u0442\u044c \u0442\u0438\u043f \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-isRecordType.description=\u0412 \u0437\u0430\u043f\u0438\u0441\u044f\u0445 \u0435\u0441\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u0442\u0438\u043f \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-
-
-#
-# i18n for Records Management Actions
-#
-# Declare As Record
-create-record.title=\u041e\u0431\u044a\u044f\u0432\u0438\u0442\u044c \u043a\u0430\u043a \u0437\u0430\u043f\u0438\u0441\u044c
-create-record.description=\u041e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430 \u0437\u0430\u043f\u0438\u0441\u044c\u044e
-create-record.file-plan.display-label=\u0410\u0440\u0445\u0438\u0432
-create-record.hide-record.display-label=\u0421\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
-# Declare As Version Record
-declare-as-version-record.title=\u041e\u0431\u044a\u044f\u0432\u0438\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u044c\u044e
-declare-as-version-record.description=\u041e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u044d\u0442\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 \u0444\u0430\u0439\u043b\u0430 \u0437\u0430\u043f\u0438\u0441\u044c\u044e
-declare-as-version-record.file-plan.display-label=\u0410\u0440\u0445\u0438\u0432
-# Complete record
-declareRecord.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
-declareRecord.description=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-# Reopens record
-undeclareRecord.title=\u041f\u0435\u0440\u0435\u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
-undeclareRecord.description=\u041f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-# Open record folder
-openRecordFolder.title=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-openRecordFolder.description=\u041e\u0442\u043a\u0440\u044b\u0442\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-# Close record folder
-closeRecordFolder.title=\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-closeRecordFolder.description=\u0417\u0430\u043a\u0440\u044b\u0442\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-# Complete event
-completeEvent.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435
-completeEvent.description=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f
-completeEvent.eventName.display-label=\u0421\u043e\u0431\u044b\u0442\u0438\u0435
-# Freeze
-freeze.title=\u0417\u0430\u043a\u0440\u0435\u043f\u0438\u0442\u044c
-freeze.description=\u0417\u0430\u043a\u0440\u0435\u043f\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-freeze.reason.display-label=\u041f\u0440\u0438\u0447\u0438\u043d\u0430
-# Unfreeze
-unfreeze.title=\u041e\u0442\u043a\u0440\u0435\u043f\u0438\u0442\u044c
-unfreeze.description=\u041e\u0442\u043a\u0440\u0435\u043f\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-# File to
-fileTo.title=\u0421\u0434\u0430\u0442\u044c \u0432 \u0430\u0440\u0445\u0438\u0432
-fileTo.description=\u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0437\u0430\u0434\u0430\u043d\u043d\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-fileTo.path.display-label=\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-fileTo.createRecordPath.display-label=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
-# Copy to
-copyTo.title=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432
-copyTo.description=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0437\u0430\u0434\u0430\u043d\u043d\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-copyTo.path.display-label=\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-copyTo.createRecordPath.display-label=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
-# Move to
-moveTo.title=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432
-moveTo.description=\u041f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0437\u0430\u0434\u0430\u043d\u043d\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-moveTo.path.display-label=\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-moveTo.createRecordPath.display-label=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
-# Link to
-linkTo.title=\u0421\u0432\u044f\u0437\u0430\u0442\u044c \u0441
-linkTo.description=\u0421\u0432\u044f\u0437\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0441 \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-linkTo.path.display-label=\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-linkTo.createRecordPath.display-label=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
-# Reject
-reject.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
-reject.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430 \u0432 \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435
-reject.reason.display-label=\u041f\u0440\u0438\u0447\u0438\u043d\u0430 \u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u044f
-# Request Information
-requestInfo.title=\u0417\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e
-requestInfo.description=\u0417\u0430\u043f\u0443\u0441\u043a \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0434\u043b\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u0437\u0430\u043f\u0438\u0441\u0438
-# Execute script
-executeScript.title=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442
-executeScript.description=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442
-executeScript.script-ref.display-label=\u0421\u043a\u0440\u0438\u043f\u0442
-# Send Email
-sendEmail.title=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435
-sendEmail.description=\u041e\u0442\u043f\u0440\u0430\u0432\u043a\u0430 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f
-# Set Property
-setPropertyValue.title=\u0417\u0430\u0434\u0430\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430
-setPropertyValue.description=\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430
-
-# Edit Hold Reason
-editHoldReason.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
-editHoldReason.description=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
-# Relinquish Hold
-relinquishHold.title=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
-relinquishHold.description=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
-# Edit Review As Of Date
-editReviewAsOfDate.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443 \u043d\u0430 \u0434\u0430\u0442\u0443
-editReviewAsOfDate.description=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u043d\u0430 \u0434\u0430\u0442\u0443
-# Edit Disposition Action As Of Date
-editDispositionActionAsOfDate.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u043d\u0430 \u0434\u0430\u0442\u0443
-editDispositionActionAsOfDate.description=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u043d\u0430 \u0434\u0430\u0442\u0443
-# Broadcast Vital Record Definition
-broadcastVitalRecordDefinition.title=\u0420\u0430\u0437\u043e\u0441\u043b\u0430\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
-broadcastVitalRecordDefinition.description=\u0420\u0430\u0437\u043e\u0441\u043b\u0430\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
-# Broadcast Disposition Action Definition Update
-broadcastDispositionActionDefinitionUpdate.title=\u0420\u0430\u0437\u043e\u0441\u043b\u0430\u0442\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-broadcastDispositionActionDefinitionUpdate.description=\u0420\u0430\u0437\u043e\u0441\u043b\u0430\u0442\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-# Undo Event
-undoEvent.title=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435
-undoEvent.description=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435
-# Transfer Complete
-transferComplete.title=\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430
-transferComplete.description=\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430
-# Accession Complete
-accessionComplete.title=\u0414\u043e\u0441\u0442\u0443\u043f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d
-accessionComplete.description=\u0414\u043e\u0441\u0442\u0443\u043f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d
-# Split Email
-splitEmail.title=\u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435
-splitEmail.description=\u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435
-# Create Rentention Schedule
-createDispositionSchedule.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0433\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-createDispositionSchedule.description=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0433\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-# File Destruction Report
-fileDestructionReport.title=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0438 \u0444\u0430\u0439\u043b\u0430
-fileDestructionReport.description=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0438 \u0444\u0430\u0439\u043b\u0430
-# Cut off
-cutoff.title=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
-cutoff.description=\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c
-# Destroy
-destroy.title=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c
-destroy.description=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c
-# Reviewed
-reviewed.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0435\u043d\u043e
-reviewed.description=\u041f\u0440\u043e\u0432\u0435\u0440\u0435\u043d\u043e
-# Hide Record
-hide-record.title=\u0421\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
-hide-record.description=\u0421\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
-# Transfer
-transfer.title=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c
-transfer.description=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c
-# Uncut off
-unCutoff.title=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435
-unCutoff.description=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435
-# Accession
-accession.title=\u0414\u043e\u0441\u0442\u0443\u043f
-accession.description=\u0414\u043e\u0441\u0442\u0443\u043f
-# Retain
-retain.title=\u0425\u0440\u0430\u043d\u0438\u0442\u044c
-retain.description=\u0425\u0440\u0430\u043d\u0438\u0442\u044c
-# Add Record Types
-addRecordTypes.title=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u0438\u043f\u044b \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-addRecordTypes.description=\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u043e\u0432 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
-# File report
-fileReport.title=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043e\u0442\u0447\u0435\u0442 \u0432 \u0444\u0430\u0439\u043b
-fileReport.description=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043e\u0442\u0447\u0435\u0442 \u0432 \u0444\u0430\u0439\u043b
-# Delete Hold
-deleteHold.title=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
-deleteHold.description=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
-# Move DM record
-move-dm-record.title=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
-move-dm-record.description=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
-# Unlink from
-unlinkFrom.title=\u041e\u0442\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u043e\u0442
-unlinkFrom.description=\u041e\u0442\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u043e\u0442
-
-# Recordable version config
-recordable-version-config.title=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f
-recordable-version-config.description=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f
-recordable-version-config.version.display-label=\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0431\u044a\u044f\u0432\u043b\u044f\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u0438 \u043a\u0430\u043a \u0437\u0430\u043f\u0438\u0441\u0438
-
-# Action parameter constraints
-rm-ac-is-kind-kinds.record_category=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-rm-ac-is-kind-kinds.record_folder=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-rm-ac-is-kind-kinds.record=\u0417\u0430\u043f\u0438\u0441\u044c
-
-rm-ac-disposition-action-relative-positions.next=\u0414\u0430\u043b\u0435\u0435
-rm-ac-disposition-action-relative-positions.previous=\u041d\u0430\u0437\u0430\u0434
-rm-ac-disposition-action-relative-positions.any=\u041b\u044e\u0431\u043e\u0439
-
-ac-versions.none=\u041d\u0438\u043a\u043e\u0433\u0434\u0430
-ac-versions.major_only=\u0422\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0432\u0435\u0440\u0441\u0438\u0439
+#
+# i18n for Records Management Action Conditions
+#
+# Are classified
+isClassified.title=\u041a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043f\u043e \u0433\u0440\u0430\u0444\u0438\u043a\u0443 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+isClassified.description=\u0417\u0430\u043f\u0438\u0441\u0438 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043f\u043e \u0433\u0440\u0430\u0444\u0438\u043a\u0443 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+
+# Are cutoff
+isCutoff.title=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
+isCutoff.description=\u0417\u0430\u043f\u0438\u0441\u0438 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438 \u0441 \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438 \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u044b
+
+# Are declared
+isDeclared.title=\u0417\u0430\u043f\u0438\u0441\u044c \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430
+isDeclared.description=\u0417\u0430\u043f\u0438\u0441\u044c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u043d\u043e\u0439
+
+# Is on hold
+isFrozen.title=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0430
+isFrozen.description=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+
+# Are filed
+isRecordFiled.title=\u0417\u0430\u043f\u0438\u0441\u044c \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430 \u0432 \u0444\u0430\u0439\u043b
+isRecordFiled.description=\u0417\u0430\u043f\u0438\u0441\u044c \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430 \u0432 \u0444\u0430\u0439\u043b
+
+# Are closed record folders
+isRecordFolderClosed.title=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0437\u0430\u043a\u0440\u044b\u0442\u0430
+isRecordFolderClosed.description=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0437\u0430\u043a\u0440\u044b\u0442\u0430
+
+# Are vital
+isVital.title=\u041a\u043b\u044e\u0447\u0435\u0432\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
+isVital.description=\u0417\u0430\u043f\u0438\u0441\u044c \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u044c\u044e
+
+# Have Rentention Action
+hasDispositionAction.title=\u0415\u0441\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+hasDispositionAction.description=\u0423 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0438 \u043f\u0430\u043f\u043e\u043a \u0435\u0441\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u0432 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u043c \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u043c \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438
+
+# Are kind
+isKind.title=\u0422\u0438\u043f \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+isKind.description=\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c\u0438 \u0430\u0440\u0445\u0438\u0432\u0430
+isKind.kind.display-label=\u0422\u0438\u043f
+
+# Are Record Type
+isRecordType.title=\u0415\u0441\u0442\u044c \u0442\u0438\u043f \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+isRecordType.description=\u0412 \u0437\u0430\u043f\u0438\u0441\u044f\u0445 \u0435\u0441\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u0442\u0438\u043f \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+
+
+#
+# i18n for Records Management Actions
+#
+# Declare As Record
+create-record.title=\u041e\u0431\u044a\u044f\u0432\u0438\u0442\u044c \u043a\u0430\u043a \u0437\u0430\u043f\u0438\u0441\u044c
+create-record.description=\u041e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430 \u0437\u0430\u043f\u0438\u0441\u044c\u044e
+create-record.file-plan.display-label=\u0410\u0440\u0445\u0438\u0432
+create-record.hide-record.display-label=\u0421\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
+# Declare As Version Record
+declare-as-version-record.title=\u041e\u0431\u044a\u044f\u0432\u0438\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u044c\u044e
+declare-as-version-record.description=\u041e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u044d\u0442\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 \u0444\u0430\u0439\u043b\u0430 \u0437\u0430\u043f\u0438\u0441\u044c\u044e
+declare-as-version-record.file-plan.display-label=\u0410\u0440\u0445\u0438\u0432
+# Complete record
+declareRecord.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
+declareRecord.description=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+# Reopens record
+undeclareRecord.title=\u041f\u0435\u0440\u0435\u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
+undeclareRecord.description=\u041f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+# Open record folder
+openRecordFolder.title=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+openRecordFolder.description=\u041e\u0442\u043a\u0440\u044b\u0442\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+# Close record folder
+closeRecordFolder.title=\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+closeRecordFolder.description=\u0417\u0430\u043a\u0440\u044b\u0442\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+# Complete event
+completeEvent.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435
+completeEvent.description=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f
+completeEvent.eventName.display-label=\u0421\u043e\u0431\u044b\u0442\u0438\u0435
+# Freeze
+freeze.title=\u0417\u0430\u043a\u0440\u0435\u043f\u0438\u0442\u044c
+freeze.description=\u0417\u0430\u043a\u0440\u0435\u043f\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+freeze.reason.display-label=\u041f\u0440\u0438\u0447\u0438\u043d\u0430
+# Unfreeze
+unfreeze.title=\u041e\u0442\u043a\u0440\u0435\u043f\u0438\u0442\u044c
+unfreeze.description=\u041e\u0442\u043a\u0440\u0435\u043f\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+# File to
+fileTo.title=\u0421\u0434\u0430\u0442\u044c \u0432 \u0430\u0440\u0445\u0438\u0432
+fileTo.description=\u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0437\u0430\u0434\u0430\u043d\u043d\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+fileTo.path.display-label=\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+fileTo.createRecordPath.display-label=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
+# Copy to
+copyTo.title=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432
+copyTo.description=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0437\u0430\u0434\u0430\u043d\u043d\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+copyTo.path.display-label=\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+copyTo.createRecordPath.display-label=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
+# Move to
+moveTo.title=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432
+moveTo.description=\u041f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0437\u0430\u0434\u0430\u043d\u043d\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+moveTo.path.display-label=\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+moveTo.createRecordPath.display-label=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
+# Link to
+linkTo.title=\u0421\u0432\u044f\u0437\u0430\u0442\u044c \u0441
+linkTo.description=\u0421\u0432\u044f\u0437\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0441 \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+linkTo.path.display-label=\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+linkTo.createRecordPath.display-label=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
+# Reject
+reject.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
+reject.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430 \u0432 \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435
+reject.reason.display-label=\u041f\u0440\u0438\u0447\u0438\u043d\u0430 \u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u044f
+# Request Information
+requestInfo.title=\u0417\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e
+requestInfo.description=\u0417\u0430\u043f\u0443\u0441\u043a \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0434\u043b\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u0437\u0430\u043f\u0438\u0441\u0438
+# Execute script
+executeScript.title=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442
+executeScript.description=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442
+executeScript.script-ref.display-label=\u0421\u043a\u0440\u0438\u043f\u0442
+# Send Email
+sendEmail.title=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435
+sendEmail.description=\u041e\u0442\u043f\u0440\u0430\u0432\u043a\u0430 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f
+# Set Property
+setPropertyValue.title=\u0417\u0430\u0434\u0430\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430
+setPropertyValue.description=\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430
+
+# Edit Hold Reason
+editHoldReason.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
+editHoldReason.description=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
+# Relinquish Hold
+relinquishHold.title=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
+relinquishHold.description=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
+# Edit Review As Of Date
+editReviewAsOfDate.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443 \u043d\u0430 \u0434\u0430\u0442\u0443
+editReviewAsOfDate.description=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u043d\u0430 \u0434\u0430\u0442\u0443
+# Edit Disposition Action As Of Date
+editDispositionActionAsOfDate.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u043d\u0430 \u0434\u0430\u0442\u0443
+editDispositionActionAsOfDate.description=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u043d\u0430 \u0434\u0430\u0442\u0443
+# Broadcast Vital Record Definition
+broadcastVitalRecordDefinition.title=\u0420\u0430\u0437\u043e\u0441\u043b\u0430\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
+broadcastVitalRecordDefinition.description=\u0420\u0430\u0437\u043e\u0441\u043b\u0430\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
+# Broadcast Disposition Action Definition Update
+broadcastDispositionActionDefinitionUpdate.title=\u0420\u0430\u0437\u043e\u0441\u043b\u0430\u0442\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+broadcastDispositionActionDefinitionUpdate.description=\u0420\u0430\u0437\u043e\u0441\u043b\u0430\u0442\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+# Undo Event
+undoEvent.title=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435
+undoEvent.description=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435
+# Transfer Complete
+transferComplete.title=\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430
+transferComplete.description=\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430
+# Accession Complete
+accessionComplete.title=\u0414\u043e\u0441\u0442\u0443\u043f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d
+accessionComplete.description=\u0414\u043e\u0441\u0442\u0443\u043f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d
+# Split Email
+splitEmail.title=\u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435
+splitEmail.description=\u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435
+# Create Rentention Schedule
+createDispositionSchedule.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0433\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+createDispositionSchedule.description=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0433\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+# File Destruction Report
+fileDestructionReport.title=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0438 \u0444\u0430\u0439\u043b\u0430
+fileDestructionReport.description=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0438 \u0444\u0430\u0439\u043b\u0430
+# Cut off
+cutoff.title=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
+cutoff.description=\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c
+# Destroy
+destroy.title=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c
+destroy.description=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c
+# Reviewed
+reviewed.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0435\u043d\u043e
+reviewed.description=\u041f\u0440\u043e\u0432\u0435\u0440\u0435\u043d\u043e
+# Hide Record
+hide-record.title=\u0421\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
+hide-record.description=\u0421\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
+# Transfer
+transfer.title=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c
+transfer.description=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c
+# Uncut off
+unCutoff.title=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435
+unCutoff.description=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435
+# Accession
+accession.title=\u0414\u043e\u0441\u0442\u0443\u043f
+accession.description=\u0414\u043e\u0441\u0442\u0443\u043f
+# Retain
+retain.title=\u0425\u0440\u0430\u043d\u0438\u0442\u044c
+retain.description=\u0425\u0440\u0430\u043d\u0438\u0442\u044c
+# Add Record Types
+addRecordTypes.title=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u0438\u043f\u044b \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+addRecordTypes.description=\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u043e\u0432 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
+# File report
+fileReport.title=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043e\u0442\u0447\u0435\u0442 \u0432 \u0444\u0430\u0439\u043b
+fileReport.description=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043e\u0442\u0447\u0435\u0442 \u0432 \u0444\u0430\u0439\u043b
+# Delete Hold
+deleteHold.title=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
+deleteHold.description=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
+# Move DM record
+move-dm-record.title=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
+move-dm-record.description=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
+# Unlink from
+unlinkFrom.title=\u041e\u0442\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u043e\u0442
+unlinkFrom.description=\u041e\u0442\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u043e\u0442
+
+# Recordable version config
+recordable-version-config.title=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f
+recordable-version-config.description=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f
+recordable-version-config.version.display-label=\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0431\u044a\u044f\u0432\u043b\u044f\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u0438 \u043a\u0430\u043a \u0437\u0430\u043f\u0438\u0441\u0438
+
+# Action parameter constraints
+rm-ac-is-kind-kinds.record_category=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+rm-ac-is-kind-kinds.record_folder=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+rm-ac-is-kind-kinds.record=\u0417\u0430\u043f\u0438\u0441\u044c
+
+rm-ac-disposition-action-relative-positions.next=\u0414\u0430\u043b\u0435\u0435
+rm-ac-disposition-action-relative-positions.previous=\u041d\u0430\u0437\u0430\u0434
+rm-ac-disposition-action-relative-positions.any=\u041b\u044e\u0431\u043e\u0439
+
+ac-versions.none=\u041d\u0438\u043a\u043e\u0433\u0434\u0430
+ac-versions.major_only=\u0422\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0432\u0435\u0440\u0441\u0438\u0439
ac-versions.all=\u0414\u043b\u044f \u0432\u0441\u0435\u0445 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0438 \u0432\u0441\u043f\u043e\u043c\u043e\u0433\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u0432\u0435\u0440\u0441\u0438\u0439
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_zh_CN.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_zh_CN.properties
index 3dcd87f502..8ce93cfa0f 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_zh_CN.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_zh_CN.properties
@@ -1,211 +1,211 @@
-#
-# i18n for Records Management Action Conditions
-#
-# Are classified
-isClassified.title=\u6309\u4fdd\u7559\u8ba1\u5212\u5206\u7c7b
-isClassified.description=\u6309\u4fdd\u7559\u8ba1\u5212\u5c06\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u5206\u7c7b
-
-# Are cutoff
-isCutoff.title=\u4e2d\u65ad
-isCutoff.description=\u5df2\u4e2d\u65ad\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939
-
-# Are declared
-isDeclared.title=\u8bb0\u5f55\u5df2\u5b8c\u6210
-isDeclared.description=\u8bb0\u5f55\u5df2\u5b8c\u6210
-
-# Is on hold
-isFrozen.title=\u4fdd\u5b58\u4e2d
-isFrozen.description=\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u5728\u4fdd\u5b58\u4e2d
-
-# Are filed
-isRecordFiled.title=\u8bb0\u5f55\u5df2\u7acb\u5377
-isRecordFiled.description=\u8bb0\u5f55\u5df2\u7acb\u5377
-
-# Are closed record folders
-isRecordFolderClosed.title=\u8bb0\u5f55\u6587\u4ef6\u5939\u5df2\u5173\u95ed
-isRecordFolderClosed.description=\u8bb0\u5f55\u6587\u4ef6\u5939\u5df2\u5173\u95ed
-
-# Are vital
-isVital.title=\u6838\u5fc3\u8bb0\u5f55
-isVital.description=\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u4e3a\u6838\u5fc3\u8bb0\u5f55
-
-# Have Rentention Action
-hasDispositionAction.title=\u5177\u6709\u4fdd\u7559\u64cd\u4f5c
-hasDispositionAction.description=\u8bb0\u5f55\u548c\u6587\u4ef6\u5939\u5728\u6307\u5b9a\u7684\u76f8\u5173\u4f4d\u7f6e\u6267\u884c\u4e86\u6307\u5b9a\u7684\u76f8\u5173\u4fdd\u7559\u64cd\u4f5c
-
-# Are kind
-isKind.title=\u8bb0\u5f55\u7ba1\u7406\u9879\u76ee\u7684\u7c7b\u578b
-isKind.description=\u9879\u76ee\u4e3a\u5f52\u7c7b\u65b9\u6848\u7ec4\u4ef6\u7c7b\u578b
-isKind.kind.display-label=\u7c7b\u578b
-
-# Are Record Type
-isRecordType.title=\u5177\u6709\u8bb0\u5f55\u7c7b\u578b
-isRecordType.description=\u8bb0\u5f55\u5177\u6709\u6307\u5b9a\u7684\u8bb0\u5f55\u7c7b\u578b
-
-
-#
-# i18n for Records Management Actions
-#
-# Declare As Record
-create-record.title=\u58f0\u660e\u4e3a\u8bb0\u5f55
-create-record.description=\u5c06\u6587\u4ef6\u58f0\u660e\u4e3a\u8bb0\u5f55
-create-record.file-plan.display-label=\u5f52\u7c7b\u65b9\u6848
-create-record.hide-record.display-label=\u9690\u85cf\u8bb0\u5f55
-# Declare As Version Record
-declare-as-version-record.title=\u5c06\u7248\u672c\u58f0\u660e\u4e3a\u8bb0\u5f55
-declare-as-version-record.description=\u5c06\u6587\u4ef6\u7684\u6b64\u7248\u672c\u58f0\u660e\u4e3a\u8bb0\u5f55
-declare-as-version-record.file-plan.display-label=\u5f52\u7c7b\u65b9\u6848
-# Complete record
-declareRecord.title=\u5b8c\u6210\u8bb0\u5f55
-declareRecord.description=\u5b8c\u6210\u8bb0\u5f55
-# Reopens record
-undeclareRecord.title=\u91cd\u65b0\u6253\u5f00\u8bb0\u5f55
-undeclareRecord.description=\u91cd\u65b0\u6253\u5f00\u8bb0\u5f55
-# Open record folder
-openRecordFolder.title=\u6253\u5f00\u8bb0\u5f55\u6587\u4ef6\u5939
-openRecordFolder.description=\u6253\u5f00\u8bb0\u5f55\u6587\u4ef6\u5939
-# Close record folder
-closeRecordFolder.title=\u5173\u95ed\u8bb0\u5f55\u6587\u4ef6\u5939
-closeRecordFolder.description=\u5173\u95ed\u8bb0\u5f55\u6587\u4ef6\u5939
-# Complete event
-completeEvent.title=\u5b8c\u6210\u4e8b\u4ef6
-completeEvent.description=\u5b8c\u6210\u4e8b\u4ef6
-completeEvent.eventName.display-label=\u4e8b\u4ef6
-# Freeze
-freeze.title=\u4fdd\u5b58
-freeze.description=\u4fdd\u5b58\u8bb0\u5f55
-freeze.reason.display-label=\u539f\u56e0
-# Unfreeze
-unfreeze.title=\u53d6\u6d88\u4fdd\u5b58
-unfreeze.description=\u53d6\u6d88\u4fdd\u5b58\u8bb0\u5f55
-# File to
-fileTo.title=\u7acb\u5377\u81f3
-fileTo.description=\u5c06\u8bb0\u5f55\u7acb\u5377\u81f3\u6307\u5b9a\u8bb0\u5f55\u6587\u4ef6\u5939
-fileTo.path.display-label=\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u8def\u5f84
-fileTo.createRecordPath.display-label=\u521b\u5efa\u8bb0\u5f55\u8def\u5f84
-# Copy to
-copyTo.title=\u590d\u5236\u5230
-copyTo.description=\u5c06\u8bb0\u5f55\u590d\u5236\u81f3\u6307\u5b9a\u8bb0\u5f55\u6587\u4ef6\u5939
-copyTo.path.display-label=\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u8def\u5f84
-copyTo.createRecordPath.display-label=\u521b\u5efa\u8bb0\u5f55\u8def\u5f84
-# Move to
-moveTo.title=\u79fb\u52a8\u5230
-moveTo.description=\u5c06\u8bb0\u5f55\u79fb\u81f3\u6307\u5b9a\u8bb0\u5f55\u6587\u4ef6\u5939
-moveTo.path.display-label=\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u8def\u5f84
-moveTo.createRecordPath.display-label=\u521b\u5efa\u8bb0\u5f55\u8def\u5f84
-# Link to
-linkTo.title=\u94fe\u63a5\u5230
-linkTo.description=\u5c06\u8bb0\u5f55\u94fe\u63a5\u5230\u6307\u5b9a\u8bb0\u5f55\u6587\u4ef6\u5939
-linkTo.path.display-label=\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u8def\u5f84
-linkTo.createRecordPath.display-label=\u521b\u5efa\u8bb0\u5f55\u8def\u5f84
-# Reject
-reject.title=\u62d2\u7edd
-reject.description=\u62d2\u7edd\u8bb0\u5f55\u5e76\u5c06\u6587\u4ef6\u79fb\u52a8\u81f3\u5176\u539f\u59cb\u4f4d\u7f6e
-reject.reason.display-label=\u62d2\u7edd\u539f\u56e0
-# Request Information
-requestInfo.title=\u8bf7\u6c42\u4fe1\u606f
-requestInfo.description=\u5f00\u59cb\u8bf7\u6c42\u8bb0\u5f55\u7684\u66f4\u591a\u4fe1\u606f\u7684\u5de5\u4f5c\u6d41\u7a0b
-# Execute script
-executeScript.title=\u6267\u884c\u811a\u672c
-executeScript.description=\u6267\u884c\u811a\u672c
-executeScript.script-ref.display-label=\u811a\u672c
-# Send Email
-sendEmail.title=\u53d1\u9001\u7535\u5b50\u90ae\u4ef6
-sendEmail.description=\u53d1\u9001\u7535\u5b50\u90ae\u4ef6
-# Set Property
-setPropertyValue.title=\u8bbe\u7f6e\u5c5e\u6027\u503c
-setPropertyValue.description=\u8bbe\u7f6e\u5c5e\u6027\u503c
-
-# Edit Hold Reason
-editHoldReason.title=\u7f16\u8f91\u4fdd\u5b58\u539f\u56e0
-editHoldReason.description=\u7f16\u8f91\u4fdd\u5b58\u539f\u56e0
-# Relinquish Hold
-relinquishHold.title=\u653e\u5f03\u4fdd\u5b58
-relinquishHold.description=\u653e\u5f03\u4fdd\u5b58
-# Edit Review As Of Date
-editReviewAsOfDate.title=\u7f16\u8f91\u5ba1\u67e5\u622a\u6b62\u65e5\u671f
-editReviewAsOfDate.description=\u7f16\u8f91\u5ba1\u67e5\u622a\u6b62\u65e5\u671f
-# Edit Disposition Action As Of Date
-editDispositionActionAsOfDate.title=\u7f16\u8f91\u4fdd\u7559\u64cd\u4f5c\u622a\u6b62\u65e5\u671f
-editDispositionActionAsOfDate.description=\u7f16\u8f91\u4fdd\u7559\u64cd\u4f5c\u622a\u6b62\u65e5\u671f
-# Broadcast Vital Record Definition
-broadcastVitalRecordDefinition.title=\u5e7f\u64ad\u6838\u5fc3\u8bb0\u5f55\u5b9a\u4e49
-broadcastVitalRecordDefinition.description=\u5e7f\u64ad\u6838\u5fc3\u8bb0\u5f55\u5b9a\u4e49
-# Broadcast Disposition Action Definition Update
-broadcastDispositionActionDefinitionUpdate.title=\u5e7f\u64ad\u4fdd\u7559\u64cd\u4f5c\u5b9a\u4e49\u66f4\u65b0
-broadcastDispositionActionDefinitionUpdate.description=\u5e7f\u64ad\u4fdd\u7559\u64cd\u4f5c\u5b9a\u4e49\u66f4\u65b0
-# Undo Event
-undoEvent.title=\u64a4\u6d88\u4e8b\u4ef6
-undoEvent.description=\u64a4\u6d88\u4e8b\u4ef6
-# Transfer Complete
-transferComplete.title=\u79fb\u4ea4\u5b8c\u6210
-transferComplete.description=\u79fb\u4ea4\u5b8c\u6210
-# Accession Complete
-accessionComplete.title=\u5165\u7ba1\u5b8c\u6210
-accessionComplete.description=\u5165\u7ba1\u5b8c\u6210
-# Split Email
-splitEmail.title=\u62c6\u5206\u7535\u5b50\u90ae\u4ef6
-splitEmail.description=\u62c6\u5206\u7535\u5b50\u90ae\u4ef6
-# Create Rentention Schedule
-createDispositionSchedule.title=\u521b\u5efa\u4fdd\u7559\u8ba1\u5212
-createDispositionSchedule.description=\u521b\u5efa\u4fdd\u7559\u8ba1\u5212
-# File Destruction Report
-fileDestructionReport.title=\u7acb\u5377\u9500\u6bc1\u62a5\u544a
-fileDestructionReport.description=\u7acb\u5377\u9500\u6bc1\u62a5\u544a
-# Cut off
-cutoff.title=\u4e2d\u65ad
-cutoff.description=\u4e2d\u65ad
-# Destroy
-destroy.title=\u9500\u6bc1
-destroy.description=\u9500\u6bc1
-# Reviewed
-reviewed.title=\u5df2\u5ba1\u67e5
-reviewed.description=\u5df2\u5ba1\u67e5
-# Hide Record
-hide-record.title=\u9690\u85cf\u8bb0\u5f55
-hide-record.description=\u9690\u85cf\u8bb0\u5f55
-# Transfer
-transfer.title=\u79fb\u4ea4
-transfer.description=\u79fb\u4ea4
-# Uncut off
-unCutoff.title=\u64a4\u6d88\u4e2d\u65ad
-unCutoff.description=\u64a4\u6d88\u4e2d\u65ad
-# Accession
-accession.title=\u5165\u7ba1
-accession.description=\u5165\u7ba1
-# Retain
-retain.title=\u4fdd\u7559
-retain.description=\u4fdd\u7559
-# Add Record Types
-addRecordTypes.title=\u6dfb\u52a0\u8bb0\u5f55\u7c7b\u578b
-addRecordTypes.description=\u5c06\u6240\u9009\u7c7b\u578b\u6dfb\u52a0\u81f3\u8bb0\u5f55
-# File report
-fileReport.title=\u7acb\u5377\u62a5\u544a
-fileReport.description=\u7acb\u5377\u62a5\u544a
-# Delete Hold
-deleteHold.title=\u5220\u9664\u4fdd\u5b58
-deleteHold.description=\u5220\u9664\u4fdd\u5b58
-# Move DM record
-move-dm-record.title=\u79fb\u52a8\u8bb0\u5f55
-move-dm-record.description=\u79fb\u52a8\u8bb0\u5f55
-# Unlink from
-unlinkFrom.title=\u53d6\u6d88\u94fe\u63a5
-unlinkFrom.description=\u53d6\u6d88\u94fe\u63a5
-
-# Recordable version config
-recordable-version-config.title=\u81ea\u52a8\u58f0\u660e\u9009\u9879
-recordable-version-config.description=\u81ea\u52a8\u58f0\u660e\u9009\u9879
-recordable-version-config.version.display-label=\u81ea\u52a8\u58f0\u660e\u7248\u672c\u4e3a\u8bb0\u5f55
-
-# Action parameter constraints
-rm-ac-is-kind-kinds.record_category=\u8bb0\u5f55\u7c7b\u522b
-rm-ac-is-kind-kinds.record_folder=\u8bb0\u5f55\u6587\u4ef6\u5939
-rm-ac-is-kind-kinds.record=\u8bb0\u5f55
-
-rm-ac-disposition-action-relative-positions.next=\u4e0b\u4e00\u6b65
-rm-ac-disposition-action-relative-positions.previous=\u4e0a\u4e00\u6b65
-rm-ac-disposition-action-relative-positions.any=\u4efb\u4f55
-
-ac-versions.none=\u4ece\u4e0d
-ac-versions.major_only=\u4ec5\u9002\u7528\u4e8e\u4e3b\u8981\u7248\u672c
+#
+# i18n for Records Management Action Conditions
+#
+# Are classified
+isClassified.title=\u6309\u4fdd\u7559\u8ba1\u5212\u5206\u7c7b
+isClassified.description=\u6309\u4fdd\u7559\u8ba1\u5212\u5c06\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u5206\u7c7b
+
+# Are cutoff
+isCutoff.title=\u4e2d\u65ad
+isCutoff.description=\u5df2\u4e2d\u65ad\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939
+
+# Are declared
+isDeclared.title=\u8bb0\u5f55\u5df2\u5b8c\u6210
+isDeclared.description=\u8bb0\u5f55\u5df2\u5b8c\u6210
+
+# Is on hold
+isFrozen.title=\u4fdd\u5b58\u4e2d
+isFrozen.description=\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u5728\u4fdd\u5b58\u4e2d
+
+# Are filed
+isRecordFiled.title=\u8bb0\u5f55\u5df2\u7acb\u5377
+isRecordFiled.description=\u8bb0\u5f55\u5df2\u7acb\u5377
+
+# Are closed record folders
+isRecordFolderClosed.title=\u8bb0\u5f55\u6587\u4ef6\u5939\u5df2\u5173\u95ed
+isRecordFolderClosed.description=\u8bb0\u5f55\u6587\u4ef6\u5939\u5df2\u5173\u95ed
+
+# Are vital
+isVital.title=\u6838\u5fc3\u8bb0\u5f55
+isVital.description=\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u4e3a\u6838\u5fc3\u8bb0\u5f55
+
+# Have Rentention Action
+hasDispositionAction.title=\u5177\u6709\u4fdd\u7559\u64cd\u4f5c
+hasDispositionAction.description=\u8bb0\u5f55\u548c\u6587\u4ef6\u5939\u5728\u6307\u5b9a\u7684\u76f8\u5173\u4f4d\u7f6e\u6267\u884c\u4e86\u6307\u5b9a\u7684\u76f8\u5173\u4fdd\u7559\u64cd\u4f5c
+
+# Are kind
+isKind.title=\u8bb0\u5f55\u7ba1\u7406\u9879\u76ee\u7684\u7c7b\u578b
+isKind.description=\u9879\u76ee\u4e3a\u5f52\u7c7b\u65b9\u6848\u7ec4\u4ef6\u7c7b\u578b
+isKind.kind.display-label=\u7c7b\u578b
+
+# Are Record Type
+isRecordType.title=\u5177\u6709\u8bb0\u5f55\u7c7b\u578b
+isRecordType.description=\u8bb0\u5f55\u5177\u6709\u6307\u5b9a\u7684\u8bb0\u5f55\u7c7b\u578b
+
+
+#
+# i18n for Records Management Actions
+#
+# Declare As Record
+create-record.title=\u58f0\u660e\u4e3a\u8bb0\u5f55
+create-record.description=\u5c06\u6587\u4ef6\u58f0\u660e\u4e3a\u8bb0\u5f55
+create-record.file-plan.display-label=\u5f52\u7c7b\u65b9\u6848
+create-record.hide-record.display-label=\u9690\u85cf\u8bb0\u5f55
+# Declare As Version Record
+declare-as-version-record.title=\u5c06\u7248\u672c\u58f0\u660e\u4e3a\u8bb0\u5f55
+declare-as-version-record.description=\u5c06\u6587\u4ef6\u7684\u6b64\u7248\u672c\u58f0\u660e\u4e3a\u8bb0\u5f55
+declare-as-version-record.file-plan.display-label=\u5f52\u7c7b\u65b9\u6848
+# Complete record
+declareRecord.title=\u5b8c\u6210\u8bb0\u5f55
+declareRecord.description=\u5b8c\u6210\u8bb0\u5f55
+# Reopens record
+undeclareRecord.title=\u91cd\u65b0\u6253\u5f00\u8bb0\u5f55
+undeclareRecord.description=\u91cd\u65b0\u6253\u5f00\u8bb0\u5f55
+# Open record folder
+openRecordFolder.title=\u6253\u5f00\u8bb0\u5f55\u6587\u4ef6\u5939
+openRecordFolder.description=\u6253\u5f00\u8bb0\u5f55\u6587\u4ef6\u5939
+# Close record folder
+closeRecordFolder.title=\u5173\u95ed\u8bb0\u5f55\u6587\u4ef6\u5939
+closeRecordFolder.description=\u5173\u95ed\u8bb0\u5f55\u6587\u4ef6\u5939
+# Complete event
+completeEvent.title=\u5b8c\u6210\u4e8b\u4ef6
+completeEvent.description=\u5b8c\u6210\u4e8b\u4ef6
+completeEvent.eventName.display-label=\u4e8b\u4ef6
+# Freeze
+freeze.title=\u4fdd\u5b58
+freeze.description=\u4fdd\u5b58\u8bb0\u5f55
+freeze.reason.display-label=\u539f\u56e0
+# Unfreeze
+unfreeze.title=\u53d6\u6d88\u4fdd\u5b58
+unfreeze.description=\u53d6\u6d88\u4fdd\u5b58\u8bb0\u5f55
+# File to
+fileTo.title=\u7acb\u5377\u81f3
+fileTo.description=\u5c06\u8bb0\u5f55\u7acb\u5377\u81f3\u6307\u5b9a\u8bb0\u5f55\u6587\u4ef6\u5939
+fileTo.path.display-label=\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u8def\u5f84
+fileTo.createRecordPath.display-label=\u521b\u5efa\u8bb0\u5f55\u8def\u5f84
+# Copy to
+copyTo.title=\u590d\u5236\u5230
+copyTo.description=\u5c06\u8bb0\u5f55\u590d\u5236\u81f3\u6307\u5b9a\u8bb0\u5f55\u6587\u4ef6\u5939
+copyTo.path.display-label=\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u8def\u5f84
+copyTo.createRecordPath.display-label=\u521b\u5efa\u8bb0\u5f55\u8def\u5f84
+# Move to
+moveTo.title=\u79fb\u52a8\u5230
+moveTo.description=\u5c06\u8bb0\u5f55\u79fb\u81f3\u6307\u5b9a\u8bb0\u5f55\u6587\u4ef6\u5939
+moveTo.path.display-label=\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u8def\u5f84
+moveTo.createRecordPath.display-label=\u521b\u5efa\u8bb0\u5f55\u8def\u5f84
+# Link to
+linkTo.title=\u94fe\u63a5\u5230
+linkTo.description=\u5c06\u8bb0\u5f55\u94fe\u63a5\u5230\u6307\u5b9a\u8bb0\u5f55\u6587\u4ef6\u5939
+linkTo.path.display-label=\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u8def\u5f84
+linkTo.createRecordPath.display-label=\u521b\u5efa\u8bb0\u5f55\u8def\u5f84
+# Reject
+reject.title=\u62d2\u7edd
+reject.description=\u62d2\u7edd\u8bb0\u5f55\u5e76\u5c06\u6587\u4ef6\u79fb\u52a8\u81f3\u5176\u539f\u59cb\u4f4d\u7f6e
+reject.reason.display-label=\u62d2\u7edd\u539f\u56e0
+# Request Information
+requestInfo.title=\u8bf7\u6c42\u4fe1\u606f
+requestInfo.description=\u5f00\u59cb\u8bf7\u6c42\u8bb0\u5f55\u7684\u66f4\u591a\u4fe1\u606f\u7684\u5de5\u4f5c\u6d41\u7a0b
+# Execute script
+executeScript.title=\u6267\u884c\u811a\u672c
+executeScript.description=\u6267\u884c\u811a\u672c
+executeScript.script-ref.display-label=\u811a\u672c
+# Send Email
+sendEmail.title=\u53d1\u9001\u7535\u5b50\u90ae\u4ef6
+sendEmail.description=\u53d1\u9001\u7535\u5b50\u90ae\u4ef6
+# Set Property
+setPropertyValue.title=\u8bbe\u7f6e\u5c5e\u6027\u503c
+setPropertyValue.description=\u8bbe\u7f6e\u5c5e\u6027\u503c
+
+# Edit Hold Reason
+editHoldReason.title=\u7f16\u8f91\u4fdd\u5b58\u539f\u56e0
+editHoldReason.description=\u7f16\u8f91\u4fdd\u5b58\u539f\u56e0
+# Relinquish Hold
+relinquishHold.title=\u653e\u5f03\u4fdd\u5b58
+relinquishHold.description=\u653e\u5f03\u4fdd\u5b58
+# Edit Review As Of Date
+editReviewAsOfDate.title=\u7f16\u8f91\u5ba1\u67e5\u622a\u6b62\u65e5\u671f
+editReviewAsOfDate.description=\u7f16\u8f91\u5ba1\u67e5\u622a\u6b62\u65e5\u671f
+# Edit Disposition Action As Of Date
+editDispositionActionAsOfDate.title=\u7f16\u8f91\u4fdd\u7559\u64cd\u4f5c\u622a\u6b62\u65e5\u671f
+editDispositionActionAsOfDate.description=\u7f16\u8f91\u4fdd\u7559\u64cd\u4f5c\u622a\u6b62\u65e5\u671f
+# Broadcast Vital Record Definition
+broadcastVitalRecordDefinition.title=\u5e7f\u64ad\u6838\u5fc3\u8bb0\u5f55\u5b9a\u4e49
+broadcastVitalRecordDefinition.description=\u5e7f\u64ad\u6838\u5fc3\u8bb0\u5f55\u5b9a\u4e49
+# Broadcast Disposition Action Definition Update
+broadcastDispositionActionDefinitionUpdate.title=\u5e7f\u64ad\u4fdd\u7559\u64cd\u4f5c\u5b9a\u4e49\u66f4\u65b0
+broadcastDispositionActionDefinitionUpdate.description=\u5e7f\u64ad\u4fdd\u7559\u64cd\u4f5c\u5b9a\u4e49\u66f4\u65b0
+# Undo Event
+undoEvent.title=\u64a4\u6d88\u4e8b\u4ef6
+undoEvent.description=\u64a4\u6d88\u4e8b\u4ef6
+# Transfer Complete
+transferComplete.title=\u79fb\u4ea4\u5b8c\u6210
+transferComplete.description=\u79fb\u4ea4\u5b8c\u6210
+# Accession Complete
+accessionComplete.title=\u5165\u7ba1\u5b8c\u6210
+accessionComplete.description=\u5165\u7ba1\u5b8c\u6210
+# Split Email
+splitEmail.title=\u62c6\u5206\u7535\u5b50\u90ae\u4ef6
+splitEmail.description=\u62c6\u5206\u7535\u5b50\u90ae\u4ef6
+# Create Rentention Schedule
+createDispositionSchedule.title=\u521b\u5efa\u4fdd\u7559\u8ba1\u5212
+createDispositionSchedule.description=\u521b\u5efa\u4fdd\u7559\u8ba1\u5212
+# File Destruction Report
+fileDestructionReport.title=\u7acb\u5377\u9500\u6bc1\u62a5\u544a
+fileDestructionReport.description=\u7acb\u5377\u9500\u6bc1\u62a5\u544a
+# Cut off
+cutoff.title=\u4e2d\u65ad
+cutoff.description=\u4e2d\u65ad
+# Destroy
+destroy.title=\u9500\u6bc1
+destroy.description=\u9500\u6bc1
+# Reviewed
+reviewed.title=\u5df2\u5ba1\u67e5
+reviewed.description=\u5df2\u5ba1\u67e5
+# Hide Record
+hide-record.title=\u9690\u85cf\u8bb0\u5f55
+hide-record.description=\u9690\u85cf\u8bb0\u5f55
+# Transfer
+transfer.title=\u79fb\u4ea4
+transfer.description=\u79fb\u4ea4
+# Uncut off
+unCutoff.title=\u64a4\u6d88\u4e2d\u65ad
+unCutoff.description=\u64a4\u6d88\u4e2d\u65ad
+# Accession
+accession.title=\u5165\u7ba1
+accession.description=\u5165\u7ba1
+# Retain
+retain.title=\u4fdd\u7559
+retain.description=\u4fdd\u7559
+# Add Record Types
+addRecordTypes.title=\u6dfb\u52a0\u8bb0\u5f55\u7c7b\u578b
+addRecordTypes.description=\u5c06\u6240\u9009\u7c7b\u578b\u6dfb\u52a0\u81f3\u8bb0\u5f55
+# File report
+fileReport.title=\u7acb\u5377\u62a5\u544a
+fileReport.description=\u7acb\u5377\u62a5\u544a
+# Delete Hold
+deleteHold.title=\u5220\u9664\u4fdd\u5b58
+deleteHold.description=\u5220\u9664\u4fdd\u5b58
+# Move DM record
+move-dm-record.title=\u79fb\u52a8\u8bb0\u5f55
+move-dm-record.description=\u79fb\u52a8\u8bb0\u5f55
+# Unlink from
+unlinkFrom.title=\u53d6\u6d88\u94fe\u63a5
+unlinkFrom.description=\u53d6\u6d88\u94fe\u63a5
+
+# Recordable version config
+recordable-version-config.title=\u81ea\u52a8\u58f0\u660e\u9009\u9879
+recordable-version-config.description=\u81ea\u52a8\u58f0\u660e\u9009\u9879
+recordable-version-config.version.display-label=\u81ea\u52a8\u58f0\u660e\u7248\u672c\u4e3a\u8bb0\u5f55
+
+# Action parameter constraints
+rm-ac-is-kind-kinds.record_category=\u8bb0\u5f55\u7c7b\u522b
+rm-ac-is-kind-kinds.record_folder=\u8bb0\u5f55\u6587\u4ef6\u5939
+rm-ac-is-kind-kinds.record=\u8bb0\u5f55
+
+rm-ac-disposition-action-relative-positions.next=\u4e0b\u4e00\u6b65
+rm-ac-disposition-action-relative-positions.previous=\u4e0a\u4e00\u6b65
+rm-ac-disposition-action-relative-positions.any=\u4efb\u4f55
+
+ac-versions.none=\u4ece\u4e0d
+ac-versions.major_only=\u4ec5\u9002\u7528\u4e8e\u4e3b\u8981\u7248\u672c
ac-versions.all=\u9002\u7528\u4e8e\u6240\u6709\u4e3b\u8981\u548c\u6b21\u8981\u7248\u672c
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service.properties
index 72795b810f..bccf2546cb 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service.properties
@@ -1,16 +1,16 @@
-rm.admin.service-not-init=The customization service hasn't been started.
-rm.admin.not-customisable=The class {0} isn't customizable.
-rm.admin.invalid-custom-aspect=We couldn't find custom aspect {0} for customisable class {1}.
-rm.admin.property-already-exists=Property {0} already exists.
-rm.admin.cannot-apply-constraint=You can't apply constraint {0} to property {1} with datatype {2}. (expected: dataType = TEXT)
-rm.admin.prop-exist=We couldn't find custom property {0}.
-rm.admin.custom-prop-exist=The custom model doesn't contain the property {0}.
-rm.admin.unknown-aspect=Unknown aspect {0}.
-rm.admin.constraint-exists=The constraint {0} already exists.
-rm.admin.contraint-cannot-find=We couldn't find the definition for constraint {0}.
-rm.admin.unexpected_type_constraint=Unexpected type {0} for constraint {1}. The expected is {2}.
-rm.admin.custom-model-not-found=We couldn't find custom model {0}.
-rm.admin.custom-model-no-content=The custom model has no content. (nodeRef={0})
-rm.admin.error-write-custom-model=We hit a problem writing custom model content. (nodeRef={0}).
-rm.admin.error-client-id=We couldn't generate the client ID because it's already in use. (clientid={0})
+rm.admin.service-not-init=The customization service hasn't been started.
+rm.admin.not-customisable=The class {0} isn't customizable.
+rm.admin.invalid-custom-aspect=We couldn't find custom aspect {0} for customisable class {1}.
+rm.admin.property-already-exists=Property {0} already exists.
+rm.admin.cannot-apply-constraint=You can't apply constraint {0} to property {1} with datatype {2}. (expected: dataType = TEXT)
+rm.admin.prop-exist=We couldn't find custom property {0}.
+rm.admin.custom-prop-exist=The custom model doesn't contain the property {0}.
+rm.admin.unknown-aspect=Unknown aspect {0}.
+rm.admin.constraint-exists=The constraint {0} already exists.
+rm.admin.contraint-cannot-find=We couldn't find the definition for constraint {0}.
+rm.admin.unexpected_type_constraint=Unexpected type {0} for constraint {1}. The expected is {2}.
+rm.admin.custom-model-not-found=We couldn't find custom model {0}.
+rm.admin.custom-model-no-content=The custom model has no content. (nodeRef={0})
+rm.admin.error-write-custom-model=We hit a problem writing custom model content. (nodeRef={0}).
+rm.admin.error-client-id=We couldn't generate the client ID because it's already in use. (clientid={0})
rm.admin.error-split-id=We couldn't split ID {0}. because separator {1} isn't present.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_de.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_de.properties
index b74d43631e..eb2075564c 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_de.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_de.properties
@@ -1,16 +1,16 @@
-rm.admin.service-not-init=Der Anpassungsservice wurde nicht gestartet.
-rm.admin.not-customisable=Die Klasse {0} kann nicht angepasst werden.
-rm.admin.invalid-custom-aspect=Der benutzerdefinierte Aspekt {0} f\u00fcr die anpassbare Klasse {1} wurde nicht gefunden.
-rm.admin.property-already-exists=Eigenschaft {0} bereits vorhanden.
-rm.admin.cannot-apply-constraint=Randbedingung {0} kann nicht auf Eigenschaft {1} mit Datentyp {2} angewendet werden. (erwartet: Datentyp = TEXT)
-rm.admin.prop-exist=Benutzerdefinierte Eigenschaft {0} wurde nicht gefunden.
-rm.admin.custom-prop-exist=Das benutzerdefinierte Modell enth\u00e4lt nicht die Eigenschaft {0}.
-rm.admin.unknown-aspect=Unbekannter Aspekt {0}.
-rm.admin.constraint-exists=Randbedingung {0} bereits vorhanden.
-rm.admin.contraint-cannot-find=Die Definition f\u00fcr Randbedingung {0} wurde nicht gefunden.
-rm.admin.unexpected_type_constraint=Unerwarteter Typ {0} f\u00fcr Randbedingung {1}. Erwartet wird {2}.
-rm.admin.custom-model-not-found=Benutzerdefiniertes Modell {0} wurde nicht gefunden.
-rm.admin.custom-model-no-content=Benutzerdefiniertes Modell hat keinen Inhalt. (nodeRef={0})
-rm.admin.error-write-custom-model=Beim Schreiben von benutzerdefiniertem Modellinhalt ist ein Problem aufgetreten. (nodeRef={0}).
-rm.admin.error-client-id=Client-ID konnte nicht generiert werden, da diese bereits verwendet wird. (clientid={0})
+rm.admin.service-not-init=Der Anpassungsservice wurde nicht gestartet.
+rm.admin.not-customisable=Die Klasse {0} kann nicht angepasst werden.
+rm.admin.invalid-custom-aspect=Der benutzerdefinierte Aspekt {0} f\u00fcr die anpassbare Klasse {1} wurde nicht gefunden.
+rm.admin.property-already-exists=Eigenschaft {0} bereits vorhanden.
+rm.admin.cannot-apply-constraint=Randbedingung {0} kann nicht auf Eigenschaft {1} mit Datentyp {2} angewendet werden. (erwartet: Datentyp = TEXT)
+rm.admin.prop-exist=Benutzerdefinierte Eigenschaft {0} wurde nicht gefunden.
+rm.admin.custom-prop-exist=Das benutzerdefinierte Modell enth\u00e4lt nicht die Eigenschaft {0}.
+rm.admin.unknown-aspect=Unbekannter Aspekt {0}.
+rm.admin.constraint-exists=Randbedingung {0} bereits vorhanden.
+rm.admin.contraint-cannot-find=Die Definition f\u00fcr Randbedingung {0} wurde nicht gefunden.
+rm.admin.unexpected_type_constraint=Unerwarteter Typ {0} f\u00fcr Randbedingung {1}. Erwartet wird {2}.
+rm.admin.custom-model-not-found=Benutzerdefiniertes Modell {0} wurde nicht gefunden.
+rm.admin.custom-model-no-content=Benutzerdefiniertes Modell hat keinen Inhalt. (nodeRef={0})
+rm.admin.error-write-custom-model=Beim Schreiben von benutzerdefiniertem Modellinhalt ist ein Problem aufgetreten. (nodeRef={0}).
+rm.admin.error-client-id=Client-ID konnte nicht generiert werden, da diese bereits verwendet wird. (clientid={0})
rm.admin.error-split-id=ID {0} kann nicht getrennt werden, da das Trennzeichen {1} nicht vorhanden ist.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_es.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_es.properties
index ac4387ef8c..4f2219488a 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_es.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_es.properties
@@ -1,16 +1,16 @@
-rm.admin.service-not-init=El servicio de personalizaci\u00f3n no se ha iniciado.
-rm.admin.not-customisable=La clase ''{0}'' no es personalizable.
-rm.admin.invalid-custom-aspect=No se pudo encontrar el aspecto personalizado ''{0}'' para la clase personalizable ''{1}''.
-rm.admin.property-already-exists=La propiedad ''{0}'' ya existe.
-rm.admin.cannot-apply-constraint=No puede aplicar la restricci\u00f3n ''{0}'' a la propiedad ''{1}'' con el tipo de datos ''{2}''. (previsto: tipo de datos = TEXT)
-rm.admin.prop-exist=No se pudo encontrar la propiedad personalizada ''{0}''.
-rm.admin.custom-prop-exist=El modelo personalizado no contiene la propiedad ''{0}''.
-rm.admin.unknown-aspect=Aspecto desconocido ''{0}''.
-rm.admin.constraint-exists=La restricci\u00f3n ''{0}'' ya existe.
-rm.admin.contraint-cannot-find=No se pudo encontrar la definici\u00f3n para la restricci\u00f3n ''{0}''.
-rm.admin.unexpected_type_constraint=Tipo inesperado ''{0}'' para la restricci\u00f3n ''{1}''. Lo esperado es ''{2}''.
-rm.admin.custom-model-not-found=No se pudo encontrar el modelo personalizado ''{0}''.
-rm.admin.custom-model-no-content=El modelo personalizado no tiene contenido. (nodeRef={0})
-rm.admin.error-write-custom-model=Se produjo un problema al escribir el contenido del modelo personalizado. (nodeRef={0})
-rm.admin.error-client-id=No se pudo generar el ID de cliente porque ya est\u00e1 en uso. (clientid={0})
+rm.admin.service-not-init=El servicio de personalizaci\u00f3n no se ha iniciado.
+rm.admin.not-customisable=La clase ''{0}'' no es personalizable.
+rm.admin.invalid-custom-aspect=No se pudo encontrar el aspecto personalizado ''{0}'' para la clase personalizable ''{1}''.
+rm.admin.property-already-exists=La propiedad ''{0}'' ya existe.
+rm.admin.cannot-apply-constraint=No puede aplicar la restricci\u00f3n ''{0}'' a la propiedad ''{1}'' con el tipo de datos ''{2}''. (previsto: tipo de datos = TEXT)
+rm.admin.prop-exist=No se pudo encontrar la propiedad personalizada ''{0}''.
+rm.admin.custom-prop-exist=El modelo personalizado no contiene la propiedad ''{0}''.
+rm.admin.unknown-aspect=Aspecto desconocido ''{0}''.
+rm.admin.constraint-exists=La restricci\u00f3n ''{0}'' ya existe.
+rm.admin.contraint-cannot-find=No se pudo encontrar la definici\u00f3n para la restricci\u00f3n ''{0}''.
+rm.admin.unexpected_type_constraint=Tipo inesperado ''{0}'' para la restricci\u00f3n ''{1}''. Lo esperado es ''{2}''.
+rm.admin.custom-model-not-found=No se pudo encontrar el modelo personalizado ''{0}''.
+rm.admin.custom-model-no-content=El modelo personalizado no tiene contenido. (nodeRef={0})
+rm.admin.error-write-custom-model=Se produjo un problema al escribir el contenido del modelo personalizado. (nodeRef={0})
+rm.admin.error-client-id=No se pudo generar el ID de cliente porque ya est\u00e1 en uso. (clientid={0})
rm.admin.error-split-id=No se pudo separar el ID ''{0}''. porque el separador ''{1}'' no est\u00e1 presente.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_fr.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_fr.properties
index bf03899a0a..fb29061e3f 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_fr.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_fr.properties
@@ -1,16 +1,16 @@
-rm.admin.service-not-init=Le service de personnalisation n'a pas \u00e9t\u00e9 d\u00e9marr\u00e9.
-rm.admin.not-customisable=La classe {0} n''est pas personnalisable.
-rm.admin.invalid-custom-aspect=L''aspect personnalis\u00e9 {0} pour la classe personnalisable {1} est introuvable.
-rm.admin.property-already-exists=La propri\u00e9t\u00e9 {0} existe d\u00e9j\u00e0.
-rm.admin.cannot-apply-constraint=Impossible d''appliquer la contrainte {0} \u00e0 la propri\u00e9t\u00e9 {1} avec le datatype {2}. (attendu\u00a0: dataType = TEXT)
-rm.admin.prop-exist=La m\u00e9tadonn\u00e9e personnalis\u00e9e {0} est introuvable.
-rm.admin.custom-prop-exist=Le mod\u00e8le personnalis\u00e9 ne contient pas la propri\u00e9t\u00e9 {0}.
-rm.admin.unknown-aspect=Aspect {0} inconnu.
-rm.admin.constraint-exists=La contrainte {0} existe d\u00e9j\u00e0.
-rm.admin.contraint-cannot-find=La d\u00e9finition de la contrainte {0} est introuvable.
-rm.admin.unexpected_type_constraint=Type {0} inattendu pour la contrainte {1}. Attendu\u00a0: {2}
-rm.admin.custom-model-not-found=Le mod\u00e8le personnalis\u00e9 {0} est introuvable.
-rm.admin.custom-model-no-content=Le mod\u00e8le personnalis\u00e9 n''a pas de contenu. (nodeRef={0})
-rm.admin.error-write-custom-model=Un probl\u00e8me est survenu pendant l''\u00e9criture du contenu du mod\u00e8le personnalis\u00e9. (nodeRef={0}).
-rm.admin.error-client-id=Impossible de g\u00e9n\u00e9rer l''ID client car il est d\u00e9j\u00e0 en cours d''utilisation. (clientid={0})
+rm.admin.service-not-init=Le service de personnalisation n'a pas \u00e9t\u00e9 d\u00e9marr\u00e9.
+rm.admin.not-customisable=La classe {0} n''est pas personnalisable.
+rm.admin.invalid-custom-aspect=L''aspect personnalis\u00e9 {0} pour la classe personnalisable {1} est introuvable.
+rm.admin.property-already-exists=La propri\u00e9t\u00e9 {0} existe d\u00e9j\u00e0.
+rm.admin.cannot-apply-constraint=Impossible d''appliquer la contrainte {0} \u00e0 la propri\u00e9t\u00e9 {1} avec le datatype {2}. (attendu\u00a0: dataType = TEXT)
+rm.admin.prop-exist=La m\u00e9tadonn\u00e9e personnalis\u00e9e {0} est introuvable.
+rm.admin.custom-prop-exist=Le mod\u00e8le personnalis\u00e9 ne contient pas la propri\u00e9t\u00e9 {0}.
+rm.admin.unknown-aspect=Aspect {0} inconnu.
+rm.admin.constraint-exists=La contrainte {0} existe d\u00e9j\u00e0.
+rm.admin.contraint-cannot-find=La d\u00e9finition de la contrainte {0} est introuvable.
+rm.admin.unexpected_type_constraint=Type {0} inattendu pour la contrainte {1}. Attendu\u00a0: {2}
+rm.admin.custom-model-not-found=Le mod\u00e8le personnalis\u00e9 {0} est introuvable.
+rm.admin.custom-model-no-content=Le mod\u00e8le personnalis\u00e9 n''a pas de contenu. (nodeRef={0})
+rm.admin.error-write-custom-model=Un probl\u00e8me est survenu pendant l''\u00e9criture du contenu du mod\u00e8le personnalis\u00e9. (nodeRef={0}).
+rm.admin.error-client-id=Impossible de g\u00e9n\u00e9rer l''ID client car il est d\u00e9j\u00e0 en cours d''utilisation. (clientid={0})
rm.admin.error-split-id=Impossible de fractionner l''ID {0}. Le s\u00e9parateur {1} n''est pas pr\u00e9sent.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_it.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_it.properties
index 815ba21b3c..238c74cf67 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_it.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_it.properties
@@ -1,16 +1,16 @@
-rm.admin.service-not-init=Il servizio di personalizzazione non \u00e8 stato avviato.
-rm.admin.not-customisable=Non \u00e8 possibile personalizzare la classe {0}.
-rm.admin.invalid-custom-aspect=Impossibile trovare un aspetto personalizzato {0} per la classe personalizzabile {1}.
-rm.admin.property-already-exists=La propriet\u00e0 {0} \u00e8 gi\u00e0 esistente.
-rm.admin.cannot-apply-constraint=Impossibile applicare il vincolo {0} alla propriet\u00e0 {1} con il tipo di dati {2}. (expected: dataType = TEXT)
-rm.admin.prop-exist=Impossibile trovare la propriet\u00e0 personalizzata {0}.
-rm.admin.custom-prop-exist=Il modello personalizzato non contiene la propriet\u00e0 {0}.
-rm.admin.unknown-aspect=Aspetto {0} sconosciuto.
-rm.admin.constraint-exists=Il vincolo {0} \u00e8 gi\u00e0 esistente.
-rm.admin.contraint-cannot-find=Impossibile trovare la definizione per il vincolo {0}.
-rm.admin.unexpected_type_constraint=Tipo {0} inaspettato per vincolo {1}. Ci\u00f2 che si aspetta \u00e8 {2}.
-rm.admin.custom-model-not-found=Impossibile trovare il modello personalizzato {0}.
-rm.admin.custom-model-no-content=Il modello personalizzato non ha contenuti. (nodeRef={0})
-rm.admin.error-write-custom-model=Si \u00e8 verificato un problema durante la scrittura dei contenuti del modello personalizzato. (nodeRef={0})
-rm.admin.error-client-id=Impossibile generare l''ID client, poich\u00e9 gi\u00e0 in uso. (clientid={0})
+rm.admin.service-not-init=Il servizio di personalizzazione non \u00e8 stato avviato.
+rm.admin.not-customisable=Non \u00e8 possibile personalizzare la classe {0}.
+rm.admin.invalid-custom-aspect=Impossibile trovare un aspetto personalizzato {0} per la classe personalizzabile {1}.
+rm.admin.property-already-exists=La propriet\u00e0 {0} \u00e8 gi\u00e0 esistente.
+rm.admin.cannot-apply-constraint=Impossibile applicare il vincolo {0} alla propriet\u00e0 {1} con il tipo di dati {2}. (expected: dataType = TEXT)
+rm.admin.prop-exist=Impossibile trovare la propriet\u00e0 personalizzata {0}.
+rm.admin.custom-prop-exist=Il modello personalizzato non contiene la propriet\u00e0 {0}.
+rm.admin.unknown-aspect=Aspetto {0} sconosciuto.
+rm.admin.constraint-exists=Il vincolo {0} \u00e8 gi\u00e0 esistente.
+rm.admin.contraint-cannot-find=Impossibile trovare la definizione per il vincolo {0}.
+rm.admin.unexpected_type_constraint=Tipo {0} inaspettato per vincolo {1}. Ci\u00f2 che si aspetta \u00e8 {2}.
+rm.admin.custom-model-not-found=Impossibile trovare il modello personalizzato {0}.
+rm.admin.custom-model-no-content=Il modello personalizzato non ha contenuti. (nodeRef={0})
+rm.admin.error-write-custom-model=Si \u00e8 verificato un problema durante la scrittura dei contenuti del modello personalizzato. (nodeRef={0})
+rm.admin.error-client-id=Impossibile generare l''ID client, poich\u00e9 gi\u00e0 in uso. (clientid={0})
rm.admin.error-split-id=Impossibile dividere l''ID ''{0}'' poich\u00e9 non \u00e8 presente il separatore {1}.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_ja.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_ja.properties
index 9032ff5947..37e6f1e4a3 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_ja.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_ja.properties
@@ -1,16 +1,16 @@
-rm.admin.service-not-init=\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u30b5\u30fc\u30d3\u30b9\u304c\u958b\u59cb\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
-rm.admin.not-customisable=\u30af\u30e9\u30b9 ''{0}'' \u306f\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3067\u304d\u307e\u305b\u3093\u3002
-rm.admin.invalid-custom-aspect=\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u53ef\u80fd\u306a\u30af\u30e9\u30b9 ''{1}'' \u306e\u30ab\u30b9\u30bf\u30e0\u30a2\u30b9\u30da\u30af\u30c8 ''{0}'' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002
-rm.admin.property-already-exists=\u30d7\u30ed\u30d1\u30c6\u30a3 ''{0}'' \u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002
-rm.admin.cannot-apply-constraint=\u5236\u7d04 ''{0}'' \u306f\u3001\u30c7\u30fc\u30bf\u578b\u304c ''{2}'' \u306e\u30d7\u30ed\u30d1\u30c6\u30a3 ''{1}'' \u306b\u306f\u9069\u7528\u3067\u304d\u307e\u305b\u3093\u3002 (expected: dataType = TEXT)
-rm.admin.prop-exist=\u30ab\u30b9\u30bf\u30e0\u30d7\u30ed\u30d1\u30c6\u30a3 ''{0}'' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002
-rm.admin.custom-prop-exist=\u3053\u306e\u30ab\u30b9\u30bf\u30e0\u30e2\u30c7\u30eb\u306b\u306f\u30d7\u30ed\u30d1\u30c6\u30a3 ''{0}'' \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3002
-rm.admin.unknown-aspect=\u4e0d\u660e\u306a\u30a2\u30b9\u30da\u30af\u30c8 ''{0}''\u3002
-rm.admin.constraint-exists=\u5236\u7d04 ''{0}'' \u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002
-rm.admin.contraint-cannot-find=\u5236\u7d04 ''{0}'' \u306e\u5b9a\u7fa9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002
-rm.admin.unexpected_type_constraint=\u30bf\u30a4\u30d7 ''{0}'' \u306f\u5236\u7d04 ''{1}'' \u306b\u9069\u3057\u307e\u305b\u3093\u3002 \u6709\u52b9\u306a\u30bf\u30a4\u30d7\u306f ''{2}'' \u3067\u3059\u3002
-rm.admin.custom-model-not-found=\u30ab\u30b9\u30bf\u30e0\u30e2\u30c7\u30eb ''{0}'' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002
-rm.admin.custom-model-no-content=\u3053\u306e\u30ab\u30b9\u30bf\u30e0\u30e2\u30c7\u30eb\u306b\u306f\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u3042\u308a\u307e\u305b\u3093\u3002 (nodeRef={0})
-rm.admin.error-write-custom-model=\u30ab\u30b9\u30bf\u30e0\u30e2\u30c7\u30eb\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u66f8\u304d\u8fbc\u307f\u4e2d\u306b\u554f\u984c\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 (nodeRef={0}).
-rm.admin.error-client-id=\u3053\u306e\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 ID \u306f\u3059\u3067\u306b\u4f7f\u7528\u3055\u308c\u3066\u3044\u308b\u305f\u3081\u3001\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002 (clientid={0})
+rm.admin.service-not-init=\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u30b5\u30fc\u30d3\u30b9\u304c\u958b\u59cb\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
+rm.admin.not-customisable=\u30af\u30e9\u30b9 ''{0}'' \u306f\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3067\u304d\u307e\u305b\u3093\u3002
+rm.admin.invalid-custom-aspect=\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u53ef\u80fd\u306a\u30af\u30e9\u30b9 ''{1}'' \u306e\u30ab\u30b9\u30bf\u30e0\u30a2\u30b9\u30da\u30af\u30c8 ''{0}'' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002
+rm.admin.property-already-exists=\u30d7\u30ed\u30d1\u30c6\u30a3 ''{0}'' \u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002
+rm.admin.cannot-apply-constraint=\u5236\u7d04 ''{0}'' \u306f\u3001\u30c7\u30fc\u30bf\u578b\u304c ''{2}'' \u306e\u30d7\u30ed\u30d1\u30c6\u30a3 ''{1}'' \u306b\u306f\u9069\u7528\u3067\u304d\u307e\u305b\u3093\u3002 (expected: dataType = TEXT)
+rm.admin.prop-exist=\u30ab\u30b9\u30bf\u30e0\u30d7\u30ed\u30d1\u30c6\u30a3 ''{0}'' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002
+rm.admin.custom-prop-exist=\u3053\u306e\u30ab\u30b9\u30bf\u30e0\u30e2\u30c7\u30eb\u306b\u306f\u30d7\u30ed\u30d1\u30c6\u30a3 ''{0}'' \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3002
+rm.admin.unknown-aspect=\u4e0d\u660e\u306a\u30a2\u30b9\u30da\u30af\u30c8 ''{0}''\u3002
+rm.admin.constraint-exists=\u5236\u7d04 ''{0}'' \u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002
+rm.admin.contraint-cannot-find=\u5236\u7d04 ''{0}'' \u306e\u5b9a\u7fa9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002
+rm.admin.unexpected_type_constraint=\u30bf\u30a4\u30d7 ''{0}'' \u306f\u5236\u7d04 ''{1}'' \u306b\u9069\u3057\u307e\u305b\u3093\u3002 \u6709\u52b9\u306a\u30bf\u30a4\u30d7\u306f ''{2}'' \u3067\u3059\u3002
+rm.admin.custom-model-not-found=\u30ab\u30b9\u30bf\u30e0\u30e2\u30c7\u30eb ''{0}'' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002
+rm.admin.custom-model-no-content=\u3053\u306e\u30ab\u30b9\u30bf\u30e0\u30e2\u30c7\u30eb\u306b\u306f\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u3042\u308a\u307e\u305b\u3093\u3002 (nodeRef={0})
+rm.admin.error-write-custom-model=\u30ab\u30b9\u30bf\u30e0\u30e2\u30c7\u30eb\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u66f8\u304d\u8fbc\u307f\u4e2d\u306b\u554f\u984c\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 (nodeRef={0}).
+rm.admin.error-client-id=\u3053\u306e\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 ID \u306f\u3059\u3067\u306b\u4f7f\u7528\u3055\u308c\u3066\u3044\u308b\u305f\u3081\u3001\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002 (clientid={0})
rm.admin.error-split-id=\u533a\u5207\u308a\u6587\u5b57 ({1}) \u304c\u306a\u3044\u305f\u3081\u3001ID ''{0}'' \u3092\u5206\u5272\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_nb.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_nb.properties
index 60217ae49c..9f42e6440a 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_nb.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_nb.properties
@@ -1,16 +1,16 @@
-rm.admin.service-not-init=Tilpasningstjenesten er ikke startet.
-rm.admin.not-customisable=Klassen {0} er ikke tilpasset.
-rm.admin.invalid-custom-aspect=Finner ikke det tilpassede aspektet {0} for klassen {1} som kan tilpasses.
-rm.admin.property-already-exists=Egenskapen {0} finnes allerede.
-rm.admin.cannot-apply-constraint=Kan ikke p\u00e5f\u00f8re restriksjonen {0} p\u00e5 egenskapen {1} med datatype {2}. (forventet datatype = TEKST)
-rm.admin.prop-exist=Kunne ikke finne den tilpassede egenskapen {0}.
-rm.admin.custom-prop-exist=Den tilpassede modellen kan ikke inneholde egenskapen {0}.
-rm.admin.unknown-aspect=Ukjent aspekt {0}.
-rm.admin.constraint-exists=Restriksjonen {0} finnes allerede.
-rm.admin.contraint-cannot-find=Kunne ikke finne definisjonen til restriksjonen {0}.
-rm.admin.unexpected_type_constraint=Uventet type {0} ved restriksjonen {1}. {2} var forventet...
-rm.admin.custom-model-not-found=Kunne ikke finne den tilpassede modellen {0}.
-rm.admin.custom-model-no-content=Den tilpassede modellen har ikke innhold. (nodeRef={0})
-rm.admin.error-write-custom-model=Det oppsto et problem med \u00e5 skrive innholdet til den tilpassede modellen. (nodeRef={0}).
-rm.admin.error-client-id=Kunne ikke generere klient-ID for den er allerede i bruk. (clientid={0})
+rm.admin.service-not-init=Tilpasningstjenesten er ikke startet.
+rm.admin.not-customisable=Klassen {0} er ikke tilpasset.
+rm.admin.invalid-custom-aspect=Finner ikke det tilpassede aspektet {0} for klassen {1} som kan tilpasses.
+rm.admin.property-already-exists=Egenskapen {0} finnes allerede.
+rm.admin.cannot-apply-constraint=Kan ikke p\u00e5f\u00f8re restriksjonen {0} p\u00e5 egenskapen {1} med datatype {2}. (forventet datatype = TEKST)
+rm.admin.prop-exist=Kunne ikke finne den tilpassede egenskapen {0}.
+rm.admin.custom-prop-exist=Den tilpassede modellen kan ikke inneholde egenskapen {0}.
+rm.admin.unknown-aspect=Ukjent aspekt {0}.
+rm.admin.constraint-exists=Restriksjonen {0} finnes allerede.
+rm.admin.contraint-cannot-find=Kunne ikke finne definisjonen til restriksjonen {0}.
+rm.admin.unexpected_type_constraint=Uventet type {0} ved restriksjonen {1}. {2} var forventet...
+rm.admin.custom-model-not-found=Kunne ikke finne den tilpassede modellen {0}.
+rm.admin.custom-model-no-content=Den tilpassede modellen har ikke innhold. (nodeRef={0})
+rm.admin.error-write-custom-model=Det oppsto et problem med \u00e5 skrive innholdet til den tilpassede modellen. (nodeRef={0}).
+rm.admin.error-client-id=Kunne ikke generere klient-ID for den er allerede i bruk. (clientid={0})
rm.admin.error-split-id=Kunne ikke dele ID-en {0}. fordi grensetegnet {1} ikke fantes.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_nl.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_nl.properties
index d4c43a8453..8518804253 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_nl.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_nl.properties
@@ -1,16 +1,16 @@
-rm.admin.service-not-init=De aanpassingsservice is niet gestart.
-rm.admin.not-customisable=De klasse {0} kan niet worden aangepast.
-rm.admin.invalid-custom-aspect=Kan het aangepaste aspect {0} voor aanpasbare klasse {1} niet vinden.
-rm.admin.property-already-exists=Eigenschap {0} bestaat al.
-rm.admin.cannot-apply-constraint=U kunt beperking {0} niet toepassen op eigenschap {1} met gegevenstype {2}. (verwacht: dataType = TEXT)
-rm.admin.prop-exist=Kan aangepaste eigenschap {0} niet vinden.
-rm.admin.custom-prop-exist=Het aangepaste model bevat de eigenschap {0} niet.
-rm.admin.unknown-aspect=Onbekend aspect {0}.
-rm.admin.constraint-exists=De beperking {0} bestaat al.
-rm.admin.contraint-cannot-find=Kan de definitie voor beperking {0} niet vinden.
-rm.admin.unexpected_type_constraint=Onverwacht type {0} voor beperking {1}. Het verwachte type is {2}.
-rm.admin.custom-model-not-found=Kan aangepast model {0} niet vinden.
-rm.admin.custom-model-no-content=Het aangepaste model heeft geen content. (nodeRef={0})
-rm.admin.error-write-custom-model=Er is een probleem opgetreden bij het schrijven van aangepaste-modelcontent. (nodeRef={0}).
-rm.admin.error-client-id=Kan de client-id niet genereren omdat deze al in gebruik is. (clientid={0})
+rm.admin.service-not-init=De aanpassingsservice is niet gestart.
+rm.admin.not-customisable=De klasse {0} kan niet worden aangepast.
+rm.admin.invalid-custom-aspect=Kan het aangepaste aspect {0} voor aanpasbare klasse {1} niet vinden.
+rm.admin.property-already-exists=Eigenschap {0} bestaat al.
+rm.admin.cannot-apply-constraint=U kunt beperking {0} niet toepassen op eigenschap {1} met gegevenstype {2}. (verwacht: dataType = TEXT)
+rm.admin.prop-exist=Kan aangepaste eigenschap {0} niet vinden.
+rm.admin.custom-prop-exist=Het aangepaste model bevat de eigenschap {0} niet.
+rm.admin.unknown-aspect=Onbekend aspect {0}.
+rm.admin.constraint-exists=De beperking {0} bestaat al.
+rm.admin.contraint-cannot-find=Kan de definitie voor beperking {0} niet vinden.
+rm.admin.unexpected_type_constraint=Onverwacht type {0} voor beperking {1}. Het verwachte type is {2}.
+rm.admin.custom-model-not-found=Kan aangepast model {0} niet vinden.
+rm.admin.custom-model-no-content=Het aangepaste model heeft geen content. (nodeRef={0})
+rm.admin.error-write-custom-model=Er is een probleem opgetreden bij het schrijven van aangepaste-modelcontent. (nodeRef={0}).
+rm.admin.error-client-id=Kan de client-id niet genereren omdat deze al in gebruik is. (clientid={0})
rm.admin.error-split-id=Kan id {0} niet opsplitsen omdat scheiding {1} niet aanwezig is.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_pt_BR.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_pt_BR.properties
index 4a14fe870c..ed7091a363 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_pt_BR.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_pt_BR.properties
@@ -1,16 +1,16 @@
-rm.admin.service-not-init=O servi\u00e7o de personaliza\u00e7\u00e3o n\u00e3o foi iniciado.
-rm.admin.not-customisable=A classe {0} n\u00e3o \u00e9 personaliz\u00e1vel.
-rm.admin.invalid-custom-aspect=N\u00e3o foi poss\u00edvel encontrar aspecto personalizado {0} para a classe personaliz\u00e1vel {1}.
-rm.admin.property-already-exists=A propriedade {0} j\u00e1 existe.
-rm.admin.cannot-apply-constraint=N\u00e3o \u00e9 poss\u00edvel aplicar a reserva {0} \u00e0 propriedade {1} com o tipo de dados {2}. (esperado: dataType = TEXT)
-rm.admin.prop-exist=N\u00e3o foi poss\u00edvel encontrar a propriedade personalizada {0}.
-rm.admin.custom-prop-exist=O modelo personalizado n\u00e3o cont\u00e9m a propriedade {0}.
-rm.admin.unknown-aspect=Aspecto desconhecido {0}.
-rm.admin.constraint-exists=A reserva {0} j\u00e1 existe.
-rm.admin.contraint-cannot-find=N\u00e3o foi poss\u00edvel encontrar a defini\u00e7\u00e3o para a reserva {0}.
-rm.admin.unexpected_type_constraint=Tipo inesperado {0} para a reserva {1}. O tipo esperado \u00e9 {2}.
-rm.admin.custom-model-not-found=N\u00e3o foi poss\u00edvel encontrar o modelo personalizado {0}.
-rm.admin.custom-model-no-content=O modelo personalizado n\u00e3o tem conte\u00fado. (nodeRef={0})
-rm.admin.error-write-custom-model=Encontramos um problema ao gravar o conte\u00fado do modelo personalizado. (nodeRef={0}).
-rm.admin.error-client-id=N\u00e3o foi poss\u00edvel gerar o ID do cliente, pois ele j\u00e1 est\u00e1 em uso. (clientid={0})
+rm.admin.service-not-init=O servi\u00e7o de personaliza\u00e7\u00e3o n\u00e3o foi iniciado.
+rm.admin.not-customisable=A classe {0} n\u00e3o \u00e9 personaliz\u00e1vel.
+rm.admin.invalid-custom-aspect=N\u00e3o foi poss\u00edvel encontrar aspecto personalizado {0} para a classe personaliz\u00e1vel {1}.
+rm.admin.property-already-exists=A propriedade {0} j\u00e1 existe.
+rm.admin.cannot-apply-constraint=N\u00e3o \u00e9 poss\u00edvel aplicar a reserva {0} \u00e0 propriedade {1} com o tipo de dados {2}. (esperado: dataType = TEXT)
+rm.admin.prop-exist=N\u00e3o foi poss\u00edvel encontrar a propriedade personalizada {0}.
+rm.admin.custom-prop-exist=O modelo personalizado n\u00e3o cont\u00e9m a propriedade {0}.
+rm.admin.unknown-aspect=Aspecto desconhecido {0}.
+rm.admin.constraint-exists=A reserva {0} j\u00e1 existe.
+rm.admin.contraint-cannot-find=N\u00e3o foi poss\u00edvel encontrar a defini\u00e7\u00e3o para a reserva {0}.
+rm.admin.unexpected_type_constraint=Tipo inesperado {0} para a reserva {1}. O tipo esperado \u00e9 {2}.
+rm.admin.custom-model-not-found=N\u00e3o foi poss\u00edvel encontrar o modelo personalizado {0}.
+rm.admin.custom-model-no-content=O modelo personalizado n\u00e3o tem conte\u00fado. (nodeRef={0})
+rm.admin.error-write-custom-model=Encontramos um problema ao gravar o conte\u00fado do modelo personalizado. (nodeRef={0}).
+rm.admin.error-client-id=N\u00e3o foi poss\u00edvel gerar o ID do cliente, pois ele j\u00e1 est\u00e1 em uso. (clientid={0})
rm.admin.error-split-id=N\u00e3o foi poss\u00edvel dividir o ID {0}. pois o separador {1} n\u00e3o est\u00e1 presente.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_ru.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_ru.properties
index acfe4805bd..63c64d52d9 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_ru.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_ru.properties
@@ -1,16 +1,16 @@
-rm.admin.service-not-init=\u0421\u043b\u0443\u0436\u0431\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0435 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430.
-rm.admin.not-customisable=\u041a\u043b\u0430\u0441\u0441 {0} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u044b\u043c.
-rm.admin.invalid-custom-aspect=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043d\u0430\u0439\u0442\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0430\u0441\u043f\u0435\u043a\u0442 {0} \u0434\u043b\u044f \u043d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u043e\u0433\u043e \u043a\u043b\u0430\u0441\u0441\u0430 {1}.
-rm.admin.property-already-exists=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u043e {0} \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.
-rm.admin.cannot-apply-constraint=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 {0} \u043a \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0443 {1} \u0441 \u0442\u0438\u043f\u043e\u043c \u0434\u0430\u043d\u043d\u044b\u0445 {2}. (\u043e\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044f: dataType = TEXT)
-rm.admin.prop-exist=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043d\u0430\u0439\u0442\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0430\u0441\u043f\u0435\u043a\u0442 {0}.
-rm.admin.custom-prop-exist=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u043c\u043e\u0434\u0435\u043b\u044c \u043d\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u043e {0}.
-rm.admin.unknown-aspect=\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u0430\u0441\u043f\u0435\u043a\u0442 {0}.
-rm.admin.constraint-exists=\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 {0} \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.
-rm.admin.contraint-cannot-find=\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 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f {0}.
-rm.admin.unexpected_type_constraint=\u041d\u0435\u043f\u0440\u0435\u0434\u0432\u0438\u0434\u0435\u043d\u043d\u044b\u0439 \u0442\u0438\u043f {0} \u0434\u043b\u044f \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f {1}. \u041e\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044f: {2}.
-rm.admin.custom-model-not-found=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043d\u0430\u0439\u0442\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0443\u044e \u043c\u043e\u0434\u0435\u043b\u044c {0}.
-rm.admin.custom-model-no-content=\u041d\u0435\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043e \u0432 \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u043c\u043e\u0434\u0435\u043b\u0438. (nodeRef={0})
-rm.admin.error-write-custom-model=\u041f\u0440\u0438 \u0437\u0430\u043f\u0438\u0441\u0438 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0439 \u043c\u043e\u0434\u0435\u043b\u0438 \u0432\u043e\u0437\u043d\u0438\u043a\u043b\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430. (nodeRef={0}).
-rm.admin.error-client-id=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u043b\u0438\u0435\u043d\u0442\u0430: \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f. (clientid={0})
+rm.admin.service-not-init=\u0421\u043b\u0443\u0436\u0431\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0435 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430.
+rm.admin.not-customisable=\u041a\u043b\u0430\u0441\u0441 {0} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u044b\u043c.
+rm.admin.invalid-custom-aspect=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043d\u0430\u0439\u0442\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0430\u0441\u043f\u0435\u043a\u0442 {0} \u0434\u043b\u044f \u043d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u043e\u0433\u043e \u043a\u043b\u0430\u0441\u0441\u0430 {1}.
+rm.admin.property-already-exists=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u043e {0} \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.
+rm.admin.cannot-apply-constraint=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 {0} \u043a \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0443 {1} \u0441 \u0442\u0438\u043f\u043e\u043c \u0434\u0430\u043d\u043d\u044b\u0445 {2}. (\u043e\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044f: dataType = TEXT)
+rm.admin.prop-exist=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043d\u0430\u0439\u0442\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0430\u0441\u043f\u0435\u043a\u0442 {0}.
+rm.admin.custom-prop-exist=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u043c\u043e\u0434\u0435\u043b\u044c \u043d\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u043e {0}.
+rm.admin.unknown-aspect=\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u0430\u0441\u043f\u0435\u043a\u0442 {0}.
+rm.admin.constraint-exists=\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 {0} \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.
+rm.admin.contraint-cannot-find=\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 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f {0}.
+rm.admin.unexpected_type_constraint=\u041d\u0435\u043f\u0440\u0435\u0434\u0432\u0438\u0434\u0435\u043d\u043d\u044b\u0439 \u0442\u0438\u043f {0} \u0434\u043b\u044f \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f {1}. \u041e\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044f: {2}.
+rm.admin.custom-model-not-found=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043d\u0430\u0439\u0442\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0443\u044e \u043c\u043e\u0434\u0435\u043b\u044c {0}.
+rm.admin.custom-model-no-content=\u041d\u0435\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043e \u0432 \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u043c\u043e\u0434\u0435\u043b\u0438. (nodeRef={0})
+rm.admin.error-write-custom-model=\u041f\u0440\u0438 \u0437\u0430\u043f\u0438\u0441\u0438 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0439 \u043c\u043e\u0434\u0435\u043b\u0438 \u0432\u043e\u0437\u043d\u0438\u043a\u043b\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430. (nodeRef={0}).
+rm.admin.error-client-id=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u043b\u0438\u0435\u043d\u0442\u0430: \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0443\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f. (clientid={0})
rm.admin.error-split-id=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 {0}: \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0441\u0438\u043c\u0432\u043e\u043b-\u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b\u044c {1}.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_zh_CN.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_zh_CN.properties
index 5a851f5f19..12b84d6341 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_zh_CN.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/admin-service_zh_CN.properties
@@ -1,16 +1,16 @@
-rm.admin.service-not-init=\u5c1a\u672a\u542f\u52a8\u81ea\u5b9a\u4e49\u670d\u52a1\u3002
-rm.admin.not-customisable=\u7c7b\u522b {0} \u4e0d\u53ef\u81ea\u5b9a\u4e49\u3002
-rm.admin.invalid-custom-aspect=\u6211\u4eec\u65e0\u6cd5\u67e5\u627e\u53ef\u81ea\u5b9a\u4e49\u7c7b\u522b {1} \u7684\u81ea\u5b9a\u4e49\u5207\u9762 {0}\u3002
-rm.admin.property-already-exists=\u5c5e\u6027 {0} \u5df2\u5b58\u5728\u3002
-rm.admin.cannot-apply-constraint=\u60a8\u65e0\u6cd5\u5c06\u7ea6\u675f {0} \u5e94\u7528\u4e8e\u6570\u636e\u7c7b\u578b\u4e3a {2} \u7684\u5c5e\u6027 {1}\u3002 \uff08\u9884\u671f\uff1adataType = TEXT\uff09
-rm.admin.prop-exist=\u6211\u4eec\u65e0\u6cd5\u67e5\u627e\u81ea\u5b9a\u4e49\u5c5e\u6027\uff1a{0}\u3002
-rm.admin.custom-prop-exist=\u81ea\u5b9a\u4e49\u6a21\u578b\u4e0d\u5305\u542b\u5c5e\u6027 {0}\u3002
-rm.admin.unknown-aspect=\u672a\u77e5\u5207\u9762 {0}\u3002
-rm.admin.constraint-exists=\u7ea6\u675f {0} \u5df2\u5b58\u5728\u3002
-rm.admin.contraint-cannot-find=\u6211\u4eec\u65e0\u6cd5\u67e5\u627e\u7ea6\u675f {0} \u7684\u5b9a\u4e49\u3002
-rm.admin.unexpected_type_constraint=\u7ea6\u675f {1} \u7684\u610f\u5916\u7c7b\u578b {0}\u3002 \u9884\u671f\u4e3a {2}\u3002
-rm.admin.custom-model-not-found=\u6211\u4eec\u65e0\u6cd5\u67e5\u627e\u81ea\u5b9a\u4e49\u6a21\u578b\uff1a{0}\u3002
-rm.admin.custom-model-no-content=\u81ea\u5b9a\u4e49\u6a21\u578b\u6ca1\u6709\u5185\u5bb9\u3002 (nodeRef={0})
-rm.admin.error-write-custom-model=\u6211\u4eec\u5728\u7f16\u5199\u81ea\u5b9a\u4e49\u6a21\u578b\u5185\u5bb9\u65f6\u9047\u5230\u95ee\u9898\u3002 (nodeRef={0})\u3002
-rm.admin.error-client-id=\u6211\u4eec\u65e0\u6cd5\u751f\u6210\u5ba2\u6237\u7aef ID\uff0c\u56e0\u4e3a\u5b83\u5df2\u88ab\u4f7f\u7528\u3002 (clientid={0})
+rm.admin.service-not-init=\u5c1a\u672a\u542f\u52a8\u81ea\u5b9a\u4e49\u670d\u52a1\u3002
+rm.admin.not-customisable=\u7c7b\u522b {0} \u4e0d\u53ef\u81ea\u5b9a\u4e49\u3002
+rm.admin.invalid-custom-aspect=\u6211\u4eec\u65e0\u6cd5\u67e5\u627e\u53ef\u81ea\u5b9a\u4e49\u7c7b\u522b {1} \u7684\u81ea\u5b9a\u4e49\u5207\u9762 {0}\u3002
+rm.admin.property-already-exists=\u5c5e\u6027 {0} \u5df2\u5b58\u5728\u3002
+rm.admin.cannot-apply-constraint=\u60a8\u65e0\u6cd5\u5c06\u7ea6\u675f {0} \u5e94\u7528\u4e8e\u6570\u636e\u7c7b\u578b\u4e3a {2} \u7684\u5c5e\u6027 {1}\u3002 \uff08\u9884\u671f\uff1adataType = TEXT\uff09
+rm.admin.prop-exist=\u6211\u4eec\u65e0\u6cd5\u67e5\u627e\u81ea\u5b9a\u4e49\u5c5e\u6027\uff1a{0}\u3002
+rm.admin.custom-prop-exist=\u81ea\u5b9a\u4e49\u6a21\u578b\u4e0d\u5305\u542b\u5c5e\u6027 {0}\u3002
+rm.admin.unknown-aspect=\u672a\u77e5\u5207\u9762 {0}\u3002
+rm.admin.constraint-exists=\u7ea6\u675f {0} \u5df2\u5b58\u5728\u3002
+rm.admin.contraint-cannot-find=\u6211\u4eec\u65e0\u6cd5\u67e5\u627e\u7ea6\u675f {0} \u7684\u5b9a\u4e49\u3002
+rm.admin.unexpected_type_constraint=\u7ea6\u675f {1} \u7684\u610f\u5916\u7c7b\u578b {0}\u3002 \u9884\u671f\u4e3a {2}\u3002
+rm.admin.custom-model-not-found=\u6211\u4eec\u65e0\u6cd5\u67e5\u627e\u81ea\u5b9a\u4e49\u6a21\u578b\uff1a{0}\u3002
+rm.admin.custom-model-no-content=\u81ea\u5b9a\u4e49\u6a21\u578b\u6ca1\u6709\u5185\u5bb9\u3002 (nodeRef={0})
+rm.admin.error-write-custom-model=\u6211\u4eec\u5728\u7f16\u5199\u81ea\u5b9a\u4e49\u6a21\u578b\u5185\u5bb9\u65f6\u9047\u5230\u95ee\u9898\u3002 (nodeRef={0})\u3002
+rm.admin.error-client-id=\u6211\u4eec\u65e0\u6cd5\u751f\u6210\u5ba2\u6237\u7aef ID\uff0c\u56e0\u4e3a\u5b83\u5df2\u88ab\u4f7f\u7528\u3002 (clientid={0})
rm.admin.error-split-id=\u6211\u4eec\u65e0\u6cd5\u62c6\u5206 ID {0}\uff0c \u56e0\u4e3a\u5206\u9694\u7b26 {1} \u4e0d\u5b58\u5728\u3002
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service.properties
index e00b96333c..f4f9ea6937 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service.properties
@@ -1,17 +1,17 @@
-rm.audit.updated-metadata=Updated Metadata
-rm.audit.created-object=Created Object
-rm.audit.delete-object=Delete Object
-rm.audit.login-succeeded=Login Successful
-rm.audit.login-failed=Login Unsuccessful
-rm.audit.create-person=Create User
-rm.audit.linkTo=Link to
-rm.audit.moveTo=Move to
-rm.audit.copyTo=Copy to
-rm.audit.fileTo=File to
-rm.audit.audit-start=Audit Start
-rm.audit.audit-stop=Audit Stop
-rm.audit.audit-clear=Audit Clear
-rm.audit.audit-view=Audit View
-rm.audit.trail-file-fail=We couldn't generate an audit report. Check the audit details and try again, or speak with your I.T. Dept.
-rm.audit.audit-report=Audit Report
+rm.audit.updated-metadata=Updated Metadata
+rm.audit.created-object=Created Object
+rm.audit.delete-object=Delete Object
+rm.audit.login-succeeded=Login Successful
+rm.audit.login-failed=Login Unsuccessful
+rm.audit.create-person=Create User
+rm.audit.linkTo=Link to
+rm.audit.moveTo=Move to
+rm.audit.copyTo=Copy to
+rm.audit.fileTo=File to
+rm.audit.audit-start=Audit Start
+rm.audit.audit-stop=Audit Stop
+rm.audit.audit-clear=Audit Clear
+rm.audit.audit-view=Audit View
+rm.audit.trail-file-fail=We couldn't generate an audit report. Check the audit details and try again, or speak with your I.T. Dept.
+rm.audit.audit-report=Audit Report
recordable-version-config=Auto-Declare Options
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_de.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_de.properties
index e5c55ab3d9..701288eee2 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_de.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_de.properties
@@ -1,17 +1,17 @@
-rm.audit.updated-metadata=Metadaten aktualisiert
-rm.audit.created-object=Objekt erstellt
-rm.audit.delete-object=Objekt gel\u00f6scht
-rm.audit.login-succeeded=Anmeldung erfolgreich
-rm.audit.login-failed=Anmeldung fehlgeschlagen
-rm.audit.create-person=Benutzer anlegen
-rm.audit.linkTo=Link zu
-rm.audit.moveTo=Verschieben nach
-rm.audit.copyTo=Kopieren nach
-rm.audit.fileTo=Ablegen unter
-rm.audit.audit-start=Audit starten
-rm.audit.audit-stop=Audit stoppen
-rm.audit.audit-clear=Audit l\u00f6schen
-rm.audit.audit-view=Audit anzeigen
-rm.audit.trail-file-fail=Audit-Bericht konnte nicht generiert werden. \u00dcberpr\u00fcfen Sie die Audit-Details und versuchen Sie es erneut. Sie k\u00f6nnen sich auch an Ihre IT-Abteilung wenden.
-rm.audit.audit-report=Audit-Bericht
+rm.audit.updated-metadata=Metadaten aktualisiert
+rm.audit.created-object=Objekt erstellt
+rm.audit.delete-object=Objekt gel\u00f6scht
+rm.audit.login-succeeded=Anmeldung erfolgreich
+rm.audit.login-failed=Anmeldung fehlgeschlagen
+rm.audit.create-person=Benutzer anlegen
+rm.audit.linkTo=Link zu
+rm.audit.moveTo=Verschieben nach
+rm.audit.copyTo=Kopieren nach
+rm.audit.fileTo=Ablegen unter
+rm.audit.audit-start=Audit starten
+rm.audit.audit-stop=Audit stoppen
+rm.audit.audit-clear=Audit l\u00f6schen
+rm.audit.audit-view=Audit anzeigen
+rm.audit.trail-file-fail=Audit-Bericht konnte nicht generiert werden. \u00dcberpr\u00fcfen Sie die Audit-Details und versuchen Sie es erneut. Sie k\u00f6nnen sich auch an Ihre IT-Abteilung wenden.
+rm.audit.audit-report=Audit-Bericht
recordable-version-config=Optionen f\u00fcr automatische Deklaration
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_es.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_es.properties
index e3b2551df5..7b92873769 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_es.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_es.properties
@@ -1,17 +1,17 @@
-rm.audit.updated-metadata=Metadatos actualizados
-rm.audit.created-object=Objeto creado
-rm.audit.delete-object=Eliminar objeto
-rm.audit.login-succeeded=Inicio de sesi\u00f3n correcto
-rm.audit.login-failed=Error de inicio de sesi\u00f3n
-rm.audit.create-person=Crear usuario
-rm.audit.linkTo=Enlace a
-rm.audit.moveTo=Mover a
-rm.audit.copyTo=Copiar a
-rm.audit.fileTo=Archivar en
-rm.audit.audit-start=Iniciar auditor\u00eda
-rm.audit.audit-stop=Detener auditor\u00eda
-rm.audit.audit-clear=Limpiar auditor\u00eda
-rm.audit.audit-view=Ver auditor\u00eda
-rm.audit.trail-file-fail=No se pudo generar un informe de auditor\u00eda. Compruebe los detalles de auditor\u00eda y vuelva a intentarlo, o hable con el dep. de TI.
-rm.audit.audit-report=Informe de auditor\u00eda
+rm.audit.updated-metadata=Metadatos actualizados
+rm.audit.created-object=Objeto creado
+rm.audit.delete-object=Eliminar objeto
+rm.audit.login-succeeded=Inicio de sesi\u00f3n correcto
+rm.audit.login-failed=Error de inicio de sesi\u00f3n
+rm.audit.create-person=Crear usuario
+rm.audit.linkTo=Enlace a
+rm.audit.moveTo=Mover a
+rm.audit.copyTo=Copiar a
+rm.audit.fileTo=Archivar en
+rm.audit.audit-start=Iniciar auditor\u00eda
+rm.audit.audit-stop=Detener auditor\u00eda
+rm.audit.audit-clear=Limpiar auditor\u00eda
+rm.audit.audit-view=Ver auditor\u00eda
+rm.audit.trail-file-fail=No se pudo generar un informe de auditor\u00eda. Compruebe los detalles de auditor\u00eda y vuelva a intentarlo, o hable con el dep. de TI.
+rm.audit.audit-report=Informe de auditor\u00eda
recordable-version-config=Opciones de declaraci\u00f3n autom\u00e1tica
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_fr.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_fr.properties
index e56c749129..5f817fd90e 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_fr.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_fr.properties
@@ -1,17 +1,17 @@
-rm.audit.updated-metadata=M\u00e9tadonn\u00e9es mises \u00e0 jour
-rm.audit.created-object=Objet cr\u00e9\u00e9
-rm.audit.delete-object=Supprimer l'objet
-rm.audit.login-succeeded=La connexion a abouti
-rm.audit.login-failed=La connexion a \u00e9chou\u00e9
-rm.audit.create-person=Cr\u00e9er un utilisateur
-rm.audit.linkTo=Lier \u00e0
-rm.audit.moveTo=D\u00e9placer vers...
-rm.audit.copyTo=Copier vers...
-rm.audit.fileTo=Archiver dans
-rm.audit.audit-start=Audit d\u00e9marr\u00e9
-rm.audit.audit-stop=Audit arr\u00eat\u00e9
-rm.audit.audit-clear=Audit supprim\u00e9
-rm.audit.audit-view=Audit affich\u00e9
-rm.audit.trail-file-fail=Impossible de g\u00e9n\u00e9rer un rapport d'audit. V\u00e9rifiez les informations d'audit et r\u00e9essayez ou contactez votre DSI.
-rm.audit.audit-report=Rapport d'audit
+rm.audit.updated-metadata=M\u00e9tadonn\u00e9es mises \u00e0 jour
+rm.audit.created-object=Objet cr\u00e9\u00e9
+rm.audit.delete-object=Supprimer l'objet
+rm.audit.login-succeeded=La connexion a abouti
+rm.audit.login-failed=La connexion a \u00e9chou\u00e9
+rm.audit.create-person=Cr\u00e9er un utilisateur
+rm.audit.linkTo=Lier \u00e0
+rm.audit.moveTo=D\u00e9placer vers...
+rm.audit.copyTo=Copier vers...
+rm.audit.fileTo=Archiver dans
+rm.audit.audit-start=Audit d\u00e9marr\u00e9
+rm.audit.audit-stop=Audit arr\u00eat\u00e9
+rm.audit.audit-clear=Audit supprim\u00e9
+rm.audit.audit-view=Audit affich\u00e9
+rm.audit.trail-file-fail=Impossible de g\u00e9n\u00e9rer un rapport d'audit. V\u00e9rifiez les informations d'audit et r\u00e9essayez ou contactez votre DSI.
+rm.audit.audit-report=Rapport d'audit
recordable-version-config=Options de d\u00e9claration automatique
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_it.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_it.properties
index 4b11723317..6d5d99557f 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_it.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_it.properties
@@ -1,17 +1,17 @@
-rm.audit.updated-metadata=Metadati aggiornati
-rm.audit.created-object=Oggetto creato
-rm.audit.delete-object=Elimina oggetto
-rm.audit.login-succeeded=Login riuscito
-rm.audit.login-failed=Login non riuscito
-rm.audit.create-person=Crea utente
-rm.audit.linkTo=Collega a
-rm.audit.moveTo=Sposta in
-rm.audit.copyTo=Copia in
-rm.audit.fileTo=Archivia in
-rm.audit.audit-start=Avvio audit
-rm.audit.audit-stop=Interruzione audit
-rm.audit.audit-clear=Cancellazione audit
-rm.audit.audit-view=Visualizzazione audit
-rm.audit.trail-file-fail=Impossibile generare il rapporto di audit. Verificare i dettagli dell'audit e riprovare o contattare il proprio dipartimento I.T. I.T.
-rm.audit.audit-report=Rapporto audit
+rm.audit.updated-metadata=Metadati aggiornati
+rm.audit.created-object=Oggetto creato
+rm.audit.delete-object=Elimina oggetto
+rm.audit.login-succeeded=Login riuscito
+rm.audit.login-failed=Login non riuscito
+rm.audit.create-person=Crea utente
+rm.audit.linkTo=Collega a
+rm.audit.moveTo=Sposta in
+rm.audit.copyTo=Copia in
+rm.audit.fileTo=Archivia in
+rm.audit.audit-start=Avvio audit
+rm.audit.audit-stop=Interruzione audit
+rm.audit.audit-clear=Cancellazione audit
+rm.audit.audit-view=Visualizzazione audit
+rm.audit.trail-file-fail=Impossibile generare il rapporto di audit. Verificare i dettagli dell'audit e riprovare o contattare il proprio dipartimento I.T. I.T.
+rm.audit.audit-report=Rapporto audit
recordable-version-config=Opzioni di dichiarazione automatica
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_ja.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_ja.properties
index b5da3d1ef0..7505e1aeea 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_ja.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_ja.properties
@@ -1,17 +1,17 @@
-rm.audit.updated-metadata=\u66f4\u65b0\u6e08\u307f\u30e1\u30bf\u30c7\u30fc\u30bf
-rm.audit.created-object=\u4f5c\u6210\u6e08\u307f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8
-rm.audit.delete-object=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u524a\u9664
-rm.audit.login-succeeded=\u30ed\u30b0\u30a4\u30f3\u6210\u529f
-rm.audit.login-failed=\u30ed\u30b0\u30a4\u30f3\u5931\u6557
-rm.audit.create-person=\u30e6\u30fc\u30b6\u30fc\u306e\u4f5c\u6210
-rm.audit.linkTo=\u30ea\u30f3\u30af\u5148
-rm.audit.moveTo=\u79fb\u52d5\u5148
-rm.audit.copyTo=\u30b3\u30d4\u30fc\u5148
-rm.audit.fileTo=\u6574\u7406\u4fdd\u7ba1\u5148
-rm.audit.audit-start=\u76e3\u67fb\u306e\u958b\u59cb
-rm.audit.audit-stop=\u76e3\u67fb\u306e\u505c\u6b62
-rm.audit.audit-clear=\u76e3\u67fb\u306e\u6d88\u53bb
-rm.audit.audit-view=\u76e3\u67fb\u306e\u8868\u793a
-rm.audit.trail-file-fail=\u76e3\u67fb\u30ec\u30dd\u30fc\u30c8\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 \u76e3\u67fb\u306e\u8a73\u7d30\u3092\u78ba\u8a8d\u3057\u3066\u304b\u3089\u64cd\u4f5c\u3092\u3084\u308a\u76f4\u3059\u304b\u3001IT \u62c5\u5f53\u8005\u306b\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
-rm.audit.audit-report=\u76e3\u67fb\u30ec\u30dd\u30fc\u30c8
+rm.audit.updated-metadata=\u66f4\u65b0\u6e08\u307f\u30e1\u30bf\u30c7\u30fc\u30bf
+rm.audit.created-object=\u4f5c\u6210\u6e08\u307f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8
+rm.audit.delete-object=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u524a\u9664
+rm.audit.login-succeeded=\u30ed\u30b0\u30a4\u30f3\u6210\u529f
+rm.audit.login-failed=\u30ed\u30b0\u30a4\u30f3\u5931\u6557
+rm.audit.create-person=\u30e6\u30fc\u30b6\u30fc\u306e\u4f5c\u6210
+rm.audit.linkTo=\u30ea\u30f3\u30af\u5148
+rm.audit.moveTo=\u79fb\u52d5\u5148
+rm.audit.copyTo=\u30b3\u30d4\u30fc\u5148
+rm.audit.fileTo=\u6574\u7406\u4fdd\u7ba1\u5148
+rm.audit.audit-start=\u76e3\u67fb\u306e\u958b\u59cb
+rm.audit.audit-stop=\u76e3\u67fb\u306e\u505c\u6b62
+rm.audit.audit-clear=\u76e3\u67fb\u306e\u6d88\u53bb
+rm.audit.audit-view=\u76e3\u67fb\u306e\u8868\u793a
+rm.audit.trail-file-fail=\u76e3\u67fb\u30ec\u30dd\u30fc\u30c8\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 \u76e3\u67fb\u306e\u8a73\u7d30\u3092\u78ba\u8a8d\u3057\u3066\u304b\u3089\u64cd\u4f5c\u3092\u3084\u308a\u76f4\u3059\u304b\u3001IT \u62c5\u5f53\u8005\u306b\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002
+rm.audit.audit-report=\u76e3\u67fb\u30ec\u30dd\u30fc\u30c8
recordable-version-config=\u81ea\u52d5\u5ba3\u8a00\u30aa\u30d7\u30b7\u30e7\u30f3
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_nb.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_nb.properties
index 95fcc8b0fa..9f6d9093b7 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_nb.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_nb.properties
@@ -1,17 +1,17 @@
-rm.audit.updated-metadata=Oppdatert metadata
-rm.audit.created-object=Opprettet element
-rm.audit.delete-object=Slett element
-rm.audit.login-succeeded=Vellykket p\u00e5logging
-rm.audit.login-failed=Mislykket p\u00e5logging
-rm.audit.create-person=Opprett bruker
-rm.audit.linkTo=Koble til
-rm.audit.moveTo=Flytt til
-rm.audit.copyTo=Kopier til
-rm.audit.fileTo=Arkiver i
-rm.audit.audit-start=Revisjonsstart
-rm.audit.audit-stop=Revisjonsstopp
-rm.audit.audit-clear=Slett revisjon
-rm.audit.audit-view=Vis revisjon
-rm.audit.trail-file-fail=Kunne ikke generere en revisjonsrapport. Kontroller revisjonsdetaljene, og pr\u00f8v igjen eller snakk med din IT- avdeling.
-rm.audit.audit-report=Revisjonsrapport
+rm.audit.updated-metadata=Oppdatert metadata
+rm.audit.created-object=Opprettet element
+rm.audit.delete-object=Slett element
+rm.audit.login-succeeded=Vellykket p\u00e5logging
+rm.audit.login-failed=Mislykket p\u00e5logging
+rm.audit.create-person=Opprett bruker
+rm.audit.linkTo=Koble til
+rm.audit.moveTo=Flytt til
+rm.audit.copyTo=Kopier til
+rm.audit.fileTo=Arkiver i
+rm.audit.audit-start=Revisjonsstart
+rm.audit.audit-stop=Revisjonsstopp
+rm.audit.audit-clear=Slett revisjon
+rm.audit.audit-view=Vis revisjon
+rm.audit.trail-file-fail=Kunne ikke generere en revisjonsrapport. Kontroller revisjonsdetaljene, og pr\u00f8v igjen eller snakk med din IT- avdeling.
+rm.audit.audit-report=Revisjonsrapport
recordable-version-config=Alternativer med automatiske erkl\u00e6ringer
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_nl.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_nl.properties
index 6a6b7b8079..9709a79d15 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_nl.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_nl.properties
@@ -1,17 +1,17 @@
-rm.audit.updated-metadata=Bijgewerkte metagegevens
-rm.audit.created-object=Object gemaakt
-rm.audit.delete-object=Object verwijderen
-rm.audit.login-succeeded=Aanmelden geslaagd
-rm.audit.login-failed=Aanmelden niet geslaagd
-rm.audit.create-person=Gebruiker maken
-rm.audit.linkTo=Koppelen naar
-rm.audit.moveTo=Verplaatsen naar
-rm.audit.copyTo=Kopi\u00ebren naar
-rm.audit.fileTo=Archiveren in
-rm.audit.audit-start=Audit starten
-rm.audit.audit-stop=Audit stoppen
-rm.audit.audit-clear=Audit wissen
-rm.audit.audit-view=Audit bekijken
-rm.audit.trail-file-fail=Kan geen auditrapport maken. Controleer de auditgegevens en probeer het opnieuw of neem contact op met uw IT- afdeling
-rm.audit.audit-report=Auditrapport
+rm.audit.updated-metadata=Bijgewerkte metagegevens
+rm.audit.created-object=Object gemaakt
+rm.audit.delete-object=Object verwijderen
+rm.audit.login-succeeded=Aanmelden geslaagd
+rm.audit.login-failed=Aanmelden niet geslaagd
+rm.audit.create-person=Gebruiker maken
+rm.audit.linkTo=Koppelen naar
+rm.audit.moveTo=Verplaatsen naar
+rm.audit.copyTo=Kopi\u00ebren naar
+rm.audit.fileTo=Archiveren in
+rm.audit.audit-start=Audit starten
+rm.audit.audit-stop=Audit stoppen
+rm.audit.audit-clear=Audit wissen
+rm.audit.audit-view=Audit bekijken
+rm.audit.trail-file-fail=Kan geen auditrapport maken. Controleer de auditgegevens en probeer het opnieuw of neem contact op met uw IT- afdeling
+rm.audit.audit-report=Auditrapport
recordable-version-config=Opties voor automatisch declareren
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_pt_BR.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_pt_BR.properties
index 9e9cb583cd..0a2f60ed7d 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_pt_BR.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_pt_BR.properties
@@ -1,17 +1,17 @@
-rm.audit.updated-metadata=Metadados atualizados
-rm.audit.created-object=Objeto criado
-rm.audit.delete-object=Excluir objeto
-rm.audit.login-succeeded=Login bem-sucedido
-rm.audit.login-failed=Login malsucedido
-rm.audit.create-person=Criar usu\u00e1rio
-rm.audit.linkTo=Vincular a
-rm.audit.moveTo=Mover para
-rm.audit.copyTo=Copiar para
-rm.audit.fileTo=Arquivar em
-rm.audit.audit-start=In\u00edcio da auditoria
-rm.audit.audit-stop=Parada da auditoria
-rm.audit.audit-clear=Limpeza de auditoria
-rm.audit.audit-view=Exibi\u00e7\u00e3o de auditoria
-rm.audit.trail-file-fail=N\u00e3o \u00e9 poss\u00edvel gerar um relat\u00f3rio de auditoria. Verifique os detalhes de auditoria e tente novamente, ou entre em contato com o Dept. de TI.
-rm.audit.audit-report=Relat\u00f3rio de auditoria
+rm.audit.updated-metadata=Metadados atualizados
+rm.audit.created-object=Objeto criado
+rm.audit.delete-object=Excluir objeto
+rm.audit.login-succeeded=Login bem-sucedido
+rm.audit.login-failed=Login malsucedido
+rm.audit.create-person=Criar usu\u00e1rio
+rm.audit.linkTo=Vincular a
+rm.audit.moveTo=Mover para
+rm.audit.copyTo=Copiar para
+rm.audit.fileTo=Arquivar em
+rm.audit.audit-start=In\u00edcio da auditoria
+rm.audit.audit-stop=Parada da auditoria
+rm.audit.audit-clear=Limpeza de auditoria
+rm.audit.audit-view=Exibi\u00e7\u00e3o de auditoria
+rm.audit.trail-file-fail=N\u00e3o \u00e9 poss\u00edvel gerar um relat\u00f3rio de auditoria. Verifique os detalhes de auditoria e tente novamente, ou entre em contato com o Dept. de TI.
+rm.audit.audit-report=Relat\u00f3rio de auditoria
recordable-version-config=Op\u00e7\u00f5es de auto declara\u00e7\u00e3o
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_ru.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_ru.properties
index b191bb0c3b..eb60080e3b 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_ru.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_ru.properties
@@ -1,17 +1,17 @@
-rm.audit.updated-metadata=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435
-rm.audit.created-object=\u0421\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0439 \u043e\u0431\u044a\u0435\u043a\u0442
-rm.audit.delete-object=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043e\u0431\u044a\u0435\u043a\u0442
-rm.audit.login-succeeded=\u0412\u0445\u043e\u0434 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d
-rm.audit.login-failed=\u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u0445\u043e\u0434\u0430
-rm.audit.create-person=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f
-rm.audit.linkTo=\u0421\u0432\u044f\u0437\u0430\u0442\u044c \u0441
-rm.audit.moveTo=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432
-rm.audit.copyTo=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432
-rm.audit.fileTo=\u0421\u0434\u0430\u0442\u044c \u0432 \u0430\u0440\u0445\u0438\u0432
-rm.audit.audit-start=\u0417\u0430\u043f\u0443\u0441\u043a \u0430\u0443\u0434\u0438\u0442\u0430
-rm.audit.audit-stop=\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0430\u0443\u0434\u0438\u0442\u0430
-rm.audit.audit-clear=\u041e\u0447\u0438\u0441\u0442\u043a\u0430 \u0430\u0443\u0434\u0438\u0442\u0430
-rm.audit.audit-view=\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u0430\u0443\u0434\u0438\u0442\u0430
-rm.audit.trail-file-fail=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u0435. \u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0430\u0443\u0434\u0438\u0442\u0430 \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u0438\u043b\u0438 \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u0432 IT- \u043e\u0442\u0434\u0435\u043b.
-rm.audit.audit-report=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u0435
+rm.audit.updated-metadata=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435
+rm.audit.created-object=\u0421\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0439 \u043e\u0431\u044a\u0435\u043a\u0442
+rm.audit.delete-object=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043e\u0431\u044a\u0435\u043a\u0442
+rm.audit.login-succeeded=\u0412\u0445\u043e\u0434 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d
+rm.audit.login-failed=\u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u0445\u043e\u0434\u0430
+rm.audit.create-person=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f
+rm.audit.linkTo=\u0421\u0432\u044f\u0437\u0430\u0442\u044c \u0441
+rm.audit.moveTo=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432
+rm.audit.copyTo=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432
+rm.audit.fileTo=\u0421\u0434\u0430\u0442\u044c \u0432 \u0430\u0440\u0445\u0438\u0432
+rm.audit.audit-start=\u0417\u0430\u043f\u0443\u0441\u043a \u0430\u0443\u0434\u0438\u0442\u0430
+rm.audit.audit-stop=\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0430\u0443\u0434\u0438\u0442\u0430
+rm.audit.audit-clear=\u041e\u0447\u0438\u0441\u0442\u043a\u0430 \u0430\u0443\u0434\u0438\u0442\u0430
+rm.audit.audit-view=\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u0430\u0443\u0434\u0438\u0442\u0430
+rm.audit.trail-file-fail=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u0435. \u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u0430\u0443\u0434\u0438\u0442\u0430 \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u0438\u043b\u0438 \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u0432 IT- \u043e\u0442\u0434\u0435\u043b.
+rm.audit.audit-report=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0430\u0443\u0434\u0438\u0442\u0435
recordable-version-config=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_zh_CN.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_zh_CN.properties
index 174b309dd8..f3887ab661 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_zh_CN.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/audit-service_zh_CN.properties
@@ -1,17 +1,17 @@
-rm.audit.updated-metadata=\u66f4\u65b0\u7684\u5143\u6570\u636e
-rm.audit.created-object=\u521b\u5efa\u7684\u5bf9\u8c61
-rm.audit.delete-object=\u5220\u9664\u5bf9\u8c61
-rm.audit.login-succeeded=\u767b\u5f55\u6210\u529f
-rm.audit.login-failed=\u767b\u5f55\u5931\u8d25
-rm.audit.create-person=\u521b\u5efa\u7528\u6237
-rm.audit.linkTo=\u94fe\u63a5\u5230
-rm.audit.moveTo=\u79fb\u52a8\u5230
-rm.audit.copyTo=\u590d\u5236\u5230
-rm.audit.fileTo=\u7acb\u5377\u81f3
-rm.audit.audit-start=\u5f00\u59cb\u5ba1\u8ba1
-rm.audit.audit-stop=\u505c\u6b62\u5ba1\u8ba1
-rm.audit.audit-clear=\u6e05\u9664\u5ba1\u8ba1
-rm.audit.audit-view=\u67e5\u770b\u5ba1\u8ba1
-rm.audit.trail-file-fail=\u6211\u4eec\u65e0\u6cd5\u751f\u6210\u5ba1\u8ba1\u62a5\u544a\u3002 \u68c0\u67e5\u5ba1\u8ba1\u8be6\u7ec6\u4fe1\u606f\u5e76\u91cd\u8bd5\uff0c\u6216\u8005\u54a8\u8be2\u60a8\u7684 IT \u90e8\u95e8\u3002
-rm.audit.audit-report=\u5ba1\u8ba1\u62a5\u544a
+rm.audit.updated-metadata=\u66f4\u65b0\u7684\u5143\u6570\u636e
+rm.audit.created-object=\u521b\u5efa\u7684\u5bf9\u8c61
+rm.audit.delete-object=\u5220\u9664\u5bf9\u8c61
+rm.audit.login-succeeded=\u767b\u5f55\u6210\u529f
+rm.audit.login-failed=\u767b\u5f55\u5931\u8d25
+rm.audit.create-person=\u521b\u5efa\u7528\u6237
+rm.audit.linkTo=\u94fe\u63a5\u5230
+rm.audit.moveTo=\u79fb\u52a8\u5230
+rm.audit.copyTo=\u590d\u5236\u5230
+rm.audit.fileTo=\u7acb\u5377\u81f3
+rm.audit.audit-start=\u5f00\u59cb\u5ba1\u8ba1
+rm.audit.audit-stop=\u505c\u6b62\u5ba1\u8ba1
+rm.audit.audit-clear=\u6e05\u9664\u5ba1\u8ba1
+rm.audit.audit-view=\u67e5\u770b\u5ba1\u8ba1
+rm.audit.trail-file-fail=\u6211\u4eec\u65e0\u6cd5\u751f\u6210\u5ba1\u8ba1\u62a5\u544a\u3002 \u68c0\u67e5\u5ba1\u8ba1\u8be6\u7ec6\u4fe1\u606f\u5e76\u91cd\u8bd5\uff0c\u6216\u8005\u54a8\u8be2\u60a8\u7684 IT \u90e8\u95e8\u3002
+rm.audit.audit-report=\u5ba1\u8ba1\u62a5\u544a
recordable-version-config=\u81ea\u52a8\u58f0\u660e\u9009\u9879
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service.properties
index 5f73d46a9d..97ab98883d 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service.properties
@@ -1,105 +1,105 @@
-# Records
-capability.group.records.title=Records
-capability.DeclareRecords.title=Complete Records
-capability.ViewRecords.title=View Records
-capability.UndeclareRecords.title=Reopen Records
-capability.CreateRecords.title=Create Records
-capability.RequestRecordInformation.title=Request Record Information
-capability.RejectRecords.title=Reject Records
-capability.FileUnfiledRecords.title=File Unfiled Records
-capability.LinkToRecords.title=Link Records
-capability.DeleteLinks.title=Unlink Records
-
-# Metadata Control
-capability.group.metadataControl.title=Metadata Control
-capability.EditRecordMetadata.title=Edit Record Metadata
-capability.EditDeclaredRecordMetadata.title=Edit Completed Record Metadata
-capability.EditNonRecordMetadata.title=Edit Non-Record Metadata
-capability.MoveRecords.title=Move Records
-
-# Folder Control
-capability.group.folderControl.title=Folder Control
-capability.CreateModifyDestroyFolders.title=Create Modify Destroy Folders
-capability.CloseFolders.title=Close Folders
-capability.ReOpenFolders.title=Re-Open Folders
-capability.DeclareRecordsInClosedFolders.title=Complete Records in Closed Folders
-
-# Vital Records
-capability.group.vitalRecords.title=Vital Records
-capability.UpdateVitalRecordCycleInformation.title=Update Vital Record Cycle Information
-capability.CycleVitalRecords.title=Cycle Vital Records
-capability.PlanningReviewCycles.title=Planning Review Cycles
-
-# References and Links
-capability.group.references.title=References
-capability.ChangeOrDeleteReferences.title=Change or Delete References
-
-# Events
-capability.group.events.title=Events
-capability.CreateModifyDestroyEvents.title=Create Modify Destroy Events
-capability.AddModifyEventDates.title=Add Modify Event Dates
-
-# Cutoff
-capability.group.cutoff.title=Cut Off
-capability.ApproveRecordsScheduledForCutoff.title=Approve Records Scheduled for Cut Off
-capability.CreateModifyRecordsInCutoffFolders.title=Create Modify Records in Cut Off Folders
-
-# Disposition and Transfers
-capability.group.dispositionAndTransfers.title=Retention and Transfers
-capability.UpdateTriggerDates.title=Update Trigger Dates
-capability.ManuallyChangeDispositionDates.title=Manually Change Retention Dates
-capability.AuthorizeNominatedTransfers.title=Authorize Nominated Transfers
-capability.AuthorizeAllTransfers.title=Authorize All Transfers
-capability.DestroyRecordsScheduledForDestruction.title=Destroy Record or Record Folder Scheduled for Destruction
-capability.DestroyRecords.title=Destroy Records
-capability.DeleteRecords.title=Delete Records
-capability.TriggerAnEvent.title=Trigger an Event
-capability.FileDestructionReport.title=File Destruction Report
-capability.FileTransferReport.title=File Transfer Report
-capability.EndRetention.title=End Retention
-
-# Hold Controls
-capability.group.holdControls.title=Hold Controls
-capability.ExtendRetentionPeriodOrFreeze.title=Extend Retention Period or Freeze
-capability.Unfreeze.title=Unfreeze
-capability.ViewUpdateReasonsForFreeze.title=View Update Reasons for Freeze
-capability.CreateHold.title=Create Hold
-capability.AddToHold.title=Add to Hold
-capability.RemoveFromHold.title=Remove from Hold
-capability.FileHoldReport.title=File Hold Report
-capability.DeleteHold.title=Delete Hold
-capability.EditHold.title=Edit Hold
-
-# Audit
-capability.group.audit.title=Audit
-capability.DeclareAuditAsRecord.title=Declare Audit as Record
-capability.EnableDisableAuditByTypes.title=Enable Disable Audit by Types
-capability.DeleteAudit.title=Delete Audit
-capability.SelectAuditMetadata.title=Select Audit Metadata
-capability.AccessAudit.title=Access Audit
-capability.ExportAudit.title=Export Audit
-
-# Security
-capability.group.security.title=Security
-capability.CreateModifyDestroyRoles.title=Create Modify Destroy Roles
-capability.CreateModifyDestroyUsersAndGroups.title=Create Modify Destroy Users and Groups
-capability.PasswordControl.title=Password Control
-capability.DisplayRightsReport.title=Display Rights Report
-capability.ManageAccessControls.title=Group and User Role Assignment
-capability.ManageAccessRights.title=Manage Permissions
-
-# Configuration
-capability.group.config.title=Configuration
-capability.CreateModifyDestroyFileplanMetadata.title=Create Modify Destroy File Plan Metadata
-capability.CreateModifyDestroyFileplanTypes.title=Create Modify Destroy File Plan Types
-capability.CreateModifyDestroyRecordTypes.title=Create Modify Destroy Record Types
-capability.CreateAndAssociateSelectionLists.title=Create and Associate Selection Lists
-capability.EditSelectionLists.title=Edit Selection Lists
-capability.CreateModifyDestroyReferenceTypes.title=Create Modify Destroy Reference Types
-capability.AttachRulesToMetadataProperties.title=Attach Rules to Metadata Properties
-capability.MakeOptionalParametersMandatory.title=Make Optional Parameters Mandatory
-capability.MapEmailMetadata.title=Map Email Metadata
-
-# Rules
-capability.group.rules.title=Rules
+# Records
+capability.group.records.title=Records
+capability.DeclareRecords.title=Complete Records
+capability.ViewRecords.title=View Records
+capability.UndeclareRecords.title=Reopen Records
+capability.CreateRecords.title=Create Records
+capability.RequestRecordInformation.title=Request Record Information
+capability.RejectRecords.title=Reject Records
+capability.FileUnfiledRecords.title=File Unfiled Records
+capability.LinkToRecords.title=Link Records
+capability.DeleteLinks.title=Unlink Records
+
+# Metadata Control
+capability.group.metadataControl.title=Metadata Control
+capability.EditRecordMetadata.title=Edit Record Metadata
+capability.EditDeclaredRecordMetadata.title=Edit Completed Record Metadata
+capability.EditNonRecordMetadata.title=Edit Non-Record Metadata
+capability.MoveRecords.title=Move Records
+
+# Folder Control
+capability.group.folderControl.title=Folder Control
+capability.CreateModifyDestroyFolders.title=Create Modify Destroy Folders
+capability.CloseFolders.title=Close Folders
+capability.ReOpenFolders.title=Re-Open Folders
+capability.DeclareRecordsInClosedFolders.title=Complete Records in Closed Folders
+
+# Vital Records
+capability.group.vitalRecords.title=Vital Records
+capability.UpdateVitalRecordCycleInformation.title=Update Vital Record Cycle Information
+capability.CycleVitalRecords.title=Cycle Vital Records
+capability.PlanningReviewCycles.title=Planning Review Cycles
+
+# References and Links
+capability.group.references.title=References
+capability.ChangeOrDeleteReferences.title=Change or Delete References
+
+# Events
+capability.group.events.title=Events
+capability.CreateModifyDestroyEvents.title=Create Modify Destroy Events
+capability.AddModifyEventDates.title=Add Modify Event Dates
+
+# Cutoff
+capability.group.cutoff.title=Cut Off
+capability.ApproveRecordsScheduledForCutoff.title=Approve Records Scheduled for Cut Off
+capability.CreateModifyRecordsInCutoffFolders.title=Create Modify Records in Cut Off Folders
+
+# Disposition and Transfers
+capability.group.dispositionAndTransfers.title=Retention and Transfers
+capability.UpdateTriggerDates.title=Update Trigger Dates
+capability.ManuallyChangeDispositionDates.title=Manually Change Retention Dates
+capability.AuthorizeNominatedTransfers.title=Authorize Nominated Transfers
+capability.AuthorizeAllTransfers.title=Authorize All Transfers
+capability.DestroyRecordsScheduledForDestruction.title=Destroy Record or Record Folder Scheduled for Destruction
+capability.DestroyRecords.title=Destroy Records
+capability.DeleteRecords.title=Delete Records
+capability.TriggerAnEvent.title=Trigger an Event
+capability.FileDestructionReport.title=File Destruction Report
+capability.FileTransferReport.title=File Transfer Report
+capability.EndRetention.title=End Retention
+
+# Hold Controls
+capability.group.holdControls.title=Hold Controls
+capability.ExtendRetentionPeriodOrFreeze.title=Extend Retention Period or Freeze
+capability.Unfreeze.title=Unfreeze
+capability.ViewUpdateReasonsForFreeze.title=View Update Reasons for Freeze
+capability.CreateHold.title=Create Hold
+capability.AddToHold.title=Add to Hold
+capability.RemoveFromHold.title=Remove from Hold
+capability.FileHoldReport.title=File Hold Report
+capability.DeleteHold.title=Delete Hold
+capability.EditHold.title=Edit Hold
+
+# Audit
+capability.group.audit.title=Audit
+capability.DeclareAuditAsRecord.title=Declare Audit as Record
+capability.EnableDisableAuditByTypes.title=Enable Disable Audit by Types
+capability.DeleteAudit.title=Delete Audit
+capability.SelectAuditMetadata.title=Select Audit Metadata
+capability.AccessAudit.title=Access Audit
+capability.ExportAudit.title=Export Audit
+
+# Security
+capability.group.security.title=Security
+capability.CreateModifyDestroyRoles.title=Create Modify Destroy Roles
+capability.CreateModifyDestroyUsersAndGroups.title=Create Modify Destroy Users and Groups
+capability.PasswordControl.title=Password Control
+capability.DisplayRightsReport.title=Display Rights Report
+capability.ManageAccessControls.title=Group and User Role Assignment
+capability.ManageAccessRights.title=Manage Permissions
+
+# Configuration
+capability.group.config.title=Configuration
+capability.CreateModifyDestroyFileplanMetadata.title=Create Modify Destroy File Plan Metadata
+capability.CreateModifyDestroyFileplanTypes.title=Create Modify Destroy File Plan Types
+capability.CreateModifyDestroyRecordTypes.title=Create Modify Destroy Record Types
+capability.CreateAndAssociateSelectionLists.title=Create and Associate Selection Lists
+capability.EditSelectionLists.title=Edit Selection Lists
+capability.CreateModifyDestroyReferenceTypes.title=Create Modify Destroy Reference Types
+capability.AttachRulesToMetadataProperties.title=Attach Rules to Metadata Properties
+capability.MakeOptionalParametersMandatory.title=Make Optional Parameters Mandatory
+capability.MapEmailMetadata.title=Map Email Metadata
+
+# Rules
+capability.group.rules.title=Rules
capability.ManageRules.title=Manage Rules
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_de.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_de.properties
index 4c27782746..cd9feee3db 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_de.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_de.properties
@@ -1,105 +1,105 @@
-# Records
-capability.group.records.title=Records
-capability.DeclareRecords.title=Records abschlie\u00dfen
-capability.ViewRecords.title=Records anzeigen
-capability.UndeclareRecords.title=Records erneut \u00f6ffnen
-capability.CreateRecords.title=Records erstellen
-capability.RequestRecordInformation.title=Record-Informationen anfordern
-capability.RejectRecords.title=Records ablehnen
-capability.FileUnfiledRecords.title=Nicht abgelegte Records ablegen
-capability.LinkToRecords.title=Records verkn\u00fcpfen
-capability.DeleteLinks.title=Verkn\u00fcpfung zu Records aufheben
-
-# Metadata Control
-capability.group.metadataControl.title=Metadaten-Steuerung
-capability.EditRecordMetadata.title=Record-Metadaten bearbeiten
-capability.EditDeclaredRecordMetadata.title=Metadaten von abgeschlossenem Record bearbeiten
-capability.EditNonRecordMetadata.title=Record-fremde Metadaten bearbeiten
-capability.MoveRecords.title=Records verschieben
-
-# Folder Control
-capability.group.folderControl.title=Ordnersteuerung
-capability.CreateModifyDestroyFolders.title=Ordner erstellen/\u00e4ndern/vernichten
-capability.CloseFolders.title=Ordner schlie\u00dfen
-capability.ReOpenFolders.title=Ordner erneut \u00f6ffnen
-capability.DeclareRecordsInClosedFolders.title=Records in geschlossenen Ordnern abschlie\u00dfen
-
-# Vital Records
-capability.group.vitalRecords.title=Besonders relevante Records
-capability.UpdateVitalRecordCycleInformation.title=Zyklusinformationen besonders relevanter Records aktualisieren
-capability.CycleVitalRecords.title=Zyklus besonders relevanter Records
-capability.PlanningReviewCycles.title=\u00dcberpr\u00fcfungszyklen planen
-
-# References and Links
-capability.group.references.title=Referenzen
-capability.ChangeOrDeleteReferences.title=Referenzen \u00e4ndern oder l\u00f6schen
-
-# Events
-capability.group.events.title=Ereignisse
-capability.CreateModifyDestroyEvents.title=Ereignisse erstellen/\u00e4ndern/vernichten
-capability.AddModifyEventDates.title=Ereignisdaten hinzuf\u00fcgen/\u00e4ndern
-
-# Cutoff
-capability.group.cutoff.title=Trennen
-capability.ApproveRecordsScheduledForCutoff.title=F\u00fcr Trennung geplante Records genehmigen
-capability.CreateModifyRecordsInCutoffFolders.title=Records in getrennten Ordnern erstellen/\u00e4ndern
-
-# Disposition and Transfers
-capability.group.dispositionAndTransfers.title=Aufbewahrung und \u00dcbertragungen
-capability.UpdateTriggerDates.title=Triggerdaten aktualisieren
-capability.ManuallyChangeDispositionDates.title=Aufbewahrungsdaten manuell \u00e4ndern
-capability.AuthorizeNominatedTransfers.title=Nominierte \u00dcbertragungen autorisieren
-capability.AuthorizeAllTransfers.title=Alle \u00dcbertragungen autorisieren
-capability.DestroyRecordsScheduledForDestruction.title=Zur Vernichtung vorgesehenen Record oder Record-Ordner vernichten
-capability.DestroyRecords.title=Records vernichten
-capability.DeleteRecords.title=Records l\u00f6schen
-capability.TriggerAnEvent.title=Ereignis ausl\u00f6sen
-capability.FileDestructionReport.title=Vernichtungsprotokoll ablegen
-capability.FileTransferReport.title=\u00dcbertragungsbericht ablegen
-capability.EndRetention.title=Aufbewahrung beenden
-
-# Hold Controls
-capability.group.holdControls.title=Sperrsteuerung
-capability.ExtendRetentionPeriodOrFreeze.title=Aufbewahrungsfrist verl\u00e4ngern oder fixieren
-capability.Unfreeze.title=Fixierung aufheben
-capability.ViewUpdateReasonsForFreeze.title=Aktualisierungsgrund f\u00fcr Fixierung anzeigen
-capability.CreateHold.title=Sperrbereich erstellen
-capability.AddToHold.title=Zum Sperrbereich hinzuf\u00fcgen
-capability.RemoveFromHold.title=Vom Sperrbereich entfernen
-capability.FileHoldReport.title=Sperrbericht ablegen
-capability.DeleteHold.title=Sperrbereich l\u00f6schen
-capability.EditHold.title=Sperrbereich bearbeiten
-
-# Audit
-capability.group.audit.title=Audit
-capability.DeclareAuditAsRecord.title=Audit als Record deklarieren
-capability.EnableDisableAuditByTypes.title=Audit nach Typen aktivieren/deaktivieren
-capability.DeleteAudit.title=Audit l\u00f6schen
-capability.SelectAuditMetadata.title=Audit-Metadaten ausw\u00e4hlen
-capability.AccessAudit.title=Auf Audit zugreifen
-capability.ExportAudit.title=Audit exportieren
-
-# Security
-capability.group.security.title=Sicherheit
-capability.CreateModifyDestroyRoles.title=Rollen erstellen/\u00e4ndern/vernichten
-capability.CreateModifyDestroyUsersAndGroups.title=Benutzer und Gruppen erstellen/\u00e4ndern/vernichten
-capability.PasswordControl.title=Passwortsteuerung
-capability.DisplayRightsReport.title=Rechtebericht anzeigen
-capability.ManageAccessControls.title=Zuweisung von Gruppen- und Benutzerrollen
-capability.ManageAccessRights.title=Berechtigungen verwalten
-
-# Configuration
-capability.group.config.title=Konfiguration
-capability.CreateModifyDestroyFileplanMetadata.title=Ablageplan-Metadaten erstellen/\u00e4ndern/vernichten
-capability.CreateModifyDestroyFileplanTypes.title=Ablageplan-Typen erstellen/\u00e4ndern/vernichten
-capability.CreateModifyDestroyRecordTypes.title=Record-Typen erstellen/\u00e4ndern/vernichten
-capability.CreateAndAssociateSelectionLists.title=Auswahllisten erstellen und zuordnen
-capability.EditSelectionLists.title=Auswahllisten bearbeiten
-capability.CreateModifyDestroyReferenceTypes.title=Referenztypen erstellen/\u00e4ndern/vernichten
-capability.AttachRulesToMetadataProperties.title=Regeln an Metadaten-Eigenschaften anh\u00e4ngen
-capability.MakeOptionalParametersMandatory.title=Optionale Parameter als erforderlich festlegen
-capability.MapEmailMetadata.title=E-Mail-Metadaten zuordnen
-
-# Rules
-capability.group.rules.title=Regeln
+# Records
+capability.group.records.title=Records
+capability.DeclareRecords.title=Records abschlie\u00dfen
+capability.ViewRecords.title=Records anzeigen
+capability.UndeclareRecords.title=Records erneut \u00f6ffnen
+capability.CreateRecords.title=Records erstellen
+capability.RequestRecordInformation.title=Record-Informationen anfordern
+capability.RejectRecords.title=Records ablehnen
+capability.FileUnfiledRecords.title=Nicht abgelegte Records ablegen
+capability.LinkToRecords.title=Records verkn\u00fcpfen
+capability.DeleteLinks.title=Verkn\u00fcpfung zu Records aufheben
+
+# Metadata Control
+capability.group.metadataControl.title=Metadaten-Steuerung
+capability.EditRecordMetadata.title=Record-Metadaten bearbeiten
+capability.EditDeclaredRecordMetadata.title=Metadaten von abgeschlossenem Record bearbeiten
+capability.EditNonRecordMetadata.title=Record-fremde Metadaten bearbeiten
+capability.MoveRecords.title=Records verschieben
+
+# Folder Control
+capability.group.folderControl.title=Ordnersteuerung
+capability.CreateModifyDestroyFolders.title=Ordner erstellen/\u00e4ndern/vernichten
+capability.CloseFolders.title=Ordner schlie\u00dfen
+capability.ReOpenFolders.title=Ordner erneut \u00f6ffnen
+capability.DeclareRecordsInClosedFolders.title=Records in geschlossenen Ordnern abschlie\u00dfen
+
+# Vital Records
+capability.group.vitalRecords.title=Besonders relevante Records
+capability.UpdateVitalRecordCycleInformation.title=Zyklusinformationen besonders relevanter Records aktualisieren
+capability.CycleVitalRecords.title=Zyklus besonders relevanter Records
+capability.PlanningReviewCycles.title=\u00dcberpr\u00fcfungszyklen planen
+
+# References and Links
+capability.group.references.title=Referenzen
+capability.ChangeOrDeleteReferences.title=Referenzen \u00e4ndern oder l\u00f6schen
+
+# Events
+capability.group.events.title=Ereignisse
+capability.CreateModifyDestroyEvents.title=Ereignisse erstellen/\u00e4ndern/vernichten
+capability.AddModifyEventDates.title=Ereignisdaten hinzuf\u00fcgen/\u00e4ndern
+
+# Cutoff
+capability.group.cutoff.title=Trennen
+capability.ApproveRecordsScheduledForCutoff.title=F\u00fcr Trennung geplante Records genehmigen
+capability.CreateModifyRecordsInCutoffFolders.title=Records in getrennten Ordnern erstellen/\u00e4ndern
+
+# Disposition and Transfers
+capability.group.dispositionAndTransfers.title=Aufbewahrung und \u00dcbertragungen
+capability.UpdateTriggerDates.title=Triggerdaten aktualisieren
+capability.ManuallyChangeDispositionDates.title=Aufbewahrungsdaten manuell \u00e4ndern
+capability.AuthorizeNominatedTransfers.title=Nominierte \u00dcbertragungen autorisieren
+capability.AuthorizeAllTransfers.title=Alle \u00dcbertragungen autorisieren
+capability.DestroyRecordsScheduledForDestruction.title=Zur Vernichtung vorgesehenen Record oder Record-Ordner vernichten
+capability.DestroyRecords.title=Records vernichten
+capability.DeleteRecords.title=Records l\u00f6schen
+capability.TriggerAnEvent.title=Ereignis ausl\u00f6sen
+capability.FileDestructionReport.title=Vernichtungsprotokoll ablegen
+capability.FileTransferReport.title=\u00dcbertragungsbericht ablegen
+capability.EndRetention.title=Aufbewahrung beenden
+
+# Hold Controls
+capability.group.holdControls.title=Sperrsteuerung
+capability.ExtendRetentionPeriodOrFreeze.title=Aufbewahrungsfrist verl\u00e4ngern oder fixieren
+capability.Unfreeze.title=Fixierung aufheben
+capability.ViewUpdateReasonsForFreeze.title=Aktualisierungsgrund f\u00fcr Fixierung anzeigen
+capability.CreateHold.title=Sperrbereich erstellen
+capability.AddToHold.title=Zum Sperrbereich hinzuf\u00fcgen
+capability.RemoveFromHold.title=Vom Sperrbereich entfernen
+capability.FileHoldReport.title=Sperrbericht ablegen
+capability.DeleteHold.title=Sperrbereich l\u00f6schen
+capability.EditHold.title=Sperrbereich bearbeiten
+
+# Audit
+capability.group.audit.title=Audit
+capability.DeclareAuditAsRecord.title=Audit als Record deklarieren
+capability.EnableDisableAuditByTypes.title=Audit nach Typen aktivieren/deaktivieren
+capability.DeleteAudit.title=Audit l\u00f6schen
+capability.SelectAuditMetadata.title=Audit-Metadaten ausw\u00e4hlen
+capability.AccessAudit.title=Auf Audit zugreifen
+capability.ExportAudit.title=Audit exportieren
+
+# Security
+capability.group.security.title=Sicherheit
+capability.CreateModifyDestroyRoles.title=Rollen erstellen/\u00e4ndern/vernichten
+capability.CreateModifyDestroyUsersAndGroups.title=Benutzer und Gruppen erstellen/\u00e4ndern/vernichten
+capability.PasswordControl.title=Passwortsteuerung
+capability.DisplayRightsReport.title=Rechtebericht anzeigen
+capability.ManageAccessControls.title=Zuweisung von Gruppen- und Benutzerrollen
+capability.ManageAccessRights.title=Berechtigungen verwalten
+
+# Configuration
+capability.group.config.title=Konfiguration
+capability.CreateModifyDestroyFileplanMetadata.title=Ablageplan-Metadaten erstellen/\u00e4ndern/vernichten
+capability.CreateModifyDestroyFileplanTypes.title=Ablageplan-Typen erstellen/\u00e4ndern/vernichten
+capability.CreateModifyDestroyRecordTypes.title=Record-Typen erstellen/\u00e4ndern/vernichten
+capability.CreateAndAssociateSelectionLists.title=Auswahllisten erstellen und zuordnen
+capability.EditSelectionLists.title=Auswahllisten bearbeiten
+capability.CreateModifyDestroyReferenceTypes.title=Referenztypen erstellen/\u00e4ndern/vernichten
+capability.AttachRulesToMetadataProperties.title=Regeln an Metadaten-Eigenschaften anh\u00e4ngen
+capability.MakeOptionalParametersMandatory.title=Optionale Parameter als erforderlich festlegen
+capability.MapEmailMetadata.title=E-Mail-Metadaten zuordnen
+
+# Rules
+capability.group.rules.title=Regeln
capability.ManageRules.title=Regeln verwalten
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_es.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_es.properties
index eadb084b32..ebf247032a 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_es.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_es.properties
@@ -1,105 +1,105 @@
-# Records
-capability.group.records.title=Documentos de archivo
-capability.DeclareRecords.title=Documentos de archivo completo
-capability.ViewRecords.title=Ver documentos de archivo
-capability.UndeclareRecords.title=Reabrir documentos de archivo
-capability.CreateRecords.title=Crear documentos de archivo
-capability.RequestRecordInformation.title=Solicitar informaci\u00f3n sobre documento de archivo
-capability.RejectRecords.title=Rechazar documentos de archivo
-capability.FileUnfiledRecords.title=Archivar documentos de archivo no archivados
-capability.LinkToRecords.title=Enlazar documentos de archivo
-capability.DeleteLinks.title=Desvincular documentos de archivo
-
-# Metadata Control
-capability.group.metadataControl.title=Control de metadatos
-capability.EditRecordMetadata.title=Editar metadatos de documento de archivo
-capability.EditDeclaredRecordMetadata.title=Editar metadatos de documento de archivo completados
-capability.EditNonRecordMetadata.title=Editar metadatos que no son de documentos de archivo
-capability.MoveRecords.title=Mover documentos de archivo
-
-# Folder Control
-capability.group.folderControl.title=Control de carpetas
-capability.CreateModifyDestroyFolders.title=Crear Modificar Destruir carpetas
-capability.CloseFolders.title=Cerrar carpetas
-capability.ReOpenFolders.title=Reabrir carpetas
-capability.DeclareRecordsInClosedFolders.title=Completar documentos de archivo en carpetas cerradas
-
-# Vital Records
-capability.group.vitalRecords.title=Documentos de archivo vitales
-capability.UpdateVitalRecordCycleInformation.title=Actualizar informaci\u00f3n de ciclo de documentos de archivo vitales
-capability.CycleVitalRecords.title=Documentos de archivo vitales de ciclo
-capability.PlanningReviewCycles.title=Planificaci\u00f3n de ciclos de revisi\u00f3n
-
-# References and Links
-capability.group.references.title=Referencias
-capability.ChangeOrDeleteReferences.title=Cambiar o eliminar referencias
-
-# Events
-capability.group.events.title=Eventos
-capability.CreateModifyDestroyEvents.title=Crear Modificar Destruir eventos
-capability.AddModifyEventDates.title=Agregar o modificar fechas de eventos
-
-# Cutoff
-capability.group.cutoff.title=Interrumpir
-capability.ApproveRecordsScheduledForCutoff.title=Aprobar documentos de archivo planificados para interrupci\u00f3n
-capability.CreateModifyRecordsInCutoffFolders.title=Crear o modificar documentos de archivo en carpetas de interrupci\u00f3n
-
-# Disposition and Transfers
-capability.group.dispositionAndTransfers.title=Retenci\u00f3n y transferencias
-capability.UpdateTriggerDates.title=Actualizar fechas de ejecuci\u00f3n
-capability.ManuallyChangeDispositionDates.title=Cambiar las fechas de retenci\u00f3n manualmente
-capability.AuthorizeNominatedTransfers.title=Autorizar transferencias nominadas
-capability.AuthorizeAllTransfers.title=Autorizar todas las transferencias
-capability.DestroyRecordsScheduledForDestruction.title=Destruir documento de archivo o carpeta de documentos de archivo planificada para destrucci\u00f3n
-capability.DestroyRecords.title=Destruir documentos de archivo
-capability.DeleteRecords.title=Eliminar documentos de archivo
-capability.TriggerAnEvent.title=Ejecutar un evento
-capability.FileDestructionReport.title=Archivar informe de destrucci\u00f3n
-capability.FileTransferReport.title=Archivar informe de transferencia
-capability.EndRetention.title=Terminar retenci\u00f3n
-
-# Hold Controls
-capability.group.holdControls.title=Bloquear controles
-capability.ExtendRetentionPeriodOrFreeze.title=Extender periodo de retenci\u00f3n o congelar
-capability.Unfreeze.title=Descongelar
-capability.ViewUpdateReasonsForFreeze.title=Ver razones actualizadas de congelaci\u00f3n
-capability.CreateHold.title=Crear bloqueo
-capability.AddToHold.title=A\u00f1adir a bloqueo
-capability.RemoveFromHold.title=Eliminar de bloqueo
-capability.FileHoldReport.title=Archivar informe de bloqueo
-capability.DeleteHold.title=Eliminar bloqueo
-capability.EditHold.title=Editar bloqueo
-
-# Audit
-capability.group.audit.title=Auditor\u00eda
-capability.DeclareAuditAsRecord.title=Declarar auditor\u00eda como documento de archivo
-capability.EnableDisableAuditByTypes.title=Activar o desactivar auditor\u00eda por tipos
-capability.DeleteAudit.title=Eliminar auditor\u00eda
-capability.SelectAuditMetadata.title=Seleccionar metadatos de auditor\u00eda
-capability.AccessAudit.title=Acceder a auditor\u00eda
-capability.ExportAudit.title=Exportar auditor\u00eda
-
-# Security
-capability.group.security.title=Seguridad
-capability.CreateModifyDestroyRoles.title=Crear Modificar Destruir roles
-capability.CreateModifyDestroyUsersAndGroups.title=Crear Modificar Destruir usuarios y grupos
-capability.PasswordControl.title=Control de contrase\u00f1a
-capability.DisplayRightsReport.title=Informe de derechos de presentaci\u00f3n
-capability.ManageAccessControls.title=Asignaci\u00f3n de rol de usuario y grupo
-capability.ManageAccessRights.title=Administrar permisos
-
-# Configuration
-capability.group.config.title=Configuraci\u00f3n
-capability.CreateModifyDestroyFileplanMetadata.title=Crear Modificar Destruir metadatos de plan de ficheros
-capability.CreateModifyDestroyFileplanTypes.title=Crear Modificar Destruir tipos de plan de ficheros
-capability.CreateModifyDestroyRecordTypes.title=Crear Modificar Destruir tipos de documento de archivo
-capability.CreateAndAssociateSelectionLists.title=Crear y asociar listas de selecci\u00f3n
-capability.EditSelectionLists.title=Editar listas de selecci\u00f3n
-capability.CreateModifyDestroyReferenceTypes.title=Crear Modificar Destruir tipos de referencia
-capability.AttachRulesToMetadataProperties.title=Vincular reglas a las propiedades de metadatos
-capability.MakeOptionalParametersMandatory.title=Establecer como obligatorios los par\u00e1metros opcionales
-capability.MapEmailMetadata.title=Asignar metadatos de correo electr\u00f3nico
-
-# Rules
-capability.group.rules.title=Reglas
+# Records
+capability.group.records.title=Documentos de archivo
+capability.DeclareRecords.title=Documentos de archivo completo
+capability.ViewRecords.title=Ver documentos de archivo
+capability.UndeclareRecords.title=Reabrir documentos de archivo
+capability.CreateRecords.title=Crear documentos de archivo
+capability.RequestRecordInformation.title=Solicitar informaci\u00f3n sobre documento de archivo
+capability.RejectRecords.title=Rechazar documentos de archivo
+capability.FileUnfiledRecords.title=Archivar documentos de archivo no archivados
+capability.LinkToRecords.title=Enlazar documentos de archivo
+capability.DeleteLinks.title=Desvincular documentos de archivo
+
+# Metadata Control
+capability.group.metadataControl.title=Control de metadatos
+capability.EditRecordMetadata.title=Editar metadatos de documento de archivo
+capability.EditDeclaredRecordMetadata.title=Editar metadatos de documento de archivo completados
+capability.EditNonRecordMetadata.title=Editar metadatos que no son de documentos de archivo
+capability.MoveRecords.title=Mover documentos de archivo
+
+# Folder Control
+capability.group.folderControl.title=Control de carpetas
+capability.CreateModifyDestroyFolders.title=Crear Modificar Destruir carpetas
+capability.CloseFolders.title=Cerrar carpetas
+capability.ReOpenFolders.title=Reabrir carpetas
+capability.DeclareRecordsInClosedFolders.title=Completar documentos de archivo en carpetas cerradas
+
+# Vital Records
+capability.group.vitalRecords.title=Documentos de archivo vitales
+capability.UpdateVitalRecordCycleInformation.title=Actualizar informaci\u00f3n de ciclo de documentos de archivo vitales
+capability.CycleVitalRecords.title=Documentos de archivo vitales de ciclo
+capability.PlanningReviewCycles.title=Planificaci\u00f3n de ciclos de revisi\u00f3n
+
+# References and Links
+capability.group.references.title=Referencias
+capability.ChangeOrDeleteReferences.title=Cambiar o eliminar referencias
+
+# Events
+capability.group.events.title=Eventos
+capability.CreateModifyDestroyEvents.title=Crear Modificar Destruir eventos
+capability.AddModifyEventDates.title=Agregar o modificar fechas de eventos
+
+# Cutoff
+capability.group.cutoff.title=Interrumpir
+capability.ApproveRecordsScheduledForCutoff.title=Aprobar documentos de archivo planificados para interrupci\u00f3n
+capability.CreateModifyRecordsInCutoffFolders.title=Crear o modificar documentos de archivo en carpetas de interrupci\u00f3n
+
+# Disposition and Transfers
+capability.group.dispositionAndTransfers.title=Retenci\u00f3n y transferencias
+capability.UpdateTriggerDates.title=Actualizar fechas de ejecuci\u00f3n
+capability.ManuallyChangeDispositionDates.title=Cambiar las fechas de retenci\u00f3n manualmente
+capability.AuthorizeNominatedTransfers.title=Autorizar transferencias nominadas
+capability.AuthorizeAllTransfers.title=Autorizar todas las transferencias
+capability.DestroyRecordsScheduledForDestruction.title=Destruir documento de archivo o carpeta de documentos de archivo planificada para destrucci\u00f3n
+capability.DestroyRecords.title=Destruir documentos de archivo
+capability.DeleteRecords.title=Eliminar documentos de archivo
+capability.TriggerAnEvent.title=Ejecutar un evento
+capability.FileDestructionReport.title=Archivar informe de destrucci\u00f3n
+capability.FileTransferReport.title=Archivar informe de transferencia
+capability.EndRetention.title=Terminar retenci\u00f3n
+
+# Hold Controls
+capability.group.holdControls.title=Bloquear controles
+capability.ExtendRetentionPeriodOrFreeze.title=Extender periodo de retenci\u00f3n o congelar
+capability.Unfreeze.title=Descongelar
+capability.ViewUpdateReasonsForFreeze.title=Ver razones actualizadas de congelaci\u00f3n
+capability.CreateHold.title=Crear bloqueo
+capability.AddToHold.title=A\u00f1adir a bloqueo
+capability.RemoveFromHold.title=Eliminar de bloqueo
+capability.FileHoldReport.title=Archivar informe de bloqueo
+capability.DeleteHold.title=Eliminar bloqueo
+capability.EditHold.title=Editar bloqueo
+
+# Audit
+capability.group.audit.title=Auditor\u00eda
+capability.DeclareAuditAsRecord.title=Declarar auditor\u00eda como documento de archivo
+capability.EnableDisableAuditByTypes.title=Activar o desactivar auditor\u00eda por tipos
+capability.DeleteAudit.title=Eliminar auditor\u00eda
+capability.SelectAuditMetadata.title=Seleccionar metadatos de auditor\u00eda
+capability.AccessAudit.title=Acceder a auditor\u00eda
+capability.ExportAudit.title=Exportar auditor\u00eda
+
+# Security
+capability.group.security.title=Seguridad
+capability.CreateModifyDestroyRoles.title=Crear Modificar Destruir roles
+capability.CreateModifyDestroyUsersAndGroups.title=Crear Modificar Destruir usuarios y grupos
+capability.PasswordControl.title=Control de contrase\u00f1a
+capability.DisplayRightsReport.title=Informe de derechos de presentaci\u00f3n
+capability.ManageAccessControls.title=Asignaci\u00f3n de rol de usuario y grupo
+capability.ManageAccessRights.title=Administrar permisos
+
+# Configuration
+capability.group.config.title=Configuraci\u00f3n
+capability.CreateModifyDestroyFileplanMetadata.title=Crear Modificar Destruir metadatos de plan de ficheros
+capability.CreateModifyDestroyFileplanTypes.title=Crear Modificar Destruir tipos de plan de ficheros
+capability.CreateModifyDestroyRecordTypes.title=Crear Modificar Destruir tipos de documento de archivo
+capability.CreateAndAssociateSelectionLists.title=Crear y asociar listas de selecci\u00f3n
+capability.EditSelectionLists.title=Editar listas de selecci\u00f3n
+capability.CreateModifyDestroyReferenceTypes.title=Crear Modificar Destruir tipos de referencia
+capability.AttachRulesToMetadataProperties.title=Vincular reglas a las propiedades de metadatos
+capability.MakeOptionalParametersMandatory.title=Establecer como obligatorios los par\u00e1metros opcionales
+capability.MapEmailMetadata.title=Asignar metadatos de correo electr\u00f3nico
+
+# Rules
+capability.group.rules.title=Reglas
capability.ManageRules.title=Gestionar reglas
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_fr.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_fr.properties
index 3f43a35ae8..4c35992d83 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_fr.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_fr.properties
@@ -1,105 +1,105 @@
-# Records
-capability.group.records.title=Documents d'archives
-capability.DeclareRecords.title=Compl\u00e9ter des documents d'archives
-capability.ViewRecords.title=Afficher des documents d'archives
-capability.UndeclareRecords.title=Rouvrir des documents d'archives
-capability.CreateRecords.title=Cr\u00e9er des documents d'archives
-capability.RequestRecordInformation.title=Demander des informations sur un document d'archives
-capability.RejectRecords.title=Rejeter des documents d'archives
-capability.FileUnfiledRecords.title=Classer des documents d'archives non class\u00e9s
-capability.LinkToRecords.title=Lier des documents d'archives
-capability.DeleteLinks.title=Supprimer le lien des enregistrements
-
-# Metadata Control
-capability.group.metadataControl.title=Contr\u00f4le des m\u00e9tadonn\u00e9es
-capability.EditRecordMetadata.title=Modifier les m\u00e9tadonn\u00e9es d'un document d'archives
-capability.EditDeclaredRecordMetadata.title=Modifier les m\u00e9tadonn\u00e9es d'un document d'archives compl\u00e9t\u00e9
-capability.EditNonRecordMetadata.title=Modifier les m\u00e9tadonn\u00e9es d'un document qui n'est pas un document d'archives
-capability.MoveRecords.title=D\u00e9placer des documents d'archives
-
-# Folder Control
-capability.group.folderControl.title=Contr\u00f4le de dossiers
-capability.CreateModifyDestroyFolders.title=Cr\u00e9er Modifier D\u00e9truire Dossiers
-capability.CloseFolders.title=Fermer des dossiers
-capability.ReOpenFolders.title=Rouvrir des dossiers
-capability.DeclareRecordsInClosedFolders.title=Compl\u00e9ter des documents d'archives dans des dossiers ferm\u00e9s
-
-# Vital Records
-capability.group.vitalRecords.title=Documents d'archives essentiels
-capability.UpdateVitalRecordCycleInformation.title=Actualiser les informations concernant le cycle des documents d'archives essentiels
-capability.CycleVitalRecords.title=Cycle des documents d'archives essentiels
-capability.PlanningReviewCycles.title=Planifier les cycles de r\u00e9vision
-
-# References and Links
-capability.group.references.title=R\u00e9f\u00e9rences
-capability.ChangeOrDeleteReferences.title=Modifier ou supprimer des r\u00e9f\u00e9rences
-
-# Events
-capability.group.events.title=Ev\u00e9nements
-capability.CreateModifyDestroyEvents.title=Cr\u00e9er Modifier D\u00e9truire Ev\u00e9nements
-capability.AddModifyEventDates.title=Ajouter Modifier Dates d'\u00e9v\u00e9nements
-
-# Cutoff
-capability.group.cutoff.title=D\u00e9classer
-capability.ApproveRecordsScheduledForCutoff.title=Approuver les documents d'archives planifi\u00e9s pour un d\u00e9classement
-capability.CreateModifyRecordsInCutoffFolders.title=Cr\u00e9er Modifier des documents d'archives dans des dossiers d\u00e9class\u00e9s
-
-# Disposition and Transfers
-capability.group.dispositionAndTransfers.title=R\u00e9tention et transferts
-capability.UpdateTriggerDates.title=Actualiser les dates de d\u00e9clenchement
-capability.ManuallyChangeDispositionDates.title=Modifier manuellement les dates de r\u00e9tention
-capability.AuthorizeNominatedTransfers.title=Autoriser les transferts nominatifs
-capability.AuthorizeAllTransfers.title=Autoriser tous les transferts
-capability.DestroyRecordsScheduledForDestruction.title=D\u00e9truire un document ou un dossier d'archives dont la destruction est planifi\u00e9e
-capability.DestroyRecords.title=D\u00e9truire des documents d'archives
-capability.DeleteRecords.title=Supprimer des documents d'archives
-capability.TriggerAnEvent.title=D\u00e9clencher un \u00e9v\u00e9nement
-capability.FileDestructionReport.title=Rapport de destruction de fichier
-capability.FileTransferReport.title=Rapport de transfert de fichier
-capability.EndRetention.title=Mettre fin \u00e0 la r\u00e9tention
-
-# Hold Controls
-capability.group.holdControls.title=Suspendre les contr\u00f4les
-capability.ExtendRetentionPeriodOrFreeze.title=Prolonger la p\u00e9riode de r\u00e9tention ou le gel
-capability.Unfreeze.title=D\u00e9geler
-capability.ViewUpdateReasonsForFreeze.title=Voir les motifs d'actualisation d'un gel
-capability.CreateHold.title=Cr\u00e9er une suspension
-capability.AddToHold.title=Ajouter \u00e0 la suspension
-capability.RemoveFromHold.title=Supprimer de la suspension
-capability.FileHoldReport.title=Archiver le rapport de suspension
-capability.DeleteHold.title=Supprimer la suspension
-capability.EditHold.title=Modifier la suspension
-
-# Audit
-capability.group.audit.title=Audit
-capability.DeclareAuditAsRecord.title=D\u00e9clarer l'audit en tant que document d'archives
-capability.EnableDisableAuditByTypes.title=Activer D\u00e9sactiver l'audit par types
-capability.DeleteAudit.title=Supprimer un audit
-capability.SelectAuditMetadata.title=S\u00e9lectionner les m\u00e9tadonn\u00e9es d'un audit
-capability.AccessAudit.title=Acc\u00e9der \u00e0 un audit
-capability.ExportAudit.title=Exporter l'audit
-
-# Security
-capability.group.security.title=S\u00e9curit\u00e9
-capability.CreateModifyDestroyRoles.title=Cr\u00e9er Modifier D\u00e9truire des r\u00f4les
-capability.CreateModifyDestroyUsersAndGroups.title=Cr\u00e9er Modifier D\u00e9truire des utilisateurs et des groupes
-capability.PasswordControl.title=Contr\u00f4le des mots de passe
-capability.DisplayRightsReport.title=Afficher le rapport sur les droits
-capability.ManageAccessControls.title=Affectation de r\u00f4les aux groupes et utilisateurs
-capability.ManageAccessRights.title=G\u00e9rer les permissions
-
-# Configuration
-capability.group.config.title=Configuration
-capability.CreateModifyDestroyFileplanMetadata.title=Cr\u00e9er Modifier D\u00e9truire des m\u00e9tadonn\u00e9es de plan de classification
-capability.CreateModifyDestroyFileplanTypes.title=Cr\u00e9er Modifier D\u00e9truire des types de plan de classification
-capability.CreateModifyDestroyRecordTypes.title=Cr\u00e9er Modifier D\u00e9truire des types de document d'archives
-capability.CreateAndAssociateSelectionLists.title=Cr\u00e9er et associer des listes de s\u00e9lections
-capability.EditSelectionLists.title=Modifier des listes de s\u00e9lections
-capability.CreateModifyDestroyReferenceTypes.title=Cr\u00e9er Modifier D\u00e9truire des types de r\u00e9f\u00e9rence
-capability.AttachRulesToMetadataProperties.title=Attacher des r\u00e8gles aux propri\u00e9t\u00e9s des m\u00e9tadonn\u00e9es
-capability.MakeOptionalParametersMandatory.title=Rendre obligatoires des param\u00e8tres facultatifs
-capability.MapEmailMetadata.title=Mapper des m\u00e9tadonn\u00e9es d'e-mail
-
-# Rules
-capability.group.rules.title=R\u00e8gles
+# Records
+capability.group.records.title=Documents d'archives
+capability.DeclareRecords.title=Compl\u00e9ter des documents d'archives
+capability.ViewRecords.title=Afficher des documents d'archives
+capability.UndeclareRecords.title=Rouvrir des documents d'archives
+capability.CreateRecords.title=Cr\u00e9er des documents d'archives
+capability.RequestRecordInformation.title=Demander des informations sur un document d'archives
+capability.RejectRecords.title=Rejeter des documents d'archives
+capability.FileUnfiledRecords.title=Classer des documents d'archives non class\u00e9s
+capability.LinkToRecords.title=Lier des documents d'archives
+capability.DeleteLinks.title=Supprimer le lien des enregistrements
+
+# Metadata Control
+capability.group.metadataControl.title=Contr\u00f4le des m\u00e9tadonn\u00e9es
+capability.EditRecordMetadata.title=Modifier les m\u00e9tadonn\u00e9es d'un document d'archives
+capability.EditDeclaredRecordMetadata.title=Modifier les m\u00e9tadonn\u00e9es d'un document d'archives compl\u00e9t\u00e9
+capability.EditNonRecordMetadata.title=Modifier les m\u00e9tadonn\u00e9es d'un document qui n'est pas un document d'archives
+capability.MoveRecords.title=D\u00e9placer des documents d'archives
+
+# Folder Control
+capability.group.folderControl.title=Contr\u00f4le de dossiers
+capability.CreateModifyDestroyFolders.title=Cr\u00e9er Modifier D\u00e9truire Dossiers
+capability.CloseFolders.title=Fermer des dossiers
+capability.ReOpenFolders.title=Rouvrir des dossiers
+capability.DeclareRecordsInClosedFolders.title=Compl\u00e9ter des documents d'archives dans des dossiers ferm\u00e9s
+
+# Vital Records
+capability.group.vitalRecords.title=Documents d'archives essentiels
+capability.UpdateVitalRecordCycleInformation.title=Actualiser les informations concernant le cycle des documents d'archives essentiels
+capability.CycleVitalRecords.title=Cycle des documents d'archives essentiels
+capability.PlanningReviewCycles.title=Planifier les cycles de r\u00e9vision
+
+# References and Links
+capability.group.references.title=R\u00e9f\u00e9rences
+capability.ChangeOrDeleteReferences.title=Modifier ou supprimer des r\u00e9f\u00e9rences
+
+# Events
+capability.group.events.title=Ev\u00e9nements
+capability.CreateModifyDestroyEvents.title=Cr\u00e9er Modifier D\u00e9truire Ev\u00e9nements
+capability.AddModifyEventDates.title=Ajouter Modifier Dates d'\u00e9v\u00e9nements
+
+# Cutoff
+capability.group.cutoff.title=D\u00e9classer
+capability.ApproveRecordsScheduledForCutoff.title=Approuver les documents d'archives planifi\u00e9s pour un d\u00e9classement
+capability.CreateModifyRecordsInCutoffFolders.title=Cr\u00e9er Modifier des documents d'archives dans des dossiers d\u00e9class\u00e9s
+
+# Disposition and Transfers
+capability.group.dispositionAndTransfers.title=R\u00e9tention et transferts
+capability.UpdateTriggerDates.title=Actualiser les dates de d\u00e9clenchement
+capability.ManuallyChangeDispositionDates.title=Modifier manuellement les dates de r\u00e9tention
+capability.AuthorizeNominatedTransfers.title=Autoriser les transferts nominatifs
+capability.AuthorizeAllTransfers.title=Autoriser tous les transferts
+capability.DestroyRecordsScheduledForDestruction.title=D\u00e9truire un document ou un dossier d'archives dont la destruction est planifi\u00e9e
+capability.DestroyRecords.title=D\u00e9truire des documents d'archives
+capability.DeleteRecords.title=Supprimer des documents d'archives
+capability.TriggerAnEvent.title=D\u00e9clencher un \u00e9v\u00e9nement
+capability.FileDestructionReport.title=Rapport de destruction de fichier
+capability.FileTransferReport.title=Rapport de transfert de fichier
+capability.EndRetention.title=Mettre fin \u00e0 la r\u00e9tention
+
+# Hold Controls
+capability.group.holdControls.title=Suspendre les contr\u00f4les
+capability.ExtendRetentionPeriodOrFreeze.title=Prolonger la p\u00e9riode de r\u00e9tention ou le gel
+capability.Unfreeze.title=D\u00e9geler
+capability.ViewUpdateReasonsForFreeze.title=Voir les motifs d'actualisation d'un gel
+capability.CreateHold.title=Cr\u00e9er une suspension
+capability.AddToHold.title=Ajouter \u00e0 la suspension
+capability.RemoveFromHold.title=Supprimer de la suspension
+capability.FileHoldReport.title=Archiver le rapport de suspension
+capability.DeleteHold.title=Supprimer la suspension
+capability.EditHold.title=Modifier la suspension
+
+# Audit
+capability.group.audit.title=Audit
+capability.DeclareAuditAsRecord.title=D\u00e9clarer l'audit en tant que document d'archives
+capability.EnableDisableAuditByTypes.title=Activer D\u00e9sactiver l'audit par types
+capability.DeleteAudit.title=Supprimer un audit
+capability.SelectAuditMetadata.title=S\u00e9lectionner les m\u00e9tadonn\u00e9es d'un audit
+capability.AccessAudit.title=Acc\u00e9der \u00e0 un audit
+capability.ExportAudit.title=Exporter l'audit
+
+# Security
+capability.group.security.title=S\u00e9curit\u00e9
+capability.CreateModifyDestroyRoles.title=Cr\u00e9er Modifier D\u00e9truire des r\u00f4les
+capability.CreateModifyDestroyUsersAndGroups.title=Cr\u00e9er Modifier D\u00e9truire des utilisateurs et des groupes
+capability.PasswordControl.title=Contr\u00f4le des mots de passe
+capability.DisplayRightsReport.title=Afficher le rapport sur les droits
+capability.ManageAccessControls.title=Affectation de r\u00f4les aux groupes et utilisateurs
+capability.ManageAccessRights.title=G\u00e9rer les permissions
+
+# Configuration
+capability.group.config.title=Configuration
+capability.CreateModifyDestroyFileplanMetadata.title=Cr\u00e9er Modifier D\u00e9truire des m\u00e9tadonn\u00e9es de plan de classification
+capability.CreateModifyDestroyFileplanTypes.title=Cr\u00e9er Modifier D\u00e9truire des types de plan de classification
+capability.CreateModifyDestroyRecordTypes.title=Cr\u00e9er Modifier D\u00e9truire des types de document d'archives
+capability.CreateAndAssociateSelectionLists.title=Cr\u00e9er et associer des listes de s\u00e9lections
+capability.EditSelectionLists.title=Modifier des listes de s\u00e9lections
+capability.CreateModifyDestroyReferenceTypes.title=Cr\u00e9er Modifier D\u00e9truire des types de r\u00e9f\u00e9rence
+capability.AttachRulesToMetadataProperties.title=Attacher des r\u00e8gles aux propri\u00e9t\u00e9s des m\u00e9tadonn\u00e9es
+capability.MakeOptionalParametersMandatory.title=Rendre obligatoires des param\u00e8tres facultatifs
+capability.MapEmailMetadata.title=Mapper des m\u00e9tadonn\u00e9es d'e-mail
+
+# Rules
+capability.group.rules.title=R\u00e8gles
capability.ManageRules.title=G\u00e9rer les r\u00e8gles
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_it.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_it.properties
index dd3d6c7571..725dc6f8ac 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_it.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_it.properties
@@ -1,105 +1,105 @@
-# Records
-capability.group.records.title=Record
-capability.DeclareRecords.title=Completa record
-capability.ViewRecords.title=Visualizza record
-capability.UndeclareRecords.title=Riapri record
-capability.CreateRecords.title=Crea record
-capability.RequestRecordInformation.title=Richiedi informazioni record
-capability.RejectRecords.title=Respingi record
-capability.FileUnfiledRecords.title=Archivia record non archiviati
-capability.LinkToRecords.title=Collega record
-capability.DeleteLinks.title=Scollega record
-
-# Metadata Control
-capability.group.metadataControl.title=Controllo metadati
-capability.EditRecordMetadata.title=Modifica metadati del record
-capability.EditDeclaredRecordMetadata.title=Modifica metadati del record completati
-capability.EditNonRecordMetadata.title=Modifica metadati del non record
-capability.MoveRecords.title=Sposta record
-
-# Folder Control
-capability.group.folderControl.title=Controllo cartelle
-capability.CreateModifyDestroyFolders.title=Crea Modifica Elimina definitivamente cartelle
-capability.CloseFolders.title=Chiudi cartelle
-capability.ReOpenFolders.title=Riapri cartelle
-capability.DeclareRecordsInClosedFolders.title=Completa record nelle cartelle chiuse
-
-# Vital Records
-capability.group.vitalRecords.title=Record fondamentali
-capability.UpdateVitalRecordCycleInformation.title=Aggiorna informazioni ciclo di record fondamentale
-capability.CycleVitalRecords.title=Record fondamentali del ciclo
-capability.PlanningReviewCycles.title=Programma cicli di esame
-
-# References and Links
-capability.group.references.title=Riferimenti
-capability.ChangeOrDeleteReferences.title=Cambia o elimina riferimenti
-
-# Events
-capability.group.events.title=Eventi
-capability.CreateModifyDestroyEvents.title=Crea Modifica Elimina definitivamente eventi
-capability.AddModifyEventDates.title=Aggiungi Modifica date eventi
-
-# Cutoff
-capability.group.cutoff.title=Cut off
-capability.ApproveRecordsScheduledForCutoff.title=Approva record programmati per il cut off
-capability.CreateModifyRecordsInCutoffFolders.title=Crea Modifica record nelle cartelle di cut off
-
-# Disposition and Transfers
-capability.group.dispositionAndTransfers.title=Conservazione e trasferimenti
-capability.UpdateTriggerDates.title=Aggiorna date di attivazione
-capability.ManuallyChangeDispositionDates.title=Cambia manualmente le date di conservazione
-capability.AuthorizeNominatedTransfers.title=Autorizza trasferimenti nominati
-capability.AuthorizeAllTransfers.title=Autorizza tutti i trasferimenti
-capability.DestroyRecordsScheduledForDestruction.title=Elimina definitivamente record o cartella di record programmati per l'eliminazione definitiva
-capability.DestroyRecords.title=Elimina definitivamente record
-capability.DeleteRecords.title=Elimina record
-capability.TriggerAnEvent.title=Attiva un evento
-capability.FileDestructionReport.title=Archivia rapporto di eliminazione definitiva
-capability.FileTransferReport.title=Archivia rapporto di trasferimento
-capability.EndRetention.title=Termina conservazione
-
-# Hold Controls
-capability.group.holdControls.title=Sospendi controlli
-capability.ExtendRetentionPeriodOrFreeze.title=Estendi periodo di conservazione o blocca
-capability.Unfreeze.title=Sblocca
-capability.ViewUpdateReasonsForFreeze.title=Visualizza Aggiorna motivi blocco
-capability.CreateHold.title=Crea sospensione
-capability.AddToHold.title=Aggiungi a sospesi
-capability.RemoveFromHold.title=Rimuovi da sospesi
-capability.FileHoldReport.title=Archivia rapporto di sospensione
-capability.DeleteHold.title=Annulla sospensione
-capability.EditHold.title=Modifica sospensione
-
-# Audit
-capability.group.audit.title=Audit
-capability.DeclareAuditAsRecord.title=Dichiara audit come record
-capability.EnableDisableAuditByTypes.title=Abilita Disabilita audit per tipo
-capability.DeleteAudit.title=Elimina audit
-capability.SelectAuditMetadata.title=Seleziona metadati di audit
-capability.AccessAudit.title=Accedi audit
-capability.ExportAudit.title=Esporta audit
-
-# Security
-capability.group.security.title=Sicurezza
-capability.CreateModifyDestroyRoles.title=Crea Modifica Elimina definitivamente ruoli
-capability.CreateModifyDestroyUsersAndGroups.title=Crea Modifica Elimina definitivamente utenti e gruppi
-capability.PasswordControl.title=Controllo password
-capability.DisplayRightsReport.title=Mostra rapporto diritti
-capability.ManageAccessControls.title=Assegnazione gruppo e ruolo utente
-capability.ManageAccessRights.title=Gestisci permessi
-
-# Configuration
-capability.group.config.title=Configurazione
-capability.CreateModifyDestroyFileplanMetadata.title=Crea Modifica Elimina definitivamente metadati di piano file
-capability.CreateModifyDestroyFileplanTypes.title=Crea Modifica Elimina definitivamente tipi di piano file
-capability.CreateModifyDestroyRecordTypes.title=Crea Modifica Elimina definitivamente tipi di record
-capability.CreateAndAssociateSelectionLists.title=Crea e associa elenchi di selezione
-capability.EditSelectionLists.title=Modifica elenchi di selezione
-capability.CreateModifyDestroyReferenceTypes.title=Crea Modifica Elimina definitivamente tipi di riferimento
-capability.AttachRulesToMetadataProperties.title=Allega regole a propriet\u00e0 di metadati
-capability.MakeOptionalParametersMandatory.title=Rendi obbligatori i parametri opzionali
-capability.MapEmailMetadata.title=Esegui il mapping dei metadati di e-mail
-
-# Rules
-capability.group.rules.title=Regole
+# Records
+capability.group.records.title=Record
+capability.DeclareRecords.title=Completa record
+capability.ViewRecords.title=Visualizza record
+capability.UndeclareRecords.title=Riapri record
+capability.CreateRecords.title=Crea record
+capability.RequestRecordInformation.title=Richiedi informazioni record
+capability.RejectRecords.title=Respingi record
+capability.FileUnfiledRecords.title=Archivia record non archiviati
+capability.LinkToRecords.title=Collega record
+capability.DeleteLinks.title=Scollega record
+
+# Metadata Control
+capability.group.metadataControl.title=Controllo metadati
+capability.EditRecordMetadata.title=Modifica metadati del record
+capability.EditDeclaredRecordMetadata.title=Modifica metadati del record completati
+capability.EditNonRecordMetadata.title=Modifica metadati del non record
+capability.MoveRecords.title=Sposta record
+
+# Folder Control
+capability.group.folderControl.title=Controllo cartelle
+capability.CreateModifyDestroyFolders.title=Crea Modifica Elimina definitivamente cartelle
+capability.CloseFolders.title=Chiudi cartelle
+capability.ReOpenFolders.title=Riapri cartelle
+capability.DeclareRecordsInClosedFolders.title=Completa record nelle cartelle chiuse
+
+# Vital Records
+capability.group.vitalRecords.title=Record fondamentali
+capability.UpdateVitalRecordCycleInformation.title=Aggiorna informazioni ciclo di record fondamentale
+capability.CycleVitalRecords.title=Record fondamentali del ciclo
+capability.PlanningReviewCycles.title=Programma cicli di esame
+
+# References and Links
+capability.group.references.title=Riferimenti
+capability.ChangeOrDeleteReferences.title=Cambia o elimina riferimenti
+
+# Events
+capability.group.events.title=Eventi
+capability.CreateModifyDestroyEvents.title=Crea Modifica Elimina definitivamente eventi
+capability.AddModifyEventDates.title=Aggiungi Modifica date eventi
+
+# Cutoff
+capability.group.cutoff.title=Cut off
+capability.ApproveRecordsScheduledForCutoff.title=Approva record programmati per il cut off
+capability.CreateModifyRecordsInCutoffFolders.title=Crea Modifica record nelle cartelle di cut off
+
+# Disposition and Transfers
+capability.group.dispositionAndTransfers.title=Conservazione e trasferimenti
+capability.UpdateTriggerDates.title=Aggiorna date di attivazione
+capability.ManuallyChangeDispositionDates.title=Cambia manualmente le date di conservazione
+capability.AuthorizeNominatedTransfers.title=Autorizza trasferimenti nominati
+capability.AuthorizeAllTransfers.title=Autorizza tutti i trasferimenti
+capability.DestroyRecordsScheduledForDestruction.title=Elimina definitivamente record o cartella di record programmati per l'eliminazione definitiva
+capability.DestroyRecords.title=Elimina definitivamente record
+capability.DeleteRecords.title=Elimina record
+capability.TriggerAnEvent.title=Attiva un evento
+capability.FileDestructionReport.title=Archivia rapporto di eliminazione definitiva
+capability.FileTransferReport.title=Archivia rapporto di trasferimento
+capability.EndRetention.title=Termina conservazione
+
+# Hold Controls
+capability.group.holdControls.title=Sospendi controlli
+capability.ExtendRetentionPeriodOrFreeze.title=Estendi periodo di conservazione o blocca
+capability.Unfreeze.title=Sblocca
+capability.ViewUpdateReasonsForFreeze.title=Visualizza Aggiorna motivi blocco
+capability.CreateHold.title=Crea sospensione
+capability.AddToHold.title=Aggiungi a sospesi
+capability.RemoveFromHold.title=Rimuovi da sospesi
+capability.FileHoldReport.title=Archivia rapporto di sospensione
+capability.DeleteHold.title=Annulla sospensione
+capability.EditHold.title=Modifica sospensione
+
+# Audit
+capability.group.audit.title=Audit
+capability.DeclareAuditAsRecord.title=Dichiara audit come record
+capability.EnableDisableAuditByTypes.title=Abilita Disabilita audit per tipo
+capability.DeleteAudit.title=Elimina audit
+capability.SelectAuditMetadata.title=Seleziona metadati di audit
+capability.AccessAudit.title=Accedi audit
+capability.ExportAudit.title=Esporta audit
+
+# Security
+capability.group.security.title=Sicurezza
+capability.CreateModifyDestroyRoles.title=Crea Modifica Elimina definitivamente ruoli
+capability.CreateModifyDestroyUsersAndGroups.title=Crea Modifica Elimina definitivamente utenti e gruppi
+capability.PasswordControl.title=Controllo password
+capability.DisplayRightsReport.title=Mostra rapporto diritti
+capability.ManageAccessControls.title=Assegnazione gruppo e ruolo utente
+capability.ManageAccessRights.title=Gestisci permessi
+
+# Configuration
+capability.group.config.title=Configurazione
+capability.CreateModifyDestroyFileplanMetadata.title=Crea Modifica Elimina definitivamente metadati di piano file
+capability.CreateModifyDestroyFileplanTypes.title=Crea Modifica Elimina definitivamente tipi di piano file
+capability.CreateModifyDestroyRecordTypes.title=Crea Modifica Elimina definitivamente tipi di record
+capability.CreateAndAssociateSelectionLists.title=Crea e associa elenchi di selezione
+capability.EditSelectionLists.title=Modifica elenchi di selezione
+capability.CreateModifyDestroyReferenceTypes.title=Crea Modifica Elimina definitivamente tipi di riferimento
+capability.AttachRulesToMetadataProperties.title=Allega regole a propriet\u00e0 di metadati
+capability.MakeOptionalParametersMandatory.title=Rendi obbligatori i parametri opzionali
+capability.MapEmailMetadata.title=Esegui il mapping dei metadati di e-mail
+
+# Rules
+capability.group.rules.title=Regole
capability.ManageRules.title=Gestisci regole
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_ja.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_ja.properties
index bab3c4e28b..64392020e6 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_ja.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_ja.properties
@@ -1,105 +1,105 @@
-# Records
-capability.group.records.title=\u30ec\u30b3\u30fc\u30c9
-capability.DeclareRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u5b8c\u4e86
-capability.ViewRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u8868\u793a
-capability.UndeclareRecords.title=\u30ec\u30b3\u30fc\u30c9\u3092\u518d\u5ea6\u958b\u304f
-capability.CreateRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u4f5c\u6210
-capability.RequestRecordInformation.title=\u30ec\u30b3\u30fc\u30c9\u60c5\u5831\u306e\u30ea\u30af\u30a8\u30b9\u30c8
-capability.RejectRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u5374\u4e0b
-capability.FileUnfiledRecords.title=\u672a\u6574\u7406\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u6574\u7406\u4fdd\u7ba1
-capability.LinkToRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u30ea\u30f3\u30af
-capability.DeleteLinks.title=\u30ec\u30b3\u30fc\u30c9\u306e\u30ea\u30f3\u30af\u89e3\u9664
-
-# Metadata Control
-capability.group.metadataControl.title=\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u7ba1\u7406
-capability.EditRecordMetadata.title=\u30ec\u30b3\u30fc\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u7de8\u96c6
-capability.EditDeclaredRecordMetadata.title=\u5b8c\u4e86\u6e08\u307f\u30ec\u30b3\u30fc\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u7de8\u96c6
-capability.EditNonRecordMetadata.title=\u975e\u30ec\u30b3\u30fc\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u7de8\u96c6
-capability.MoveRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u79fb\u52d5
-
-# Folder Control
-capability.group.folderControl.title=\u30d5\u30a9\u30eb\u30c0\u306e\u7ba1\u7406
-capability.CreateModifyDestroyFolders.title=\u30d5\u30a9\u30eb\u30c0\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
-capability.CloseFolders.title=\u30d5\u30a9\u30eb\u30c0\u3092\u9589\u3058\u308b
-capability.ReOpenFolders.title=\u30d5\u30a9\u30eb\u30c0\u3092\u518d\u5ea6\u958b\u304f
-capability.DeclareRecordsInClosedFolders.title=\u9589\u3058\u305f\u30d5\u30a9\u30eb\u30c0\u5185\u306e\u5b8c\u4e86\u30ec\u30b3\u30fc\u30c9
-
-# Vital Records
-capability.group.vitalRecords.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9
-capability.UpdateVitalRecordCycleInformation.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u30b5\u30a4\u30af\u30eb\u60c5\u5831\u306e\u66f4\u65b0
-capability.CycleVitalRecords.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u30b5\u30a4\u30af\u30eb
-capability.PlanningReviewCycles.title=\u30ec\u30d3\u30e5\u30fc\u30b5\u30a4\u30af\u30eb\u306e\u30d7\u30e9\u30f3\u30cb\u30f3\u30b0
-
-# References and Links
-capability.group.references.title=\u53c2\u7167
-capability.ChangeOrDeleteReferences.title=\u53c2\u7167\u306e\u5909\u66f4\u307e\u305f\u306f\u524a\u9664
-
-# Events
-capability.group.events.title=\u30a4\u30d9\u30f3\u30c8
-capability.CreateModifyDestroyEvents.title=\u30a4\u30d9\u30f3\u30c8\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
-capability.AddModifyEventDates.title=\u30a4\u30d9\u30f3\u30c8\u306e\u65e5\u4ed8\u306e\u8ffd\u52a0/\u5909\u66f4
-
-# Cutoff
-capability.group.cutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5
-capability.ApproveRecordsScheduledForCutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5\u306e\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u6e08\u307f\u30ec\u30b3\u30fc\u30c9\u306e\u627f\u8a8d
-capability.CreateModifyRecordsInCutoffFolders.title=\u30ab\u30c3\u30c8\u30aa\u30d5\u30d5\u30a9\u30eb\u30c0\u5185\u3067\u4fee\u6b63\u30ec\u30b3\u30fc\u30c9\u3092\u4f5c\u6210
-
-# Disposition and Transfers
-capability.group.dispositionAndTransfers.title=\u4fdd\u7ba1\u3068\u8ee2\u9001
-capability.UpdateTriggerDates.title=\u30c8\u30ea\u30ac\u30fc\u65e5\u306e\u66f4\u65b0
-capability.ManuallyChangeDispositionDates.title=\u4fdd\u7ba1\u65e5\u3092\u624b\u52d5\u3067\u5909\u66f4\u3059\u308b
-capability.AuthorizeNominatedTransfers.title=\u7533\u8acb\u3055\u308c\u305f\u8ee2\u9001\u3092\u627f\u8a8d\u3059\u308b
-capability.AuthorizeAllTransfers.title=\u3059\u3079\u3066\u306e\u8ee2\u9001\u3092\u627f\u8a8d\u3059\u308b
-capability.DestroyRecordsScheduledForDestruction.title=\u7834\u68c4\u304c\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u7834\u68c4\u3059\u308b
-capability.DestroyRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u7834\u68c4
-capability.DeleteRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u524a\u9664
-capability.TriggerAnEvent.title=\u30a4\u30d9\u30f3\u30c8\u306e\u30c8\u30ea\u30ac\u30fc
-capability.FileDestructionReport.title=\u7834\u68c4\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1
-capability.FileTransferReport.title=\u8ee2\u9001\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1
-capability.EndRetention.title=\u4fdd\u7ba1\u306e\u7d42\u4e86
-
-# Hold Controls
-capability.group.holdControls.title=\u30db\u30fc\u30eb\u30c9\u306e\u7ba1\u7406
-capability.ExtendRetentionPeriodOrFreeze.title=\u4fdd\u7ba1\u671f\u9593\u306e\u5ef6\u9577\u307e\u305f\u306f\u51cd\u7d50
-capability.Unfreeze.title=\u51cd\u7d50\u89e3\u9664
-capability.ViewUpdateReasonsForFreeze.title=\u51cd\u7d50\u306e\u66f4\u65b0\u7406\u7531\u3092\u8868\u793a
-capability.CreateHold.title=\u30db\u30fc\u30eb\u30c9\u306e\u4f5c\u6210
-capability.AddToHold.title=\u30db\u30fc\u30eb\u30c9\u306b\u8ffd\u52a0
-capability.RemoveFromHold.title=\u30db\u30fc\u30eb\u30c9\u304b\u3089\u524a\u9664
-capability.FileHoldReport.title=\u30db\u30fc\u30eb\u30c9\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1
-capability.DeleteHold.title=\u30db\u30fc\u30eb\u30c9\u306e\u524a\u9664
-capability.EditHold.title=\u30db\u30fc\u30eb\u30c9\u306e\u7de8\u96c6
-
-# Audit
-capability.group.audit.title=\u76e3\u67fb
-capability.DeclareAuditAsRecord.title=\u76e3\u67fb\u3092\u30ec\u30b3\u30fc\u30c9\u3068\u3057\u3066\u5ba3\u8a00\u3059\u308b
-capability.EnableDisableAuditByTypes.title=\u76e3\u67fb\u3092\u30bf\u30a4\u30d7\u5225\u306b\u6709\u52b9\u5316/\u7121\u52b9\u5316\u3059\u308b
-capability.DeleteAudit.title=\u76e3\u67fb\u306e\u524a\u9664
-capability.SelectAuditMetadata.title=\u76e3\u67fb\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u9078\u629e
-capability.AccessAudit.title=\u76e3\u67fb\u306b\u30a2\u30af\u30bb\u30b9
-capability.ExportAudit.title=\u76e3\u67fb\u306e\u30a8\u30af\u30b9\u30dd\u30fc\u30c8
-
-# Security
-capability.group.security.title=\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3
-capability.CreateModifyDestroyRoles.title=\u5f79\u5272\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
-capability.CreateModifyDestroyUsersAndGroups.title=\u30e6\u30fc\u30b6\u30fc\u3068\u30b0\u30eb\u30fc\u30d7\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
-capability.PasswordControl.title=\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u7ba1\u7406
-capability.DisplayRightsReport.title=\u6a29\u9650\u30ec\u30dd\u30fc\u30c8\u306e\u8868\u793a
-capability.ManageAccessControls.title=\u30b0\u30eb\u30fc\u30d7\u3068\u30e6\u30fc\u30b6\u30fc\u306e\u5f79\u5272\u306e\u5272\u308a\u5f53\u3066
-capability.ManageAccessRights.title=\u6a29\u9650\u306e\u7ba1\u7406
-
-# Configuration
-capability.group.config.title=\u8a2d\u5b9a
-capability.CreateModifyDestroyFileplanMetadata.title=\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
-capability.CreateModifyDestroyFileplanTypes.title=\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u30bf\u30a4\u30d7\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
-capability.CreateModifyDestroyRecordTypes.title=\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
-capability.CreateAndAssociateSelectionLists.title=\u9078\u629e\u30ea\u30b9\u30c8\u306e\u4f5c\u6210\u3068\u95a2\u9023\u4ed8\u3051
-capability.EditSelectionLists.title=\u9078\u629e\u30ea\u30b9\u30c8\u306e\u7de8\u96c6
-capability.CreateModifyDestroyReferenceTypes.title=\u53c2\u7167\u30bf\u30a4\u30d7\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
-capability.AttachRulesToMetadataProperties.title=\u30e1\u30bf\u30c7\u30fc\u30bf\u30d7\u30ed\u30d1\u30c6\u30a3\u306b\u30eb\u30fc\u30eb\u3092\u9069\u7528
-capability.MakeOptionalParametersMandatory.title=\u30aa\u30d7\u30b7\u30e7\u30f3\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u5fc5\u9808\u306b\u3059\u308b
-capability.MapEmailMetadata.title=E \u30e1\u30fc\u30eb\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u30de\u30c3\u30d4\u30f3\u30b0
-
-# Rules
-capability.group.rules.title=\u30eb\u30fc\u30eb
+# Records
+capability.group.records.title=\u30ec\u30b3\u30fc\u30c9
+capability.DeclareRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u5b8c\u4e86
+capability.ViewRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u8868\u793a
+capability.UndeclareRecords.title=\u30ec\u30b3\u30fc\u30c9\u3092\u518d\u5ea6\u958b\u304f
+capability.CreateRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u4f5c\u6210
+capability.RequestRecordInformation.title=\u30ec\u30b3\u30fc\u30c9\u60c5\u5831\u306e\u30ea\u30af\u30a8\u30b9\u30c8
+capability.RejectRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u5374\u4e0b
+capability.FileUnfiledRecords.title=\u672a\u6574\u7406\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u6574\u7406\u4fdd\u7ba1
+capability.LinkToRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u30ea\u30f3\u30af
+capability.DeleteLinks.title=\u30ec\u30b3\u30fc\u30c9\u306e\u30ea\u30f3\u30af\u89e3\u9664
+
+# Metadata Control
+capability.group.metadataControl.title=\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u7ba1\u7406
+capability.EditRecordMetadata.title=\u30ec\u30b3\u30fc\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u7de8\u96c6
+capability.EditDeclaredRecordMetadata.title=\u5b8c\u4e86\u6e08\u307f\u30ec\u30b3\u30fc\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u7de8\u96c6
+capability.EditNonRecordMetadata.title=\u975e\u30ec\u30b3\u30fc\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u7de8\u96c6
+capability.MoveRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u79fb\u52d5
+
+# Folder Control
+capability.group.folderControl.title=\u30d5\u30a9\u30eb\u30c0\u306e\u7ba1\u7406
+capability.CreateModifyDestroyFolders.title=\u30d5\u30a9\u30eb\u30c0\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
+capability.CloseFolders.title=\u30d5\u30a9\u30eb\u30c0\u3092\u9589\u3058\u308b
+capability.ReOpenFolders.title=\u30d5\u30a9\u30eb\u30c0\u3092\u518d\u5ea6\u958b\u304f
+capability.DeclareRecordsInClosedFolders.title=\u9589\u3058\u305f\u30d5\u30a9\u30eb\u30c0\u5185\u306e\u5b8c\u4e86\u30ec\u30b3\u30fc\u30c9
+
+# Vital Records
+capability.group.vitalRecords.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9
+capability.UpdateVitalRecordCycleInformation.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u30b5\u30a4\u30af\u30eb\u60c5\u5831\u306e\u66f4\u65b0
+capability.CycleVitalRecords.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u30b5\u30a4\u30af\u30eb
+capability.PlanningReviewCycles.title=\u30ec\u30d3\u30e5\u30fc\u30b5\u30a4\u30af\u30eb\u306e\u30d7\u30e9\u30f3\u30cb\u30f3\u30b0
+
+# References and Links
+capability.group.references.title=\u53c2\u7167
+capability.ChangeOrDeleteReferences.title=\u53c2\u7167\u306e\u5909\u66f4\u307e\u305f\u306f\u524a\u9664
+
+# Events
+capability.group.events.title=\u30a4\u30d9\u30f3\u30c8
+capability.CreateModifyDestroyEvents.title=\u30a4\u30d9\u30f3\u30c8\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
+capability.AddModifyEventDates.title=\u30a4\u30d9\u30f3\u30c8\u306e\u65e5\u4ed8\u306e\u8ffd\u52a0/\u5909\u66f4
+
+# Cutoff
+capability.group.cutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5
+capability.ApproveRecordsScheduledForCutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5\u306e\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u6e08\u307f\u30ec\u30b3\u30fc\u30c9\u306e\u627f\u8a8d
+capability.CreateModifyRecordsInCutoffFolders.title=\u30ab\u30c3\u30c8\u30aa\u30d5\u30d5\u30a9\u30eb\u30c0\u5185\u3067\u4fee\u6b63\u30ec\u30b3\u30fc\u30c9\u3092\u4f5c\u6210
+
+# Disposition and Transfers
+capability.group.dispositionAndTransfers.title=\u4fdd\u7ba1\u3068\u8ee2\u9001
+capability.UpdateTriggerDates.title=\u30c8\u30ea\u30ac\u30fc\u65e5\u306e\u66f4\u65b0
+capability.ManuallyChangeDispositionDates.title=\u4fdd\u7ba1\u65e5\u3092\u624b\u52d5\u3067\u5909\u66f4\u3059\u308b
+capability.AuthorizeNominatedTransfers.title=\u7533\u8acb\u3055\u308c\u305f\u8ee2\u9001\u3092\u627f\u8a8d\u3059\u308b
+capability.AuthorizeAllTransfers.title=\u3059\u3079\u3066\u306e\u8ee2\u9001\u3092\u627f\u8a8d\u3059\u308b
+capability.DestroyRecordsScheduledForDestruction.title=\u7834\u68c4\u304c\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u7834\u68c4\u3059\u308b
+capability.DestroyRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u7834\u68c4
+capability.DeleteRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u524a\u9664
+capability.TriggerAnEvent.title=\u30a4\u30d9\u30f3\u30c8\u306e\u30c8\u30ea\u30ac\u30fc
+capability.FileDestructionReport.title=\u7834\u68c4\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1
+capability.FileTransferReport.title=\u8ee2\u9001\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1
+capability.EndRetention.title=\u4fdd\u7ba1\u306e\u7d42\u4e86
+
+# Hold Controls
+capability.group.holdControls.title=\u30db\u30fc\u30eb\u30c9\u306e\u7ba1\u7406
+capability.ExtendRetentionPeriodOrFreeze.title=\u4fdd\u7ba1\u671f\u9593\u306e\u5ef6\u9577\u307e\u305f\u306f\u51cd\u7d50
+capability.Unfreeze.title=\u51cd\u7d50\u89e3\u9664
+capability.ViewUpdateReasonsForFreeze.title=\u51cd\u7d50\u306e\u66f4\u65b0\u7406\u7531\u3092\u8868\u793a
+capability.CreateHold.title=\u30db\u30fc\u30eb\u30c9\u306e\u4f5c\u6210
+capability.AddToHold.title=\u30db\u30fc\u30eb\u30c9\u306b\u8ffd\u52a0
+capability.RemoveFromHold.title=\u30db\u30fc\u30eb\u30c9\u304b\u3089\u524a\u9664
+capability.FileHoldReport.title=\u30db\u30fc\u30eb\u30c9\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1
+capability.DeleteHold.title=\u30db\u30fc\u30eb\u30c9\u306e\u524a\u9664
+capability.EditHold.title=\u30db\u30fc\u30eb\u30c9\u306e\u7de8\u96c6
+
+# Audit
+capability.group.audit.title=\u76e3\u67fb
+capability.DeclareAuditAsRecord.title=\u76e3\u67fb\u3092\u30ec\u30b3\u30fc\u30c9\u3068\u3057\u3066\u5ba3\u8a00\u3059\u308b
+capability.EnableDisableAuditByTypes.title=\u76e3\u67fb\u3092\u30bf\u30a4\u30d7\u5225\u306b\u6709\u52b9\u5316/\u7121\u52b9\u5316\u3059\u308b
+capability.DeleteAudit.title=\u76e3\u67fb\u306e\u524a\u9664
+capability.SelectAuditMetadata.title=\u76e3\u67fb\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u9078\u629e
+capability.AccessAudit.title=\u76e3\u67fb\u306b\u30a2\u30af\u30bb\u30b9
+capability.ExportAudit.title=\u76e3\u67fb\u306e\u30a8\u30af\u30b9\u30dd\u30fc\u30c8
+
+# Security
+capability.group.security.title=\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3
+capability.CreateModifyDestroyRoles.title=\u5f79\u5272\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
+capability.CreateModifyDestroyUsersAndGroups.title=\u30e6\u30fc\u30b6\u30fc\u3068\u30b0\u30eb\u30fc\u30d7\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
+capability.PasswordControl.title=\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u7ba1\u7406
+capability.DisplayRightsReport.title=\u6a29\u9650\u30ec\u30dd\u30fc\u30c8\u306e\u8868\u793a
+capability.ManageAccessControls.title=\u30b0\u30eb\u30fc\u30d7\u3068\u30e6\u30fc\u30b6\u30fc\u306e\u5f79\u5272\u306e\u5272\u308a\u5f53\u3066
+capability.ManageAccessRights.title=\u6a29\u9650\u306e\u7ba1\u7406
+
+# Configuration
+capability.group.config.title=\u8a2d\u5b9a
+capability.CreateModifyDestroyFileplanMetadata.title=\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
+capability.CreateModifyDestroyFileplanTypes.title=\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u30bf\u30a4\u30d7\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
+capability.CreateModifyDestroyRecordTypes.title=\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
+capability.CreateAndAssociateSelectionLists.title=\u9078\u629e\u30ea\u30b9\u30c8\u306e\u4f5c\u6210\u3068\u95a2\u9023\u4ed8\u3051
+capability.EditSelectionLists.title=\u9078\u629e\u30ea\u30b9\u30c8\u306e\u7de8\u96c6
+capability.CreateModifyDestroyReferenceTypes.title=\u53c2\u7167\u30bf\u30a4\u30d7\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
+capability.AttachRulesToMetadataProperties.title=\u30e1\u30bf\u30c7\u30fc\u30bf\u30d7\u30ed\u30d1\u30c6\u30a3\u306b\u30eb\u30fc\u30eb\u3092\u9069\u7528
+capability.MakeOptionalParametersMandatory.title=\u30aa\u30d7\u30b7\u30e7\u30f3\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u5fc5\u9808\u306b\u3059\u308b
+capability.MapEmailMetadata.title=E \u30e1\u30fc\u30eb\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u30de\u30c3\u30d4\u30f3\u30b0
+
+# Rules
+capability.group.rules.title=\u30eb\u30fc\u30eb
capability.ManageRules.title=\u30eb\u30fc\u30eb\u306e\u7ba1\u7406
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_nb.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_nb.properties
index 80a4b1df24..8a8248b59b 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_nb.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_nb.properties
@@ -1,105 +1,105 @@
-# Records
-capability.group.records.title=Oppf\u00f8ringer
-capability.DeclareRecords.title=Fullf\u00f8r oppf\u00f8ringer
-capability.ViewRecords.title=Vis oppf\u00f8ringer
-capability.UndeclareRecords.title=\u00c5pne oppf\u00f8ringer p\u00e5 nytt
-capability.CreateRecords.title=Opprett oppf\u00f8ringer
-capability.RequestRecordInformation.title=Be om oppf\u00f8ringsinformasjon
-capability.RejectRecords.title=Avvis oppf\u00f8ringer
-capability.FileUnfiledRecords.title=Registrer oppf\u00f8ringer som ikke er registrert
-capability.LinkToRecords.title=Koble oppf\u00f8ringer
-capability.DeleteLinks.title=Koble fra oppf\u00f8ringer
-
-# Metadata Control
-capability.group.metadataControl.title=Metadatakontroll
-capability.EditRecordMetadata.title=Rediger registrering av metadata
-capability.EditDeclaredRecordMetadata.title=Rediger fullf\u00f8rte registrerte metadata
-capability.EditNonRecordMetadata.title=Rediger metadata som ikke er registrert
-capability.MoveRecords.title=Flytt oppf\u00f8ringer
-
-# Folder Control
-capability.group.folderControl.title=Mappekontroll
-capability.CreateModifyDestroyFolders.title=Opprett Endre Destruer mapper
-capability.CloseFolders.title=Lukk mapper
-capability.ReOpenFolders.title=\u00c5pne mapper p\u00e5 nytt
-capability.DeclareRecordsInClosedFolders.title=Fullf\u00f8r oppf\u00f8ringer i lukkede mapper
-
-# Vital Records
-capability.group.vitalRecords.title=Sv\u00e6t viktige oppf\u00f8ringer
-capability.UpdateVitalRecordCycleInformation.title=Oppdater syklusinformasjon til de sv\u00e6rt viktige oppf\u00f8ringene
-capability.CycleVitalRecords.title=Sirkuler sv\u00e6rt viktige oppf\u00f8ringer
-capability.PlanningReviewCycles.title=Planlegge gjennomgangsykluser
-
-# References and Links
-capability.group.references.title=Referanser
-capability.ChangeOrDeleteReferences.title=Endre eller slett referanser
-
-# Events
-capability.group.events.title=Hendelser
-capability.CreateModifyDestroyEvents.title=Opprett Endre Destruer hendelser
-capability.AddModifyEventDates.title=Legg til Endre hendelsesdatoer
-
-# Cutoff
-capability.group.cutoff.title=Cut off
-capability.ApproveRecordsScheduledForCutoff.title=Godkjenn oppf\u00f8ringer der planen er cut off
-capability.CreateModifyRecordsInCutoffFolders.title=Opprett Endre oppf\u00f8ringer i cut off-mapper
-
-# Disposition and Transfers
-capability.group.dispositionAndTransfers.title=Forfall og overf\u00f8ringer
-capability.UpdateTriggerDates.title=Oppdater utl\u00f8serdatoer
-capability.ManuallyChangeDispositionDates.title=Endre forfallsdatoer manuelt
-capability.AuthorizeNominatedTransfers.title=Godkjenn nominerte overf\u00f8ringer
-capability.AuthorizeAllTransfers.title=Godkjenn alle overf\u00f8ringer
-capability.DestroyRecordsScheduledForDestruction.title=Destruer oppf\u00f8ring eller oppf\u00f8ringsmappe der planen er \u00e5 destruere den
-capability.DestroyRecords.title=Destruer oppf\u00f8ringer
-capability.DeleteRecords.title=Slett oppf\u00f8ringer
-capability.TriggerAnEvent.title=Utl\u00f8s en hendelse
-capability.FileDestructionReport.title=Fildestruksjonsrapport
-capability.FileTransferReport.title=Filoverf\u00f8ringsrapport
-capability.EndRetention.title=Avslutt retensjon
-
-# Hold Controls
-capability.group.holdControls.title=Hold kontroller
-capability.ExtendRetentionPeriodOrFreeze.title=Forleng oppbevaringstiden eller frys
-capability.Unfreeze.title=T\u00f8 opp
-capability.ViewUpdateReasonsForFreeze.title=Vis oppdatering av \u00e5rsaker til \u00e5 fryse
-capability.CreateHold.title=Opprett hold
-capability.AddToHold.title=Legg til hold
-capability.RemoveFromHold.title=Fjern fra hold
-capability.FileHoldReport.title=Filholdrapport
-capability.DeleteHold.title=Slett hold
-capability.EditHold.title=Rediger hold
-
-# Audit
-capability.group.audit.title=Revisjon
-capability.DeclareAuditAsRecord.title=Erkl\u00e6r revisjon som oppf\u00f8ring
-capability.EnableDisableAuditByTypes.title=Aktiver/Deaktiver revisjon etter typer
-capability.DeleteAudit.title=Slett revisjon
-capability.SelectAuditMetadata.title=Velg revisjon av metadata
-capability.AccessAudit.title=G\u00e5 til revisjon
-capability.ExportAudit.title=Eksporter revisjon
-
-# Security
-capability.group.security.title=Sikkerhet
-capability.CreateModifyDestroyRoles.title=Opprett Endre Destruer roller
-capability.CreateModifyDestroyUsersAndGroups.title=Opprett Endre Destruer brukere og grupper
-capability.PasswordControl.title=Passordkontroll
-capability.DisplayRightsReport.title=Vis rettighetsrapport
-capability.ManageAccessControls.title=Gruppe- og brukerrolletildeling
-capability.ManageAccessRights.title=Administrer tillatelser
-
-# Configuration
-capability.group.config.title=Konfigurasjon
-capability.CreateModifyDestroyFileplanMetadata.title=Opprett Endre Destruer filplanmetadata
-capability.CreateModifyDestroyFileplanTypes.title=Opprett Endre Destruer filplantyper
-capability.CreateModifyDestroyRecordTypes.title=Opprett Endre Destruer oppf\u00f8ringstyper
-capability.CreateAndAssociateSelectionLists.title=Opprett og koble valglister
-capability.EditSelectionLists.title=Rediger valglister
-capability.CreateModifyDestroyReferenceTypes.title=Opprett Endre Destruer referansetyper
-capability.AttachRulesToMetadataProperties.title=Legg ved regler til metadataegenskaper
-capability.MakeOptionalParametersMandatory.title=P\u00e5legg valgfrie parametere
-capability.MapEmailMetadata.title=Koble e-postmetadata
-
-# Rules
-capability.group.rules.title=Regler
+# Records
+capability.group.records.title=Oppf\u00f8ringer
+capability.DeclareRecords.title=Fullf\u00f8r oppf\u00f8ringer
+capability.ViewRecords.title=Vis oppf\u00f8ringer
+capability.UndeclareRecords.title=\u00c5pne oppf\u00f8ringer p\u00e5 nytt
+capability.CreateRecords.title=Opprett oppf\u00f8ringer
+capability.RequestRecordInformation.title=Be om oppf\u00f8ringsinformasjon
+capability.RejectRecords.title=Avvis oppf\u00f8ringer
+capability.FileUnfiledRecords.title=Registrer oppf\u00f8ringer som ikke er registrert
+capability.LinkToRecords.title=Koble oppf\u00f8ringer
+capability.DeleteLinks.title=Koble fra oppf\u00f8ringer
+
+# Metadata Control
+capability.group.metadataControl.title=Metadatakontroll
+capability.EditRecordMetadata.title=Rediger registrering av metadata
+capability.EditDeclaredRecordMetadata.title=Rediger fullf\u00f8rte registrerte metadata
+capability.EditNonRecordMetadata.title=Rediger metadata som ikke er registrert
+capability.MoveRecords.title=Flytt oppf\u00f8ringer
+
+# Folder Control
+capability.group.folderControl.title=Mappekontroll
+capability.CreateModifyDestroyFolders.title=Opprett Endre Destruer mapper
+capability.CloseFolders.title=Lukk mapper
+capability.ReOpenFolders.title=\u00c5pne mapper p\u00e5 nytt
+capability.DeclareRecordsInClosedFolders.title=Fullf\u00f8r oppf\u00f8ringer i lukkede mapper
+
+# Vital Records
+capability.group.vitalRecords.title=Sv\u00e6t viktige oppf\u00f8ringer
+capability.UpdateVitalRecordCycleInformation.title=Oppdater syklusinformasjon til de sv\u00e6rt viktige oppf\u00f8ringene
+capability.CycleVitalRecords.title=Sirkuler sv\u00e6rt viktige oppf\u00f8ringer
+capability.PlanningReviewCycles.title=Planlegge gjennomgangsykluser
+
+# References and Links
+capability.group.references.title=Referanser
+capability.ChangeOrDeleteReferences.title=Endre eller slett referanser
+
+# Events
+capability.group.events.title=Hendelser
+capability.CreateModifyDestroyEvents.title=Opprett Endre Destruer hendelser
+capability.AddModifyEventDates.title=Legg til Endre hendelsesdatoer
+
+# Cutoff
+capability.group.cutoff.title=Cut off
+capability.ApproveRecordsScheduledForCutoff.title=Godkjenn oppf\u00f8ringer der planen er cut off
+capability.CreateModifyRecordsInCutoffFolders.title=Opprett Endre oppf\u00f8ringer i cut off-mapper
+
+# Disposition and Transfers
+capability.group.dispositionAndTransfers.title=Forfall og overf\u00f8ringer
+capability.UpdateTriggerDates.title=Oppdater utl\u00f8serdatoer
+capability.ManuallyChangeDispositionDates.title=Endre forfallsdatoer manuelt
+capability.AuthorizeNominatedTransfers.title=Godkjenn nominerte overf\u00f8ringer
+capability.AuthorizeAllTransfers.title=Godkjenn alle overf\u00f8ringer
+capability.DestroyRecordsScheduledForDestruction.title=Destruer oppf\u00f8ring eller oppf\u00f8ringsmappe der planen er \u00e5 destruere den
+capability.DestroyRecords.title=Destruer oppf\u00f8ringer
+capability.DeleteRecords.title=Slett oppf\u00f8ringer
+capability.TriggerAnEvent.title=Utl\u00f8s en hendelse
+capability.FileDestructionReport.title=Fildestruksjonsrapport
+capability.FileTransferReport.title=Filoverf\u00f8ringsrapport
+capability.EndRetention.title=Avslutt retensjon
+
+# Hold Controls
+capability.group.holdControls.title=Hold kontroller
+capability.ExtendRetentionPeriodOrFreeze.title=Forleng oppbevaringstiden eller frys
+capability.Unfreeze.title=T\u00f8 opp
+capability.ViewUpdateReasonsForFreeze.title=Vis oppdatering av \u00e5rsaker til \u00e5 fryse
+capability.CreateHold.title=Opprett hold
+capability.AddToHold.title=Legg til hold
+capability.RemoveFromHold.title=Fjern fra hold
+capability.FileHoldReport.title=Filholdrapport
+capability.DeleteHold.title=Slett hold
+capability.EditHold.title=Rediger hold
+
+# Audit
+capability.group.audit.title=Revisjon
+capability.DeclareAuditAsRecord.title=Erkl\u00e6r revisjon som oppf\u00f8ring
+capability.EnableDisableAuditByTypes.title=Aktiver/Deaktiver revisjon etter typer
+capability.DeleteAudit.title=Slett revisjon
+capability.SelectAuditMetadata.title=Velg revisjon av metadata
+capability.AccessAudit.title=G\u00e5 til revisjon
+capability.ExportAudit.title=Eksporter revisjon
+
+# Security
+capability.group.security.title=Sikkerhet
+capability.CreateModifyDestroyRoles.title=Opprett Endre Destruer roller
+capability.CreateModifyDestroyUsersAndGroups.title=Opprett Endre Destruer brukere og grupper
+capability.PasswordControl.title=Passordkontroll
+capability.DisplayRightsReport.title=Vis rettighetsrapport
+capability.ManageAccessControls.title=Gruppe- og brukerrolletildeling
+capability.ManageAccessRights.title=Administrer tillatelser
+
+# Configuration
+capability.group.config.title=Konfigurasjon
+capability.CreateModifyDestroyFileplanMetadata.title=Opprett Endre Destruer filplanmetadata
+capability.CreateModifyDestroyFileplanTypes.title=Opprett Endre Destruer filplantyper
+capability.CreateModifyDestroyRecordTypes.title=Opprett Endre Destruer oppf\u00f8ringstyper
+capability.CreateAndAssociateSelectionLists.title=Opprett og koble valglister
+capability.EditSelectionLists.title=Rediger valglister
+capability.CreateModifyDestroyReferenceTypes.title=Opprett Endre Destruer referansetyper
+capability.AttachRulesToMetadataProperties.title=Legg ved regler til metadataegenskaper
+capability.MakeOptionalParametersMandatory.title=P\u00e5legg valgfrie parametere
+capability.MapEmailMetadata.title=Koble e-postmetadata
+
+# Rules
+capability.group.rules.title=Regler
capability.ManageRules.title=Administrer regler
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_nl.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_nl.properties
index 74fb230576..5d73c044e1 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_nl.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_nl.properties
@@ -1,105 +1,105 @@
-# Records
-capability.group.records.title=Records
-capability.DeclareRecords.title=Records afronden
-capability.ViewRecords.title=Records bekijken
-capability.UndeclareRecords.title=Records heropenen
-capability.CreateRecords.title=Records maken
-capability.RequestRecordInformation.title=Recordgegevens opvragen
-capability.RejectRecords.title=Records afwijzen
-capability.FileUnfiledRecords.title=Niet gearchiveerde records archiveren
-capability.LinkToRecords.title=Records koppelen
-capability.DeleteLinks.title=Recordkoppeling opheffen
-
-# Metadata Control
-capability.group.metadataControl.title=Metagegevensbeheer
-capability.EditRecordMetadata.title=Metagegevens van record bewerken
-capability.EditDeclaredRecordMetadata.title=Metagegevens van afgeronde record bewerken
-capability.EditNonRecordMetadata.title=Metagegevens zonder record bewerken
-capability.MoveRecords.title=Records verplaatsen
-
-# Folder Control
-capability.group.folderControl.title=Mapbeheer
-capability.CreateModifyDestroyFolders.title=Mappen maken aanpassen vernietigen
-capability.CloseFolders.title=Mappen sluiten
-capability.ReOpenFolders.title=Mappen heropenen
-capability.DeclareRecordsInClosedFolders.title=Records in gesloten mappen afronden
-
-# Vital Records
-capability.group.vitalRecords.title=Vitale records
-capability.UpdateVitalRecordCycleInformation.title=Cyclusgegevens van vitale record bijwerken
-capability.CycleVitalRecords.title=Cyclus vitale records
-capability.PlanningReviewCycles.title=Planning revisiecycli
-
-# References and Links
-capability.group.references.title=Verwijzingen
-capability.ChangeOrDeleteReferences.title=Verwijzingen veranderen of verwijderen
-
-# Events
-capability.group.events.title=Gebeurtenissen
-capability.CreateModifyDestroyEvents.title=Gebeurtenissen maken aanpassen vernietigen
-capability.AddModifyEventDates.title=Datums van gebeurtenis wijzigen toevoegen
-
-# Cutoff
-capability.group.cutoff.title=Afsluiten
-capability.ApproveRecordsScheduledForCutoff.title=Records goedkeuren die zijn ingepland voor afsluiten
-capability.CreateModifyRecordsInCutoffFolders.title=Veranderingsrecords in afsluitmappen maken
-
-# Disposition and Transfers
-capability.group.dispositionAndTransfers.title=Retentie en overzettingen
-capability.UpdateTriggerDates.title=Triggerdatums bijwerken
-capability.ManuallyChangeDispositionDates.title=Retentiedatums handmatig wijzigen
-capability.AuthorizeNominatedTransfers.title=Genomineerde overzettingen autoriseren
-capability.AuthorizeAllTransfers.title=Alle overzettingen autoriseren
-capability.DestroyRecordsScheduledForDestruction.title=Record of archiefmap vernietigen die is ingepland voor vernietiging
-capability.DestroyRecords.title=Records vernietigen
-capability.DeleteRecords.title=Records verwijderen
-capability.TriggerAnEvent.title=Een gebeurtenis triggeren
-capability.FileDestructionReport.title=Vernietigingsrapport archiveren
-capability.FileTransferReport.title=Overzetrapport archiveren
-capability.EndRetention.title=Retentie be\u00ebindigen
-
-# Hold Controls
-capability.group.holdControls.title=Wachtstandbeheer
-capability.ExtendRetentionPeriodOrFreeze.title=Retentieperiode of bevriezen verlengen
-capability.Unfreeze.title=Bevriezen opheffen
-capability.ViewUpdateReasonsForFreeze.title=Redenen voor bevriezen bijwerken bekijken
-capability.CreateHold.title=Wachtstand maken
-capability.AddToHold.title=Toevoegen aan wachtstand
-capability.RemoveFromHold.title=Verwijderen uit wachtstand
-capability.FileHoldReport.title=Wachtstandrapport archiveren
-capability.DeleteHold.title=Wachtstand verwijderen
-capability.EditHold.title=Wachtstand bewerken
-
-# Audit
-capability.group.audit.title=Audit
-capability.DeclareAuditAsRecord.title=Audit declareren als record
-capability.EnableDisableAuditByTypes.title=Audit op type uitschakelen inschakelen
-capability.DeleteAudit.title=Audit verwijderen
-capability.SelectAuditMetadata.title=Metagegevens van audit selecteren
-capability.AccessAudit.title=Audit openen
-capability.ExportAudit.title=Audit exporteren
-
-# Security
-capability.group.security.title=Beveiliging
-capability.CreateModifyDestroyRoles.title=Rollen maken aanpassen vernietigen
-capability.CreateModifyDestroyUsersAndGroups.title=Gebruikers en groepen maken aanpassen vernietigen
-capability.PasswordControl.title=Wachtwoordbeheer
-capability.DisplayRightsReport.title=Rechtenrapport weergeven
-capability.ManageAccessControls.title=Groeps- en gebruikersroltoewijzing
-capability.ManageAccessRights.title=Rechten beheren
-
-# Configuration
-capability.group.config.title=Configuratie
-capability.CreateModifyDestroyFileplanMetadata.title=Metagegevens voor ordeningsplan maken aanpassen vernietigen
-capability.CreateModifyDestroyFileplanTypes.title=Ordeningsplantypes maken aanpassen vernietigen
-capability.CreateModifyDestroyRecordTypes.title=Recordtypes maken aanpassen vernietigen
-capability.CreateAndAssociateSelectionLists.title=Selectielijsten maken en toewijzen
-capability.EditSelectionLists.title=Selectielijsten bewerken
-capability.CreateModifyDestroyReferenceTypes.title=Verwijzingstypes maken aanpassen vernietigen
-capability.AttachRulesToMetadataProperties.title=Regels aan metagegevenseigenschappen koppelen
-capability.MakeOptionalParametersMandatory.title=Optionele parameters verplicht maken
-capability.MapEmailMetadata.title=Metagegevens e-mail toewijzen
-
-# Rules
-capability.group.rules.title=Regels
+# Records
+capability.group.records.title=Records
+capability.DeclareRecords.title=Records afronden
+capability.ViewRecords.title=Records bekijken
+capability.UndeclareRecords.title=Records heropenen
+capability.CreateRecords.title=Records maken
+capability.RequestRecordInformation.title=Recordgegevens opvragen
+capability.RejectRecords.title=Records afwijzen
+capability.FileUnfiledRecords.title=Niet gearchiveerde records archiveren
+capability.LinkToRecords.title=Records koppelen
+capability.DeleteLinks.title=Recordkoppeling opheffen
+
+# Metadata Control
+capability.group.metadataControl.title=Metagegevensbeheer
+capability.EditRecordMetadata.title=Metagegevens van record bewerken
+capability.EditDeclaredRecordMetadata.title=Metagegevens van afgeronde record bewerken
+capability.EditNonRecordMetadata.title=Metagegevens zonder record bewerken
+capability.MoveRecords.title=Records verplaatsen
+
+# Folder Control
+capability.group.folderControl.title=Mapbeheer
+capability.CreateModifyDestroyFolders.title=Mappen maken aanpassen vernietigen
+capability.CloseFolders.title=Mappen sluiten
+capability.ReOpenFolders.title=Mappen heropenen
+capability.DeclareRecordsInClosedFolders.title=Records in gesloten mappen afronden
+
+# Vital Records
+capability.group.vitalRecords.title=Vitale records
+capability.UpdateVitalRecordCycleInformation.title=Cyclusgegevens van vitale record bijwerken
+capability.CycleVitalRecords.title=Cyclus vitale records
+capability.PlanningReviewCycles.title=Planning revisiecycli
+
+# References and Links
+capability.group.references.title=Verwijzingen
+capability.ChangeOrDeleteReferences.title=Verwijzingen veranderen of verwijderen
+
+# Events
+capability.group.events.title=Gebeurtenissen
+capability.CreateModifyDestroyEvents.title=Gebeurtenissen maken aanpassen vernietigen
+capability.AddModifyEventDates.title=Datums van gebeurtenis wijzigen toevoegen
+
+# Cutoff
+capability.group.cutoff.title=Afsluiten
+capability.ApproveRecordsScheduledForCutoff.title=Records goedkeuren die zijn ingepland voor afsluiten
+capability.CreateModifyRecordsInCutoffFolders.title=Veranderingsrecords in afsluitmappen maken
+
+# Disposition and Transfers
+capability.group.dispositionAndTransfers.title=Retentie en overzettingen
+capability.UpdateTriggerDates.title=Triggerdatums bijwerken
+capability.ManuallyChangeDispositionDates.title=Retentiedatums handmatig wijzigen
+capability.AuthorizeNominatedTransfers.title=Genomineerde overzettingen autoriseren
+capability.AuthorizeAllTransfers.title=Alle overzettingen autoriseren
+capability.DestroyRecordsScheduledForDestruction.title=Record of archiefmap vernietigen die is ingepland voor vernietiging
+capability.DestroyRecords.title=Records vernietigen
+capability.DeleteRecords.title=Records verwijderen
+capability.TriggerAnEvent.title=Een gebeurtenis triggeren
+capability.FileDestructionReport.title=Vernietigingsrapport archiveren
+capability.FileTransferReport.title=Overzetrapport archiveren
+capability.EndRetention.title=Retentie be\u00ebindigen
+
+# Hold Controls
+capability.group.holdControls.title=Wachtstandbeheer
+capability.ExtendRetentionPeriodOrFreeze.title=Retentieperiode of bevriezen verlengen
+capability.Unfreeze.title=Bevriezen opheffen
+capability.ViewUpdateReasonsForFreeze.title=Redenen voor bevriezen bijwerken bekijken
+capability.CreateHold.title=Wachtstand maken
+capability.AddToHold.title=Toevoegen aan wachtstand
+capability.RemoveFromHold.title=Verwijderen uit wachtstand
+capability.FileHoldReport.title=Wachtstandrapport archiveren
+capability.DeleteHold.title=Wachtstand verwijderen
+capability.EditHold.title=Wachtstand bewerken
+
+# Audit
+capability.group.audit.title=Audit
+capability.DeclareAuditAsRecord.title=Audit declareren als record
+capability.EnableDisableAuditByTypes.title=Audit op type uitschakelen inschakelen
+capability.DeleteAudit.title=Audit verwijderen
+capability.SelectAuditMetadata.title=Metagegevens van audit selecteren
+capability.AccessAudit.title=Audit openen
+capability.ExportAudit.title=Audit exporteren
+
+# Security
+capability.group.security.title=Beveiliging
+capability.CreateModifyDestroyRoles.title=Rollen maken aanpassen vernietigen
+capability.CreateModifyDestroyUsersAndGroups.title=Gebruikers en groepen maken aanpassen vernietigen
+capability.PasswordControl.title=Wachtwoordbeheer
+capability.DisplayRightsReport.title=Rechtenrapport weergeven
+capability.ManageAccessControls.title=Groeps- en gebruikersroltoewijzing
+capability.ManageAccessRights.title=Rechten beheren
+
+# Configuration
+capability.group.config.title=Configuratie
+capability.CreateModifyDestroyFileplanMetadata.title=Metagegevens voor ordeningsplan maken aanpassen vernietigen
+capability.CreateModifyDestroyFileplanTypes.title=Ordeningsplantypes maken aanpassen vernietigen
+capability.CreateModifyDestroyRecordTypes.title=Recordtypes maken aanpassen vernietigen
+capability.CreateAndAssociateSelectionLists.title=Selectielijsten maken en toewijzen
+capability.EditSelectionLists.title=Selectielijsten bewerken
+capability.CreateModifyDestroyReferenceTypes.title=Verwijzingstypes maken aanpassen vernietigen
+capability.AttachRulesToMetadataProperties.title=Regels aan metagegevenseigenschappen koppelen
+capability.MakeOptionalParametersMandatory.title=Optionele parameters verplicht maken
+capability.MapEmailMetadata.title=Metagegevens e-mail toewijzen
+
+# Rules
+capability.group.rules.title=Regels
capability.ManageRules.title=Regels beheren
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_pt_BR.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_pt_BR.properties
index 3a9ddb9151..73f87b8668 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_pt_BR.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_pt_BR.properties
@@ -1,105 +1,105 @@
-# Records
-capability.group.records.title=Documentos arquiv\u00edsticos
-capability.DeclareRecords.title=Concluir documentos arquiv\u00edsticos
-capability.ViewRecords.title=Visualizar documentos arquiv\u00edsticos
-capability.UndeclareRecords.title=Reabrir documentos arquiv\u00edsticos
-capability.CreateRecords.title=Criar documentos arquiv\u00edsticos
-capability.RequestRecordInformation.title=Solicitar informa\u00e7\u00f5es de documentos arquiv\u00edsticos
-capability.RejectRecords.title=Rejeitar documentos arquiv\u00edsticos
-capability.FileUnfiledRecords.title=Arquivar documentos arquiv\u00edsticos n\u00e3o arquivados
-capability.LinkToRecords.title=Vincular documentos arquiv\u00edsticos
-capability.DeleteLinks.title=Anular v\u00ednculo dos documentos arquiv\u00edsticos
-
-# Metadata Control
-capability.group.metadataControl.title=Controle de metadados
-capability.EditRecordMetadata.title=Editar metadados de documentos arquiv\u00edsticos
-capability.EditDeclaredRecordMetadata.title=Editar metadados de documentos arquiv\u00edsticos conclu\u00eddos
-capability.EditNonRecordMetadata.title=Editar metadados n\u00e3o de documento arquiv\u00edstico
-capability.MoveRecords.title=Mover documentos arquiv\u00edsticos
-
-# Folder Control
-capability.group.folderControl.title=Controle de pasta
-capability.CreateModifyDestroyFolders.title=Criar Modificar Destruir pastas
-capability.CloseFolders.title=Fechar pastas
-capability.ReOpenFolders.title=Reabrir pastas
-capability.DeclareRecordsInClosedFolders.title=Concluir documentos arquiv\u00edsticos em pastas fechadas
-
-# Vital Records
-capability.group.vitalRecords.title=Documentos arquiv\u00edsticos vitais
-capability.UpdateVitalRecordCycleInformation.title=Atualizar informa\u00e7\u00f5es do ciclo de documentos arquiv\u00edsticos vitais
-capability.CycleVitalRecords.title=Executar ciclo de documentos arquiv\u00edsticos vitais
-capability.PlanningReviewCycles.title=Ciclos de revis\u00e3o de planejamento
-
-# References and Links
-capability.group.references.title=Refer\u00eancias
-capability.ChangeOrDeleteReferences.title=Alterar ou excluir refer\u00eancias
-
-# Events
-capability.group.events.title=Eventos
-capability.CreateModifyDestroyEvents.title=Criar Modificar Destruir eventos
-capability.AddModifyEventDates.title=Adicionar Modificar datas de eventos
-
-# Cutoff
-capability.group.cutoff.title=Cortar
-capability.ApproveRecordsScheduledForCutoff.title=Aprovar documentos arquiv\u00edsticos programados para corte
-capability.CreateModifyRecordsInCutoffFolders.title=Criar Modificar documentos arquiv\u00edsticos em pastas de corte
-
-# Disposition and Transfers
-capability.group.dispositionAndTransfers.title=Reten\u00e7\u00e3o e transfer\u00eancias
-capability.UpdateTriggerDates.title=Atualizar datas de disparo
-capability.ManuallyChangeDispositionDates.title=Alterar datas de reten\u00e7\u00e3o manualmente
-capability.AuthorizeNominatedTransfers.title=Autorizar transfer\u00eancias nomeadas
-capability.AuthorizeAllTransfers.title=Autorizar todas as transfer\u00eancias
-capability.DestroyRecordsScheduledForDestruction.title=Destruir documento arquiv\u00edstico ou pasta de documento arquiv\u00edstico programado para destrui\u00e7\u00e3o
-capability.DestroyRecords.title=Destruir documentos arquiv\u00edsticos
-capability.DeleteRecords.title=Excluir documentos arquiv\u00edsticos
-capability.TriggerAnEvent.title=Disparar um evento
-capability.FileDestructionReport.title=Relat\u00f3rio de destrui\u00e7\u00e3o de arquivos
-capability.FileTransferReport.title=Relat\u00f3rio de transfer\u00eancia de arquivos
-capability.EndRetention.title=Encerrar reten\u00e7\u00e3o
-
-# Hold Controls
-capability.group.holdControls.title=Controles de espera
-capability.ExtendRetentionPeriodOrFreeze.title=Estender per\u00edodo de reten\u00e7\u00e3o ou congelar
-capability.Unfreeze.title=Descongelar
-capability.ViewUpdateReasonsForFreeze.title=Visualizar motivos de atualiza\u00e7\u00e3o para congelar
-capability.CreateHold.title=Criar espera
-capability.AddToHold.title=Adicionar \u00e0 espera
-capability.RemoveFromHold.title=Remover da espera
-capability.FileHoldReport.title=Arquivar relat\u00f3rio de espera
-capability.DeleteHold.title=Excluir espera
-capability.EditHold.title=Editar espera
-
-# Audit
-capability.group.audit.title=Auditoria
-capability.DeclareAuditAsRecord.title=Declarar auditoria como documento arquiv\u00edstico
-capability.EnableDisableAuditByTypes.title=Ativar Desativar auditoria por tipos
-capability.DeleteAudit.title=Excluir auditoria
-capability.SelectAuditMetadata.title=Selecionar metadados de auditoria
-capability.AccessAudit.title=Acessar auditoria
-capability.ExportAudit.title=Exportar auditoria
-
-# Security
-capability.group.security.title=Seguran\u00e7a
-capability.CreateModifyDestroyRoles.title=Criar Modificar Destruir fun\u00e7\u00f5es
-capability.CreateModifyDestroyUsersAndGroups.title=Criar Modificar Destruir usu\u00e1rios e grupos
-capability.PasswordControl.title=Controle de senha
-capability.DisplayRightsReport.title=Exibir relat\u00f3rio de direitos
-capability.ManageAccessControls.title=Grupo e atribui\u00e7\u00e3o de cargo do usu\u00e1rio
-capability.ManageAccessRights.title=Gerenciar permiss\u00f5es
-
-# Configuration
-capability.group.config.title=Configura\u00e7\u00e3o
-capability.CreateModifyDestroyFileplanMetadata.title=Criar Modificar Destruir metadados de planos de arquivo
-capability.CreateModifyDestroyFileplanTypes.title=Criar Modificar Destruir tipos de planos de arquivo
-capability.CreateModifyDestroyRecordTypes.title=Criar Modificar Destruir tipos de documentos arquiv\u00edsticos
-capability.CreateAndAssociateSelectionLists.title=Criar e Associar listas de sele\u00e7\u00e3o
-capability.EditSelectionLists.title=Editar listas de sele\u00e7\u00e3o
-capability.CreateModifyDestroyReferenceTypes.title=Criar Modificar Destruir tipos de refer\u00eancia
-capability.AttachRulesToMetadataProperties.title=Anexar regras a propriedades de metadados
-capability.MakeOptionalParametersMandatory.title=Tornar par\u00e2metros opcionais obrigat\u00f3rios
-capability.MapEmailMetadata.title=Mapear metadados de e-mail
-
-# Rules
-capability.group.rules.title=Regras
+# Records
+capability.group.records.title=Documentos arquiv\u00edsticos
+capability.DeclareRecords.title=Concluir documentos arquiv\u00edsticos
+capability.ViewRecords.title=Visualizar documentos arquiv\u00edsticos
+capability.UndeclareRecords.title=Reabrir documentos arquiv\u00edsticos
+capability.CreateRecords.title=Criar documentos arquiv\u00edsticos
+capability.RequestRecordInformation.title=Solicitar informa\u00e7\u00f5es de documentos arquiv\u00edsticos
+capability.RejectRecords.title=Rejeitar documentos arquiv\u00edsticos
+capability.FileUnfiledRecords.title=Arquivar documentos arquiv\u00edsticos n\u00e3o arquivados
+capability.LinkToRecords.title=Vincular documentos arquiv\u00edsticos
+capability.DeleteLinks.title=Anular v\u00ednculo dos documentos arquiv\u00edsticos
+
+# Metadata Control
+capability.group.metadataControl.title=Controle de metadados
+capability.EditRecordMetadata.title=Editar metadados de documentos arquiv\u00edsticos
+capability.EditDeclaredRecordMetadata.title=Editar metadados de documentos arquiv\u00edsticos conclu\u00eddos
+capability.EditNonRecordMetadata.title=Editar metadados n\u00e3o de documento arquiv\u00edstico
+capability.MoveRecords.title=Mover documentos arquiv\u00edsticos
+
+# Folder Control
+capability.group.folderControl.title=Controle de pasta
+capability.CreateModifyDestroyFolders.title=Criar Modificar Destruir pastas
+capability.CloseFolders.title=Fechar pastas
+capability.ReOpenFolders.title=Reabrir pastas
+capability.DeclareRecordsInClosedFolders.title=Concluir documentos arquiv\u00edsticos em pastas fechadas
+
+# Vital Records
+capability.group.vitalRecords.title=Documentos arquiv\u00edsticos vitais
+capability.UpdateVitalRecordCycleInformation.title=Atualizar informa\u00e7\u00f5es do ciclo de documentos arquiv\u00edsticos vitais
+capability.CycleVitalRecords.title=Executar ciclo de documentos arquiv\u00edsticos vitais
+capability.PlanningReviewCycles.title=Ciclos de revis\u00e3o de planejamento
+
+# References and Links
+capability.group.references.title=Refer\u00eancias
+capability.ChangeOrDeleteReferences.title=Alterar ou excluir refer\u00eancias
+
+# Events
+capability.group.events.title=Eventos
+capability.CreateModifyDestroyEvents.title=Criar Modificar Destruir eventos
+capability.AddModifyEventDates.title=Adicionar Modificar datas de eventos
+
+# Cutoff
+capability.group.cutoff.title=Cortar
+capability.ApproveRecordsScheduledForCutoff.title=Aprovar documentos arquiv\u00edsticos programados para corte
+capability.CreateModifyRecordsInCutoffFolders.title=Criar Modificar documentos arquiv\u00edsticos em pastas de corte
+
+# Disposition and Transfers
+capability.group.dispositionAndTransfers.title=Reten\u00e7\u00e3o e transfer\u00eancias
+capability.UpdateTriggerDates.title=Atualizar datas de disparo
+capability.ManuallyChangeDispositionDates.title=Alterar datas de reten\u00e7\u00e3o manualmente
+capability.AuthorizeNominatedTransfers.title=Autorizar transfer\u00eancias nomeadas
+capability.AuthorizeAllTransfers.title=Autorizar todas as transfer\u00eancias
+capability.DestroyRecordsScheduledForDestruction.title=Destruir documento arquiv\u00edstico ou pasta de documento arquiv\u00edstico programado para destrui\u00e7\u00e3o
+capability.DestroyRecords.title=Destruir documentos arquiv\u00edsticos
+capability.DeleteRecords.title=Excluir documentos arquiv\u00edsticos
+capability.TriggerAnEvent.title=Disparar um evento
+capability.FileDestructionReport.title=Relat\u00f3rio de destrui\u00e7\u00e3o de arquivos
+capability.FileTransferReport.title=Relat\u00f3rio de transfer\u00eancia de arquivos
+capability.EndRetention.title=Encerrar reten\u00e7\u00e3o
+
+# Hold Controls
+capability.group.holdControls.title=Controles de espera
+capability.ExtendRetentionPeriodOrFreeze.title=Estender per\u00edodo de reten\u00e7\u00e3o ou congelar
+capability.Unfreeze.title=Descongelar
+capability.ViewUpdateReasonsForFreeze.title=Visualizar motivos de atualiza\u00e7\u00e3o para congelar
+capability.CreateHold.title=Criar espera
+capability.AddToHold.title=Adicionar \u00e0 espera
+capability.RemoveFromHold.title=Remover da espera
+capability.FileHoldReport.title=Arquivar relat\u00f3rio de espera
+capability.DeleteHold.title=Excluir espera
+capability.EditHold.title=Editar espera
+
+# Audit
+capability.group.audit.title=Auditoria
+capability.DeclareAuditAsRecord.title=Declarar auditoria como documento arquiv\u00edstico
+capability.EnableDisableAuditByTypes.title=Ativar Desativar auditoria por tipos
+capability.DeleteAudit.title=Excluir auditoria
+capability.SelectAuditMetadata.title=Selecionar metadados de auditoria
+capability.AccessAudit.title=Acessar auditoria
+capability.ExportAudit.title=Exportar auditoria
+
+# Security
+capability.group.security.title=Seguran\u00e7a
+capability.CreateModifyDestroyRoles.title=Criar Modificar Destruir fun\u00e7\u00f5es
+capability.CreateModifyDestroyUsersAndGroups.title=Criar Modificar Destruir usu\u00e1rios e grupos
+capability.PasswordControl.title=Controle de senha
+capability.DisplayRightsReport.title=Exibir relat\u00f3rio de direitos
+capability.ManageAccessControls.title=Grupo e atribui\u00e7\u00e3o de cargo do usu\u00e1rio
+capability.ManageAccessRights.title=Gerenciar permiss\u00f5es
+
+# Configuration
+capability.group.config.title=Configura\u00e7\u00e3o
+capability.CreateModifyDestroyFileplanMetadata.title=Criar Modificar Destruir metadados de planos de arquivo
+capability.CreateModifyDestroyFileplanTypes.title=Criar Modificar Destruir tipos de planos de arquivo
+capability.CreateModifyDestroyRecordTypes.title=Criar Modificar Destruir tipos de documentos arquiv\u00edsticos
+capability.CreateAndAssociateSelectionLists.title=Criar e Associar listas de sele\u00e7\u00e3o
+capability.EditSelectionLists.title=Editar listas de sele\u00e7\u00e3o
+capability.CreateModifyDestroyReferenceTypes.title=Criar Modificar Destruir tipos de refer\u00eancia
+capability.AttachRulesToMetadataProperties.title=Anexar regras a propriedades de metadados
+capability.MakeOptionalParametersMandatory.title=Tornar par\u00e2metros opcionais obrigat\u00f3rios
+capability.MapEmailMetadata.title=Mapear metadados de e-mail
+
+# Rules
+capability.group.rules.title=Regras
capability.ManageRules.title=Gerenciar regras
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_ru.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_ru.properties
index 0d10685435..e32f85f1f4 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_ru.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_ru.properties
@@ -1,105 +1,105 @@
-# Records
-capability.group.records.title=\u0417\u0430\u043f\u0438\u0441\u0438
-capability.DeclareRecords.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-capability.ViewRecords.title=\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-capability.UndeclareRecords.title=\u041f\u0435\u0440\u0435\u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-capability.CreateRecords.title=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-capability.RequestRecordInformation.title=\u0417\u0430\u043f\u0440\u043e\u0441 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u0437\u0430\u043f\u0438\u0441\u0438
-capability.RejectRecords.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438
-capability.FileUnfiledRecords.title=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-capability.LinkToRecords.title=\u0421\u0432\u044f\u0437\u0430\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438
-capability.DeleteLinks.title=\u0420\u0430\u0437\u043e\u0440\u0432\u0430\u0442\u044c \u0441\u0432\u044f\u0437\u0438 \u0441 \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-
-# Metadata Control
-capability.group.metadataControl.title=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u043c\u0438
-capability.EditRecordMetadata.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-capability.EditDeclaredRecordMetadata.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
-capability.EditNonRecordMetadata.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u043d\u0435 \u043e\u0442\u043d\u043e\u0441\u044f\u0449\u0438\u0435\u0441\u044f \u043a \u0437\u0430\u043f\u0438\u0441\u0438
-capability.MoveRecords.title=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438
-
-# Folder Control
-capability.group.folderControl.title=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0430\u043f\u043a\u043e\u0439
-capability.CreateModifyDestroyFolders.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u043f\u0430\u043f\u043a\u0438
-capability.CloseFolders.title=\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043f\u043a\u0438
-capability.ReOpenFolders.title=\u041f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043f\u043a\u0438
-capability.DeclareRecordsInClosedFolders.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0437\u0430\u043a\u0440\u044b\u0442\u044b\u0445 \u043f\u0430\u043f\u043a\u0430\u0445
-
-# Vital Records
-capability.group.vitalRecords.title=\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-capability.UpdateVitalRecordCycleInformation.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u0446\u0438\u043a\u043b\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
-capability.CycleVitalRecords.title=\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0446\u0438\u043a\u043b\u0435
-capability.PlanningReviewCycles.title=\u041f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0446\u0438\u043a\u043b\u043e\u0432 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438
-
-# References and Links
-capability.group.references.title=\u0421\u0441\u044b\u043b\u043a\u0438
-capability.ChangeOrDeleteReferences.title=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0438
-
-# Events
-capability.group.events.title=\u0421\u043e\u0431\u044b\u0442\u0438\u044f
-capability.CreateModifyDestroyEvents.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u044f
-capability.AddModifyEventDates.title=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0434\u0430\u0442\u044b \u0441\u043e\u0431\u044b\u0442\u0438\u0439
-
-# Cutoff
-capability.group.cutoff.title=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
-capability.ApproveRecordsScheduledForCutoff.title=\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438, \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043f\u043e\u0434 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435
-capability.CreateModifyRecordsInCutoffFolders.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u043d\u044b\u0445 \u043f\u0430\u043f\u043a\u0430\u0445
-
-# Disposition and Transfers
-capability.group.dispositionAndTransfers.title=\u0425\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u0438 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0430
-capability.UpdateTriggerDates.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u0430\u0442\u044b \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0430
-capability.ManuallyChangeDispositionDates.title=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0434\u0430\u0442\u044b \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0432\u0440\u0443\u0447\u043d\u0443\u044e
-capability.AuthorizeNominatedTransfers.title=\u0410\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u0442\u044c \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u044b
-capability.AuthorizeAllTransfers.title=\u0410\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u0442\u044c \u0432\u0441\u0435 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438
-capability.DestroyRecordsScheduledForDestruction.title=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u043f\u043e\u0434 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0435
-capability.DestroyRecords.title=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438
-capability.DeleteRecords.title=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0417\u0430\u043f\u0438\u0441\u044c
-capability.TriggerAnEvent.title=\u0410\u043a\u0442\u0438\u0432\u0430\u0446\u0438\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u044f
-capability.FileDestructionReport.title=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0438 \u0444\u0430\u0439\u043b\u0430
-capability.FileTransferReport.title=\u041e\u0442\u0447\u0435\u0442 \u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0435 \u0444\u0430\u0439\u043b\u0430
-capability.EndRetention.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435
-
-# Hold Controls
-capability.group.holdControls.title=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0443\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435\u043c
-capability.ExtendRetentionPeriodOrFreeze.title=\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u043f\u0435\u0440\u0438\u043e\u0434 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0438\u043b\u0438 \u0437\u0430\u043a\u0440\u0435\u043f\u0438\u0442\u044c
-capability.Unfreeze.title=\u041e\u0442\u043a\u0440\u0435\u043f\u0438\u0442\u044c
-capability.ViewUpdateReasonsForFreeze.title=\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0439 \u043f\u0440\u0438\u0447\u0438\u043d \u0434\u043b\u044f \u0437\u0430\u043a\u0440\u0435\u043f\u043b\u0435\u043d\u0438\u044f
-capability.CreateHold.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0443\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435
-capability.AddToHold.title=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c
-capability.RemoveFromHold.title=\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c
-capability.FileHoldReport.title=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0438 \u0444\u0430\u0439\u043b\u0430
-capability.DeleteHold.title=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
-capability.EditHold.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
-
-# Audit
-capability.group.audit.title=\u0410\u0443\u0434\u0438\u0442
-capability.DeclareAuditAsRecord.title=\u041e\u0431\u044a\u044f\u0432\u0438\u0442\u044c \u0430\u0443\u0434\u0438\u0442 \u043a\u0430\u043a \u0437\u0430\u043f\u0438\u0441\u044c
-capability.EnableDisableAuditByTypes.title=\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c/\u0432\u044b\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0443\u0434\u0438\u0442 \u043f\u043e \u0442\u0438\u043f\u0430\u043c
-capability.DeleteAudit.title=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0430\u0443\u0434\u0438\u0442
-capability.SelectAuditMetadata.title=\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0430\u0443\u0434\u0438\u0442\u0430
-capability.AccessAudit.title=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0430\u0443\u0434\u0438\u0442
-capability.ExportAudit.title=\u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u0430\u0443\u0434\u0438\u0442\u0430
-
-# Security
-capability.group.security.title=\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c
-capability.CreateModifyDestroyRoles.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0440\u043e\u043b\u0438
-capability.CreateModifyDestroyUsersAndGroups.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0438 \u0433\u0440\u0443\u043f\u043f\u044b
-capability.PasswordControl.title=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u043e\u043b\u044f\u043c\u0438
-capability.DisplayRightsReport.title=\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043e\u0442\u0447\u0435\u0442\u0430 \u043f\u043e \u043f\u0440\u0430\u0432\u0430\u043c
-capability.ManageAccessControls.title=\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0440\u043e\u043b\u0438 \u0433\u0440\u0443\u043f\u043f\u0435 \u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e
-capability.ManageAccessRights.title=\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u0430
-
-# Configuration
-capability.group.config.title=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f
-capability.CreateModifyDestroyFileplanMetadata.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0410\u0440\u0445\u0438\u0432
-capability.CreateModifyDestroyFileplanTypes.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0442\u0438\u043f\u044b \u0410\u0440\u0445\u0438\u0432
-capability.CreateModifyDestroyRecordTypes.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0442\u0438\u043f\u044b \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-capability.CreateAndAssociateSelectionLists.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0438 \u0441\u0432\u044f\u0437\u0430\u0442\u044c \u0441\u043f\u0438\u0441\u043a\u0438 \u0432\u044b\u0431\u043e\u0440\u0430
-capability.EditSelectionLists.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u043f\u0438\u0441\u043a\u0438 \u0432\u044b\u0431\u043e\u0440\u0430
-capability.CreateModifyDestroyReferenceTypes.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0442\u0438\u043f\u044b \u0441\u0441\u044b\u043b\u043e\u043a
-capability.AttachRulesToMetadataProperties.title=\u041f\u0440\u0438\u043a\u0440\u0435\u043f\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u0438\u043b\u0430 \u043a \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430\u043c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445
-capability.MakeOptionalParametersMandatory.title=\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c\u0438
-capability.MapEmailMetadata.title=\u0421\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
-
-# Rules
-capability.group.rules.title=\u041f\u0440\u0430\u0432\u0438\u043b\u0430
+# Records
+capability.group.records.title=\u0417\u0430\u043f\u0438\u0441\u0438
+capability.DeclareRecords.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+capability.ViewRecords.title=\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+capability.UndeclareRecords.title=\u041f\u0435\u0440\u0435\u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+capability.CreateRecords.title=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+capability.RequestRecordInformation.title=\u0417\u0430\u043f\u0440\u043e\u0441 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u0437\u0430\u043f\u0438\u0441\u0438
+capability.RejectRecords.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438
+capability.FileUnfiledRecords.title=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+capability.LinkToRecords.title=\u0421\u0432\u044f\u0437\u0430\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438
+capability.DeleteLinks.title=\u0420\u0430\u0437\u043e\u0440\u0432\u0430\u0442\u044c \u0441\u0432\u044f\u0437\u0438 \u0441 \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+
+# Metadata Control
+capability.group.metadataControl.title=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u043c\u0438
+capability.EditRecordMetadata.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+capability.EditDeclaredRecordMetadata.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
+capability.EditNonRecordMetadata.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u043d\u0435 \u043e\u0442\u043d\u043e\u0441\u044f\u0449\u0438\u0435\u0441\u044f \u043a \u0437\u0430\u043f\u0438\u0441\u0438
+capability.MoveRecords.title=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438
+
+# Folder Control
+capability.group.folderControl.title=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0430\u043f\u043a\u043e\u0439
+capability.CreateModifyDestroyFolders.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u043f\u0430\u043f\u043a\u0438
+capability.CloseFolders.title=\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043f\u043a\u0438
+capability.ReOpenFolders.title=\u041f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043f\u043a\u0438
+capability.DeclareRecordsInClosedFolders.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0437\u0430\u043a\u0440\u044b\u0442\u044b\u0445 \u043f\u0430\u043f\u043a\u0430\u0445
+
+# Vital Records
+capability.group.vitalRecords.title=\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+capability.UpdateVitalRecordCycleInformation.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u0446\u0438\u043a\u043b\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
+capability.CycleVitalRecords.title=\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0446\u0438\u043a\u043b\u0435
+capability.PlanningReviewCycles.title=\u041f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0446\u0438\u043a\u043b\u043e\u0432 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438
+
+# References and Links
+capability.group.references.title=\u0421\u0441\u044b\u043b\u043a\u0438
+capability.ChangeOrDeleteReferences.title=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0438\u043b\u0438 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0438
+
+# Events
+capability.group.events.title=\u0421\u043e\u0431\u044b\u0442\u0438\u044f
+capability.CreateModifyDestroyEvents.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u044f
+capability.AddModifyEventDates.title=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0434\u0430\u0442\u044b \u0441\u043e\u0431\u044b\u0442\u0438\u0439
+
+# Cutoff
+capability.group.cutoff.title=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
+capability.ApproveRecordsScheduledForCutoff.title=\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438, \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043f\u043e\u0434 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435
+capability.CreateModifyRecordsInCutoffFolders.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u043d\u044b\u0445 \u043f\u0430\u043f\u043a\u0430\u0445
+
+# Disposition and Transfers
+capability.group.dispositionAndTransfers.title=\u0425\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u0438 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0430
+capability.UpdateTriggerDates.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u0430\u0442\u044b \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0430
+capability.ManuallyChangeDispositionDates.title=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0434\u0430\u0442\u044b \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0432\u0440\u0443\u0447\u043d\u0443\u044e
+capability.AuthorizeNominatedTransfers.title=\u0410\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u0442\u044c \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u044b
+capability.AuthorizeAllTransfers.title=\u0410\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u0442\u044c \u0432\u0441\u0435 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438
+capability.DestroyRecordsScheduledForDestruction.title=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u043f\u043e\u0434 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0435
+capability.DestroyRecords.title=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438
+capability.DeleteRecords.title=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0417\u0430\u043f\u0438\u0441\u044c
+capability.TriggerAnEvent.title=\u0410\u043a\u0442\u0438\u0432\u0430\u0446\u0438\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u044f
+capability.FileDestructionReport.title=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0438 \u0444\u0430\u0439\u043b\u0430
+capability.FileTransferReport.title=\u041e\u0442\u0447\u0435\u0442 \u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0435 \u0444\u0430\u0439\u043b\u0430
+capability.EndRetention.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435
+
+# Hold Controls
+capability.group.holdControls.title=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0443\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435\u043c
+capability.ExtendRetentionPeriodOrFreeze.title=\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u043f\u0435\u0440\u0438\u043e\u0434 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0438\u043b\u0438 \u0437\u0430\u043a\u0440\u0435\u043f\u0438\u0442\u044c
+capability.Unfreeze.title=\u041e\u0442\u043a\u0440\u0435\u043f\u0438\u0442\u044c
+capability.ViewUpdateReasonsForFreeze.title=\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0439 \u043f\u0440\u0438\u0447\u0438\u043d \u0434\u043b\u044f \u0437\u0430\u043a\u0440\u0435\u043f\u043b\u0435\u043d\u0438\u044f
+capability.CreateHold.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0443\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435
+capability.AddToHold.title=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c
+capability.RemoveFromHold.title=\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c
+capability.FileHoldReport.title=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0438 \u0444\u0430\u0439\u043b\u0430
+capability.DeleteHold.title=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
+capability.EditHold.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
+
+# Audit
+capability.group.audit.title=\u0410\u0443\u0434\u0438\u0442
+capability.DeclareAuditAsRecord.title=\u041e\u0431\u044a\u044f\u0432\u0438\u0442\u044c \u0430\u0443\u0434\u0438\u0442 \u043a\u0430\u043a \u0437\u0430\u043f\u0438\u0441\u044c
+capability.EnableDisableAuditByTypes.title=\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c/\u0432\u044b\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0443\u0434\u0438\u0442 \u043f\u043e \u0442\u0438\u043f\u0430\u043c
+capability.DeleteAudit.title=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0430\u0443\u0434\u0438\u0442
+capability.SelectAuditMetadata.title=\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0430\u0443\u0434\u0438\u0442\u0430
+capability.AccessAudit.title=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0430\u0443\u0434\u0438\u0442
+capability.ExportAudit.title=\u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u0430\u0443\u0434\u0438\u0442\u0430
+
+# Security
+capability.group.security.title=\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c
+capability.CreateModifyDestroyRoles.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0440\u043e\u043b\u0438
+capability.CreateModifyDestroyUsersAndGroups.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0438 \u0433\u0440\u0443\u043f\u043f\u044b
+capability.PasswordControl.title=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u043e\u043b\u044f\u043c\u0438
+capability.DisplayRightsReport.title=\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043e\u0442\u0447\u0435\u0442\u0430 \u043f\u043e \u043f\u0440\u0430\u0432\u0430\u043c
+capability.ManageAccessControls.title=\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0440\u043e\u043b\u0438 \u0433\u0440\u0443\u043f\u043f\u0435 \u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e
+capability.ManageAccessRights.title=\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u0430
+
+# Configuration
+capability.group.config.title=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f
+capability.CreateModifyDestroyFileplanMetadata.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0410\u0440\u0445\u0438\u0432
+capability.CreateModifyDestroyFileplanTypes.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0442\u0438\u043f\u044b \u0410\u0440\u0445\u0438\u0432
+capability.CreateModifyDestroyRecordTypes.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0442\u0438\u043f\u044b \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+capability.CreateAndAssociateSelectionLists.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0438 \u0441\u0432\u044f\u0437\u0430\u0442\u044c \u0441\u043f\u0438\u0441\u043a\u0438 \u0432\u044b\u0431\u043e\u0440\u0430
+capability.EditSelectionLists.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u043f\u0438\u0441\u043a\u0438 \u0432\u044b\u0431\u043e\u0440\u0430
+capability.CreateModifyDestroyReferenceTypes.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0442\u0438\u043f\u044b \u0441\u0441\u044b\u043b\u043e\u043a
+capability.AttachRulesToMetadataProperties.title=\u041f\u0440\u0438\u043a\u0440\u0435\u043f\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u0438\u043b\u0430 \u043a \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430\u043c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445
+capability.MakeOptionalParametersMandatory.title=\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c\u0438
+capability.MapEmailMetadata.title=\u0421\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
+
+# Rules
+capability.group.rules.title=\u041f\u0440\u0430\u0432\u0438\u043b\u0430
capability.ManageRules.title=\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043f\u0440\u0430\u0432\u0438\u043b\u0430
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_zh_CN.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_zh_CN.properties
index e561311ed4..4e7889575c 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_zh_CN.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/capability-service_zh_CN.properties
@@ -1,105 +1,105 @@
-# Records
-capability.group.records.title=\u8bb0\u5f55
-capability.DeclareRecords.title=\u5b8c\u6210\u8bb0\u5f55
-capability.ViewRecords.title=\u67e5\u770b\u8bb0\u5f55
-capability.UndeclareRecords.title=\u91cd\u65b0\u6253\u5f00\u8bb0\u5f55
-capability.CreateRecords.title=\u521b\u5efa\u8bb0\u5f55
-capability.RequestRecordInformation.title=\u8bf7\u6c42\u8bb0\u5f55\u4fe1\u606f
-capability.RejectRecords.title=\u62d2\u7edd\u8bb0\u5f55
-capability.FileUnfiledRecords.title=\u5bf9\u672a\u7acb\u5377\u7684\u8bb0\u5f55\u7acb\u5377
-capability.LinkToRecords.title=\u94fe\u63a5\u8bb0\u5f55
-capability.DeleteLinks.title=\u53d6\u6d88\u8bb0\u5f55\u7684\u94fe\u63a5
-
-# Metadata Control
-capability.group.metadataControl.title=\u5143\u6570\u636e\u63a7\u5236
-capability.EditRecordMetadata.title=\u7f16\u8f91\u8bb0\u5f55\u5143\u6570\u636e
-capability.EditDeclaredRecordMetadata.title=\u7f16\u8f91\u5b8c\u6210\u7684\u8bb0\u5f55\u5143\u6570\u636e
-capability.EditNonRecordMetadata.title=\u7f16\u8f91\u975e\u8bb0\u5f55\u5143\u6570\u636e
-capability.MoveRecords.title=\u79fb\u52a8\u8bb0\u5f55
-
-# Folder Control
-capability.group.folderControl.title=\u6587\u4ef6\u5939\u63a7\u5236
-capability.CreateModifyDestroyFolders.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u6587\u4ef6\u5939
-capability.CloseFolders.title=\u5173\u95ed\u6587\u4ef6\u5939
-capability.ReOpenFolders.title=\u91cd\u65b0\u6253\u5f00\u6587\u4ef6\u5939
-capability.DeclareRecordsInClosedFolders.title=\u5b8c\u6210\u5df2\u5173\u95ed\u6587\u4ef6\u5939\u4e2d\u7684\u8bb0\u5f55
-
-# Vital Records
-capability.group.vitalRecords.title=\u6838\u5fc3\u8bb0\u5f55
-capability.UpdateVitalRecordCycleInformation.title=\u66f4\u65b0\u6838\u5fc3\u8bb0\u5f55\u5468\u671f\u4fe1\u606f
-capability.CycleVitalRecords.title=\u5468\u671f\u6838\u5fc3\u8bb0\u5f55
-capability.PlanningReviewCycles.title=\u8ba1\u5212\u5ba1\u67e5\u5468\u671f
-
-# References and Links
-capability.group.references.title=\u53c2\u8003
-capability.ChangeOrDeleteReferences.title=\u66f4\u6539\u6216\u5220\u9664\u53c2\u8003
-
-# Events
-capability.group.events.title=\u4e8b\u4ef6
-capability.CreateModifyDestroyEvents.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u4e8b\u4ef6
-capability.AddModifyEventDates.title=\u6dfb\u52a0\u4fee\u6539\u4e8b\u4ef6\u65e5\u671f
-
-# Cutoff
-capability.group.cutoff.title=\u4e2d\u65ad
-capability.ApproveRecordsScheduledForCutoff.title=\u6279\u51c6\u8ba1\u5212\u8981\u4e2d\u65ad\u7684\u8bb0\u5f55
-capability.CreateModifyRecordsInCutoffFolders.title=\u5728\u4e2d\u65ad\u6587\u4ef6\u5939\u4e2d\u521b\u5efa\u4fee\u6539\u8bb0\u5f55
-
-# Disposition and Transfers
-capability.group.dispositionAndTransfers.title=\u4fdd\u7559\u548c\u4f20\u8f93
-capability.UpdateTriggerDates.title=\u66f4\u65b0\u89e6\u53d1\u65e5\u671f
-capability.ManuallyChangeDispositionDates.title=\u624b\u52a8\u66f4\u6539\u4fdd\u7559\u65e5\u671f
-capability.AuthorizeNominatedTransfers.title=\u6388\u6743\u6307\u5b9a\u79fb\u4ea4
-capability.AuthorizeAllTransfers.title=\u6388\u6743\u6240\u6709\u79fb\u4ea4
-capability.DestroyRecordsScheduledForDestruction.title=\u9500\u6bc1\u8ba1\u5212\u8981\u9500\u6bc1\u7684\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939
-capability.DestroyRecords.title=\u9500\u6bc1\u8bb0\u5f55
-capability.DeleteRecords.title=\u5220\u9664\u8bb0\u5f55
-capability.TriggerAnEvent.title=\u89e6\u53d1\u4e8b\u4ef6
-capability.FileDestructionReport.title=\u7acb\u5377\u9500\u6bc1\u62a5\u544a
-capability.FileTransferReport.title=\u7acb\u5377\u79fb\u4ea4\u62a5\u544a
-capability.EndRetention.title=\u7ed3\u675f\u4fdd\u7559
-
-# Hold Controls
-capability.group.holdControls.title=\u4fdd\u5b58\u63a7\u5236
-capability.ExtendRetentionPeriodOrFreeze.title=\u5ef6\u957f\u4fdd\u7559\u671f\u95f4\u6216\u4fdd\u5b58
-capability.Unfreeze.title=\u53d6\u6d88\u4fdd\u5b58
-capability.ViewUpdateReasonsForFreeze.title=\u67e5\u770b\u4fdd\u5b58\u7684\u66f4\u65b0\u539f\u56e0
-capability.CreateHold.title=\u521b\u5efa\u4fdd\u5b58
-capability.AddToHold.title=\u52a0\u5165\u4fdd\u5b58
-capability.RemoveFromHold.title=\u89e3\u9664\u4fdd\u5b58
-capability.FileHoldReport.title=\u7acb\u5377\u4fdd\u5b58\u62a5\u544a
-capability.DeleteHold.title=\u5220\u9664\u4fdd\u5b58
-capability.EditHold.title=\u7f16\u8f91\u4fdd\u5b58
-
-# Audit
-capability.group.audit.title=\u5ba1\u8ba1
-capability.DeclareAuditAsRecord.title=\u5c06\u5ba1\u8ba1\u58f0\u660e\u4e3a\u8bb0\u5f55
-capability.EnableDisableAuditByTypes.title=\u6309\u7c7b\u578b\u542f\u7528\u3001\u7981\u7528\u5ba1\u8ba1
-capability.DeleteAudit.title=\u5220\u9664\u5ba1\u8ba1
-capability.SelectAuditMetadata.title=\u9009\u62e9\u5ba1\u8ba1\u5143\u6570\u636e
-capability.AccessAudit.title=\u8bbf\u95ee\u5ba1\u8ba1
-capability.ExportAudit.title=\u5bfc\u51fa\u5ba1\u8ba1
-
-# Security
-capability.group.security.title=\u5b89\u5168\u6027
-capability.CreateModifyDestroyRoles.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u89d2\u8272
-capability.CreateModifyDestroyUsersAndGroups.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u7528\u6237\u548c\u7ec4
-capability.PasswordControl.title=\u5bc6\u7801\u63a7\u5236
-capability.DisplayRightsReport.title=\u663e\u793a\u6743\u9650\u62a5\u544a
-capability.ManageAccessControls.title=\u7ec4\u548c\u7528\u6237\u89d2\u8272\u5206\u914d
-capability.ManageAccessRights.title=\u7ba1\u7406\u6743\u9650
-
-# Configuration
-capability.group.config.title=\u914d\u7f6e
-capability.CreateModifyDestroyFileplanMetadata.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u5f52\u7c7b\u65b9\u6848\u5143\u6570\u636e
-capability.CreateModifyDestroyFileplanTypes.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u5f52\u7c7b\u65b9\u6848\u7c7b\u578b
-capability.CreateModifyDestroyRecordTypes.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u8bb0\u5f55\u7c7b\u578b
-capability.CreateAndAssociateSelectionLists.title=\u521b\u5efa\u548c\u5173\u8054\u9009\u62e9\u5217\u8868
-capability.EditSelectionLists.title=\u7f16\u8f91\u9009\u62e9\u5217\u8868
-capability.CreateModifyDestroyReferenceTypes.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u53c2\u8003\u7c7b\u578b
-capability.AttachRulesToMetadataProperties.title=\u5c06\u89c4\u5219\u9644\u52a0\u81f3\u5143\u6570\u636e\u5c5e\u6027
-capability.MakeOptionalParametersMandatory.title=\u5c06\u53ef\u9009\u53c2\u6570\u53d8\u4e3a\u5fc5\u8981\u53c2\u6570
-capability.MapEmailMetadata.title=\u6620\u5c04\u7535\u5b50\u90ae\u4ef6\u5143\u6570\u636e
-
-# Rules
-capability.group.rules.title=\u89c4\u5219
+# Records
+capability.group.records.title=\u8bb0\u5f55
+capability.DeclareRecords.title=\u5b8c\u6210\u8bb0\u5f55
+capability.ViewRecords.title=\u67e5\u770b\u8bb0\u5f55
+capability.UndeclareRecords.title=\u91cd\u65b0\u6253\u5f00\u8bb0\u5f55
+capability.CreateRecords.title=\u521b\u5efa\u8bb0\u5f55
+capability.RequestRecordInformation.title=\u8bf7\u6c42\u8bb0\u5f55\u4fe1\u606f
+capability.RejectRecords.title=\u62d2\u7edd\u8bb0\u5f55
+capability.FileUnfiledRecords.title=\u5bf9\u672a\u7acb\u5377\u7684\u8bb0\u5f55\u7acb\u5377
+capability.LinkToRecords.title=\u94fe\u63a5\u8bb0\u5f55
+capability.DeleteLinks.title=\u53d6\u6d88\u8bb0\u5f55\u7684\u94fe\u63a5
+
+# Metadata Control
+capability.group.metadataControl.title=\u5143\u6570\u636e\u63a7\u5236
+capability.EditRecordMetadata.title=\u7f16\u8f91\u8bb0\u5f55\u5143\u6570\u636e
+capability.EditDeclaredRecordMetadata.title=\u7f16\u8f91\u5b8c\u6210\u7684\u8bb0\u5f55\u5143\u6570\u636e
+capability.EditNonRecordMetadata.title=\u7f16\u8f91\u975e\u8bb0\u5f55\u5143\u6570\u636e
+capability.MoveRecords.title=\u79fb\u52a8\u8bb0\u5f55
+
+# Folder Control
+capability.group.folderControl.title=\u6587\u4ef6\u5939\u63a7\u5236
+capability.CreateModifyDestroyFolders.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u6587\u4ef6\u5939
+capability.CloseFolders.title=\u5173\u95ed\u6587\u4ef6\u5939
+capability.ReOpenFolders.title=\u91cd\u65b0\u6253\u5f00\u6587\u4ef6\u5939
+capability.DeclareRecordsInClosedFolders.title=\u5b8c\u6210\u5df2\u5173\u95ed\u6587\u4ef6\u5939\u4e2d\u7684\u8bb0\u5f55
+
+# Vital Records
+capability.group.vitalRecords.title=\u6838\u5fc3\u8bb0\u5f55
+capability.UpdateVitalRecordCycleInformation.title=\u66f4\u65b0\u6838\u5fc3\u8bb0\u5f55\u5468\u671f\u4fe1\u606f
+capability.CycleVitalRecords.title=\u5468\u671f\u6838\u5fc3\u8bb0\u5f55
+capability.PlanningReviewCycles.title=\u8ba1\u5212\u5ba1\u67e5\u5468\u671f
+
+# References and Links
+capability.group.references.title=\u53c2\u8003
+capability.ChangeOrDeleteReferences.title=\u66f4\u6539\u6216\u5220\u9664\u53c2\u8003
+
+# Events
+capability.group.events.title=\u4e8b\u4ef6
+capability.CreateModifyDestroyEvents.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u4e8b\u4ef6
+capability.AddModifyEventDates.title=\u6dfb\u52a0\u4fee\u6539\u4e8b\u4ef6\u65e5\u671f
+
+# Cutoff
+capability.group.cutoff.title=\u4e2d\u65ad
+capability.ApproveRecordsScheduledForCutoff.title=\u6279\u51c6\u8ba1\u5212\u8981\u4e2d\u65ad\u7684\u8bb0\u5f55
+capability.CreateModifyRecordsInCutoffFolders.title=\u5728\u4e2d\u65ad\u6587\u4ef6\u5939\u4e2d\u521b\u5efa\u4fee\u6539\u8bb0\u5f55
+
+# Disposition and Transfers
+capability.group.dispositionAndTransfers.title=\u4fdd\u7559\u548c\u4f20\u8f93
+capability.UpdateTriggerDates.title=\u66f4\u65b0\u89e6\u53d1\u65e5\u671f
+capability.ManuallyChangeDispositionDates.title=\u624b\u52a8\u66f4\u6539\u4fdd\u7559\u65e5\u671f
+capability.AuthorizeNominatedTransfers.title=\u6388\u6743\u6307\u5b9a\u79fb\u4ea4
+capability.AuthorizeAllTransfers.title=\u6388\u6743\u6240\u6709\u79fb\u4ea4
+capability.DestroyRecordsScheduledForDestruction.title=\u9500\u6bc1\u8ba1\u5212\u8981\u9500\u6bc1\u7684\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939
+capability.DestroyRecords.title=\u9500\u6bc1\u8bb0\u5f55
+capability.DeleteRecords.title=\u5220\u9664\u8bb0\u5f55
+capability.TriggerAnEvent.title=\u89e6\u53d1\u4e8b\u4ef6
+capability.FileDestructionReport.title=\u7acb\u5377\u9500\u6bc1\u62a5\u544a
+capability.FileTransferReport.title=\u7acb\u5377\u79fb\u4ea4\u62a5\u544a
+capability.EndRetention.title=\u7ed3\u675f\u4fdd\u7559
+
+# Hold Controls
+capability.group.holdControls.title=\u4fdd\u5b58\u63a7\u5236
+capability.ExtendRetentionPeriodOrFreeze.title=\u5ef6\u957f\u4fdd\u7559\u671f\u95f4\u6216\u4fdd\u5b58
+capability.Unfreeze.title=\u53d6\u6d88\u4fdd\u5b58
+capability.ViewUpdateReasonsForFreeze.title=\u67e5\u770b\u4fdd\u5b58\u7684\u66f4\u65b0\u539f\u56e0
+capability.CreateHold.title=\u521b\u5efa\u4fdd\u5b58
+capability.AddToHold.title=\u52a0\u5165\u4fdd\u5b58
+capability.RemoveFromHold.title=\u89e3\u9664\u4fdd\u5b58
+capability.FileHoldReport.title=\u7acb\u5377\u4fdd\u5b58\u62a5\u544a
+capability.DeleteHold.title=\u5220\u9664\u4fdd\u5b58
+capability.EditHold.title=\u7f16\u8f91\u4fdd\u5b58
+
+# Audit
+capability.group.audit.title=\u5ba1\u8ba1
+capability.DeclareAuditAsRecord.title=\u5c06\u5ba1\u8ba1\u58f0\u660e\u4e3a\u8bb0\u5f55
+capability.EnableDisableAuditByTypes.title=\u6309\u7c7b\u578b\u542f\u7528\u3001\u7981\u7528\u5ba1\u8ba1
+capability.DeleteAudit.title=\u5220\u9664\u5ba1\u8ba1
+capability.SelectAuditMetadata.title=\u9009\u62e9\u5ba1\u8ba1\u5143\u6570\u636e
+capability.AccessAudit.title=\u8bbf\u95ee\u5ba1\u8ba1
+capability.ExportAudit.title=\u5bfc\u51fa\u5ba1\u8ba1
+
+# Security
+capability.group.security.title=\u5b89\u5168\u6027
+capability.CreateModifyDestroyRoles.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u89d2\u8272
+capability.CreateModifyDestroyUsersAndGroups.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u7528\u6237\u548c\u7ec4
+capability.PasswordControl.title=\u5bc6\u7801\u63a7\u5236
+capability.DisplayRightsReport.title=\u663e\u793a\u6743\u9650\u62a5\u544a
+capability.ManageAccessControls.title=\u7ec4\u548c\u7528\u6237\u89d2\u8272\u5206\u914d
+capability.ManageAccessRights.title=\u7ba1\u7406\u6743\u9650
+
+# Configuration
+capability.group.config.title=\u914d\u7f6e
+capability.CreateModifyDestroyFileplanMetadata.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u5f52\u7c7b\u65b9\u6848\u5143\u6570\u636e
+capability.CreateModifyDestroyFileplanTypes.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u5f52\u7c7b\u65b9\u6848\u7c7b\u578b
+capability.CreateModifyDestroyRecordTypes.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u8bb0\u5f55\u7c7b\u578b
+capability.CreateAndAssociateSelectionLists.title=\u521b\u5efa\u548c\u5173\u8054\u9009\u62e9\u5217\u8868
+capability.EditSelectionLists.title=\u7f16\u8f91\u9009\u62e9\u5217\u8868
+capability.CreateModifyDestroyReferenceTypes.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u53c2\u8003\u7c7b\u578b
+capability.AttachRulesToMetadataProperties.title=\u5c06\u89c4\u5219\u9644\u52a0\u81f3\u5143\u6570\u636e\u5c5e\u6027
+capability.MakeOptionalParametersMandatory.title=\u5c06\u53ef\u9009\u53c2\u6570\u53d8\u4e3a\u5fc5\u8981\u53c2\u6570
+capability.MapEmailMetadata.title=\u6620\u5c04\u7535\u5b50\u90ae\u4ef6\u5143\u6570\u636e
+
+# Rules
+capability.group.rules.title=\u89c4\u5219
capability.ManageRules.title=\u7ba1\u7406\u89c4\u5219
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service.properties
index 4adb771e20..5ba8e758ce 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service.properties
@@ -1,3 +1,3 @@
-notification.dueforreview.subject=Records due for Review Notification
-notification.superseded.subject=Record Superseded Notification
+notification.dueforreview.subject=Records due for Review Notification
+notification.superseded.subject=Record Superseded Notification
notification.rejected.subject=Record Rejected Notification
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_de.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_de.properties
index d4fd2a292f..516e806803 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_de.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_de.properties
@@ -1,3 +1,3 @@
-notification.dueforreview.subject=Benachrichtigung bei Records mit f\u00e4lliger \u00dcberpr\u00fcfung
-notification.superseded.subject=Benachrichtigung bei abgel\u00f6stem Record
+notification.dueforreview.subject=Benachrichtigung bei Records mit f\u00e4lliger \u00dcberpr\u00fcfung
+notification.superseded.subject=Benachrichtigung bei abgel\u00f6stem Record
notification.rejected.subject=Benachrichtigung bei abgelehntem Record
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_es.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_es.properties
index b48cd5681c..dc443b8c59 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_es.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_es.properties
@@ -1,3 +1,3 @@
-notification.dueforreview.subject=Documentos de archivo pendientes de notificaci\u00f3n de revisi\u00f3n
-notification.superseded.subject=Notificaci\u00f3n de documento de archivo reemplazada
+notification.dueforreview.subject=Documentos de archivo pendientes de notificaci\u00f3n de revisi\u00f3n
+notification.superseded.subject=Notificaci\u00f3n de documento de archivo reemplazada
notification.rejected.subject=Notificaci\u00f3n de documento de archivo rechazada
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_fr.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_fr.properties
index 73845f54b1..f342374560 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_fr.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_fr.properties
@@ -1,3 +1,3 @@
-notification.dueforreview.subject=Documents d'archives arriv\u00e9s \u00e0 \u00e9ch\u00e9ance pour v\u00e9rification
-notification.superseded.subject=Le document d'archives a remplac\u00e9 la notification
+notification.dueforreview.subject=Documents d'archives arriv\u00e9s \u00e0 \u00e9ch\u00e9ance pour v\u00e9rification
+notification.superseded.subject=Le document d'archives a remplac\u00e9 la notification
notification.rejected.subject=Le document d'archives a rejet\u00e9 la notification
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_it.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_it.properties
index f61ba052a4..4e8da1a212 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_it.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_it.properties
@@ -1,3 +1,3 @@
-notification.dueforreview.subject=Notifica record da esaminare
-notification.superseded.subject=Notifica record sostituito
+notification.dueforreview.subject=Notifica record da esaminare
+notification.superseded.subject=Notifica record sostituito
notification.rejected.subject=Notifica record respinto
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_ja.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_ja.properties
index 9d523fdd4b..37a7ba7c2b 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_ja.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_ja.properties
@@ -1,3 +1,3 @@
-notification.dueforreview.subject=\u30ec\u30d3\u30e5\u30fc\u4e88\u5b9a\u30ec\u30b3\u30fc\u30c9\u306e\u901a\u77e5
-notification.superseded.subject=\u30ec\u30b3\u30fc\u30c9\u306e\u5dee\u3057\u66ff\u3048\u901a\u77e5
+notification.dueforreview.subject=\u30ec\u30d3\u30e5\u30fc\u4e88\u5b9a\u30ec\u30b3\u30fc\u30c9\u306e\u901a\u77e5
+notification.superseded.subject=\u30ec\u30b3\u30fc\u30c9\u306e\u5dee\u3057\u66ff\u3048\u901a\u77e5
notification.rejected.subject=\u30ec\u30b3\u30fc\u30c9\u306e\u5374\u4e0b\u901a\u77e5
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_nb.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_nb.properties
index 56349a3443..38c9c0886f 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_nb.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_nb.properties
@@ -1,3 +1,3 @@
-notification.dueforreview.subject=Oppf\u00f8ringer med melding der det skal v\u00e6re gjennomgang
-notification.superseded.subject=Oppf\u00f8ring erstattet melding
+notification.dueforreview.subject=Oppf\u00f8ringer med melding der det skal v\u00e6re gjennomgang
+notification.superseded.subject=Oppf\u00f8ring erstattet melding
notification.rejected.subject=Oppf\u00f8ring avviste melding
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_nl.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_nl.properties
index 278210cbba..4faef1f017 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_nl.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_nl.properties
@@ -1,3 +1,3 @@
-notification.dueforreview.subject=Melding Records gereed voor revisie
-notification.superseded.subject=Melding Record vervangen
+notification.dueforreview.subject=Melding Records gereed voor revisie
+notification.superseded.subject=Melding Record vervangen
notification.rejected.subject=Melding Record geweigerd
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_pt_BR.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_pt_BR.properties
index 43fd3e51f0..76a932db7a 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_pt_BR.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_pt_BR.properties
@@ -1,3 +1,3 @@
-notification.dueforreview.subject=Notifica\u00e7\u00e3o de prazo para revis\u00e3o de documentos arquiv\u00edsticos
-notification.superseded.subject=Notifica\u00e7\u00e3o de documento arquiv\u00edstico substitu\u00eddo
+notification.dueforreview.subject=Notifica\u00e7\u00e3o de prazo para revis\u00e3o de documentos arquiv\u00edsticos
+notification.superseded.subject=Notifica\u00e7\u00e3o de documento arquiv\u00edstico substitu\u00eddo
notification.rejected.subject=Notifica\u00e7\u00e3o de documento arquiv\u00edstico rejeitado
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_ru.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_ru.properties
index 99fb21f7ad..69ac12cfce 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_ru.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_ru.properties
@@ -1,3 +1,3 @@
-notification.dueforreview.subject=\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u043e \u0437\u0430\u043f\u0438\u0441\u0438, \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0435\u0439 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435
-notification.superseded.subject=\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u043e \u0437\u0430\u043c\u0435\u043d\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+notification.dueforreview.subject=\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u043e \u0437\u0430\u043f\u0438\u0441\u0438, \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0435\u0439 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435
+notification.superseded.subject=\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u043e \u0437\u0430\u043c\u0435\u043d\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
notification.rejected.subject=\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u043e\u0431 \u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0438
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_zh_CN.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_zh_CN.properties
index 3ec73c184a..b6a0599398 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_zh_CN.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/notification-service_zh_CN.properties
@@ -1,3 +1,3 @@
-notification.dueforreview.subject=\u8bb0\u5f55\u5ba1\u67e5\u5230\u671f\u901a\u77e5
-notification.superseded.subject=\u8bb0\u5f55\u88ab\u53d6\u4ee3\u901a\u77e5
+notification.dueforreview.subject=\u8bb0\u5f55\u5ba1\u67e5\u5230\u671f\u901a\u77e5
+notification.superseded.subject=\u8bb0\u5f55\u88ab\u53d6\u4ee3\u901a\u77e5
notification.rejected.subject=\u8bb0\u5f55\u88ab\u62d2\u7edd\u901a\u77e5
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service.properties
index 6d55f96355..8b57ef264e 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service.properties
@@ -1,21 +1,21 @@
-rm.service.error-add-content-container=You can only file records to a record folder.
-rm.service.update-disposition-action-def=You can't update the retention action definition because changes made to the retention schedule are being saved. Try again in a few minutes.
-rm.service.set-id=You can't change the ID of {0} because it's read-only.
-rm.service.path-node=We couldn't find {0}. Try refreshing your browser or contact your I.T. Dept.
-rm.service.invalid-rm-node=The records management node isn't valid because the aspect {0} isn't present.
-rm.service.no-root=We couldn't find the records management root. Try filing the record again.
-rm.service.dup-root=You can't create a file plan here as there's already one created in this folder hierarchy.
-rm.service.root-type=We can't create the file plan because type {0} isn't a sub-type of rma:filePlan. Try again using a different type.
-rm.service.container-parent-type=You can only create a record category at the top level of the file plan or in another record category (rma:recordCategory).
-rm.service.container-type=You can only create a record category at the top level of the file plan or in another record category (rma:recordsManagementContainer or sub-type).
-rm.service.container-expected=You can only find record category contents in a record category (rma:recordCategory or sub-type).
-rm.service.record-folder-expected=The action can only be completed using a record folder of type rma:recordFolder.
-rm.service.parent-record-folder-root=You can't create a record folder here. Try creating it in a record category.
-rm.service.parent-record-folder-type=You can't create a record folder here. Try creating it in a record category.
-rm.service.record-folder-type=We can't create record folder unless you use the type rma:recordFolder or a sub-type.
-rm.service.not-record=The node {0} is not a record.
-rm.service.vital-def-missing=Vital record definition aspect is not present on node. (nodeRef={0})
-rm.service.close-record-folder-not-folder=The record folder couldn't be closed because it's not defined as a record folder.(nodeRef={0})
-rm.service.node-has-aspect=The record type {1} is already showing for record {0}.
-rm.service.final-version=Final
+rm.service.error-add-content-container=You can only file records to a record folder.
+rm.service.update-disposition-action-def=You can't update the retention action definition because changes made to the retention schedule are being saved. Try again in a few minutes.
+rm.service.set-id=You can't change the ID of {0} because it's read-only.
+rm.service.path-node=We couldn't find {0}. Try refreshing your browser or contact your I.T. Dept.
+rm.service.invalid-rm-node=The records management node isn't valid because the aspect {0} isn't present.
+rm.service.no-root=We couldn't find the records management root. Try filing the record again.
+rm.service.dup-root=You can't create a file plan here as there's already one created in this folder hierarchy.
+rm.service.root-type=We can't create the file plan because type {0} isn't a sub-type of rma:filePlan. Try again using a different type.
+rm.service.container-parent-type=You can only create a record category at the top level of the file plan or in another record category (rma:recordCategory).
+rm.service.container-type=You can only create a record category at the top level of the file plan or in another record category (rma:recordsManagementContainer or sub-type).
+rm.service.container-expected=You can only find record category contents in a record category (rma:recordCategory or sub-type).
+rm.service.record-folder-expected=The action can only be completed using a record folder of type rma:recordFolder.
+rm.service.parent-record-folder-root=You can't create a record folder here. Try creating it in a record category.
+rm.service.parent-record-folder-type=You can't create a record folder here. Try creating it in a record category.
+rm.service.record-folder-type=We can't create record folder unless you use the type rma:recordFolder or a sub-type.
+rm.service.not-record=The node {0} is not a record.
+rm.service.vital-def-missing=Vital record definition aspect is not present on node. (nodeRef={0})
+rm.service.close-record-folder-not-folder=The record folder couldn't be closed because it's not defined as a record folder.(nodeRef={0})
+rm.service.node-has-aspect=The record type {1} is already showing for record {0}.
+rm.service.final-version=Final
rm.service.final-version-description=The final archived record version
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_de.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_de.properties
index f339081c21..e400bc2b6a 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_de.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_de.properties
@@ -1,21 +1,21 @@
-rm.service.error-add-content-container=Records k\u00f6nnen nur in einem Record-Ordner abgelegt werden.
-rm.service.update-disposition-action-def=Sie k\u00f6nnen die Definition der Aufbewahrungsaktion nicht aktualisieren, da \u00c4nderungen am Aufbewahrungsplan gespeichert werden. Versuchen Sie es in ein paar Minuten erneut.
-rm.service.set-id=Sie k\u00f6nnen die ID von {0} nicht \u00e4ndern (schreibgesch\u00fctzt).
-rm.service.path-node=''{0}'' wurde nicht gefunden. Aktualisieren Sie Ihren Browser, um es noch einmal zu versuchen, oder kontaktieren Sie Ihre IT-Abteilung.
-rm.service.invalid-rm-node=Der Records Management Knoten ist ung\u00fcltig, da der Aspekt {0} nicht vorhanden ist.
-rm.service.no-root=Records Management Root wurde nicht gefunden. Versuchen Sie, den Record erneut abzulegen.
-rm.service.dup-root=Sie k\u00f6nnen hier keinen Ablageplan erstellen, da bereits einer in dieser Ordnerhierarchie erstellt wurde.
-rm.service.root-type=Ablageplan kann nicht erstellt werden, da Typ {0} ein Subtyp von rma:filePlan ist. Versuchen Sie es mit einem anderen Typ.
-rm.service.container-parent-type=Eine Record-Kategorie kann nur auf oberster Ebene des Ablageplans oder in einer anderen Record-Kategorie (rma:recordCategory) erstellt werden.
-rm.service.container-type=Eine Record-Kategorie kann nur auf oberster Ebene des Ablageplans oder in einer anderen Record-Kategorie (rma:recordsManagementContainer oder Subtyp) erstellt werden.
-rm.service.container-expected=Inhalte einer Record-Kategorie k\u00f6nnen nur in einer Record-Kategorie (rma:recordCategory oder Subtyp) gefunden werden.
-rm.service.record-folder-expected=Die Aktion kann nur \u00fcber einen Record-Ordner vom Typ rma:recordFolder abgeschlossen werden.
-rm.service.parent-record-folder-root=Sie k\u00f6nnen hier keinen Record-Ordner erstellen. Versuchen Sie, diesen in einer Record-Kategorie zu erstellen.
-rm.service.parent-record-folder-type=Sie k\u00f6nnen hier keinen Record-Ordner erstellen. Versuchen Sie, diesen in einer Record-Kategorie zu erstellen.
-rm.service.record-folder-type=Record-Ordner kann erst erstellt werden, wenn Sie den Typ rma:recordFolder oder einen Subtyp verwenden.
-rm.service.not-record=Knoten {0} ist kein Record.
-rm.service.vital-def-missing=Definitionsaspekt von besonders relevantem Record ist auf dem Knoten nicht vorhanden. (nodeRef={0})
-rm.service.close-record-folder-not-folder=Der Record-Ordner konnte nicht geschlossen werden, da er nicht als Record-Ordner definiert ist. (nodeRef={0})
-rm.service.node-has-aspect=Record-Typ {1} wird bereits f\u00fcr Record {0} angezeigt.
-rm.service.final-version=Endg\u00fcltig
+rm.service.error-add-content-container=Records k\u00f6nnen nur in einem Record-Ordner abgelegt werden.
+rm.service.update-disposition-action-def=Sie k\u00f6nnen die Definition der Aufbewahrungsaktion nicht aktualisieren, da \u00c4nderungen am Aufbewahrungsplan gespeichert werden. Versuchen Sie es in ein paar Minuten erneut.
+rm.service.set-id=Sie k\u00f6nnen die ID von {0} nicht \u00e4ndern (schreibgesch\u00fctzt).
+rm.service.path-node=''{0}'' wurde nicht gefunden. Aktualisieren Sie Ihren Browser, um es noch einmal zu versuchen, oder kontaktieren Sie Ihre IT-Abteilung.
+rm.service.invalid-rm-node=Der Records Management Knoten ist ung\u00fcltig, da der Aspekt {0} nicht vorhanden ist.
+rm.service.no-root=Records Management Root wurde nicht gefunden. Versuchen Sie, den Record erneut abzulegen.
+rm.service.dup-root=Sie k\u00f6nnen hier keinen Ablageplan erstellen, da bereits einer in dieser Ordnerhierarchie erstellt wurde.
+rm.service.root-type=Ablageplan kann nicht erstellt werden, da Typ {0} ein Subtyp von rma:filePlan ist. Versuchen Sie es mit einem anderen Typ.
+rm.service.container-parent-type=Eine Record-Kategorie kann nur auf oberster Ebene des Ablageplans oder in einer anderen Record-Kategorie (rma:recordCategory) erstellt werden.
+rm.service.container-type=Eine Record-Kategorie kann nur auf oberster Ebene des Ablageplans oder in einer anderen Record-Kategorie (rma:recordsManagementContainer oder Subtyp) erstellt werden.
+rm.service.container-expected=Inhalte einer Record-Kategorie k\u00f6nnen nur in einer Record-Kategorie (rma:recordCategory oder Subtyp) gefunden werden.
+rm.service.record-folder-expected=Die Aktion kann nur \u00fcber einen Record-Ordner vom Typ rma:recordFolder abgeschlossen werden.
+rm.service.parent-record-folder-root=Sie k\u00f6nnen hier keinen Record-Ordner erstellen. Versuchen Sie, diesen in einer Record-Kategorie zu erstellen.
+rm.service.parent-record-folder-type=Sie k\u00f6nnen hier keinen Record-Ordner erstellen. Versuchen Sie, diesen in einer Record-Kategorie zu erstellen.
+rm.service.record-folder-type=Record-Ordner kann erst erstellt werden, wenn Sie den Typ rma:recordFolder oder einen Subtyp verwenden.
+rm.service.not-record=Knoten {0} ist kein Record.
+rm.service.vital-def-missing=Definitionsaspekt von besonders relevantem Record ist auf dem Knoten nicht vorhanden. (nodeRef={0})
+rm.service.close-record-folder-not-folder=Der Record-Ordner konnte nicht geschlossen werden, da er nicht als Record-Ordner definiert ist. (nodeRef={0})
+rm.service.node-has-aspect=Record-Typ {1} wird bereits f\u00fcr Record {0} angezeigt.
+rm.service.final-version=Endg\u00fcltig
rm.service.final-version-description=Die endg\u00fcltige archivierte Version des Records
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_es.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_es.properties
index 73ae8a43c4..433c98d10f 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_es.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_es.properties
@@ -1,21 +1,21 @@
-rm.service.error-add-content-container=Solo puede archivar documentos de archivo en una carpeta de documentos de archivo.
-rm.service.update-disposition-action-def=No puede actualizar la definici\u00f3n de acci\u00f3n de retenci\u00f3n porque los cambios hechos en la planificaci\u00f3n de retenci\u00f3n se est\u00e1n guardando. Vuelva a intentarlo despu\u00e9s de unos minutos.
-rm.service.set-id=No puede cambiar el ID de ''{0}'' porque es de solo lectura.
-rm.service.path-node=No se pudo encontrar ''{0}''. Trate de actualizar el navegador o p\u00f3ngase en contacto con el dep. de TI.
-rm.service.invalid-rm-node=El nodo de Records Management no es v\u00e1lido porque el aspecto ''{0}'' no est\u00e1 presente.
-rm.service.no-root=No se pudo encontrar la ra\u00edz de Records Management. Trate de archivar el documento de archivo de nuevo.
-rm.service.dup-root=No puede crear un plan de ficheros aqu\u00ed porque ya hay uno creado en esta jerarqu\u00eda de carpetas.
-rm.service.root-type=No se puede crear el plan de ficheros porque el tipo ''{0}'' no es un subtipo de rma:filePlan. Vuelva a intentarlo usando un tipo diferente.
-rm.service.container-parent-type=Solo puede crear una categor\u00eda de documentos de archivo en el nivel superior del plan de ficheros o en otra categor\u00eda de documentos de archivo (rma:recordCategory).
-rm.service.container-type=Solo puede crear una categor\u00eda de documentos de archivo en el nivel superior del plan de ficheros o en otra categor\u00eda de documentos de archivo (rma:recordsManagementContainer o subtipo).
-rm.service.container-expected=Solo puede encontrar contenidos de categor\u00eda de documentos de archivo en una categor\u00eda de documentos de archivo (rma:recordCategory o subtipo).
-rm.service.record-folder-expected=La acci\u00f3n solo puede completarse usando una carpeta de documentos de archivo del tipo rma:recordFolder.
-rm.service.parent-record-folder-root=No puede crear una carpeta de documentos de archivo aqu\u00ed. Trate de crearla en una categor\u00eda de documentos de archivo.
-rm.service.parent-record-folder-type=No puede crear una carpeta de documentos de archivo aqu\u00ed. Trate de crearla en una categor\u00eda de documentos de archivo.
-rm.service.record-folder-type=No se puede crear una carpeta de documentos de archivo a menos que use el tipo rma:recordFolder o un subtipo.
-rm.service.not-record=El nodo ''{0}'' no es un documento de archivo.
-rm.service.vital-def-missing=El aspecto de definici\u00f3n de documento de archivo vital no est\u00e1 presenta en el nodo. (nodeRef=''{0}'')
-rm.service.close-record-folder-not-folder=No se pudo cerrar la carpeta de documentos de archivo porque no est\u00e1 definida como una carpeta de documentos de archivo.(nodeRef=''{0}'')
-rm.service.node-has-aspect=El tipo de documento de archivo ''{1}'' ya se est\u00e1 mostrando para el documento de archivo ''{0}''.
-rm.service.final-version=Final
+rm.service.error-add-content-container=Solo puede archivar documentos de archivo en una carpeta de documentos de archivo.
+rm.service.update-disposition-action-def=No puede actualizar la definici\u00f3n de acci\u00f3n de retenci\u00f3n porque los cambios hechos en la planificaci\u00f3n de retenci\u00f3n se est\u00e1n guardando. Vuelva a intentarlo despu\u00e9s de unos minutos.
+rm.service.set-id=No puede cambiar el ID de ''{0}'' porque es de solo lectura.
+rm.service.path-node=No se pudo encontrar ''{0}''. Trate de actualizar el navegador o p\u00f3ngase en contacto con el dep. de TI.
+rm.service.invalid-rm-node=El nodo de Records Management no es v\u00e1lido porque el aspecto ''{0}'' no est\u00e1 presente.
+rm.service.no-root=No se pudo encontrar la ra\u00edz de Records Management. Trate de archivar el documento de archivo de nuevo.
+rm.service.dup-root=No puede crear un plan de ficheros aqu\u00ed porque ya hay uno creado en esta jerarqu\u00eda de carpetas.
+rm.service.root-type=No se puede crear el plan de ficheros porque el tipo ''{0}'' no es un subtipo de rma:filePlan. Vuelva a intentarlo usando un tipo diferente.
+rm.service.container-parent-type=Solo puede crear una categor\u00eda de documentos de archivo en el nivel superior del plan de ficheros o en otra categor\u00eda de documentos de archivo (rma:recordCategory).
+rm.service.container-type=Solo puede crear una categor\u00eda de documentos de archivo en el nivel superior del plan de ficheros o en otra categor\u00eda de documentos de archivo (rma:recordsManagementContainer o subtipo).
+rm.service.container-expected=Solo puede encontrar contenidos de categor\u00eda de documentos de archivo en una categor\u00eda de documentos de archivo (rma:recordCategory o subtipo).
+rm.service.record-folder-expected=La acci\u00f3n solo puede completarse usando una carpeta de documentos de archivo del tipo rma:recordFolder.
+rm.service.parent-record-folder-root=No puede crear una carpeta de documentos de archivo aqu\u00ed. Trate de crearla en una categor\u00eda de documentos de archivo.
+rm.service.parent-record-folder-type=No puede crear una carpeta de documentos de archivo aqu\u00ed. Trate de crearla en una categor\u00eda de documentos de archivo.
+rm.service.record-folder-type=No se puede crear una carpeta de documentos de archivo a menos que use el tipo rma:recordFolder o un subtipo.
+rm.service.not-record=El nodo ''{0}'' no es un documento de archivo.
+rm.service.vital-def-missing=El aspecto de definici\u00f3n de documento de archivo vital no est\u00e1 presenta en el nodo. (nodeRef=''{0}'')
+rm.service.close-record-folder-not-folder=No se pudo cerrar la carpeta de documentos de archivo porque no est\u00e1 definida como una carpeta de documentos de archivo.(nodeRef=''{0}'')
+rm.service.node-has-aspect=El tipo de documento de archivo ''{1}'' ya se est\u00e1 mostrando para el documento de archivo ''{0}''.
+rm.service.final-version=Final
rm.service.final-version-description=La versi\u00f3n final del documento de archivo archivado
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_fr.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_fr.properties
index 5cb9ff2ec3..4b51a851bf 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_fr.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_fr.properties
@@ -1,21 +1,21 @@
-rm.service.error-add-content-container=Les documents d'archives peuvent \u00eatre class\u00e9s uniquement dans un dossier d'archives.
-rm.service.update-disposition-action-def=Impossible de mettre \u00e0 jour la d\u00e9finition de l'action de r\u00e9tention, car des modifications de la r\u00e8gle de r\u00e9tention sont en cours d'enregistrement. R\u00e9essayez dans quelques minutes.
-rm.service.set-id=Impossible de modifier l''ID de {0}, car cet \u00e9l\u00e9ment est en lecture seule.
-rm.service.path-node={0} est introuvable. Essayez d''actualiser votre navigateur ou contactez votre DSI.
-rm.service.invalid-rm-node=Le n\u0153ud de gestion des archives n''est pas valide, car l''aspect {0} n''est pas pr\u00e9sent.
-rm.service.no-root=La racine du site de gestion des archives est introuvable. Essayez d'archiver \u00e0 nouveau le document d'archives.
-rm.service.dup-root=Impossible de cr\u00e9er un plan de classification ici, car il en existe d\u00e9j\u00e0 un dans cette hi\u00e9rarchie de dossiers.
-rm.service.root-type=Impossible de cr\u00e9er le plan de classification, car le type {0} n''est pas un sous-type de rma:filePlan. R\u00e9essayez avec un type diff\u00e9rent.
-rm.service.container-parent-type=Une cat\u00e9gorie de document d'archives peut \u00eatre cr\u00e9\u00e9e uniquement au niveau sup\u00e9rieur du plan de classification ou dans une autre cat\u00e9gorie de document d'archives (rma:recordCategory).
-rm.service.container-type=Une cat\u00e9gorie de document d'archives peut \u00eatre cr\u00e9\u00e9e uniquement au niveau sup\u00e9rieur du plan de classification ou dans une autre cat\u00e9gorie de document d'archives (rma:recordsManagementContainer ou sous-type).
-rm.service.container-expected=Vous trouverez des contenus de cat\u00e9gorie de document d'archives uniquement dans une cat\u00e9gorie de document d'archives (rma:recordCategory ou sous-type).
-rm.service.record-folder-expected=L'action peut \u00eatre effectu\u00e9e uniquement avec un dossier d'archives de type rma:recordFolder.
-rm.service.parent-record-folder-root=Impossible de cr\u00e9er un dossier d'archives ici. Essayez de le cr\u00e9er dans une cat\u00e9gorie de document d'archives.
-rm.service.parent-record-folder-type=Impossible de cr\u00e9er un dossier d'archives ici. Essayez de le cr\u00e9er dans une cat\u00e9gorie de document d'archives.
-rm.service.record-folder-type=Impossible de cr\u00e9er un dossier d'archives \u00e0 moins d'utiliser le type rma:recordFolder ou un sous-type.
-rm.service.not-record=Le n\u0153ud {0} n''est pas un document d''archives.
-rm.service.vital-def-missing=L''aspect de d\u00e9finition de document d''archives essentiel n''est pas pr\u00e9sent sur le n\u0153ud. (nodeRef={0})
-rm.service.close-record-folder-not-folder=Le dossier d''archives n''a pas pu \u00eatre ferm\u00e9, car il n''est pas d\u00e9fini comme dossier d''archives.(nodeRef={0})
-rm.service.node-has-aspect=Le type de document d''archives {1} est d\u00e9j\u00e0 affich\u00e9 pour le document d''archives {0}.
-rm.service.final-version=Finale
+rm.service.error-add-content-container=Les documents d'archives peuvent \u00eatre class\u00e9s uniquement dans un dossier d'archives.
+rm.service.update-disposition-action-def=Impossible de mettre \u00e0 jour la d\u00e9finition de l'action de r\u00e9tention, car des modifications de la r\u00e8gle de r\u00e9tention sont en cours d'enregistrement. R\u00e9essayez dans quelques minutes.
+rm.service.set-id=Impossible de modifier l''ID de {0}, car cet \u00e9l\u00e9ment est en lecture seule.
+rm.service.path-node={0} est introuvable. Essayez d''actualiser votre navigateur ou contactez votre DSI.
+rm.service.invalid-rm-node=Le n\u0153ud de gestion des archives n''est pas valide, car l''aspect {0} n''est pas pr\u00e9sent.
+rm.service.no-root=La racine du site de gestion des archives est introuvable. Essayez d'archiver \u00e0 nouveau le document d'archives.
+rm.service.dup-root=Impossible de cr\u00e9er un plan de classification ici, car il en existe d\u00e9j\u00e0 un dans cette hi\u00e9rarchie de dossiers.
+rm.service.root-type=Impossible de cr\u00e9er le plan de classification, car le type {0} n''est pas un sous-type de rma:filePlan. R\u00e9essayez avec un type diff\u00e9rent.
+rm.service.container-parent-type=Une cat\u00e9gorie de document d'archives peut \u00eatre cr\u00e9\u00e9e uniquement au niveau sup\u00e9rieur du plan de classification ou dans une autre cat\u00e9gorie de document d'archives (rma:recordCategory).
+rm.service.container-type=Une cat\u00e9gorie de document d'archives peut \u00eatre cr\u00e9\u00e9e uniquement au niveau sup\u00e9rieur du plan de classification ou dans une autre cat\u00e9gorie de document d'archives (rma:recordsManagementContainer ou sous-type).
+rm.service.container-expected=Vous trouverez des contenus de cat\u00e9gorie de document d'archives uniquement dans une cat\u00e9gorie de document d'archives (rma:recordCategory ou sous-type).
+rm.service.record-folder-expected=L'action peut \u00eatre effectu\u00e9e uniquement avec un dossier d'archives de type rma:recordFolder.
+rm.service.parent-record-folder-root=Impossible de cr\u00e9er un dossier d'archives ici. Essayez de le cr\u00e9er dans une cat\u00e9gorie de document d'archives.
+rm.service.parent-record-folder-type=Impossible de cr\u00e9er un dossier d'archives ici. Essayez de le cr\u00e9er dans une cat\u00e9gorie de document d'archives.
+rm.service.record-folder-type=Impossible de cr\u00e9er un dossier d'archives \u00e0 moins d'utiliser le type rma:recordFolder ou un sous-type.
+rm.service.not-record=Le n\u0153ud {0} n''est pas un document d''archives.
+rm.service.vital-def-missing=L''aspect de d\u00e9finition de document d''archives essentiel n''est pas pr\u00e9sent sur le n\u0153ud. (nodeRef={0})
+rm.service.close-record-folder-not-folder=Le dossier d''archives n''a pas pu \u00eatre ferm\u00e9, car il n''est pas d\u00e9fini comme dossier d''archives.(nodeRef={0})
+rm.service.node-has-aspect=Le type de document d''archives {1} est d\u00e9j\u00e0 affich\u00e9 pour le document d''archives {0}.
+rm.service.final-version=Finale
rm.service.final-version-description=Version finale du document archiv\u00e9
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_it.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_it.properties
index f5bb088504..868d68aa01 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_it.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_it.properties
@@ -1,21 +1,21 @@
-rm.service.error-add-content-container=\u00c8 possibile archiviare i record solo in cartelle di record.
-rm.service.update-disposition-action-def=Impossibile aggiornare la definizione dell'azione di conservazione poich\u00e9 le modifiche effettuate al programma di conservazione vengono salvate. Riprovare tra alcuni minuti.
-rm.service.set-id=Impossibile modificare l''ID di {0} poich\u00e9 \u00e8 di sola lettura.
-rm.service.path-node=Impossibile trovare {0}. Provare ad aggiornare il browser o contattare il proprio dipartimento I.T. I.T.
-rm.service.invalid-rm-node=Il nodo di gestione dei record non \u00e8 valido poich\u00e9 l''aspetto {0} non \u00e8 presente.
-rm.service.no-root=Impossibile trovare la radice di Records Management. Provare ad archiviare nuovamente il record.
-rm.service.dup-root=Impossibile creare un piano file qui poich\u00e9 nella gerarchia di questa cartella ne \u00e8 gi\u00e0 stato creato uno.
-rm.service.root-type=Impossibile creare il piano file poich\u00e9 il tipo {0} non \u00e8 un sottotipo di rma:filePlan. Prova ancora usando un dipo differente.
-rm.service.container-parent-type=\u00c8 possibile solo creare una categoria di record nel livello superiore del piano file o in un'altra categoria di record (rma:recordCategory).
-rm.service.container-type=\u00c8 possibile solo creare una categoria di record nel livello superiore del piano file o in un'altra categoria di record (rma:recordsManagementContainer o sottotipo).
-rm.service.container-expected=\u00c8 possibile trovare i contenuti di una categoria di record solo in una categoria di record (rma:recordCategory o sottotipo).
-rm.service.record-folder-expected=L'azione pu\u00f2 essere completata solo utilizzando una cartella di record del tipo rma:recordFolder.
-rm.service.parent-record-folder-root=Impossibile creare una cartella di record qui. Provare a crearla in un'altra categoria di record.
-rm.service.parent-record-folder-type=Impossibile creare una cartella di record qui. Provare a crearla in un'altra categoria di record.
-rm.service.record-folder-type=Impossibile creare una cartella di record a meno che si utilizzi il tipo rma:recordFolder o un sottotipo.
-rm.service.not-record=Il nodo {0} non \u00e8 un record.
-rm.service.vital-def-missing=L''aspetto di definizione di record fondamentale non \u00e8 presente su nodo. (nodeRef={0})
-rm.service.close-record-folder-not-folder=Non \u00e8 stato possibile chiudere la cartella di record, poich\u00e9 non \u00e8 definita come cartella di record.(nodeRef={0})
-rm.service.node-has-aspect=Il tipo di record {1} sta gi\u00e0 visualizzando per il record {0}.
-rm.service.final-version=Finale
+rm.service.error-add-content-container=\u00c8 possibile archiviare i record solo in cartelle di record.
+rm.service.update-disposition-action-def=Impossibile aggiornare la definizione dell'azione di conservazione poich\u00e9 le modifiche effettuate al programma di conservazione vengono salvate. Riprovare tra alcuni minuti.
+rm.service.set-id=Impossibile modificare l''ID di {0} poich\u00e9 \u00e8 di sola lettura.
+rm.service.path-node=Impossibile trovare {0}. Provare ad aggiornare il browser o contattare il proprio dipartimento I.T. I.T.
+rm.service.invalid-rm-node=Il nodo di gestione dei record non \u00e8 valido poich\u00e9 l''aspetto {0} non \u00e8 presente.
+rm.service.no-root=Impossibile trovare la radice di Records Management. Provare ad archiviare nuovamente il record.
+rm.service.dup-root=Impossibile creare un piano file qui poich\u00e9 nella gerarchia di questa cartella ne \u00e8 gi\u00e0 stato creato uno.
+rm.service.root-type=Impossibile creare il piano file poich\u00e9 il tipo {0} non \u00e8 un sottotipo di rma:filePlan. Prova ancora usando un dipo differente.
+rm.service.container-parent-type=\u00c8 possibile solo creare una categoria di record nel livello superiore del piano file o in un'altra categoria di record (rma:recordCategory).
+rm.service.container-type=\u00c8 possibile solo creare una categoria di record nel livello superiore del piano file o in un'altra categoria di record (rma:recordsManagementContainer o sottotipo).
+rm.service.container-expected=\u00c8 possibile trovare i contenuti di una categoria di record solo in una categoria di record (rma:recordCategory o sottotipo).
+rm.service.record-folder-expected=L'azione pu\u00f2 essere completata solo utilizzando una cartella di record del tipo rma:recordFolder.
+rm.service.parent-record-folder-root=Impossibile creare una cartella di record qui. Provare a crearla in un'altra categoria di record.
+rm.service.parent-record-folder-type=Impossibile creare una cartella di record qui. Provare a crearla in un'altra categoria di record.
+rm.service.record-folder-type=Impossibile creare una cartella di record a meno che si utilizzi il tipo rma:recordFolder o un sottotipo.
+rm.service.not-record=Il nodo {0} non \u00e8 un record.
+rm.service.vital-def-missing=L''aspetto di definizione di record fondamentale non \u00e8 presente su nodo. (nodeRef={0})
+rm.service.close-record-folder-not-folder=Non \u00e8 stato possibile chiudere la cartella di record, poich\u00e9 non \u00e8 definita come cartella di record.(nodeRef={0})
+rm.service.node-has-aspect=Il tipo di record {1} sta gi\u00e0 visualizzando per il record {0}.
+rm.service.final-version=Finale
rm.service.final-version-description=Versione del record archiviata finale
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_ja.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_ja.properties
index bb41193a0a..de19a21bbd 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_ja.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_ja.properties
@@ -1,21 +1,21 @@
-rm.service.error-add-content-container=\u30ec\u30b3\u30fc\u30c9\u306e\u6574\u7406\u4fdd\u7ba1\u5148\u306b\u4f7f\u7528\u3067\u304d\u308b\u306e\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u307f\u3067\u3059\u3002
-rm.service.update-disposition-action-def=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u306e\u5909\u66f4\u3092\u4fdd\u5b58\u4e2d\u306e\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9a\u7fa9\u3092\u66f4\u65b0\u3067\u304d\u307e\u305b\u3093\u3002 \u6570\u5206\u5f8c\u306b\u64cd\u4f5c\u3092\u3084\u308a\u76f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002
-rm.service.set-id=''{0}'' \u306f\u8aad\u307f\u53d6\u308a\u5c02\u7528\u306e\u305f\u3081\u3001ID \u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002
-rm.service.path-node=''{0}'' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002 \u30d6\u30e9\u30a6\u30b6\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3059\u308b\u304b\u3001IT \u62c5\u5f53\u8005\u306b\u9023\u7d61\u3057\u3066\u304f\u3060\u3055\u3044\u3002
-rm.service.invalid-rm-node=\u3053\u306e\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30ce\u30fc\u30c9\u306b\u306f\u30a2\u30b9\u30da\u30af\u30c8 ''{0}'' \u304c\u306a\u3044\u305f\u3081\u3001\u7121\u52b9\u3067\u3059\u3002
-rm.service.no-root=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002 \u30ec\u30b3\u30fc\u30c9\u306e\u6574\u7406\u4fdd\u7ba1\u3092\u3084\u308a\u76f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002
-rm.service.dup-root=\u3053\u306e\u30d5\u30a9\u30eb\u30c0\u968e\u5c64\u306b\u306f\u3059\u3067\u306b\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u304c 1 \u3064\u4f5c\u6210\u3055\u308c\u3066\u3044\u308b\u305f\u3081\u3001\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002
-rm.service.root-type=\u30bf\u30a4\u30d7 ''{0}'' \u306f rma:filePlan \u306e\u30b5\u30d6\u30bf\u30a4\u30d7\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002 \u5225\u306e\u30bf\u30a4\u30d7\u3092\u4f7f\u3063\u3066\u3001\u64cd\u4f5c\u3092\u3084\u308a\u76f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002
-rm.service.container-parent-type=\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea\u306f\u3001\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u306e\u6700\u4e0a\u4f4d\u304b\u3001\u5225\u306e\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea (rma:recordCategory) \u5185\u306b\u3057\u304b\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002
-rm.service.container-type=\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea\u306f\u3001\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u306e\u6700\u4e0a\u4f4d\u304b\u3001\u5225\u306e\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea (rma:recordsManagementContainer or sub-type) \u5185\u306b\u3057\u304b\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002
-rm.service.container-expected=\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea (rma:recordCategory or sub-type) \u5185\u3067\u3057\u304b\u691c\u7d22\u3067\u304d\u307e\u305b\u3093\u3002
-rm.service.record-folder-expected=\u3053\u306e\u51e6\u7406\u3092\u5b8c\u4e86\u3059\u308b\u306b\u306f\u3001rma:recordFolder \u30bf\u30a4\u30d7\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u4f7f\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
-rm.service.parent-record-folder-root=\u3053\u3053\u306b\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002 \u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea\u5185\u3067\u4f5c\u6210\u3057\u3066\u304f\u3060\u3055\u3044\u3002
-rm.service.parent-record-folder-type=\u3053\u3053\u306b\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002 \u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea\u5185\u3067\u4f5c\u6210\u3057\u3066\u304f\u3060\u3055\u3044\u3002
-rm.service.record-folder-type=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3059\u308b\u306b\u306f\u3001rma:recordFolder \u30bf\u30a4\u30d7\u307e\u305f\u306f\u30b5\u30d6\u30bf\u30a4\u30d7\u3092\u4f7f\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
-rm.service.not-record=\u30ce\u30fc\u30c9 ''{0}'' \u306f\u30ec\u30b3\u30fc\u30c9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002
-rm.service.vital-def-missing=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u5b9a\u7fa9\u30a2\u30b9\u30da\u30af\u30c8\u304c\u30ce\u30fc\u30c9\u306b\u5b58\u5728\u3057\u307e\u305b\u3093\u3002 (nodeRef={0})
-rm.service.close-record-folder-not-folder=\u3053\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3068\u3057\u3066\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u9589\u3058\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={0})
-rm.service.node-has-aspect=\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7 ''{1}'' \u306f\u3059\u3067\u306b\u30ec\u30b3\u30fc\u30c9 ''{0}'' \u306e\u3082\u306e\u3068\u3057\u3066\u8868\u793a\u3055\u308c\u3066\u3044\u307e\u3059\u3002
-rm.service.final-version=\u6700\u7d42\u7248
+rm.service.error-add-content-container=\u30ec\u30b3\u30fc\u30c9\u306e\u6574\u7406\u4fdd\u7ba1\u5148\u306b\u4f7f\u7528\u3067\u304d\u308b\u306e\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u307f\u3067\u3059\u3002
+rm.service.update-disposition-action-def=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u306e\u5909\u66f4\u3092\u4fdd\u5b58\u4e2d\u306e\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9a\u7fa9\u3092\u66f4\u65b0\u3067\u304d\u307e\u305b\u3093\u3002 \u6570\u5206\u5f8c\u306b\u64cd\u4f5c\u3092\u3084\u308a\u76f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002
+rm.service.set-id=''{0}'' \u306f\u8aad\u307f\u53d6\u308a\u5c02\u7528\u306e\u305f\u3081\u3001ID \u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002
+rm.service.path-node=''{0}'' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002 \u30d6\u30e9\u30a6\u30b6\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3059\u308b\u304b\u3001IT \u62c5\u5f53\u8005\u306b\u9023\u7d61\u3057\u3066\u304f\u3060\u3055\u3044\u3002
+rm.service.invalid-rm-node=\u3053\u306e\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30ce\u30fc\u30c9\u306b\u306f\u30a2\u30b9\u30da\u30af\u30c8 ''{0}'' \u304c\u306a\u3044\u305f\u3081\u3001\u7121\u52b9\u3067\u3059\u3002
+rm.service.no-root=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002 \u30ec\u30b3\u30fc\u30c9\u306e\u6574\u7406\u4fdd\u7ba1\u3092\u3084\u308a\u76f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002
+rm.service.dup-root=\u3053\u306e\u30d5\u30a9\u30eb\u30c0\u968e\u5c64\u306b\u306f\u3059\u3067\u306b\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u304c 1 \u3064\u4f5c\u6210\u3055\u308c\u3066\u3044\u308b\u305f\u3081\u3001\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002
+rm.service.root-type=\u30bf\u30a4\u30d7 ''{0}'' \u306f rma:filePlan \u306e\u30b5\u30d6\u30bf\u30a4\u30d7\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002 \u5225\u306e\u30bf\u30a4\u30d7\u3092\u4f7f\u3063\u3066\u3001\u64cd\u4f5c\u3092\u3084\u308a\u76f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002
+rm.service.container-parent-type=\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea\u306f\u3001\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u306e\u6700\u4e0a\u4f4d\u304b\u3001\u5225\u306e\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea (rma:recordCategory) \u5185\u306b\u3057\u304b\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002
+rm.service.container-type=\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea\u306f\u3001\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u306e\u6700\u4e0a\u4f4d\u304b\u3001\u5225\u306e\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea (rma:recordsManagementContainer or sub-type) \u5185\u306b\u3057\u304b\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002
+rm.service.container-expected=\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea (rma:recordCategory or sub-type) \u5185\u3067\u3057\u304b\u691c\u7d22\u3067\u304d\u307e\u305b\u3093\u3002
+rm.service.record-folder-expected=\u3053\u306e\u51e6\u7406\u3092\u5b8c\u4e86\u3059\u308b\u306b\u306f\u3001rma:recordFolder \u30bf\u30a4\u30d7\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u4f7f\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
+rm.service.parent-record-folder-root=\u3053\u3053\u306b\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002 \u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea\u5185\u3067\u4f5c\u6210\u3057\u3066\u304f\u3060\u3055\u3044\u3002
+rm.service.parent-record-folder-type=\u3053\u3053\u306b\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002 \u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea\u5185\u3067\u4f5c\u6210\u3057\u3066\u304f\u3060\u3055\u3044\u3002
+rm.service.record-folder-type=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3059\u308b\u306b\u306f\u3001rma:recordFolder \u30bf\u30a4\u30d7\u307e\u305f\u306f\u30b5\u30d6\u30bf\u30a4\u30d7\u3092\u4f7f\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
+rm.service.not-record=\u30ce\u30fc\u30c9 ''{0}'' \u306f\u30ec\u30b3\u30fc\u30c9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002
+rm.service.vital-def-missing=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u5b9a\u7fa9\u30a2\u30b9\u30da\u30af\u30c8\u304c\u30ce\u30fc\u30c9\u306b\u5b58\u5728\u3057\u307e\u305b\u3093\u3002 (nodeRef={0})
+rm.service.close-record-folder-not-folder=\u3053\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3068\u3057\u3066\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u9589\u3058\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={0})
+rm.service.node-has-aspect=\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7 ''{1}'' \u306f\u3059\u3067\u306b\u30ec\u30b3\u30fc\u30c9 ''{0}'' \u306e\u3082\u306e\u3068\u3057\u3066\u8868\u793a\u3055\u308c\u3066\u3044\u307e\u3059\u3002
+rm.service.final-version=\u6700\u7d42\u7248
rm.service.final-version-description=\u30ec\u30b3\u30fc\u30c9\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u6e08\u307f\u6700\u7d42\u30d0\u30fc\u30b8\u30e7\u30f3
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_nb.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_nb.properties
index a23052c3f9..239c3af449 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_nb.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_nb.properties
@@ -1,21 +1,21 @@
-rm.service.error-add-content-container=Du kan bare arkivere oppf\u00f8ringer i en oppf\u00f8ringsmappe.
-rm.service.update-disposition-action-def=Definisjonen av retensjonshandlingen kan ikke oppdateres fordi endringene som ble gjort i retensjonsplanen lagres. Pr\u00f8v igjen om noen f\u00e5 minutter.
-rm.service.set-id=ID-en til {0} kan ikke endres fordi den er skrivebeskyttet.
-rm.service.path-node=Kunne ikke finne {0}. Pr\u00f8v \u00e5 oppdatere nettleseren, eller kontakt din IT- avdeling.
-rm.service.invalid-rm-node=Oppf\u00f8ringsh\u00e5ndteringsnoden er ikke gyldig fordi aspektet {0} ikke finnes.
-rm.service.no-root=Kunne ikke finne oppf\u00f8ringsh\u00e5ndteringsroten. Fors\u00f8k \u00e5 registrere oppf\u00f8ringen p\u00e5 nytt.
-rm.service.dup-root=En filplan kan ikke opprettes her fordi det finnes allerede en filplan i dette mappehierarkiet.
-rm.service.root-type=Kunne ikke opprette en filplan fordi typen {0} er ikke en undertype av rma:filePlan. Pr\u00f8v igjen med en annen type.
-rm.service.container-parent-type=Du kan bare opprette en oppf\u00f8ringskategori p\u00e5 filplanens toppniv\u00e5 eller i en annen oppf\u00f8ringskategori (rma:recordCategory).
-rm.service.container-type=Du kan bare opprette en oppf\u00f8ringskategori p\u00e5 filplanens toppniv\u00e5 eller i en annen oppf\u00f8ringskategori (rma:recordsManagementContainer eller undertype).
-rm.service.container-expected=Du finner bare innholdet til overf\u00f8ringskategorien i en oppf\u00f8ringskategori (rma:recordCategory eller undertype).
-rm.service.record-folder-expected=Handlingen kan bare fullf\u00f8resmed en oppf\u00f8ringsmappe av typen rma:recordFolder.
-rm.service.parent-record-folder-root=En oppf\u00f8ringsmappen kan ikke opprettes her. Pr\u00f8v \u00e5 opprette den i en oppf\u00f8ringskategori.
-rm.service.parent-record-folder-type=En oppf\u00f8ringsmappen kan ikke opprettes her. Pr\u00f8v \u00e5 opprette den i en oppf\u00f8ringskategori.
-rm.service.record-folder-type=Det kan ikke opprettes en oppf\u00f8ringsmappe med mindre du bruker typen rma:recordFolder eller en undertype.
-rm.service.not-record=Noden {0} er ikke en oppf\u00f8ring.
-rm.service.vital-def-missing=Aspektet ved definisjonen til sv\u00e6rt viktige oppf\u00f8ringer finnes ikke p\u00e5 noden. (nodeRef={0})
-rm.service.close-record-folder-not-folder=Oppf\u00f8ringsmappen kan ikke lukkes fordi den ikke er definert som en oppf\u00f8ringsmappe.(nodeRef={0})
-rm.service.node-has-aspect=Oppf\u00f8ringstypen {1} vises allerede i oppf\u00f8ringen {0}.
-rm.service.final-version=Endelig
+rm.service.error-add-content-container=Du kan bare arkivere oppf\u00f8ringer i en oppf\u00f8ringsmappe.
+rm.service.update-disposition-action-def=Definisjonen av retensjonshandlingen kan ikke oppdateres fordi endringene som ble gjort i retensjonsplanen lagres. Pr\u00f8v igjen om noen f\u00e5 minutter.
+rm.service.set-id=ID-en til {0} kan ikke endres fordi den er skrivebeskyttet.
+rm.service.path-node=Kunne ikke finne {0}. Pr\u00f8v \u00e5 oppdatere nettleseren, eller kontakt din IT- avdeling.
+rm.service.invalid-rm-node=Oppf\u00f8ringsh\u00e5ndteringsnoden er ikke gyldig fordi aspektet {0} ikke finnes.
+rm.service.no-root=Kunne ikke finne oppf\u00f8ringsh\u00e5ndteringsroten. Fors\u00f8k \u00e5 registrere oppf\u00f8ringen p\u00e5 nytt.
+rm.service.dup-root=En filplan kan ikke opprettes her fordi det finnes allerede en filplan i dette mappehierarkiet.
+rm.service.root-type=Kunne ikke opprette en filplan fordi typen {0} er ikke en undertype av rma:filePlan. Pr\u00f8v igjen med en annen type.
+rm.service.container-parent-type=Du kan bare opprette en oppf\u00f8ringskategori p\u00e5 filplanens toppniv\u00e5 eller i en annen oppf\u00f8ringskategori (rma:recordCategory).
+rm.service.container-type=Du kan bare opprette en oppf\u00f8ringskategori p\u00e5 filplanens toppniv\u00e5 eller i en annen oppf\u00f8ringskategori (rma:recordsManagementContainer eller undertype).
+rm.service.container-expected=Du finner bare innholdet til overf\u00f8ringskategorien i en oppf\u00f8ringskategori (rma:recordCategory eller undertype).
+rm.service.record-folder-expected=Handlingen kan bare fullf\u00f8resmed en oppf\u00f8ringsmappe av typen rma:recordFolder.
+rm.service.parent-record-folder-root=En oppf\u00f8ringsmappen kan ikke opprettes her. Pr\u00f8v \u00e5 opprette den i en oppf\u00f8ringskategori.
+rm.service.parent-record-folder-type=En oppf\u00f8ringsmappen kan ikke opprettes her. Pr\u00f8v \u00e5 opprette den i en oppf\u00f8ringskategori.
+rm.service.record-folder-type=Det kan ikke opprettes en oppf\u00f8ringsmappe med mindre du bruker typen rma:recordFolder eller en undertype.
+rm.service.not-record=Noden {0} er ikke en oppf\u00f8ring.
+rm.service.vital-def-missing=Aspektet ved definisjonen til sv\u00e6rt viktige oppf\u00f8ringer finnes ikke p\u00e5 noden. (nodeRef={0})
+rm.service.close-record-folder-not-folder=Oppf\u00f8ringsmappen kan ikke lukkes fordi den ikke er definert som en oppf\u00f8ringsmappe.(nodeRef={0})
+rm.service.node-has-aspect=Oppf\u00f8ringstypen {1} vises allerede i oppf\u00f8ringen {0}.
+rm.service.final-version=Endelig
rm.service.final-version-description=Den endelig arkiverte oppf\u00f8ringsversjonen
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_nl.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_nl.properties
index 5795df641e..af5d8602e1 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_nl.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_nl.properties
@@ -1,21 +1,21 @@
-rm.service.error-add-content-container=U kunt records alleen archiveren in een archiefmap.
-rm.service.update-disposition-action-def=U kunt de definitie van de retentieactie niet bijwerken omdat er wijzigingen in het retentieschema worden opgeslagen. Probeer het over een paar minuten opnieuw.
-rm.service.set-id=U kunt de id van {0} niet wijzigen omdat dit de eigenschap Alleen-lezen heeft.
-rm.service.path-node=Kan {0} niet vinden. Vernieuw de browser of neem contact op met uw IT- afdeling
-rm.service.invalid-rm-node=De node voor Records Management is niet geldig omdat het aspect {0} niet aanwezig is.
-rm.service.no-root=Kan de Records Management-oorsprong niet vinden. Probeer de record opnieuw te archiveren.
-rm.service.dup-root=U kunt hier geen ordeningsplan maken omdat er al een is gemaakt in deze maphi\u00ebrarchie.
-rm.service.root-type=Kan het ordeningsplan niet maken omdat type {0} geen subtype is van rma:filePlan. Probeer het opnieuw met een ander type.
-rm.service.container-parent-type=U kunt alleen een recordcategorie maken op het hoogste niveau van het ordeningsplan of in een andere recordcategorie (rma:recordCategory).
-rm.service.container-type=U kunt alleen een recordcategorie maken op het hoogste niveau van het ordeningsplan of in een andere recordcategorie (rma:recordsManagementContainer of subtype).
-rm.service.container-expected=U kunt alleen recordcategoriecontent vinden in een recordcategorie (rma:recordCategory of subtype).
-rm.service.record-folder-expected=De actie kan alleen worden afgerond met behulp van een archiefmap van het type rma:recordFolder.
-rm.service.parent-record-folder-root=U kunt hier geen archiefmap maken. Probeer de map te maken in een recordcategorie.
-rm.service.parent-record-folder-type=U kunt hier geen archiefmap maken. Probeer de map te maken in een recordcategorie.
-rm.service.record-folder-type=Kan geen archiefmap maken tenzij u het type rma:recordFolder of een subtype gebruikt.
-rm.service.not-record=De node {0} is geen record.
-rm.service.vital-def-missing=Definitie-aspect van vitale record is niet aanwezig op node. (nodeRef={0})
-rm.service.close-record-folder-not-folder=De archiefmap kan niet worden gesloten omdat hij niet als een archiefmap is gedefinieerd.(nodeRef={0})
-rm.service.node-has-aspect=Het recordtype {1} wordt al weergegeven voor record {0}.
-rm.service.final-version=Definitief
+rm.service.error-add-content-container=U kunt records alleen archiveren in een archiefmap.
+rm.service.update-disposition-action-def=U kunt de definitie van de retentieactie niet bijwerken omdat er wijzigingen in het retentieschema worden opgeslagen. Probeer het over een paar minuten opnieuw.
+rm.service.set-id=U kunt de id van {0} niet wijzigen omdat dit de eigenschap Alleen-lezen heeft.
+rm.service.path-node=Kan {0} niet vinden. Vernieuw de browser of neem contact op met uw IT- afdeling
+rm.service.invalid-rm-node=De node voor Records Management is niet geldig omdat het aspect {0} niet aanwezig is.
+rm.service.no-root=Kan de Records Management-oorsprong niet vinden. Probeer de record opnieuw te archiveren.
+rm.service.dup-root=U kunt hier geen ordeningsplan maken omdat er al een is gemaakt in deze maphi\u00ebrarchie.
+rm.service.root-type=Kan het ordeningsplan niet maken omdat type {0} geen subtype is van rma:filePlan. Probeer het opnieuw met een ander type.
+rm.service.container-parent-type=U kunt alleen een recordcategorie maken op het hoogste niveau van het ordeningsplan of in een andere recordcategorie (rma:recordCategory).
+rm.service.container-type=U kunt alleen een recordcategorie maken op het hoogste niveau van het ordeningsplan of in een andere recordcategorie (rma:recordsManagementContainer of subtype).
+rm.service.container-expected=U kunt alleen recordcategoriecontent vinden in een recordcategorie (rma:recordCategory of subtype).
+rm.service.record-folder-expected=De actie kan alleen worden afgerond met behulp van een archiefmap van het type rma:recordFolder.
+rm.service.parent-record-folder-root=U kunt hier geen archiefmap maken. Probeer de map te maken in een recordcategorie.
+rm.service.parent-record-folder-type=U kunt hier geen archiefmap maken. Probeer de map te maken in een recordcategorie.
+rm.service.record-folder-type=Kan geen archiefmap maken tenzij u het type rma:recordFolder of een subtype gebruikt.
+rm.service.not-record=De node {0} is geen record.
+rm.service.vital-def-missing=Definitie-aspect van vitale record is niet aanwezig op node. (nodeRef={0})
+rm.service.close-record-folder-not-folder=De archiefmap kan niet worden gesloten omdat hij niet als een archiefmap is gedefinieerd.(nodeRef={0})
+rm.service.node-has-aspect=Het recordtype {1} wordt al weergegeven voor record {0}.
+rm.service.final-version=Definitief
rm.service.final-version-description=De definitieve gearchiveerde recordversie
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_pt_BR.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_pt_BR.properties
index 0dd40a4880..a23a48eedf 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_pt_BR.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_pt_BR.properties
@@ -1,21 +1,21 @@
-rm.service.error-add-content-container=\u00c9 poss\u00edvel arquivar somente documentos arquiv\u00edsticos em uma pasta de documentos arquiv\u00edsticos.
-rm.service.update-disposition-action-def=N\u00e3o \u00e9 poss\u00edvel atualizar a defini\u00e7\u00e3o da a\u00e7\u00e3o de reten\u00e7\u00e3o, pois as altera\u00e7\u00f5es feitas na programa\u00e7\u00e3o de reten\u00e7\u00e3o est\u00e3o sendo salvas. Tente novamente em alguns minutos.
-rm.service.set-id=N\u00e3o \u00e9 poss\u00edvel alterar o ID de {0}, pois \u00e9 somente leitura.
-rm.service.path-node=N\u00e3o foi poss\u00edvel localizar {0}. Tente atualizar seu navegador ou entre em contato com o Dept. de TI.
-rm.service.invalid-rm-node=O n\u00f3 do Records Management n\u00e3o \u00e9 v\u00e1lido, pois o aspecto {0} n\u00e3o est\u00e1 presente.
-rm.service.no-root=N\u00e3o foi poss\u00edvel localizar a raiz do Records Management. Tente arquivar o documento arquiv\u00edstico novamente.
-rm.service.dup-root=N\u00e3o \u00e9 poss\u00edvel criar um plano de arquivo aqui, pois j\u00e1 h\u00e1 um criado nessa hierarquia de pastas.
-rm.service.root-type=N\u00e3o \u00e9 poss\u00edvel criar o plano de arquivo, pois o tipo {0} n\u00e3o \u00e9 um subtipo de rma:filePlan. Tente novamente usando um tipo diferente.
-rm.service.container-parent-type=Voc\u00ea s\u00f3 pode criar uma categoria de documento arquiv\u00edstico no n\u00edvel superior do plano de arquivo ou em outra categoria de documento arquiv\u00edstico (rma:recordCategory).
-rm.service.container-type=Voc\u00ea s\u00f3 pode criar uma categoria de documento arquiv\u00edstico no n\u00edvel superior do plano de arquivo ou em outra categoria de documento arquiv\u00edstico (rma:recordsManagementContainer ou subtipo).
-rm.service.container-expected=Voc\u00ea s\u00f3 pode encontrar conte\u00fado de categoria de documento arquiv\u00edstico em uma categoria de documento arquiv\u00edstico (rma:recordCategory ou subtipo).
-rm.service.record-folder-expected=A a\u00e7\u00e3o somente pode ser conclu\u00edda usando uma pasta de documento arquiv\u00edstico do tipo rma:recordFolder.
-rm.service.parent-record-folder-root=N\u00e3o \u00e9 poss\u00edvel criar uma pasta de documento arquiv\u00edstico aqui. Tente cri\u00e1-la em uma categoria de documento arquiv\u00edstico.
-rm.service.parent-record-folder-type=N\u00e3o \u00e9 poss\u00edvel criar uma pasta de documento arquiv\u00edstico aqui. Tente cri\u00e1-la em uma categoria de documento arquiv\u00edstico.
-rm.service.record-folder-type=N\u00e3o podemos criar uma pasta de documento arquiv\u00edstico, a menos que voc\u00ea use o tipo rma:recordFolder ou um subtipo.
-rm.service.not-record=O n\u00f3 {0} n\u00e3o \u00e9 um documento arquiv\u00edstico.
-rm.service.vital-def-missing=O aspecto de defini\u00e7\u00e3o do documento arquiv\u00edstico vital n\u00e3o est\u00e1 presente no n\u00f3. (nodeRef={0})
-rm.service.close-record-folder-not-folder=N\u00e3o foi poss\u00edvel fechar a pasta de documento arquiv\u00edstico porque ela n\u00e3o est\u00e1 definida como uma pasta de documento arquiv\u00edstico.(nodeRef={0})
-rm.service.node-has-aspect=O tipo de documento arquiv\u00edstico {1} j\u00e1 est\u00e1 sendo mostrado para o documento arquiv\u00edstico {0}.
-rm.service.final-version=Final
+rm.service.error-add-content-container=\u00c9 poss\u00edvel arquivar somente documentos arquiv\u00edsticos em uma pasta de documentos arquiv\u00edsticos.
+rm.service.update-disposition-action-def=N\u00e3o \u00e9 poss\u00edvel atualizar a defini\u00e7\u00e3o da a\u00e7\u00e3o de reten\u00e7\u00e3o, pois as altera\u00e7\u00f5es feitas na programa\u00e7\u00e3o de reten\u00e7\u00e3o est\u00e3o sendo salvas. Tente novamente em alguns minutos.
+rm.service.set-id=N\u00e3o \u00e9 poss\u00edvel alterar o ID de {0}, pois \u00e9 somente leitura.
+rm.service.path-node=N\u00e3o foi poss\u00edvel localizar {0}. Tente atualizar seu navegador ou entre em contato com o Dept. de TI.
+rm.service.invalid-rm-node=O n\u00f3 do Records Management n\u00e3o \u00e9 v\u00e1lido, pois o aspecto {0} n\u00e3o est\u00e1 presente.
+rm.service.no-root=N\u00e3o foi poss\u00edvel localizar a raiz do Records Management. Tente arquivar o documento arquiv\u00edstico novamente.
+rm.service.dup-root=N\u00e3o \u00e9 poss\u00edvel criar um plano de arquivo aqui, pois j\u00e1 h\u00e1 um criado nessa hierarquia de pastas.
+rm.service.root-type=N\u00e3o \u00e9 poss\u00edvel criar o plano de arquivo, pois o tipo {0} n\u00e3o \u00e9 um subtipo de rma:filePlan. Tente novamente usando um tipo diferente.
+rm.service.container-parent-type=Voc\u00ea s\u00f3 pode criar uma categoria de documento arquiv\u00edstico no n\u00edvel superior do plano de arquivo ou em outra categoria de documento arquiv\u00edstico (rma:recordCategory).
+rm.service.container-type=Voc\u00ea s\u00f3 pode criar uma categoria de documento arquiv\u00edstico no n\u00edvel superior do plano de arquivo ou em outra categoria de documento arquiv\u00edstico (rma:recordsManagementContainer ou subtipo).
+rm.service.container-expected=Voc\u00ea s\u00f3 pode encontrar conte\u00fado de categoria de documento arquiv\u00edstico em uma categoria de documento arquiv\u00edstico (rma:recordCategory ou subtipo).
+rm.service.record-folder-expected=A a\u00e7\u00e3o somente pode ser conclu\u00edda usando uma pasta de documento arquiv\u00edstico do tipo rma:recordFolder.
+rm.service.parent-record-folder-root=N\u00e3o \u00e9 poss\u00edvel criar uma pasta de documento arquiv\u00edstico aqui. Tente cri\u00e1-la em uma categoria de documento arquiv\u00edstico.
+rm.service.parent-record-folder-type=N\u00e3o \u00e9 poss\u00edvel criar uma pasta de documento arquiv\u00edstico aqui. Tente cri\u00e1-la em uma categoria de documento arquiv\u00edstico.
+rm.service.record-folder-type=N\u00e3o podemos criar uma pasta de documento arquiv\u00edstico, a menos que voc\u00ea use o tipo rma:recordFolder ou um subtipo.
+rm.service.not-record=O n\u00f3 {0} n\u00e3o \u00e9 um documento arquiv\u00edstico.
+rm.service.vital-def-missing=O aspecto de defini\u00e7\u00e3o do documento arquiv\u00edstico vital n\u00e3o est\u00e1 presente no n\u00f3. (nodeRef={0})
+rm.service.close-record-folder-not-folder=N\u00e3o foi poss\u00edvel fechar a pasta de documento arquiv\u00edstico porque ela n\u00e3o est\u00e1 definida como uma pasta de documento arquiv\u00edstico.(nodeRef={0})
+rm.service.node-has-aspect=O tipo de documento arquiv\u00edstico {1} j\u00e1 est\u00e1 sendo mostrado para o documento arquiv\u00edstico {0}.
+rm.service.final-version=Final
rm.service.final-version-description=A vers\u00e3o do documento arquiv\u00edstico arquivado final
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_ru.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_ru.properties
index 05b55382f3..f5b889cae4 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_ru.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_ru.properties
@@ -1,21 +1,21 @@
-rm.service.error-add-content-container=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u043c\u043e\u0436\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
-rm.service.update-disposition-action-def=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e: \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0433\u0440\u0430\u0444\u0438\u043a\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u0447\u0435\u0440\u0435\u0437 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043c\u0438\u043d\u0443\u0442.
-rm.service.set-id=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 {0}: \u043e\u043d \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f.
-rm.service.path-node=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043d\u0430\u0439\u0442\u0438 {0}. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u0438\u043b\u0438 \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u0432 IT- \u043e\u0442\u0434\u0435\u043b.
-rm.service.invalid-rm-node=\u0423\u0437\u0435\u043b \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438 \u043d\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u0435\u043d: \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0430\u0441\u043f\u0435\u043a\u0442 {0}.
-rm.service.no-root=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043d\u0430\u0439\u0442\u0438 \u043a\u043e\u0440\u0435\u043d\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c \u0432 \u0444\u0430\u0439\u043b \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e.
-rm.service.dup-root=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0430\u0440\u0445\u0438\u0432: \u0432 \u0434\u0430\u043d\u043d\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438 \u043f\u0430\u043f\u043e\u043a \u0443\u0436\u0435 \u0435\u0441\u0442\u044c \u0430\u0440\u0445\u0438\u0432.
-rm.service.root-type=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0430\u0440\u0445\u0438\u0432: \u0442\u0438\u043f {0} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u043e\u0434\u0442\u0438\u043f\u043e\u043c rma:filePlan. \u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0439 \u0442\u0438\u043f.
-rm.service.container-parent-type=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0430 \u0432\u044b\u0441\u0448\u0435\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u0430\u0440\u0445\u0438\u0432\u0430 \u0438\u043b\u0438 \u0432 \u0434\u0440\u0443\u0433\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 (rma:recordCategory).
-rm.service.container-type=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0430 \u0432\u044b\u0441\u0448\u0435\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u0430\u0440\u0445\u0438\u0432\u0430 \u0438\u043b\u0438 \u0432 \u0434\u0440\u0443\u0433\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 (rma:recordsManagementContainer \u0438\u043b\u0438 \u0435\u0435 \u043f\u043e\u0434\u0442\u0438\u043f).
-rm.service.container-expected=\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0439\u0442\u0438 \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 (rma:recordCategory \u0438\u043b\u0438 \u0435\u0435 \u043f\u043e\u0434\u0442\u0438\u043f).
-rm.service.record-folder-expected=\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043c\u043e\u0436\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0442\u0438\u043f\u0430 rma:recordFolder.
-rm.service.parent-record-folder-root=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0432 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u043c \u043c\u0435\u0441\u0442\u0435. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0435\u0435 \u0432 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
-rm.service.parent-record-folder-type=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0432 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u043c \u043c\u0435\u0441\u0442\u0435. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0435\u0435 \u0432 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
-rm.service.record-folder-type=\u041f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u0440\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0442\u0438\u043f\u0430 rma:recordFolder \u0438\u043b\u0438 \u0435\u0433\u043e \u043f\u043e\u0434\u0442\u0438\u043f\u0430.
-rm.service.not-record=\u041e\u0431\u044a\u0435\u043a\u0442 {0} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c\u044e.
-rm.service.vital-def-missing=\u0414\u043b\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d \u0430\u0441\u043f\u0435\u043a\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438. (nodeRef={0})
-rm.service.close-record-folder-not-folder=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439: \u043f\u0430\u043f\u043a\u0430 \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0430 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439. (nodeRef={0})
-rm.service.node-has-aspect=\u0417\u0430\u043f\u0438\u0441\u044c \u0442\u0438\u043f\u0430 {1} \u0443\u0436\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438 {0}.
-rm.service.final-version=\u041e\u043a\u043e\u043d\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u0430\u044f
+rm.service.error-add-content-container=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u043c\u043e\u0436\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
+rm.service.update-disposition-action-def=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e: \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0433\u0440\u0430\u0444\u0438\u043a\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u0447\u0435\u0440\u0435\u0437 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043c\u0438\u043d\u0443\u0442.
+rm.service.set-id=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 {0}: \u043e\u043d \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f.
+rm.service.path-node=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043d\u0430\u0439\u0442\u0438 {0}. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u0438\u043b\u0438 \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u0432 IT- \u043e\u0442\u0434\u0435\u043b.
+rm.service.invalid-rm-node=\u0423\u0437\u0435\u043b \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438 \u043d\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u0435\u043d: \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0430\u0441\u043f\u0435\u043a\u0442 {0}.
+rm.service.no-root=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043d\u0430\u0439\u0442\u0438 \u043a\u043e\u0440\u0435\u043d\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c \u0432 \u0444\u0430\u0439\u043b \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e.
+rm.service.dup-root=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0430\u0440\u0445\u0438\u0432: \u0432 \u0434\u0430\u043d\u043d\u043e\u0439 \u0438\u0435\u0440\u0430\u0440\u0445\u0438\u0438 \u043f\u0430\u043f\u043e\u043a \u0443\u0436\u0435 \u0435\u0441\u0442\u044c \u0430\u0440\u0445\u0438\u0432.
+rm.service.root-type=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0430\u0440\u0445\u0438\u0432: \u0442\u0438\u043f {0} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u043e\u0434\u0442\u0438\u043f\u043e\u043c rma:filePlan. \u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u043e\u0439 \u0442\u0438\u043f.
+rm.service.container-parent-type=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0430 \u0432\u044b\u0441\u0448\u0435\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u0430\u0440\u0445\u0438\u0432\u0430 \u0438\u043b\u0438 \u0432 \u0434\u0440\u0443\u0433\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 (rma:recordCategory).
+rm.service.container-type=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0430 \u0432\u044b\u0441\u0448\u0435\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u0430\u0440\u0445\u0438\u0432\u0430 \u0438\u043b\u0438 \u0432 \u0434\u0440\u0443\u0433\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 (rma:recordsManagementContainer \u0438\u043b\u0438 \u0435\u0435 \u043f\u043e\u0434\u0442\u0438\u043f).
+rm.service.container-expected=\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0439\u0442\u0438 \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 (rma:recordCategory \u0438\u043b\u0438 \u0435\u0435 \u043f\u043e\u0434\u0442\u0438\u043f).
+rm.service.record-folder-expected=\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043c\u043e\u0436\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0442\u0438\u043f\u0430 rma:recordFolder.
+rm.service.parent-record-folder-root=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0432 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u043c \u043c\u0435\u0441\u0442\u0435. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0435\u0435 \u0432 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
+rm.service.parent-record-folder-type=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0432 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u043c \u043c\u0435\u0441\u0442\u0435. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0435\u0435 \u0432 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
+rm.service.record-folder-type=\u041f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u0440\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0442\u0438\u043f\u0430 rma:recordFolder \u0438\u043b\u0438 \u0435\u0433\u043e \u043f\u043e\u0434\u0442\u0438\u043f\u0430.
+rm.service.not-record=\u041e\u0431\u044a\u0435\u043a\u0442 {0} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c\u044e.
+rm.service.vital-def-missing=\u0414\u043b\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d \u0430\u0441\u043f\u0435\u043a\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438. (nodeRef={0})
+rm.service.close-record-folder-not-folder=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439: \u043f\u0430\u043f\u043a\u0430 \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0430 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439. (nodeRef={0})
+rm.service.node-has-aspect=\u0417\u0430\u043f\u0438\u0441\u044c \u0442\u0438\u043f\u0430 {1} \u0443\u0436\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438 {0}.
+rm.service.final-version=\u041e\u043a\u043e\u043d\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u0430\u044f
rm.service.final-version-description=\u041e\u043a\u043e\u043d\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f \u0430\u0440\u0445\u0438\u0432\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_zh_CN.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_zh_CN.properties
index 8ee0abb6f6..dcd666aa37 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_zh_CN.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-management-service_zh_CN.properties
@@ -1,21 +1,21 @@
-rm.service.error-add-content-container=\u60a8\u667a\u80fd\u5c06\u8bb0\u5f55\u7acb\u5377\u5230\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
-rm.service.update-disposition-action-def=\u60a8\u65e0\u6cd5\u66f4\u65b0\u4fdd\u7559\u64cd\u4f5c\u5b9a\u4e49\uff0c\u56e0\u4e3a\u4fdd\u7559\u8ba1\u5212\u7684\u66f4\u6539\u6b63\u5728\u4fdd\u5b58\u4e2d\u3002 \u8bf7\u5728\u51e0\u5206\u949f\u540e\u91cd\u8bd5\u3002
-rm.service.set-id=\u60a8\u65e0\u6cd5\u66f4\u6539 {0} \u7684 ID\uff0c\u56e0\u4e3a\u5b83\u4e3a\u53ea\u8bfb\u3002
-rm.service.path-node=\u6211\u4eec\u65e0\u6cd5\u67e5\u627e {0}\u3002 \u8bf7\u5c1d\u8bd5\u5237\u65b0\u60a8\u7684\u6d4f\u89c8\u5668\u6216\u8054\u7cfb\u60a8\u7684 IT \u90e8\u95e8\u3002
-rm.service.invalid-rm-node=\u8bb0\u5f55\u7ba1\u7406\u8282\u70b9\u65e0\u6548\uff0c\u56e0\u4e3a\u5207\u9762 {0} \u4e0d\u5b58\u5728\u3002
-rm.service.no-root=\u6211\u4eec\u627e\u4e0d\u5230\u8bb0\u5f55\u7ba1\u7406\u5de5\u5177\u3002 \u8bf7\u91cd\u65b0\u5bf9\u8bb0\u5f55\u7acb\u5377\u3002
-rm.service.dup-root=\u60a8\u65e0\u6cd5\u5728\u6b64\u5904\u521b\u5efa\u5f52\u7c7b\u65b9\u6848\uff0c\u56e0\u4e3a\u6b64\u6587\u4ef6\u5939\u5c42\u6b21\u7ed3\u6784\u4e2d\u5df2\u5b58\u5728\u521b\u5efa\u7684\u5f52\u7c7b\u65b9\u6848\u3002
-rm.service.root-type=\u6211\u4eec\u65e0\u6cd5\u521b\u5efa\u5f52\u7c7b\u65b9\u6848\uff0c\u56e0\u4e3a\u7c7b\u578b {0} \u4e0d\u662f rma:filePlan \u7684\u5b50\u7c7b\u578b\u3002 \u4f7f\u7528\u4e0d\u540c\u7684\u7c7b\u578b\u91cd\u8bd5\u3002
-rm.service.container-parent-type=\u60a8\u53ea\u80fd\u5728\u5f52\u7c7b\u65b9\u6848\u7684\u9876\u5c42\u6216\u5728\u53e6\u4e00\u4e2a\u8bb0\u5f55\u7c7b\u522b\u4e2d\u521b\u5efa\u8bb0\u5f55\u7c7b\u522b (rma:recordCategory)\u3002
-rm.service.container-type=\u60a8\u53ea\u80fd\u5728\u5f52\u7c7b\u65b9\u6848\u7684\u9876\u5c42\u6216\u5728\u53e6\u4e00\u4e2a\u8bb0\u5f55\u7c7b\u522b\u4e2d\u521b\u5efa\u8bb0\u5f55\u7c7b\u522b\uff08rma:recordsManagementContainer \u6216\u5b50\u7c7b\u578b\uff09\u3002
-rm.service.container-expected=\u60a8\u53ea\u80fd\u5728\u8bb0\u5f55\u7c7b\u522b\u4e2d\u67e5\u627e\u8bb0\u5f55\u7c7b\u522b\u5185\u5bb9\uff08rma:recordCategory \u6216\u5b50\u7c7b\u578b\uff09\u3002
-rm.service.record-folder-expected=\u8be5\u64cd\u4f5c\u53ea\u80fd\u4f7f\u7528 rma:recordFolder \u7c7b\u578b\u7684\u8bb0\u5f55\u6587\u4ef6\u5939\u5b8c\u6210\u3002
-rm.service.parent-record-folder-root=\u60a8\u65e0\u6cd5\u5728\u6b64\u5904\u521b\u5efa\u8bb0\u5f55\u6587\u4ef6\u5939\u3002 \u8bf7\u5c1d\u8bd5\u5728\u8bb0\u5f55\u7c7b\u522b\u4e2d\u521b\u5efa\u3002
-rm.service.parent-record-folder-type=\u60a8\u65e0\u6cd5\u5728\u6b64\u5904\u521b\u5efa\u8bb0\u5f55\u6587\u4ef6\u5939\u3002 \u8bf7\u5c1d\u8bd5\u5728\u8bb0\u5f55\u7c7b\u522b\u4e2d\u521b\u5efa\u3002
-rm.service.record-folder-type=\u6211\u4eec\u65e0\u6cd5\u521b\u5efa\u8bb0\u5f55\u6587\u4ef6\u5939\uff0c\u9664\u975e\u60a8\u4f7f\u7528\u7c7b\u578b rma:recordFolder \u6216\u5b50\u7c7b\u578b\u3002
-rm.service.not-record=\u8282\u70b9 {0} \u5e76\u975e\u8bb0\u5f55\u3002
-rm.service.vital-def-missing=\u8282\u70b9\u4e0a\u4e0d\u5b58\u5728\u6838\u5fc3\u8bb0\u5f55\u5b9a\u4e49\u5207\u9762\u3002 (nodeRef={0})
-rm.service.close-record-folder-not-folder=\u65e0\u6cd5\u5173\u95ed\u8bb0\u5f55\u6587\u4ef6\u5939\uff0c\u56e0\u4e3a\u5e76\u672a\u5c06\u5176\u5b9a\u4e49\u4e3a\u8bb0\u5f55\u6587\u4ef6\u5939\u3002(nodeRef={0})
-rm.service.node-has-aspect=\u8bb0\u5f55\u7c7b\u578b {1} \u5df2\u4e3a\u8bb0\u5f55 {0} \u663e\u793a\u3002
-rm.service.final-version=\u6700\u7ec8
+rm.service.error-add-content-container=\u60a8\u667a\u80fd\u5c06\u8bb0\u5f55\u7acb\u5377\u5230\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
+rm.service.update-disposition-action-def=\u60a8\u65e0\u6cd5\u66f4\u65b0\u4fdd\u7559\u64cd\u4f5c\u5b9a\u4e49\uff0c\u56e0\u4e3a\u4fdd\u7559\u8ba1\u5212\u7684\u66f4\u6539\u6b63\u5728\u4fdd\u5b58\u4e2d\u3002 \u8bf7\u5728\u51e0\u5206\u949f\u540e\u91cd\u8bd5\u3002
+rm.service.set-id=\u60a8\u65e0\u6cd5\u66f4\u6539 {0} \u7684 ID\uff0c\u56e0\u4e3a\u5b83\u4e3a\u53ea\u8bfb\u3002
+rm.service.path-node=\u6211\u4eec\u65e0\u6cd5\u67e5\u627e {0}\u3002 \u8bf7\u5c1d\u8bd5\u5237\u65b0\u60a8\u7684\u6d4f\u89c8\u5668\u6216\u8054\u7cfb\u60a8\u7684 IT \u90e8\u95e8\u3002
+rm.service.invalid-rm-node=\u8bb0\u5f55\u7ba1\u7406\u8282\u70b9\u65e0\u6548\uff0c\u56e0\u4e3a\u5207\u9762 {0} \u4e0d\u5b58\u5728\u3002
+rm.service.no-root=\u6211\u4eec\u627e\u4e0d\u5230\u8bb0\u5f55\u7ba1\u7406\u5de5\u5177\u3002 \u8bf7\u91cd\u65b0\u5bf9\u8bb0\u5f55\u7acb\u5377\u3002
+rm.service.dup-root=\u60a8\u65e0\u6cd5\u5728\u6b64\u5904\u521b\u5efa\u5f52\u7c7b\u65b9\u6848\uff0c\u56e0\u4e3a\u6b64\u6587\u4ef6\u5939\u5c42\u6b21\u7ed3\u6784\u4e2d\u5df2\u5b58\u5728\u521b\u5efa\u7684\u5f52\u7c7b\u65b9\u6848\u3002
+rm.service.root-type=\u6211\u4eec\u65e0\u6cd5\u521b\u5efa\u5f52\u7c7b\u65b9\u6848\uff0c\u56e0\u4e3a\u7c7b\u578b {0} \u4e0d\u662f rma:filePlan \u7684\u5b50\u7c7b\u578b\u3002 \u4f7f\u7528\u4e0d\u540c\u7684\u7c7b\u578b\u91cd\u8bd5\u3002
+rm.service.container-parent-type=\u60a8\u53ea\u80fd\u5728\u5f52\u7c7b\u65b9\u6848\u7684\u9876\u5c42\u6216\u5728\u53e6\u4e00\u4e2a\u8bb0\u5f55\u7c7b\u522b\u4e2d\u521b\u5efa\u8bb0\u5f55\u7c7b\u522b (rma:recordCategory)\u3002
+rm.service.container-type=\u60a8\u53ea\u80fd\u5728\u5f52\u7c7b\u65b9\u6848\u7684\u9876\u5c42\u6216\u5728\u53e6\u4e00\u4e2a\u8bb0\u5f55\u7c7b\u522b\u4e2d\u521b\u5efa\u8bb0\u5f55\u7c7b\u522b\uff08rma:recordsManagementContainer \u6216\u5b50\u7c7b\u578b\uff09\u3002
+rm.service.container-expected=\u60a8\u53ea\u80fd\u5728\u8bb0\u5f55\u7c7b\u522b\u4e2d\u67e5\u627e\u8bb0\u5f55\u7c7b\u522b\u5185\u5bb9\uff08rma:recordCategory \u6216\u5b50\u7c7b\u578b\uff09\u3002
+rm.service.record-folder-expected=\u8be5\u64cd\u4f5c\u53ea\u80fd\u4f7f\u7528 rma:recordFolder \u7c7b\u578b\u7684\u8bb0\u5f55\u6587\u4ef6\u5939\u5b8c\u6210\u3002
+rm.service.parent-record-folder-root=\u60a8\u65e0\u6cd5\u5728\u6b64\u5904\u521b\u5efa\u8bb0\u5f55\u6587\u4ef6\u5939\u3002 \u8bf7\u5c1d\u8bd5\u5728\u8bb0\u5f55\u7c7b\u522b\u4e2d\u521b\u5efa\u3002
+rm.service.parent-record-folder-type=\u60a8\u65e0\u6cd5\u5728\u6b64\u5904\u521b\u5efa\u8bb0\u5f55\u6587\u4ef6\u5939\u3002 \u8bf7\u5c1d\u8bd5\u5728\u8bb0\u5f55\u7c7b\u522b\u4e2d\u521b\u5efa\u3002
+rm.service.record-folder-type=\u6211\u4eec\u65e0\u6cd5\u521b\u5efa\u8bb0\u5f55\u6587\u4ef6\u5939\uff0c\u9664\u975e\u60a8\u4f7f\u7528\u7c7b\u578b rma:recordFolder \u6216\u5b50\u7c7b\u578b\u3002
+rm.service.not-record=\u8282\u70b9 {0} \u5e76\u975e\u8bb0\u5f55\u3002
+rm.service.vital-def-missing=\u8282\u70b9\u4e0a\u4e0d\u5b58\u5728\u6838\u5fc3\u8bb0\u5f55\u5b9a\u4e49\u5207\u9762\u3002 (nodeRef={0})
+rm.service.close-record-folder-not-folder=\u65e0\u6cd5\u5173\u95ed\u8bb0\u5f55\u6587\u4ef6\u5939\uff0c\u56e0\u4e3a\u5e76\u672a\u5c06\u5176\u5b9a\u4e49\u4e3a\u8bb0\u5f55\u6587\u4ef6\u5939\u3002(nodeRef={0})
+rm.service.node-has-aspect=\u8bb0\u5f55\u7c7b\u578b {1} \u5df2\u4e3a\u8bb0\u5f55 {0} \u663e\u793a\u3002
+rm.service.final-version=\u6700\u7ec8
rm.service.final-version-description=\u6700\u7ec8\u5b58\u6863\u7684\u8bb0\u5f55\u7248\u672c
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model.properties
index 1260a8cb1a..ab689a6057 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model.properties
@@ -1,265 +1,265 @@
-rma_recordsmanagement.description=Records Management Content Model
-
-rma_recordsmanagement.type.rma_rmsite.title=Records Management Site
-rma_recordsmanagement.type.rma_rmsite.description=Specialized Site for Records Management
-
-rma_recordsmanagement.type.rma_caveatConfig.title=Security Controls Configuration
-rma_recordsmanagement.type.rma_caveatConfig.decription=Security Controls Configuration
-
-rma_recordsmanagement.type.rma_emailConfig.title=Email Configuration
-rma_recordsmanagement.type.rma_emailConfig.decription=Email Configuration
-
-rma_recordsmanagement.type.rma_recordsManagementContainer.title=Records Management Container
-rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Records Management Container
-
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Records Management Root Container
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Records Management Root Container
-
-rma_recordsmanagement.type.rma_dispositionSchedule.title=Retention Schedule
-rma_recordsmanagement.type.rma_dispositionSchedule.decription=Retention Schedule
-
-rma_recordsmanagement.property.rma_dispositionAuthority.title=Retention Authority
-rma_recordsmanagement.property.rma_dispositionAuthority.decription=Retention Authority
-
-rma_recordsmanagement.property.rma_dispositionInstructions.title=Retention Instructions
-rma_recordsmanagement.property.rma_dispositionInstructions.decription=Retention Instructions
-
-rma_recordsmanagement.property.rma_recordLevelDisposition.title=Record Level Retention
-rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Record Level Retention
-
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Retention Actions
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Retention Actions
-
-rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Retention Action Definition
-rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Retention Action Definition
-rma_recordsmanagement.property.rma_dispositionActionName.title=Retention Action Name
-rma_recordsmanagement.property.rma_dispositionActionName.decription=Retention Action Name
-rma_recordsmanagement.property.rma_dispositionDescription.title=Retention Description
-rma_recordsmanagement.property.rma_dispositionDescription.decription=Retention Description
-rma_recordsmanagement.property.rma_dispositionLocation.title=Retention Location
-rma_recordsmanagement.property.rma_dispositionLocation.decription=Retention Location
-rma_recordsmanagement.property.rma_dispositionPeriod.title=Retention Period
-rma_recordsmanagement.property.rma_dispositionPeriod.decription=Retention Period
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Retention Period Property
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Retention Period Property
-rma_recordsmanagement.property.rma_dispositionEvent.title=Retention Event
-rma_recordsmanagement.property.rma_dispositionEvent.decription=Retention Event
-rma_recordsmanagement.property.rma_dispositionEventCombination.title=Retention Event Combination
-rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Retention Event Combination
-
-rma_recordsmanagement.type.rma_recordFolder.title=Record Folder
-rma_recordsmanagement.type.rma_recordFolder.decription=Record Folder
-rma_recordsmanagement.property.rma_isClosed.title=Record
-rma_recordsmanagement.property.rma_isClosed.decription=Record
-
-rma_recordsmanagement.type.rma_recordCategory.title=Record Category
-rma_recordsmanagement.type.rma_recordCategory.decription=Record Category
-
-rma_recordsmanagement.type.rma_nonElectronicDocument.title=Non-Electronic Document
-rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Non-Electronic Document
-rma_recordsmanagement.property.rma_physicalSize.title=Physical Size
-rma_recordsmanagement.property.rma_physicalSize.decription=The size of the document measured in linear meters.
-rma_recordsmanagement.property.rma_numberOfCopies.title=Number of Copies
-rma_recordsmanagement.property.rma_numberOfCopies.description=The number of copies of the document.
-rma_recordsmanagement.property.rma_storageLocation.title=Storage Location
-rma_recordsmanagement.property.rma_storageLocation.decription=The physical storage location of the record.
-rma_recordsmanagement.property.rma_shelf.title=Shelf
-rma_recordsmanagement.property.rma_shelf.decription=The shelf the record is stored on.
-rma_recordsmanagement.property.rma_box.title=Box
-rma_recordsmanagement.property.rma_box.description=The box the record is stored in.
-rma_recordsmanagement.property.rma_file.title=File
-rma_recordsmanagement.property.rma_file.decription=The file the record is stored in.
-
-rma_recordsmanagement.type.rma_dispositionAction.title=Retention Action
-rma_recordsmanagement.type.rma_dispositionAction.decription=Retention Action
-rma_recordsmanagement.property.rma_dispositionActionId.title=Retention Action ID
-rma_recordsmanagement.property.rma_dispositionActionId.decription=Retention Action ID
-rma_recordsmanagement.property.rma_dispositionAction.title=Retention Action
-rma_recordsmanagement.property.rma_dispositionAction.decription=Retention Action
-rma_recordsmanagement.property.rma_dispositionAsOf.title=Retention Action
-rma_recordsmanagement.property.rma_dispositionAsOf.decription=Retention Action
-rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Retention Events Eligible
-rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Retention Events Eligible
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Retention Action Started At
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Retention Action Started At
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Retention Action Started By
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Retention Action Started By
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Retention Action Completed At
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Retention Action Completed At
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Retention Action Completed By
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Retention Action Completed By
-rma_recordsmanagement.association.rma_eventExecutions.title=Event executions
-rma_recordsmanagement.association.rma_eventExecutions.decription=Event executions
-
-rma_recordsmanagement.type.rma_eventExecution.title=Event Execution
-rma_recordsmanagement.type.rma_eventExecution.decription=Event Execution
-rma_recordsmanagement.property.rma_eventExecutionName.title=Event Name
-rma_recordsmanagement.property.rma_eventExecutionName.decription=Event Name
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Event automatic
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Event automatic
-rma_recordsmanagement.property.rma_eventExecutionComplete.title=Event complete
-rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Event complete
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Event completed by
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Event completed by
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Event completed at
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Event completed at
-
-rma_recordsmanagement.type.rma_hold.title=Hold
-rma_recordsmanagement.type.rma_hold.decription=Hold
-rma_recordsmanagement.property.rma_holdReason.title=Hold Reason
-rma_recordsmanagement.property.rma_holdReason.decription=Hold Reason
-rma_recordsmanagement.association.rma_frozenRecords.title=Held Records
-rma_recordsmanagement.association.rma_frozenRecords.decription=Held Records
-
-rma_recordsmanagement.type.rma_transfer.title=Transfer
-rma_recordsmanagement.type.rma_transfer.decription=Transfer
-rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Transfer Accession Indicator
-rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Transfer Accession Indicator
-rma_recordsmanagement.property.rma_transferPDFIndicator.title=Transfer PDF Indicator
-rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Transfer PDF Indicator
-rma_recordsmanagement.property.rma_transferLocation.title=Transfer PDF
-rma_recordsmanagement.property.rma_transferLocation.decription=Transfer PDF
-rma_recordsmanagement.association.rma_transferred.title=Transferred
-rma_recordsmanagement.association.rma_transferred.decription=Transferred
-
-rma_recordsmanagement.aspect.rma_filePlanComponent.title=File Plan Component
-rma_recordsmanagement.aspect.rma_filePlanComponent.decription=File Plan Component
-rma_recordsmanagement.property.rma_rootNodeRef.title=Root node
-rma_recordsmanagement.property.rma_rootNodeRef.decription=Root node
-
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Records Management Root
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Records Management Root
-rma_recordsmanagement.association.rma_holds.title=Holds
-rma_recordsmanagement.association.rma_holds.decription=Holds
-rma_recordsmanagement.association.rma_transfers.title=Transfers
-rma_recordsmanagement.association.rma_transfers.decription=Transfers
-
-rma_recordsmanagement.aspect.rma_declaredRecord.title=Completed Record
-rma_recordsmanagement.aspect.rma_declaredRecord.decription=Completed Record
-rma_recordsmanagement.property.rma_declaredAt.title=Date Completed
-rma_recordsmanagement.property.rma_declaredAt.decription=Date Completed
-rma_recordsmanagement.property.rma_declaredBy.title=Completed By
-rma_recordsmanagement.property.rma_declaredBy.decription=Completed By
-
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Record component identifier
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Record component identifier
-rma_recordsmanagement.property.rma_identifier.title=Record ID
-rma_recordsmanagement.property.rma_identifier.decription=Unique record identifier
-rma_recordsmanagement.property.rma_dbUniquenessId.title=Database uniqueness
-rma_recordsmanagement.property.rma_dbUniquenessId.decription=Database uniqueness
-
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Vital Record Definition
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Vital Record Definition
-
-rma_recordsmanagement.property.rma_reviewPeriod.title=Review Period
-rma_recordsmanagement.property.rma_reviewPeriod.decription=Review Period
-rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Vital Record Indicator
-rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Vital Record Indicator
-
-rma_recordsmanagement.aspect.rma_record.title=Record
-rma_recordsmanagement.aspect.rma_record.decription=Record
-rma_recordsmanagement.property.rma_dateFiled.title=Date Filed
-rma_recordsmanagement.property.rma_dateFiled.decription=Date Filed
-rma_recordsmanagement.property.rma_origionalName=Original Name
-
-rma_recordsmanagement.aspect.rma_recordMetaData.title=Record Metadata
-rma_recordsmanagement.aspect.rma_recordMetaData.description=Marker aspect for record metadata
-
-rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Common Records Details
-rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Metadata common to all record types
-rma_recordsmanagement.property.rma_location.title=Location
-rma_recordsmanagement.property.rma_location.decription=Location
-
-rma_recordsmanagement.aspect.rma_vitalRecord.title=Vital Record
-rma_recordsmanagement.aspect.rma_vitalRecord.decription=Vital Record
-rma_recordsmanagement.property.rma_reviewAsOf.title=Next Review
-rma_recordsmanagement.property.rma_reviewAsOf.decription=Next Review
-rma_recordsmanagement.property.rma_notificationIssued.title=Indicates that a due for review notification has been issued for this record
-rma_recordsmanagement.property.rma_notificationIssued.decription=Indicates that a due for review notification has been issued for this record
-
-rma_recordsmanagement.aspect.rma_scheduled.title=Scheduled
-rma_recordsmanagement.aspect.rma_scheduled.decription=Scheduled
-rma_recordsmanagement.association.rma_dispositionSchedule.title=Retention Schedule
-rma_recordsmanagement.association.rma_dispositionSchedule.decription=Retention Schedule
-
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Retention Lifecycle
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Retention Lifecycle
-rma_recordsmanagement.association.rma_nextDispositionAction.title=Next retention action
-rma_recordsmanagement.association.rma_nextDispositionAction.decription=Next retention action
-rma_recordsmanagement.association.rma_dispositionActionHistory.title=Retention Action History
-rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Retention Action History
-
-rma_recordsmanagement.aspect.rma_cutOff.title=Cut Off
-rma_recordsmanagement.aspect.rma_cutOff.decription=Cut Off
-rma_recordsmanagement.property.rma_cutOffDate.title=Cut Off Date
-rma_recordsmanagement.property.rma_cutOffDate.decription=Cut Off Date
-
-rma_recordsmanagement.aspect.rma_transferred.title=Transferred
-rma_recordsmanagement.aspect.rma_transferred.decription=Transferred
-
-rma_recordsmanagement.aspect.rma_ascended.title=Ascended
-rma_recordsmanagement.aspect.rma_ascended.decription=Ascended
-
-rma_recordsmanagement.aspect.rma_frozen.title=On Hold
-rma_recordsmanagement.aspect.rma_frozen.decription=On Hold
-rma_recordsmanagement.property.rma_frozenAt.title=Held At
-rma_recordsmanagement.property.rma_frozenAt.decription=Held At
-rma_recordsmanagement.property.rma_frozenBy.title=Held By
-rma_recordsmanagement.property.rma_frozenBy.decription=Held By
-
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Caveat Configuration Root
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Caveat Configuration Root
-rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Caveat Configuration
-rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Caveat Configuration
-
-rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Email Configuration Root
-rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Email Configuration Root
-rma_recordsmanagement.association.rma_emailConfigAssoc.title=Email Configuration
-rma_recordsmanagement.association.rma_emailConfigAssoc.description=Email Configuration
-
-rma_recordsmanagement.aspect.rma_recordSearch.title=Record Search
-rma_recordsmanagement.aspect.rma_recordSearch.decription=Information to support Records Management search
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Has Retention Schedule
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Indicates whether the item has an associated retention schedule
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Retention Action Name
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=The name of the next retention action
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Retention Action of
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=The date at which the next retention action becomes eligible
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Retention Period
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Retention Period
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Retention Period Expression
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Retention Period Expression
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Retention Events Eligible
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Retention Events Eligible
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Retention Events
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Retention Events
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Retention Authority
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Retention Authority
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Retention Instructions
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Retention Instructions
-rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Hold Reason
-rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Hold Reason
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=Vital Record Review Period
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=Vital Record Review Period
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Review Period Expression
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Review Period Expression
-
-rma_recordsmanagement.aspect.rma_versionedRecord.title=Versioned Record
-rma_recordsmanagement.aspect.rma_versionedRecord.decription=Versioned Record
-
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Unpublished Update
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Unpublished Update
-rma_recordsmanagement.property.rma_unpublishedUpdate.title=Unpublished Update
-rma_recordsmanagement.property.rma_unpublishedUpdate.description=Indicates whether there is an unpublished update
-rma_recordsmanagement.property.rma_updateTo.title=Update To
-rma_recordsmanagement.property.rma_updateTo.description=Destination of the update
-rma_recordsmanagement.property.rma_updatedProperties.title=Updated Properties
-rma_recordsmanagement.property.rma_updatedProperties.description=The updated properties
-rma_recordsmanagement.property.rma_publishInProgress.title=Publish In Progress
-rma_recordsmanagement.property.rma_publishInProgress.description=Indicates whether a publish is currently in progress
-
-rma_recordsmanagement.aspect.dod_ghosted.title=Metadata Only Record
-rma_recordsmanagement.aspect.dod_ghosted.description=Metadata only record
-
-listconstraint.rmc_tlList.title=Transfer Locations
+rma_recordsmanagement.description=Records Management Content Model
+
+rma_recordsmanagement.type.rma_rmsite.title=Records Management Site
+rma_recordsmanagement.type.rma_rmsite.description=Specialized Site for Records Management
+
+rma_recordsmanagement.type.rma_caveatConfig.title=Security Controls Configuration
+rma_recordsmanagement.type.rma_caveatConfig.decription=Security Controls Configuration
+
+rma_recordsmanagement.type.rma_emailConfig.title=Email Configuration
+rma_recordsmanagement.type.rma_emailConfig.decription=Email Configuration
+
+rma_recordsmanagement.type.rma_recordsManagementContainer.title=Records Management Container
+rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Records Management Container
+
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Records Management Root Container
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Records Management Root Container
+
+rma_recordsmanagement.type.rma_dispositionSchedule.title=Retention Schedule
+rma_recordsmanagement.type.rma_dispositionSchedule.decription=Retention Schedule
+
+rma_recordsmanagement.property.rma_dispositionAuthority.title=Retention Authority
+rma_recordsmanagement.property.rma_dispositionAuthority.decription=Retention Authority
+
+rma_recordsmanagement.property.rma_dispositionInstructions.title=Retention Instructions
+rma_recordsmanagement.property.rma_dispositionInstructions.decription=Retention Instructions
+
+rma_recordsmanagement.property.rma_recordLevelDisposition.title=Record Level Retention
+rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Record Level Retention
+
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Retention Actions
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Retention Actions
+
+rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Retention Action Definition
+rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Retention Action Definition
+rma_recordsmanagement.property.rma_dispositionActionName.title=Retention Action Name
+rma_recordsmanagement.property.rma_dispositionActionName.decription=Retention Action Name
+rma_recordsmanagement.property.rma_dispositionDescription.title=Retention Description
+rma_recordsmanagement.property.rma_dispositionDescription.decription=Retention Description
+rma_recordsmanagement.property.rma_dispositionLocation.title=Retention Location
+rma_recordsmanagement.property.rma_dispositionLocation.decription=Retention Location
+rma_recordsmanagement.property.rma_dispositionPeriod.title=Retention Period
+rma_recordsmanagement.property.rma_dispositionPeriod.decription=Retention Period
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Retention Period Property
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Retention Period Property
+rma_recordsmanagement.property.rma_dispositionEvent.title=Retention Event
+rma_recordsmanagement.property.rma_dispositionEvent.decription=Retention Event
+rma_recordsmanagement.property.rma_dispositionEventCombination.title=Retention Event Combination
+rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Retention Event Combination
+
+rma_recordsmanagement.type.rma_recordFolder.title=Record Folder
+rma_recordsmanagement.type.rma_recordFolder.decription=Record Folder
+rma_recordsmanagement.property.rma_isClosed.title=Record
+rma_recordsmanagement.property.rma_isClosed.decription=Record
+
+rma_recordsmanagement.type.rma_recordCategory.title=Record Category
+rma_recordsmanagement.type.rma_recordCategory.decription=Record Category
+
+rma_recordsmanagement.type.rma_nonElectronicDocument.title=Non-Electronic Document
+rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Non-Electronic Document
+rma_recordsmanagement.property.rma_physicalSize.title=Physical Size
+rma_recordsmanagement.property.rma_physicalSize.decription=The size of the document measured in linear meters.
+rma_recordsmanagement.property.rma_numberOfCopies.title=Number of Copies
+rma_recordsmanagement.property.rma_numberOfCopies.description=The number of copies of the document.
+rma_recordsmanagement.property.rma_storageLocation.title=Storage Location
+rma_recordsmanagement.property.rma_storageLocation.decription=The physical storage location of the record.
+rma_recordsmanagement.property.rma_shelf.title=Shelf
+rma_recordsmanagement.property.rma_shelf.decription=The shelf the record is stored on.
+rma_recordsmanagement.property.rma_box.title=Box
+rma_recordsmanagement.property.rma_box.description=The box the record is stored in.
+rma_recordsmanagement.property.rma_file.title=File
+rma_recordsmanagement.property.rma_file.decription=The file the record is stored in.
+
+rma_recordsmanagement.type.rma_dispositionAction.title=Retention Action
+rma_recordsmanagement.type.rma_dispositionAction.decription=Retention Action
+rma_recordsmanagement.property.rma_dispositionActionId.title=Retention Action ID
+rma_recordsmanagement.property.rma_dispositionActionId.decription=Retention Action ID
+rma_recordsmanagement.property.rma_dispositionAction.title=Retention Action
+rma_recordsmanagement.property.rma_dispositionAction.decription=Retention Action
+rma_recordsmanagement.property.rma_dispositionAsOf.title=Retention Action
+rma_recordsmanagement.property.rma_dispositionAsOf.decription=Retention Action
+rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Retention Events Eligible
+rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Retention Events Eligible
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Retention Action Started At
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Retention Action Started At
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Retention Action Started By
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Retention Action Started By
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Retention Action Completed At
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Retention Action Completed At
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Retention Action Completed By
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Retention Action Completed By
+rma_recordsmanagement.association.rma_eventExecutions.title=Event executions
+rma_recordsmanagement.association.rma_eventExecutions.decription=Event executions
+
+rma_recordsmanagement.type.rma_eventExecution.title=Event Execution
+rma_recordsmanagement.type.rma_eventExecution.decription=Event Execution
+rma_recordsmanagement.property.rma_eventExecutionName.title=Event Name
+rma_recordsmanagement.property.rma_eventExecutionName.decription=Event Name
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Event automatic
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Event automatic
+rma_recordsmanagement.property.rma_eventExecutionComplete.title=Event complete
+rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Event complete
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Event completed by
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Event completed by
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Event completed at
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Event completed at
+
+rma_recordsmanagement.type.rma_hold.title=Hold
+rma_recordsmanagement.type.rma_hold.decription=Hold
+rma_recordsmanagement.property.rma_holdReason.title=Hold Reason
+rma_recordsmanagement.property.rma_holdReason.decription=Hold Reason
+rma_recordsmanagement.association.rma_frozenRecords.title=Held Records
+rma_recordsmanagement.association.rma_frozenRecords.decription=Held Records
+
+rma_recordsmanagement.type.rma_transfer.title=Transfer
+rma_recordsmanagement.type.rma_transfer.decription=Transfer
+rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Transfer Accession Indicator
+rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Transfer Accession Indicator
+rma_recordsmanagement.property.rma_transferPDFIndicator.title=Transfer PDF Indicator
+rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Transfer PDF Indicator
+rma_recordsmanagement.property.rma_transferLocation.title=Transfer PDF
+rma_recordsmanagement.property.rma_transferLocation.decription=Transfer PDF
+rma_recordsmanagement.association.rma_transferred.title=Transferred
+rma_recordsmanagement.association.rma_transferred.decription=Transferred
+
+rma_recordsmanagement.aspect.rma_filePlanComponent.title=File Plan Component
+rma_recordsmanagement.aspect.rma_filePlanComponent.decription=File Plan Component
+rma_recordsmanagement.property.rma_rootNodeRef.title=Root node
+rma_recordsmanagement.property.rma_rootNodeRef.decription=Root node
+
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Records Management Root
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Records Management Root
+rma_recordsmanagement.association.rma_holds.title=Holds
+rma_recordsmanagement.association.rma_holds.decription=Holds
+rma_recordsmanagement.association.rma_transfers.title=Transfers
+rma_recordsmanagement.association.rma_transfers.decription=Transfers
+
+rma_recordsmanagement.aspect.rma_declaredRecord.title=Completed Record
+rma_recordsmanagement.aspect.rma_declaredRecord.decription=Completed Record
+rma_recordsmanagement.property.rma_declaredAt.title=Date Completed
+rma_recordsmanagement.property.rma_declaredAt.decription=Date Completed
+rma_recordsmanagement.property.rma_declaredBy.title=Completed By
+rma_recordsmanagement.property.rma_declaredBy.decription=Completed By
+
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Record component identifier
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Record component identifier
+rma_recordsmanagement.property.rma_identifier.title=Record ID
+rma_recordsmanagement.property.rma_identifier.decription=Unique record identifier
+rma_recordsmanagement.property.rma_dbUniquenessId.title=Database uniqueness
+rma_recordsmanagement.property.rma_dbUniquenessId.decription=Database uniqueness
+
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Vital Record Definition
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Vital Record Definition
+
+rma_recordsmanagement.property.rma_reviewPeriod.title=Review Period
+rma_recordsmanagement.property.rma_reviewPeriod.decription=Review Period
+rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Vital Record Indicator
+rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Vital Record Indicator
+
+rma_recordsmanagement.aspect.rma_record.title=Record
+rma_recordsmanagement.aspect.rma_record.decription=Record
+rma_recordsmanagement.property.rma_dateFiled.title=Date Filed
+rma_recordsmanagement.property.rma_dateFiled.decription=Date Filed
+rma_recordsmanagement.property.rma_origionalName=Original Name
+
+rma_recordsmanagement.aspect.rma_recordMetaData.title=Record Metadata
+rma_recordsmanagement.aspect.rma_recordMetaData.description=Marker aspect for record metadata
+
+rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Common Records Details
+rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Metadata common to all record types
+rma_recordsmanagement.property.rma_location.title=Location
+rma_recordsmanagement.property.rma_location.decription=Location
+
+rma_recordsmanagement.aspect.rma_vitalRecord.title=Vital Record
+rma_recordsmanagement.aspect.rma_vitalRecord.decription=Vital Record
+rma_recordsmanagement.property.rma_reviewAsOf.title=Next Review
+rma_recordsmanagement.property.rma_reviewAsOf.decription=Next Review
+rma_recordsmanagement.property.rma_notificationIssued.title=Indicates that a due for review notification has been issued for this record
+rma_recordsmanagement.property.rma_notificationIssued.decription=Indicates that a due for review notification has been issued for this record
+
+rma_recordsmanagement.aspect.rma_scheduled.title=Scheduled
+rma_recordsmanagement.aspect.rma_scheduled.decription=Scheduled
+rma_recordsmanagement.association.rma_dispositionSchedule.title=Retention Schedule
+rma_recordsmanagement.association.rma_dispositionSchedule.decription=Retention Schedule
+
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Retention Lifecycle
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Retention Lifecycle
+rma_recordsmanagement.association.rma_nextDispositionAction.title=Next retention action
+rma_recordsmanagement.association.rma_nextDispositionAction.decription=Next retention action
+rma_recordsmanagement.association.rma_dispositionActionHistory.title=Retention Action History
+rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Retention Action History
+
+rma_recordsmanagement.aspect.rma_cutOff.title=Cut Off
+rma_recordsmanagement.aspect.rma_cutOff.decription=Cut Off
+rma_recordsmanagement.property.rma_cutOffDate.title=Cut Off Date
+rma_recordsmanagement.property.rma_cutOffDate.decription=Cut Off Date
+
+rma_recordsmanagement.aspect.rma_transferred.title=Transferred
+rma_recordsmanagement.aspect.rma_transferred.decription=Transferred
+
+rma_recordsmanagement.aspect.rma_ascended.title=Ascended
+rma_recordsmanagement.aspect.rma_ascended.decription=Ascended
+
+rma_recordsmanagement.aspect.rma_frozen.title=On Hold
+rma_recordsmanagement.aspect.rma_frozen.decription=On Hold
+rma_recordsmanagement.property.rma_frozenAt.title=Held At
+rma_recordsmanagement.property.rma_frozenAt.decription=Held At
+rma_recordsmanagement.property.rma_frozenBy.title=Held By
+rma_recordsmanagement.property.rma_frozenBy.decription=Held By
+
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Caveat Configuration Root
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Caveat Configuration Root
+rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Caveat Configuration
+rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Caveat Configuration
+
+rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Email Configuration Root
+rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Email Configuration Root
+rma_recordsmanagement.association.rma_emailConfigAssoc.title=Email Configuration
+rma_recordsmanagement.association.rma_emailConfigAssoc.description=Email Configuration
+
+rma_recordsmanagement.aspect.rma_recordSearch.title=Record Search
+rma_recordsmanagement.aspect.rma_recordSearch.decription=Information to support Records Management search
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Has Retention Schedule
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Indicates whether the item has an associated retention schedule
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Retention Action Name
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=The name of the next retention action
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Retention Action of
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=The date at which the next retention action becomes eligible
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Retention Period
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Retention Period
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Retention Period Expression
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Retention Period Expression
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Retention Events Eligible
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Retention Events Eligible
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Retention Events
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Retention Events
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Retention Authority
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Retention Authority
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Retention Instructions
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Retention Instructions
+rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Hold Reason
+rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Hold Reason
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=Vital Record Review Period
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=Vital Record Review Period
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Review Period Expression
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Review Period Expression
+
+rma_recordsmanagement.aspect.rma_versionedRecord.title=Versioned Record
+rma_recordsmanagement.aspect.rma_versionedRecord.decription=Versioned Record
+
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Unpublished Update
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Unpublished Update
+rma_recordsmanagement.property.rma_unpublishedUpdate.title=Unpublished Update
+rma_recordsmanagement.property.rma_unpublishedUpdate.description=Indicates whether there is an unpublished update
+rma_recordsmanagement.property.rma_updateTo.title=Update To
+rma_recordsmanagement.property.rma_updateTo.description=Destination of the update
+rma_recordsmanagement.property.rma_updatedProperties.title=Updated Properties
+rma_recordsmanagement.property.rma_updatedProperties.description=The updated properties
+rma_recordsmanagement.property.rma_publishInProgress.title=Publish In Progress
+rma_recordsmanagement.property.rma_publishInProgress.description=Indicates whether a publish is currently in progress
+
+rma_recordsmanagement.aspect.dod_ghosted.title=Metadata Only Record
+rma_recordsmanagement.aspect.dod_ghosted.description=Metadata only record
+
+listconstraint.rmc_tlList.title=Transfer Locations
listconstraint.rmc_smList.title=Supplemental Markings
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_de.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_de.properties
index 20bc2ef65e..39715d9d45 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_de.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_de.properties
@@ -1,265 +1,265 @@
-rma_recordsmanagement.description=Content Model f\u00fcr Records Management
-
-rma_recordsmanagement.type.rma_rmsite.title=Records Management Site
-rma_recordsmanagement.type.rma_rmsite.description=Spezielle Site f\u00fcr Records Management
-
-rma_recordsmanagement.type.rma_caveatConfig.title=Sicherheitskontrollen-Konfiguration
-rma_recordsmanagement.type.rma_caveatConfig.decription=Sicherheitskontrollen-Konfiguration
-
-rma_recordsmanagement.type.rma_emailConfig.title=E-Mail-Konfiguration
-rma_recordsmanagement.type.rma_emailConfig.decription=E-Mail-Konfiguration
-
-rma_recordsmanagement.type.rma_recordsManagementContainer.title=Records Management Container
-rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Records Management Container
-
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Records Management Root-Container
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Records Management Root-Container
-
-rma_recordsmanagement.type.rma_dispositionSchedule.title=Aufbewahrungsplan
-rma_recordsmanagement.type.rma_dispositionSchedule.decription=Aufbewahrungsplan
-
-rma_recordsmanagement.property.rma_dispositionAuthority.title=Aufbewahrungs-Authority
-rma_recordsmanagement.property.rma_dispositionAuthority.decription=Aufbewahrungs-Authority
-
-rma_recordsmanagement.property.rma_dispositionInstructions.title=Aufbewahrungsanweisungen
-rma_recordsmanagement.property.rma_dispositionInstructions.decription=Aufbewahrungsanweisungen
-
-rma_recordsmanagement.property.rma_recordLevelDisposition.title=Aufbewahrung auf Record-Ebene
-rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Aufbewahrung auf Record-Ebene
-
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Aufbewahrungsaktionen
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Aufbewahrungsaktionen
-
-rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Definition der Aufbewahrungsaktion
-rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Definition der Aufbewahrungsaktion
-rma_recordsmanagement.property.rma_dispositionActionName.title=Name der Aufbewahrungsaktion
-rma_recordsmanagement.property.rma_dispositionActionName.decription=Name der Aufbewahrungsaktion
-rma_recordsmanagement.property.rma_dispositionDescription.title=Aufbewahrungsbeschreibung
-rma_recordsmanagement.property.rma_dispositionDescription.decription=Aufbewahrungsbeschreibung
-rma_recordsmanagement.property.rma_dispositionLocation.title=Aufbewahrungsort
-rma_recordsmanagement.property.rma_dispositionLocation.decription=Aufbewahrungsort
-rma_recordsmanagement.property.rma_dispositionPeriod.title=Aufbewahrungszeitraum
-rma_recordsmanagement.property.rma_dispositionPeriod.decription=Aufbewahrungszeitraum
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Eigenschaft des Aufbewahrungszeitraums
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Eigenschaft des Aufbewahrungszeitraums
-rma_recordsmanagement.property.rma_dispositionEvent.title=Aufbewahrungsereignis
-rma_recordsmanagement.property.rma_dispositionEvent.decription=Aufbewahrungsereignis
-rma_recordsmanagement.property.rma_dispositionEventCombination.title=Aufbewahrungsereigniskombination
-rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Aufbewahrungsereigniskombination
-
-rma_recordsmanagement.type.rma_recordFolder.title=Record-Ordner
-rma_recordsmanagement.type.rma_recordFolder.decription=Record-Ordner
-rma_recordsmanagement.property.rma_isClosed.title=Record
-rma_recordsmanagement.property.rma_isClosed.decription=Record
-
-rma_recordsmanagement.type.rma_recordCategory.title=Record-Kategorie
-rma_recordsmanagement.type.rma_recordCategory.decription=Record-Kategorie
-
-rma_recordsmanagement.type.rma_nonElectronicDocument.title=Nicht elektronisches Dokument
-rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Nicht elektronisches Dokument
-rma_recordsmanagement.property.rma_physicalSize.title=Physikalische Gr\u00f6\u00dfe
-rma_recordsmanagement.property.rma_physicalSize.decription=Die Gr\u00f6\u00dfe des Dokuments wird in laufenden Metern gemessen.
-rma_recordsmanagement.property.rma_numberOfCopies.title=Anzahl der Kopien
-rma_recordsmanagement.property.rma_numberOfCopies.description=Die Anzahl der Kopien des Dokuments.
-rma_recordsmanagement.property.rma_storageLocation.title=Speicherort
-rma_recordsmanagement.property.rma_storageLocation.decription=Der physische Speicherort des Record.
-rma_recordsmanagement.property.rma_shelf.title=Regal
-rma_recordsmanagement.property.rma_shelf.decription=Das Regal, in dem der Record abgelegt ist.
-rma_recordsmanagement.property.rma_box.title=Box
-rma_recordsmanagement.property.rma_box.description=Die Box, in der der Record abgelegt ist.
-rma_recordsmanagement.property.rma_file.title=Datei
-rma_recordsmanagement.property.rma_file.decription=Die Datei, in der der Record gespeichert ist.
-
-rma_recordsmanagement.type.rma_dispositionAction.title=Aufbewahrungsaktion
-rma_recordsmanagement.type.rma_dispositionAction.decription=Aufbewahrungsaktion
-rma_recordsmanagement.property.rma_dispositionActionId.title=ID der Aufbewahrungsaktion
-rma_recordsmanagement.property.rma_dispositionActionId.decription=ID der Aufbewahrungsaktion
-rma_recordsmanagement.property.rma_dispositionAction.title=Aufbewahrungsaktion
-rma_recordsmanagement.property.rma_dispositionAction.decription=Aufbewahrungsaktion
-rma_recordsmanagement.property.rma_dispositionAsOf.title=Aufbewahrungsaktion
-rma_recordsmanagement.property.rma_dispositionAsOf.decription=Aufbewahrungsaktion
-rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Erlaubte Aufbewahrungsereignisse
-rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Erlaubte Aufbewahrungsereignisse
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Aufbewahrungsaktion gestartet um
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Aufbewahrungsaktion gestartet um
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Aufbewahrungsaktion gestartet von
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Aufbewahrungsaktion gestartet von
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Aufbewahrungsaktion abgeschlossen um
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Aufbewahrungsaktion abgeschlossen um
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Aufbewahrungsaktion abgeschlossen von
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Aufbewahrungsaktion abgeschlossen von
-rma_recordsmanagement.association.rma_eventExecutions.title=Ereignisausf\u00fchrungen
-rma_recordsmanagement.association.rma_eventExecutions.decription=Ereignisausf\u00fchrungen
-
-rma_recordsmanagement.type.rma_eventExecution.title=Ereignisausf\u00fchrung
-rma_recordsmanagement.type.rma_eventExecution.decription=Ereignisausf\u00fchrung
-rma_recordsmanagement.property.rma_eventExecutionName.title=Ereignisname
-rma_recordsmanagement.property.rma_eventExecutionName.decription=Ereignisname
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Automatisches Ereignis
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Automatisches Ereignis
-rma_recordsmanagement.property.rma_eventExecutionComplete.title=Abgeschlossenes Ereignis
-rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Abgeschlossenes Ereignis
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Ereignis abgeschlossen von
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Ereignis abgeschlossen von
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Ereignis abgeschlossen um
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Ereignis abgeschlossen um
-
-rma_recordsmanagement.type.rma_hold.title=Sperrbereich
-rma_recordsmanagement.type.rma_hold.decription=Sperrbereich
-rma_recordsmanagement.property.rma_holdReason.title=Sperrgrund
-rma_recordsmanagement.property.rma_holdReason.decription=Sperrgrund
-rma_recordsmanagement.association.rma_frozenRecords.title=Gesperrte Records
-rma_recordsmanagement.association.rma_frozenRecords.decription=Gesperrte Records
-
-rma_recordsmanagement.type.rma_transfer.title=\u00dcbertragen
-rma_recordsmanagement.type.rma_transfer.decription=\u00dcbertragen
-rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Anzeige bei \u00dcbertragung zur Aufnahme
-rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Anzeige bei \u00dcbertragung zur Aufnahme
-rma_recordsmanagement.property.rma_transferPDFIndicator.title=Anzeige bei PDF-\u00dcbertragung
-rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Anzeige bei PDF-\u00dcbertragung
-rma_recordsmanagement.property.rma_transferLocation.title=PDF \u00fcbertragen
-rma_recordsmanagement.property.rma_transferLocation.decription=PDF \u00fcbertragen
-rma_recordsmanagement.association.rma_transferred.title=\u00dcbertragen
-rma_recordsmanagement.association.rma_transferred.decription=\u00dcbertragen
-
-rma_recordsmanagement.aspect.rma_filePlanComponent.title=Ablageplan-Komponente
-rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Ablageplan-Komponente
-rma_recordsmanagement.property.rma_rootNodeRef.title=Root-Knoten
-rma_recordsmanagement.property.rma_rootNodeRef.decription=Root-Knoten
-
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Records Management Root
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Records Management Root
-rma_recordsmanagement.association.rma_holds.title=Sperren
-rma_recordsmanagement.association.rma_holds.decription=Sperren
-rma_recordsmanagement.association.rma_transfers.title=\u00dcbertragungen
-rma_recordsmanagement.association.rma_transfers.decription=\u00dcbertragungen
-
-rma_recordsmanagement.aspect.rma_declaredRecord.title=Abgeschlossener Record
-rma_recordsmanagement.aspect.rma_declaredRecord.decription=Abgeschlossener Record
-rma_recordsmanagement.property.rma_declaredAt.title=Abschlussdatum
-rma_recordsmanagement.property.rma_declaredAt.decription=Abschlussdatum
-rma_recordsmanagement.property.rma_declaredBy.title=Abgeschlossen von
-rma_recordsmanagement.property.rma_declaredBy.decription=Abgeschlossen von
-
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=ID der Record-Komponente
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=ID der Record-Komponente
-rma_recordsmanagement.property.rma_identifier.title=Record-ID
-rma_recordsmanagement.property.rma_identifier.decription=Eindeutige Record-ID
-rma_recordsmanagement.property.rma_dbUniquenessId.title=Eindeutigkeit der Datenbank
-rma_recordsmanagement.property.rma_dbUniquenessId.decription=Eindeutigkeit der Datenbank
-
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Definition f\u00fcr besonders relevanten Record
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Definition f\u00fcr besonders relevanten Record
-
-rma_recordsmanagement.property.rma_reviewPeriod.title=\u00dcberpr\u00fcfungszeitraum
-rma_recordsmanagement.property.rma_reviewPeriod.decription=\u00dcberpr\u00fcfungszeitraum
-rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Kennzeichen f\u00fcr besonders relevante Records
-rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Kennzeichen f\u00fcr besonders relevante Records
-
-rma_recordsmanagement.aspect.rma_record.title=Record
-rma_recordsmanagement.aspect.rma_record.decription=Record
-rma_recordsmanagement.property.rma_dateFiled.title=Ablagedatum
-rma_recordsmanagement.property.rma_dateFiled.decription=Ablagedatum
-rma_recordsmanagement.property.rma_origionalName=Originalname
-
-rma_recordsmanagement.aspect.rma_recordMetaData.title=Record-Metadaten
-rma_recordsmanagement.aspect.rma_recordMetaData.description=Markeraspekt f\u00fcr Record-Metadaten
-
-rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Gemeinsame Record-Details
-rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Gemeinsame Metadaten aller Record-Typen
-rma_recordsmanagement.property.rma_location.title=Ort
-rma_recordsmanagement.property.rma_location.decription=Ort
-
-rma_recordsmanagement.aspect.rma_vitalRecord.title=Besonders relevanter Record
-rma_recordsmanagement.aspect.rma_vitalRecord.decription=Besonders relevanter Record
-rma_recordsmanagement.property.rma_reviewAsOf.title=N\u00e4chste \u00dcberpr\u00fcfung
-rma_recordsmanagement.property.rma_reviewAsOf.decription=N\u00e4chste \u00dcberpr\u00fcfung
-rma_recordsmanagement.property.rma_notificationIssued.title=Gibt an, dass f\u00fcr diesen Record eine Benachrichtigung aufgrund einer f\u00e4lligen \u00dcberpr\u00fcfung ausgegeben wurde.
-rma_recordsmanagement.property.rma_notificationIssued.decription=Gibt an, dass f\u00fcr diesen Record eine Benachrichtigung aufgrund einer f\u00e4lligen \u00dcberpr\u00fcfung ausgegeben wurde.
-
-rma_recordsmanagement.aspect.rma_scheduled.title=Geplant
-rma_recordsmanagement.aspect.rma_scheduled.decription=Geplant
-rma_recordsmanagement.association.rma_dispositionSchedule.title=Aufbewahrungsplan
-rma_recordsmanagement.association.rma_dispositionSchedule.decription=Aufbewahrungsplan
-
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Aufbewahrungszyklus
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Aufbewahrungszyklus
-rma_recordsmanagement.association.rma_nextDispositionAction.title=N\u00e4chste Aufbewahrungsaktion
-rma_recordsmanagement.association.rma_nextDispositionAction.decription=N\u00e4chste Aufbewahrungsaktion
-rma_recordsmanagement.association.rma_dispositionActionHistory.title=Aufbewahrungsaktionsverlauf
-rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Aufbewahrungsaktionsverlauf
-
-rma_recordsmanagement.aspect.rma_cutOff.title=Trennen
-rma_recordsmanagement.aspect.rma_cutOff.decription=Trennen
-rma_recordsmanagement.property.rma_cutOffDate.title=Trenndatum
-rma_recordsmanagement.property.rma_cutOffDate.decription=Trenndatum
-
-rma_recordsmanagement.aspect.rma_transferred.title=\u00dcbertragen
-rma_recordsmanagement.aspect.rma_transferred.decription=\u00dcbertragen
-
-rma_recordsmanagement.aspect.rma_ascended.title=In Archiv aufgenommen
-rma_recordsmanagement.aspect.rma_ascended.decription=In Archiv aufgenommen
-
-rma_recordsmanagement.aspect.rma_frozen.title=Gesperrt
-rma_recordsmanagement.aspect.rma_frozen.decription=Gesperrt
-rma_recordsmanagement.property.rma_frozenAt.title=Gehalten in
-rma_recordsmanagement.property.rma_frozenAt.decription=Gehalten in
-rma_recordsmanagement.property.rma_frozenBy.title=Gehalten von
-rma_recordsmanagement.property.rma_frozenBy.decription=Gehalten von
-
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Root von Caveat-Konfiguration
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Root von Caveat-Konfiguration
-rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Caveat-Konfiguration
-rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Caveat-Konfiguration
-
-rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Root von E-Mail-Konfiguration
-rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Root von E-Mail-Konfiguration
-rma_recordsmanagement.association.rma_emailConfigAssoc.title=E-Mail-Konfiguration
-rma_recordsmanagement.association.rma_emailConfigAssoc.description=E-Mail-Konfiguration
-
-rma_recordsmanagement.aspect.rma_recordSearch.title=Record-Suche
-rma_recordsmanagement.aspect.rma_recordSearch.decription=Informationen zur Unterst\u00fctzung der Records Management Suche
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Mit Aufbewahrungsplan
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Gibt an, ob das Element \u00fcber einen zugeordneten Aufbewahrungsplan verf\u00fcgt
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Name der Aufbewahrungsaktion
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=Der Name der n\u00e4chsten Aufbewahrungsaktion
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Start der Aufbewahrungsaktion
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=Das Datum, ab dem die n\u00e4chste Aufbewahrungsaktion erlaubt ist
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Aufbewahrungszeitraum
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Aufbewahrungszeitraum
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Ausdruck f\u00fcr Aufbewahrungszeitraum
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Ausdruck f\u00fcr Aufbewahrungszeitraum
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Erlaubte Aufbewahrungsereignisse
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Erlaubte Aufbewahrungsereignisse
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Aufbewahrungsereignisse
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Aufbewahrungsereignisse
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Aufbewahrungs-Authority
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Aufbewahrungs-Authority
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Aufbewahrungsanweisungen
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Aufbewahrungsanweisungen
-rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Sperrgrund
-rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Sperrgrund
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=\u00dcberpr\u00fcfungszeitraum f\u00fcr besonders relevante Records
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=\u00dcberpr\u00fcfungszeitraum f\u00fcr besonders relevante Records
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Ausdruck f\u00fcr \u00dcberpr\u00fcfungszeitraum
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Ausdruck f\u00fcr \u00dcberpr\u00fcfungszeitraum
-
-rma_recordsmanagement.aspect.rma_versionedRecord.title=Versionierter Record
-rma_recordsmanagement.aspect.rma_versionedRecord.decription=Versionierter Record
-
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Nicht ver\u00f6ffentlichte Aktualisierung
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Nicht ver\u00f6ffentlichte Aktualisierung
-rma_recordsmanagement.property.rma_unpublishedUpdate.title=Nicht ver\u00f6ffentlichte Aktualisierung
-rma_recordsmanagement.property.rma_unpublishedUpdate.description=Gibt an, ob eine nicht ver\u00f6ffentlichte Aktualisierung vorhanden ist.
-rma_recordsmanagement.property.rma_updateTo.title=Aktualisieren auf
-rma_recordsmanagement.property.rma_updateTo.description=Das Ziel der Aktualisierung.
-rma_recordsmanagement.property.rma_updatedProperties.title=Aktualisierte Eigenschaften
-rma_recordsmanagement.property.rma_updatedProperties.description=Die aktualisierten Eigenschaften.
-rma_recordsmanagement.property.rma_publishInProgress.title=Laufende Ver\u00f6ffentlichung
-rma_recordsmanagement.property.rma_publishInProgress.description=Gibt an, ob derzeit eine Ver\u00f6ffentlichung durchgef\u00fchrt wird.
-
-rma_recordsmanagement.aspect.dod_ghosted.title=Nur Metadaten enthaltender Record
-rma_recordsmanagement.aspect.dod_ghosted.description=Nur Metadaten enthaltender Record
-
-listconstraint.rmc_tlList.title=Speicherorte \u00fcbertragen
+rma_recordsmanagement.description=Content Model f\u00fcr Records Management
+
+rma_recordsmanagement.type.rma_rmsite.title=Records Management Site
+rma_recordsmanagement.type.rma_rmsite.description=Spezielle Site f\u00fcr Records Management
+
+rma_recordsmanagement.type.rma_caveatConfig.title=Sicherheitskontrollen-Konfiguration
+rma_recordsmanagement.type.rma_caveatConfig.decription=Sicherheitskontrollen-Konfiguration
+
+rma_recordsmanagement.type.rma_emailConfig.title=E-Mail-Konfiguration
+rma_recordsmanagement.type.rma_emailConfig.decription=E-Mail-Konfiguration
+
+rma_recordsmanagement.type.rma_recordsManagementContainer.title=Records Management Container
+rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Records Management Container
+
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Records Management Root-Container
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Records Management Root-Container
+
+rma_recordsmanagement.type.rma_dispositionSchedule.title=Aufbewahrungsplan
+rma_recordsmanagement.type.rma_dispositionSchedule.decription=Aufbewahrungsplan
+
+rma_recordsmanagement.property.rma_dispositionAuthority.title=Aufbewahrungs-Authority
+rma_recordsmanagement.property.rma_dispositionAuthority.decription=Aufbewahrungs-Authority
+
+rma_recordsmanagement.property.rma_dispositionInstructions.title=Aufbewahrungsanweisungen
+rma_recordsmanagement.property.rma_dispositionInstructions.decription=Aufbewahrungsanweisungen
+
+rma_recordsmanagement.property.rma_recordLevelDisposition.title=Aufbewahrung auf Record-Ebene
+rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Aufbewahrung auf Record-Ebene
+
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Aufbewahrungsaktionen
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Aufbewahrungsaktionen
+
+rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Definition der Aufbewahrungsaktion
+rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Definition der Aufbewahrungsaktion
+rma_recordsmanagement.property.rma_dispositionActionName.title=Name der Aufbewahrungsaktion
+rma_recordsmanagement.property.rma_dispositionActionName.decription=Name der Aufbewahrungsaktion
+rma_recordsmanagement.property.rma_dispositionDescription.title=Aufbewahrungsbeschreibung
+rma_recordsmanagement.property.rma_dispositionDescription.decription=Aufbewahrungsbeschreibung
+rma_recordsmanagement.property.rma_dispositionLocation.title=Aufbewahrungsort
+rma_recordsmanagement.property.rma_dispositionLocation.decription=Aufbewahrungsort
+rma_recordsmanagement.property.rma_dispositionPeriod.title=Aufbewahrungszeitraum
+rma_recordsmanagement.property.rma_dispositionPeriod.decription=Aufbewahrungszeitraum
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Eigenschaft des Aufbewahrungszeitraums
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Eigenschaft des Aufbewahrungszeitraums
+rma_recordsmanagement.property.rma_dispositionEvent.title=Aufbewahrungsereignis
+rma_recordsmanagement.property.rma_dispositionEvent.decription=Aufbewahrungsereignis
+rma_recordsmanagement.property.rma_dispositionEventCombination.title=Aufbewahrungsereigniskombination
+rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Aufbewahrungsereigniskombination
+
+rma_recordsmanagement.type.rma_recordFolder.title=Record-Ordner
+rma_recordsmanagement.type.rma_recordFolder.decription=Record-Ordner
+rma_recordsmanagement.property.rma_isClosed.title=Record
+rma_recordsmanagement.property.rma_isClosed.decription=Record
+
+rma_recordsmanagement.type.rma_recordCategory.title=Record-Kategorie
+rma_recordsmanagement.type.rma_recordCategory.decription=Record-Kategorie
+
+rma_recordsmanagement.type.rma_nonElectronicDocument.title=Nicht elektronisches Dokument
+rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Nicht elektronisches Dokument
+rma_recordsmanagement.property.rma_physicalSize.title=Physikalische Gr\u00f6\u00dfe
+rma_recordsmanagement.property.rma_physicalSize.decription=Die Gr\u00f6\u00dfe des Dokuments wird in laufenden Metern gemessen.
+rma_recordsmanagement.property.rma_numberOfCopies.title=Anzahl der Kopien
+rma_recordsmanagement.property.rma_numberOfCopies.description=Die Anzahl der Kopien des Dokuments.
+rma_recordsmanagement.property.rma_storageLocation.title=Speicherort
+rma_recordsmanagement.property.rma_storageLocation.decription=Der physische Speicherort des Record.
+rma_recordsmanagement.property.rma_shelf.title=Regal
+rma_recordsmanagement.property.rma_shelf.decription=Das Regal, in dem der Record abgelegt ist.
+rma_recordsmanagement.property.rma_box.title=Box
+rma_recordsmanagement.property.rma_box.description=Die Box, in der der Record abgelegt ist.
+rma_recordsmanagement.property.rma_file.title=Datei
+rma_recordsmanagement.property.rma_file.decription=Die Datei, in der der Record gespeichert ist.
+
+rma_recordsmanagement.type.rma_dispositionAction.title=Aufbewahrungsaktion
+rma_recordsmanagement.type.rma_dispositionAction.decription=Aufbewahrungsaktion
+rma_recordsmanagement.property.rma_dispositionActionId.title=ID der Aufbewahrungsaktion
+rma_recordsmanagement.property.rma_dispositionActionId.decription=ID der Aufbewahrungsaktion
+rma_recordsmanagement.property.rma_dispositionAction.title=Aufbewahrungsaktion
+rma_recordsmanagement.property.rma_dispositionAction.decription=Aufbewahrungsaktion
+rma_recordsmanagement.property.rma_dispositionAsOf.title=Aufbewahrungsaktion
+rma_recordsmanagement.property.rma_dispositionAsOf.decription=Aufbewahrungsaktion
+rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Erlaubte Aufbewahrungsereignisse
+rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Erlaubte Aufbewahrungsereignisse
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Aufbewahrungsaktion gestartet um
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Aufbewahrungsaktion gestartet um
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Aufbewahrungsaktion gestartet von
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Aufbewahrungsaktion gestartet von
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Aufbewahrungsaktion abgeschlossen um
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Aufbewahrungsaktion abgeschlossen um
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Aufbewahrungsaktion abgeschlossen von
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Aufbewahrungsaktion abgeschlossen von
+rma_recordsmanagement.association.rma_eventExecutions.title=Ereignisausf\u00fchrungen
+rma_recordsmanagement.association.rma_eventExecutions.decription=Ereignisausf\u00fchrungen
+
+rma_recordsmanagement.type.rma_eventExecution.title=Ereignisausf\u00fchrung
+rma_recordsmanagement.type.rma_eventExecution.decription=Ereignisausf\u00fchrung
+rma_recordsmanagement.property.rma_eventExecutionName.title=Ereignisname
+rma_recordsmanagement.property.rma_eventExecutionName.decription=Ereignisname
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Automatisches Ereignis
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Automatisches Ereignis
+rma_recordsmanagement.property.rma_eventExecutionComplete.title=Abgeschlossenes Ereignis
+rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Abgeschlossenes Ereignis
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Ereignis abgeschlossen von
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Ereignis abgeschlossen von
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Ereignis abgeschlossen um
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Ereignis abgeschlossen um
+
+rma_recordsmanagement.type.rma_hold.title=Sperrbereich
+rma_recordsmanagement.type.rma_hold.decription=Sperrbereich
+rma_recordsmanagement.property.rma_holdReason.title=Sperrgrund
+rma_recordsmanagement.property.rma_holdReason.decription=Sperrgrund
+rma_recordsmanagement.association.rma_frozenRecords.title=Gesperrte Records
+rma_recordsmanagement.association.rma_frozenRecords.decription=Gesperrte Records
+
+rma_recordsmanagement.type.rma_transfer.title=\u00dcbertragen
+rma_recordsmanagement.type.rma_transfer.decription=\u00dcbertragen
+rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Anzeige bei \u00dcbertragung zur Aufnahme
+rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Anzeige bei \u00dcbertragung zur Aufnahme
+rma_recordsmanagement.property.rma_transferPDFIndicator.title=Anzeige bei PDF-\u00dcbertragung
+rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Anzeige bei PDF-\u00dcbertragung
+rma_recordsmanagement.property.rma_transferLocation.title=PDF \u00fcbertragen
+rma_recordsmanagement.property.rma_transferLocation.decription=PDF \u00fcbertragen
+rma_recordsmanagement.association.rma_transferred.title=\u00dcbertragen
+rma_recordsmanagement.association.rma_transferred.decription=\u00dcbertragen
+
+rma_recordsmanagement.aspect.rma_filePlanComponent.title=Ablageplan-Komponente
+rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Ablageplan-Komponente
+rma_recordsmanagement.property.rma_rootNodeRef.title=Root-Knoten
+rma_recordsmanagement.property.rma_rootNodeRef.decription=Root-Knoten
+
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Records Management Root
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Records Management Root
+rma_recordsmanagement.association.rma_holds.title=Sperren
+rma_recordsmanagement.association.rma_holds.decription=Sperren
+rma_recordsmanagement.association.rma_transfers.title=\u00dcbertragungen
+rma_recordsmanagement.association.rma_transfers.decription=\u00dcbertragungen
+
+rma_recordsmanagement.aspect.rma_declaredRecord.title=Abgeschlossener Record
+rma_recordsmanagement.aspect.rma_declaredRecord.decription=Abgeschlossener Record
+rma_recordsmanagement.property.rma_declaredAt.title=Abschlussdatum
+rma_recordsmanagement.property.rma_declaredAt.decription=Abschlussdatum
+rma_recordsmanagement.property.rma_declaredBy.title=Abgeschlossen von
+rma_recordsmanagement.property.rma_declaredBy.decription=Abgeschlossen von
+
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=ID der Record-Komponente
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=ID der Record-Komponente
+rma_recordsmanagement.property.rma_identifier.title=Record-ID
+rma_recordsmanagement.property.rma_identifier.decription=Eindeutige Record-ID
+rma_recordsmanagement.property.rma_dbUniquenessId.title=Eindeutigkeit der Datenbank
+rma_recordsmanagement.property.rma_dbUniquenessId.decription=Eindeutigkeit der Datenbank
+
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Definition f\u00fcr besonders relevanten Record
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Definition f\u00fcr besonders relevanten Record
+
+rma_recordsmanagement.property.rma_reviewPeriod.title=\u00dcberpr\u00fcfungszeitraum
+rma_recordsmanagement.property.rma_reviewPeriod.decription=\u00dcberpr\u00fcfungszeitraum
+rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Kennzeichen f\u00fcr besonders relevante Records
+rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Kennzeichen f\u00fcr besonders relevante Records
+
+rma_recordsmanagement.aspect.rma_record.title=Record
+rma_recordsmanagement.aspect.rma_record.decription=Record
+rma_recordsmanagement.property.rma_dateFiled.title=Ablagedatum
+rma_recordsmanagement.property.rma_dateFiled.decription=Ablagedatum
+rma_recordsmanagement.property.rma_origionalName=Originalname
+
+rma_recordsmanagement.aspect.rma_recordMetaData.title=Record-Metadaten
+rma_recordsmanagement.aspect.rma_recordMetaData.description=Markeraspekt f\u00fcr Record-Metadaten
+
+rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Gemeinsame Record-Details
+rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Gemeinsame Metadaten aller Record-Typen
+rma_recordsmanagement.property.rma_location.title=Ort
+rma_recordsmanagement.property.rma_location.decription=Ort
+
+rma_recordsmanagement.aspect.rma_vitalRecord.title=Besonders relevanter Record
+rma_recordsmanagement.aspect.rma_vitalRecord.decription=Besonders relevanter Record
+rma_recordsmanagement.property.rma_reviewAsOf.title=N\u00e4chste \u00dcberpr\u00fcfung
+rma_recordsmanagement.property.rma_reviewAsOf.decription=N\u00e4chste \u00dcberpr\u00fcfung
+rma_recordsmanagement.property.rma_notificationIssued.title=Gibt an, dass f\u00fcr diesen Record eine Benachrichtigung aufgrund einer f\u00e4lligen \u00dcberpr\u00fcfung ausgegeben wurde.
+rma_recordsmanagement.property.rma_notificationIssued.decription=Gibt an, dass f\u00fcr diesen Record eine Benachrichtigung aufgrund einer f\u00e4lligen \u00dcberpr\u00fcfung ausgegeben wurde.
+
+rma_recordsmanagement.aspect.rma_scheduled.title=Geplant
+rma_recordsmanagement.aspect.rma_scheduled.decription=Geplant
+rma_recordsmanagement.association.rma_dispositionSchedule.title=Aufbewahrungsplan
+rma_recordsmanagement.association.rma_dispositionSchedule.decription=Aufbewahrungsplan
+
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Aufbewahrungszyklus
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Aufbewahrungszyklus
+rma_recordsmanagement.association.rma_nextDispositionAction.title=N\u00e4chste Aufbewahrungsaktion
+rma_recordsmanagement.association.rma_nextDispositionAction.decription=N\u00e4chste Aufbewahrungsaktion
+rma_recordsmanagement.association.rma_dispositionActionHistory.title=Aufbewahrungsaktionsverlauf
+rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Aufbewahrungsaktionsverlauf
+
+rma_recordsmanagement.aspect.rma_cutOff.title=Trennen
+rma_recordsmanagement.aspect.rma_cutOff.decription=Trennen
+rma_recordsmanagement.property.rma_cutOffDate.title=Trenndatum
+rma_recordsmanagement.property.rma_cutOffDate.decription=Trenndatum
+
+rma_recordsmanagement.aspect.rma_transferred.title=\u00dcbertragen
+rma_recordsmanagement.aspect.rma_transferred.decription=\u00dcbertragen
+
+rma_recordsmanagement.aspect.rma_ascended.title=In Archiv aufgenommen
+rma_recordsmanagement.aspect.rma_ascended.decription=In Archiv aufgenommen
+
+rma_recordsmanagement.aspect.rma_frozen.title=Gesperrt
+rma_recordsmanagement.aspect.rma_frozen.decription=Gesperrt
+rma_recordsmanagement.property.rma_frozenAt.title=Gehalten in
+rma_recordsmanagement.property.rma_frozenAt.decription=Gehalten in
+rma_recordsmanagement.property.rma_frozenBy.title=Gehalten von
+rma_recordsmanagement.property.rma_frozenBy.decription=Gehalten von
+
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Root von Caveat-Konfiguration
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Root von Caveat-Konfiguration
+rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Caveat-Konfiguration
+rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Caveat-Konfiguration
+
+rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Root von E-Mail-Konfiguration
+rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Root von E-Mail-Konfiguration
+rma_recordsmanagement.association.rma_emailConfigAssoc.title=E-Mail-Konfiguration
+rma_recordsmanagement.association.rma_emailConfigAssoc.description=E-Mail-Konfiguration
+
+rma_recordsmanagement.aspect.rma_recordSearch.title=Record-Suche
+rma_recordsmanagement.aspect.rma_recordSearch.decription=Informationen zur Unterst\u00fctzung der Records Management Suche
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Mit Aufbewahrungsplan
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Gibt an, ob das Element \u00fcber einen zugeordneten Aufbewahrungsplan verf\u00fcgt
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Name der Aufbewahrungsaktion
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=Der Name der n\u00e4chsten Aufbewahrungsaktion
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Start der Aufbewahrungsaktion
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=Das Datum, ab dem die n\u00e4chste Aufbewahrungsaktion erlaubt ist
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Aufbewahrungszeitraum
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Aufbewahrungszeitraum
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Ausdruck f\u00fcr Aufbewahrungszeitraum
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Ausdruck f\u00fcr Aufbewahrungszeitraum
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Erlaubte Aufbewahrungsereignisse
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Erlaubte Aufbewahrungsereignisse
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Aufbewahrungsereignisse
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Aufbewahrungsereignisse
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Aufbewahrungs-Authority
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Aufbewahrungs-Authority
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Aufbewahrungsanweisungen
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Aufbewahrungsanweisungen
+rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Sperrgrund
+rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Sperrgrund
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=\u00dcberpr\u00fcfungszeitraum f\u00fcr besonders relevante Records
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=\u00dcberpr\u00fcfungszeitraum f\u00fcr besonders relevante Records
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Ausdruck f\u00fcr \u00dcberpr\u00fcfungszeitraum
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Ausdruck f\u00fcr \u00dcberpr\u00fcfungszeitraum
+
+rma_recordsmanagement.aspect.rma_versionedRecord.title=Versionierter Record
+rma_recordsmanagement.aspect.rma_versionedRecord.decription=Versionierter Record
+
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Nicht ver\u00f6ffentlichte Aktualisierung
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Nicht ver\u00f6ffentlichte Aktualisierung
+rma_recordsmanagement.property.rma_unpublishedUpdate.title=Nicht ver\u00f6ffentlichte Aktualisierung
+rma_recordsmanagement.property.rma_unpublishedUpdate.description=Gibt an, ob eine nicht ver\u00f6ffentlichte Aktualisierung vorhanden ist.
+rma_recordsmanagement.property.rma_updateTo.title=Aktualisieren auf
+rma_recordsmanagement.property.rma_updateTo.description=Das Ziel der Aktualisierung.
+rma_recordsmanagement.property.rma_updatedProperties.title=Aktualisierte Eigenschaften
+rma_recordsmanagement.property.rma_updatedProperties.description=Die aktualisierten Eigenschaften.
+rma_recordsmanagement.property.rma_publishInProgress.title=Laufende Ver\u00f6ffentlichung
+rma_recordsmanagement.property.rma_publishInProgress.description=Gibt an, ob derzeit eine Ver\u00f6ffentlichung durchgef\u00fchrt wird.
+
+rma_recordsmanagement.aspect.dod_ghosted.title=Nur Metadaten enthaltender Record
+rma_recordsmanagement.aspect.dod_ghosted.description=Nur Metadaten enthaltender Record
+
+listconstraint.rmc_tlList.title=Speicherorte \u00fcbertragen
listconstraint.rmc_smList.title=Zus\u00e4tzliche Markierungen
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_es.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_es.properties
index 2019560b0a..9c5696add9 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_es.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_es.properties
@@ -1,265 +1,265 @@
-rma_recordsmanagement.description=Modelo de contenido de gesti\u00f3n de documentos de archivo
-
-rma_recordsmanagement.type.rma_rmsite.title=Sitio de gesti\u00f3n de documentos de archivo
-rma_recordsmanagement.type.rma_rmsite.description=Sitio especializado para gesti\u00f3n de documentos de archivo
-
-rma_recordsmanagement.type.rma_caveatConfig.title=Configuraci\u00f3n de los controles de seguridad
-rma_recordsmanagement.type.rma_caveatConfig.decription=Configuraci\u00f3n de los controles de seguridad
-
-rma_recordsmanagement.type.rma_emailConfig.title=Configuraci\u00f3n de correo electr\u00f3nico
-rma_recordsmanagement.type.rma_emailConfig.decription=Configuraci\u00f3n de correo electr\u00f3nico
-
-rma_recordsmanagement.type.rma_recordsManagementContainer.title=Contenedor de gesti\u00f3n de documentos de archivo
-rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Contenedor de gesti\u00f3n de documentos de archivo
-
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Contenedor ra\u00edz de gesti\u00f3n de documentos de archivo
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Contenedor ra\u00edz de gesti\u00f3n de documentos de archivo
-
-rma_recordsmanagement.type.rma_dispositionSchedule.title=Planificaci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.type.rma_dispositionSchedule.decription=Planificaci\u00f3n de retenci\u00f3n
-
-rma_recordsmanagement.property.rma_dispositionAuthority.title=Autoridad de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionAuthority.decription=Autoridad de retenci\u00f3n
-
-rma_recordsmanagement.property.rma_dispositionInstructions.title=Instrucciones de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionInstructions.decription=Instrucciones de retenci\u00f3n
-
-rma_recordsmanagement.property.rma_recordLevelDisposition.title=Retenci\u00f3n de nivel de documento de archivo
-rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Retenci\u00f3n de nivel de documento de archivo
-
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Acciones de retenci\u00f3n
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Acciones de retenci\u00f3n
-
-rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Definici\u00f3n de acci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Definici\u00f3n de acci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionActionName.title=Nombre de acci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionActionName.decription=Nombre de acci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionDescription.title=Descripci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionDescription.decription=Descripci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionLocation.title=Ubicaci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionLocation.decription=Ubicaci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionPeriod.title=Periodo de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionPeriod.decription=Periodo de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Propiedad del periodo de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Propiedad del periodo de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionEvent.title=Evento de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionEvent.decription=Evento de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionEventCombination.title=Combinaci\u00f3n de evento de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Combinaci\u00f3n de evento de retenci\u00f3n
-
-rma_recordsmanagement.type.rma_recordFolder.title=Carpeta de documentos de archivo
-rma_recordsmanagement.type.rma_recordFolder.decription=Carpeta de documentos de archivo
-rma_recordsmanagement.property.rma_isClosed.title=Documento de archivo
-rma_recordsmanagement.property.rma_isClosed.decription=Documento de archivo
-
-rma_recordsmanagement.type.rma_recordCategory.title=Categor\u00eda de documentos de archivo
-rma_recordsmanagement.type.rma_recordCategory.decription=Categor\u00eda de documentos de archivo
-
-rma_recordsmanagement.type.rma_nonElectronicDocument.title=Documento no electr\u00f3nico
-rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Documento no electr\u00f3nico
-rma_recordsmanagement.property.rma_physicalSize.title=Tama\u00f1o f\u00edsico
-rma_recordsmanagement.property.rma_physicalSize.decription=El tama\u00f1o del documento en metros lineales.
-rma_recordsmanagement.property.rma_numberOfCopies.title=N\u00famero de copias
-rma_recordsmanagement.property.rma_numberOfCopies.description=El n\u00famero de copias del documento.
-rma_recordsmanagement.property.rma_storageLocation.title=Ubicaci\u00f3n de almacenamiento
-rma_recordsmanagement.property.rma_storageLocation.decription=La ubicaci\u00f3n f\u00edsica de almacenamiento del documento de archivo.
-rma_recordsmanagement.property.rma_shelf.title=Estanter\u00eda
-rma_recordsmanagement.property.rma_shelf.decription=La estanter\u00eda en la que est\u00e1 guardado el documento de archivo.
-rma_recordsmanagement.property.rma_box.title=Caja
-rma_recordsmanagement.property.rma_box.description=La caja en la que est\u00e1 guardado el documento de archivo.
-rma_recordsmanagement.property.rma_file.title=Fichero
-rma_recordsmanagement.property.rma_file.decription=El fichero en el que est\u00e1 guardado el documento de archivo.
-
-rma_recordsmanagement.type.rma_dispositionAction.title=Acci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.type.rma_dispositionAction.decription=Acci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionActionId.title=ID de acci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionActionId.decription=ID de acci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionAction.title=Acci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionAction.decription=Acci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionAsOf.title=Acci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionAsOf.decription=Acci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Eventos de retenci\u00f3n elegibles
-rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Eventos de retenci\u00f3n elegibles
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Acci\u00f3n de retenci\u00f3n iniciada en
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Acci\u00f3n de retenci\u00f3n iniciada en
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Acci\u00f3n de retenci\u00f3n iniciada por
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Acci\u00f3n de retenci\u00f3n iniciada por
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Acci\u00f3n de retenci\u00f3n completada en
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Acci\u00f3n de retenci\u00f3n completada en
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Acci\u00f3n de retenci\u00f3n completada por
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Acci\u00f3n de retenci\u00f3n completada por
-rma_recordsmanagement.association.rma_eventExecutions.title=Ejecuciones de evento
-rma_recordsmanagement.association.rma_eventExecutions.decription=Ejecuciones de evento
-
-rma_recordsmanagement.type.rma_eventExecution.title=Ejecuci\u00f3n de evento
-rma_recordsmanagement.type.rma_eventExecution.decription=Ejecuci\u00f3n de evento
-rma_recordsmanagement.property.rma_eventExecutionName.title=Nombre de evento
-rma_recordsmanagement.property.rma_eventExecutionName.decription=Nombre de evento
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Evento autom\u00e1tico
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Evento autom\u00e1tico
-rma_recordsmanagement.property.rma_eventExecutionComplete.title=Evento completo
-rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Evento completo
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Evento completado por
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Evento completado por
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Evento completado en
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Evento completado en
-
-rma_recordsmanagement.type.rma_hold.title=Bloqueo
-rma_recordsmanagement.type.rma_hold.decription=Bloqueo
-rma_recordsmanagement.property.rma_holdReason.title=Raz\u00f3n de bloqueo
-rma_recordsmanagement.property.rma_holdReason.decription=Raz\u00f3n de bloqueo
-rma_recordsmanagement.association.rma_frozenRecords.title=Documentos de archivo bloqueados
-rma_recordsmanagement.association.rma_frozenRecords.decription=Documentos de archivo bloqueados
-
-rma_recordsmanagement.type.rma_transfer.title=Transferencia
-rma_recordsmanagement.type.rma_transfer.decription=Transferencia
-rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Indicador de adhesi\u00f3n y transferencia
-rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Indicador de adhesi\u00f3n y transferencia
-rma_recordsmanagement.property.rma_transferPDFIndicator.title=Indicador de transferencia de PDF
-rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Indicador de transferencia de PDF
-rma_recordsmanagement.property.rma_transferLocation.title=Transferencia de PDF
-rma_recordsmanagement.property.rma_transferLocation.decription=Transferencia de PDF
-rma_recordsmanagement.association.rma_transferred.title=Transferido
-rma_recordsmanagement.association.rma_transferred.decription=Transferido
-
-rma_recordsmanagement.aspect.rma_filePlanComponent.title=Componente del plan de ficheros
-rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Componente del plan de ficheros
-rma_recordsmanagement.property.rma_rootNodeRef.title=Nodo ra\u00edz
-rma_recordsmanagement.property.rma_rootNodeRef.decription=Nodo ra\u00edz
-
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Ra\u00edz de gesti\u00f3n de documentos de archivo
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Ra\u00edz de gesti\u00f3n de documentos de archivo
-rma_recordsmanagement.association.rma_holds.title=Bloqueos
-rma_recordsmanagement.association.rma_holds.decription=Bloqueos
-rma_recordsmanagement.association.rma_transfers.title=Transferencias
-rma_recordsmanagement.association.rma_transfers.decription=Transferencias
-
-rma_recordsmanagement.aspect.rma_declaredRecord.title=Documento de archivo completado
-rma_recordsmanagement.aspect.rma_declaredRecord.decription=Documento de archivo completado
-rma_recordsmanagement.property.rma_declaredAt.title=Fecha de finalizaci\u00f3n
-rma_recordsmanagement.property.rma_declaredAt.decription=Fecha de finalizaci\u00f3n
-rma_recordsmanagement.property.rma_declaredBy.title=Completado por
-rma_recordsmanagement.property.rma_declaredBy.decription=Completado por
-
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Identificador de componente de documento de archivo
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Identificador de componente de documento de archivo
-rma_recordsmanagement.property.rma_identifier.title=ID de documento de archivo
-rma_recordsmanagement.property.rma_identifier.decription=Identificador \u00fanico de documento de archivo
-rma_recordsmanagement.property.rma_dbUniquenessId.title=Singularidad de la base de datos
-rma_recordsmanagement.property.rma_dbUniquenessId.decription=Singularidad de la base de datos
-
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Definici\u00f3n de documento de archivo vital
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Definici\u00f3n de documento de archivo vital
-
-rma_recordsmanagement.property.rma_reviewPeriod.title=Per\u00edodo de revisi\u00f3n
-rma_recordsmanagement.property.rma_reviewPeriod.decription=Per\u00edodo de revisi\u00f3n
-rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Indicador de documento de archivo vital
-rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Indicador de documento de archivo vital
-
-rma_recordsmanagement.aspect.rma_record.title=Documento de archivo
-rma_recordsmanagement.aspect.rma_record.decription=Documento de archivo
-rma_recordsmanagement.property.rma_dateFiled.title=Fecha de archivado
-rma_recordsmanagement.property.rma_dateFiled.decription=Fecha de archivado
-rma_recordsmanagement.property.rma_origionalName=Nombre original
-
-rma_recordsmanagement.aspect.rma_recordMetaData.title=Metadatos de documento de archivo
-rma_recordsmanagement.aspect.rma_recordMetaData.description=Aspecto de marcador para metadatos del documento de archivo
-
-rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Detalles de documento de archivo com\u00fan
-rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Metadatos comunes para todos los tipos de documento de archivo
-rma_recordsmanagement.property.rma_location.title=Ubicaci\u00f3n
-rma_recordsmanagement.property.rma_location.decription=Ubicaci\u00f3n
-
-rma_recordsmanagement.aspect.rma_vitalRecord.title=Documento de archivo vital
-rma_recordsmanagement.aspect.rma_vitalRecord.decription=Documento de archivo vital
-rma_recordsmanagement.property.rma_reviewAsOf.title=Pr\u00f3xima revisi\u00f3n
-rma_recordsmanagement.property.rma_reviewAsOf.decription=Pr\u00f3xima revisi\u00f3n
-rma_recordsmanagement.property.rma_notificationIssued.title=Indica que se ha emitido una notificaci\u00f3n de pendiente de revisi\u00f3n para este documento de archivo
-rma_recordsmanagement.property.rma_notificationIssued.decription=Indica que se ha emitido una notificaci\u00f3n de pendiente de revisi\u00f3n para este documento de archivo
-
-rma_recordsmanagement.aspect.rma_scheduled.title=Planificado
-rma_recordsmanagement.aspect.rma_scheduled.decription=Planificado
-rma_recordsmanagement.association.rma_dispositionSchedule.title=Planificaci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.association.rma_dispositionSchedule.decription=Planificaci\u00f3n de retenci\u00f3n
-
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Ciclo de vida de retenci\u00f3n
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Ciclo de vida de retenci\u00f3n
-rma_recordsmanagement.association.rma_nextDispositionAction.title=Pr\u00f3xima acci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.association.rma_nextDispositionAction.decription=Pr\u00f3xima acci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.association.rma_dispositionActionHistory.title=Historial de acciones de retenci\u00f3n
-rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Historial de acciones de retenci\u00f3n
-
-rma_recordsmanagement.aspect.rma_cutOff.title=Interrumpir
-rma_recordsmanagement.aspect.rma_cutOff.decription=Interrumpir
-rma_recordsmanagement.property.rma_cutOffDate.title=Fecha de interrupci\u00f3n
-rma_recordsmanagement.property.rma_cutOffDate.decription=Fecha de interrupci\u00f3n
-
-rma_recordsmanagement.aspect.rma_transferred.title=Transferido
-rma_recordsmanagement.aspect.rma_transferred.decription=Transferido
-
-rma_recordsmanagement.aspect.rma_ascended.title=Ascendido
-rma_recordsmanagement.aspect.rma_ascended.decription=Ascendido
-
-rma_recordsmanagement.aspect.rma_frozen.title=En espera
-rma_recordsmanagement.aspect.rma_frozen.decription=En espera
-rma_recordsmanagement.property.rma_frozenAt.title=Bloqueado en
-rma_recordsmanagement.property.rma_frozenAt.decription=Bloqueado en
-rma_recordsmanagement.property.rma_frozenBy.title=Bloqueado por
-rma_recordsmanagement.property.rma_frozenBy.decription=Bloqueado por
-
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Ra\u00edz de configuraci\u00f3n de advertencia
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Ra\u00edz de configuraci\u00f3n de advertencia
-rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Configuraci\u00f3n de advertencia
-rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Configuraci\u00f3n de advertencia
-
-rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Ra\u00edz de configuraci\u00f3n de correo electr\u00f3nico
-rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Ra\u00edz de configuraci\u00f3n de correo electr\u00f3nico
-rma_recordsmanagement.association.rma_emailConfigAssoc.title=Configuraci\u00f3n de correo electr\u00f3nico
-rma_recordsmanagement.association.rma_emailConfigAssoc.description=Configuraci\u00f3n de correo electr\u00f3nico
-
-rma_recordsmanagement.aspect.rma_recordSearch.title=B\u00fasqueda de documentos de archivo
-rma_recordsmanagement.aspect.rma_recordSearch.decription=Informaci\u00f3n para b\u00fasqueda de Records Management
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Tiene planificaci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Indica si el elemento tiene planificaci\u00f3n de retenci\u00f3n asociada
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Nombre de acci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=El nombre de la pr\u00f3xima acci\u00f3n de retenci\u00f3n
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Acci\u00f3n de retenci\u00f3n de
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=La fecha en la cual la pr\u00f3xima acci\u00f3n de retenci\u00f3n reunir\u00e1 los requisitos
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Periodo de retenci\u00f3n
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Periodo de retenci\u00f3n
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Expresi\u00f3n de periodo de retenci\u00f3n
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Expresi\u00f3n de periodo de retenci\u00f3n
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Eventos de retenci\u00f3n elegibles
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Eventos de retenci\u00f3n elegibles
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Eventos de retenci\u00f3n
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Eventos de retenci\u00f3n
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Autoridad de retenci\u00f3n
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Autoridad de retenci\u00f3n
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Instrucciones de retenci\u00f3n
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Instrucciones de retenci\u00f3n
-rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Raz\u00f3n de bloqueo
-rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Raz\u00f3n de bloqueo
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=Per\u00edodo de revisi\u00f3n de documento de archivo vital
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=Per\u00edodo de revisi\u00f3n de documento de archivo vital
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Expresi\u00f3n de per\u00edodo de revisi\u00f3n
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Expresi\u00f3n de per\u00edodo de revisi\u00f3n
-
-rma_recordsmanagement.aspect.rma_versionedRecord.title=Documento de archivo versionado
-rma_recordsmanagement.aspect.rma_versionedRecord.decription=Documento de archivo versionado
-
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Actualizaci\u00f3n sin publicar
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Actualizaci\u00f3n sin publicar
-rma_recordsmanagement.property.rma_unpublishedUpdate.title=Actualizaci\u00f3n sin publicar
-rma_recordsmanagement.property.rma_unpublishedUpdate.description=Indica si existe una actualizaci\u00f3n sin publicar
-rma_recordsmanagement.property.rma_updateTo.title=Actualizar a
-rma_recordsmanagement.property.rma_updateTo.description=Destino de la actualizaci\u00f3n
-rma_recordsmanagement.property.rma_updatedProperties.title=Propiedades actualizadas
-rma_recordsmanagement.property.rma_updatedProperties.description=Las propiedades actualizadas
-rma_recordsmanagement.property.rma_publishInProgress.title=Publicaci\u00f3n en curso
-rma_recordsmanagement.property.rma_publishInProgress.description=Indica si una publicaci\u00f3n se encuentra en curso
-
-rma_recordsmanagement.aspect.dod_ghosted.title=Documento de archivo solo de metadatos
-rma_recordsmanagement.aspect.dod_ghosted.description=Documento de archivo solo de metadatos
-
-listconstraint.rmc_tlList.title=Ubicaciones de la transferencia
+rma_recordsmanagement.description=Modelo de contenido de gesti\u00f3n de documentos de archivo
+
+rma_recordsmanagement.type.rma_rmsite.title=Sitio de gesti\u00f3n de documentos de archivo
+rma_recordsmanagement.type.rma_rmsite.description=Sitio especializado para gesti\u00f3n de documentos de archivo
+
+rma_recordsmanagement.type.rma_caveatConfig.title=Configuraci\u00f3n de los controles de seguridad
+rma_recordsmanagement.type.rma_caveatConfig.decription=Configuraci\u00f3n de los controles de seguridad
+
+rma_recordsmanagement.type.rma_emailConfig.title=Configuraci\u00f3n de correo electr\u00f3nico
+rma_recordsmanagement.type.rma_emailConfig.decription=Configuraci\u00f3n de correo electr\u00f3nico
+
+rma_recordsmanagement.type.rma_recordsManagementContainer.title=Contenedor de gesti\u00f3n de documentos de archivo
+rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Contenedor de gesti\u00f3n de documentos de archivo
+
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Contenedor ra\u00edz de gesti\u00f3n de documentos de archivo
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Contenedor ra\u00edz de gesti\u00f3n de documentos de archivo
+
+rma_recordsmanagement.type.rma_dispositionSchedule.title=Planificaci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.type.rma_dispositionSchedule.decription=Planificaci\u00f3n de retenci\u00f3n
+
+rma_recordsmanagement.property.rma_dispositionAuthority.title=Autoridad de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionAuthority.decription=Autoridad de retenci\u00f3n
+
+rma_recordsmanagement.property.rma_dispositionInstructions.title=Instrucciones de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionInstructions.decription=Instrucciones de retenci\u00f3n
+
+rma_recordsmanagement.property.rma_recordLevelDisposition.title=Retenci\u00f3n de nivel de documento de archivo
+rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Retenci\u00f3n de nivel de documento de archivo
+
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Acciones de retenci\u00f3n
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Acciones de retenci\u00f3n
+
+rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Definici\u00f3n de acci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Definici\u00f3n de acci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionActionName.title=Nombre de acci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionActionName.decription=Nombre de acci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionDescription.title=Descripci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionDescription.decription=Descripci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionLocation.title=Ubicaci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionLocation.decription=Ubicaci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionPeriod.title=Periodo de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionPeriod.decription=Periodo de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Propiedad del periodo de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Propiedad del periodo de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionEvent.title=Evento de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionEvent.decription=Evento de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionEventCombination.title=Combinaci\u00f3n de evento de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Combinaci\u00f3n de evento de retenci\u00f3n
+
+rma_recordsmanagement.type.rma_recordFolder.title=Carpeta de documentos de archivo
+rma_recordsmanagement.type.rma_recordFolder.decription=Carpeta de documentos de archivo
+rma_recordsmanagement.property.rma_isClosed.title=Documento de archivo
+rma_recordsmanagement.property.rma_isClosed.decription=Documento de archivo
+
+rma_recordsmanagement.type.rma_recordCategory.title=Categor\u00eda de documentos de archivo
+rma_recordsmanagement.type.rma_recordCategory.decription=Categor\u00eda de documentos de archivo
+
+rma_recordsmanagement.type.rma_nonElectronicDocument.title=Documento no electr\u00f3nico
+rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Documento no electr\u00f3nico
+rma_recordsmanagement.property.rma_physicalSize.title=Tama\u00f1o f\u00edsico
+rma_recordsmanagement.property.rma_physicalSize.decription=El tama\u00f1o del documento en metros lineales.
+rma_recordsmanagement.property.rma_numberOfCopies.title=N\u00famero de copias
+rma_recordsmanagement.property.rma_numberOfCopies.description=El n\u00famero de copias del documento.
+rma_recordsmanagement.property.rma_storageLocation.title=Ubicaci\u00f3n de almacenamiento
+rma_recordsmanagement.property.rma_storageLocation.decription=La ubicaci\u00f3n f\u00edsica de almacenamiento del documento de archivo.
+rma_recordsmanagement.property.rma_shelf.title=Estanter\u00eda
+rma_recordsmanagement.property.rma_shelf.decription=La estanter\u00eda en la que est\u00e1 guardado el documento de archivo.
+rma_recordsmanagement.property.rma_box.title=Caja
+rma_recordsmanagement.property.rma_box.description=La caja en la que est\u00e1 guardado el documento de archivo.
+rma_recordsmanagement.property.rma_file.title=Fichero
+rma_recordsmanagement.property.rma_file.decription=El fichero en el que est\u00e1 guardado el documento de archivo.
+
+rma_recordsmanagement.type.rma_dispositionAction.title=Acci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.type.rma_dispositionAction.decription=Acci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionActionId.title=ID de acci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionActionId.decription=ID de acci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionAction.title=Acci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionAction.decription=Acci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionAsOf.title=Acci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionAsOf.decription=Acci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Eventos de retenci\u00f3n elegibles
+rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Eventos de retenci\u00f3n elegibles
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Acci\u00f3n de retenci\u00f3n iniciada en
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Acci\u00f3n de retenci\u00f3n iniciada en
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Acci\u00f3n de retenci\u00f3n iniciada por
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Acci\u00f3n de retenci\u00f3n iniciada por
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Acci\u00f3n de retenci\u00f3n completada en
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Acci\u00f3n de retenci\u00f3n completada en
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Acci\u00f3n de retenci\u00f3n completada por
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Acci\u00f3n de retenci\u00f3n completada por
+rma_recordsmanagement.association.rma_eventExecutions.title=Ejecuciones de evento
+rma_recordsmanagement.association.rma_eventExecutions.decription=Ejecuciones de evento
+
+rma_recordsmanagement.type.rma_eventExecution.title=Ejecuci\u00f3n de evento
+rma_recordsmanagement.type.rma_eventExecution.decription=Ejecuci\u00f3n de evento
+rma_recordsmanagement.property.rma_eventExecutionName.title=Nombre de evento
+rma_recordsmanagement.property.rma_eventExecutionName.decription=Nombre de evento
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Evento autom\u00e1tico
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Evento autom\u00e1tico
+rma_recordsmanagement.property.rma_eventExecutionComplete.title=Evento completo
+rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Evento completo
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Evento completado por
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Evento completado por
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Evento completado en
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Evento completado en
+
+rma_recordsmanagement.type.rma_hold.title=Bloqueo
+rma_recordsmanagement.type.rma_hold.decription=Bloqueo
+rma_recordsmanagement.property.rma_holdReason.title=Raz\u00f3n de bloqueo
+rma_recordsmanagement.property.rma_holdReason.decription=Raz\u00f3n de bloqueo
+rma_recordsmanagement.association.rma_frozenRecords.title=Documentos de archivo bloqueados
+rma_recordsmanagement.association.rma_frozenRecords.decription=Documentos de archivo bloqueados
+
+rma_recordsmanagement.type.rma_transfer.title=Transferencia
+rma_recordsmanagement.type.rma_transfer.decription=Transferencia
+rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Indicador de adhesi\u00f3n y transferencia
+rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Indicador de adhesi\u00f3n y transferencia
+rma_recordsmanagement.property.rma_transferPDFIndicator.title=Indicador de transferencia de PDF
+rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Indicador de transferencia de PDF
+rma_recordsmanagement.property.rma_transferLocation.title=Transferencia de PDF
+rma_recordsmanagement.property.rma_transferLocation.decription=Transferencia de PDF
+rma_recordsmanagement.association.rma_transferred.title=Transferido
+rma_recordsmanagement.association.rma_transferred.decription=Transferido
+
+rma_recordsmanagement.aspect.rma_filePlanComponent.title=Componente del plan de ficheros
+rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Componente del plan de ficheros
+rma_recordsmanagement.property.rma_rootNodeRef.title=Nodo ra\u00edz
+rma_recordsmanagement.property.rma_rootNodeRef.decription=Nodo ra\u00edz
+
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Ra\u00edz de gesti\u00f3n de documentos de archivo
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Ra\u00edz de gesti\u00f3n de documentos de archivo
+rma_recordsmanagement.association.rma_holds.title=Bloqueos
+rma_recordsmanagement.association.rma_holds.decription=Bloqueos
+rma_recordsmanagement.association.rma_transfers.title=Transferencias
+rma_recordsmanagement.association.rma_transfers.decription=Transferencias
+
+rma_recordsmanagement.aspect.rma_declaredRecord.title=Documento de archivo completado
+rma_recordsmanagement.aspect.rma_declaredRecord.decription=Documento de archivo completado
+rma_recordsmanagement.property.rma_declaredAt.title=Fecha de finalizaci\u00f3n
+rma_recordsmanagement.property.rma_declaredAt.decription=Fecha de finalizaci\u00f3n
+rma_recordsmanagement.property.rma_declaredBy.title=Completado por
+rma_recordsmanagement.property.rma_declaredBy.decription=Completado por
+
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Identificador de componente de documento de archivo
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Identificador de componente de documento de archivo
+rma_recordsmanagement.property.rma_identifier.title=ID de documento de archivo
+rma_recordsmanagement.property.rma_identifier.decription=Identificador \u00fanico de documento de archivo
+rma_recordsmanagement.property.rma_dbUniquenessId.title=Singularidad de la base de datos
+rma_recordsmanagement.property.rma_dbUniquenessId.decription=Singularidad de la base de datos
+
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Definici\u00f3n de documento de archivo vital
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Definici\u00f3n de documento de archivo vital
+
+rma_recordsmanagement.property.rma_reviewPeriod.title=Per\u00edodo de revisi\u00f3n
+rma_recordsmanagement.property.rma_reviewPeriod.decription=Per\u00edodo de revisi\u00f3n
+rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Indicador de documento de archivo vital
+rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Indicador de documento de archivo vital
+
+rma_recordsmanagement.aspect.rma_record.title=Documento de archivo
+rma_recordsmanagement.aspect.rma_record.decription=Documento de archivo
+rma_recordsmanagement.property.rma_dateFiled.title=Fecha de archivado
+rma_recordsmanagement.property.rma_dateFiled.decription=Fecha de archivado
+rma_recordsmanagement.property.rma_origionalName=Nombre original
+
+rma_recordsmanagement.aspect.rma_recordMetaData.title=Metadatos de documento de archivo
+rma_recordsmanagement.aspect.rma_recordMetaData.description=Aspecto de marcador para metadatos del documento de archivo
+
+rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Detalles de documento de archivo com\u00fan
+rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Metadatos comunes para todos los tipos de documento de archivo
+rma_recordsmanagement.property.rma_location.title=Ubicaci\u00f3n
+rma_recordsmanagement.property.rma_location.decription=Ubicaci\u00f3n
+
+rma_recordsmanagement.aspect.rma_vitalRecord.title=Documento de archivo vital
+rma_recordsmanagement.aspect.rma_vitalRecord.decription=Documento de archivo vital
+rma_recordsmanagement.property.rma_reviewAsOf.title=Pr\u00f3xima revisi\u00f3n
+rma_recordsmanagement.property.rma_reviewAsOf.decription=Pr\u00f3xima revisi\u00f3n
+rma_recordsmanagement.property.rma_notificationIssued.title=Indica que se ha emitido una notificaci\u00f3n de pendiente de revisi\u00f3n para este documento de archivo
+rma_recordsmanagement.property.rma_notificationIssued.decription=Indica que se ha emitido una notificaci\u00f3n de pendiente de revisi\u00f3n para este documento de archivo
+
+rma_recordsmanagement.aspect.rma_scheduled.title=Planificado
+rma_recordsmanagement.aspect.rma_scheduled.decription=Planificado
+rma_recordsmanagement.association.rma_dispositionSchedule.title=Planificaci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.association.rma_dispositionSchedule.decription=Planificaci\u00f3n de retenci\u00f3n
+
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Ciclo de vida de retenci\u00f3n
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Ciclo de vida de retenci\u00f3n
+rma_recordsmanagement.association.rma_nextDispositionAction.title=Pr\u00f3xima acci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.association.rma_nextDispositionAction.decription=Pr\u00f3xima acci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.association.rma_dispositionActionHistory.title=Historial de acciones de retenci\u00f3n
+rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Historial de acciones de retenci\u00f3n
+
+rma_recordsmanagement.aspect.rma_cutOff.title=Interrumpir
+rma_recordsmanagement.aspect.rma_cutOff.decription=Interrumpir
+rma_recordsmanagement.property.rma_cutOffDate.title=Fecha de interrupci\u00f3n
+rma_recordsmanagement.property.rma_cutOffDate.decription=Fecha de interrupci\u00f3n
+
+rma_recordsmanagement.aspect.rma_transferred.title=Transferido
+rma_recordsmanagement.aspect.rma_transferred.decription=Transferido
+
+rma_recordsmanagement.aspect.rma_ascended.title=Ascendido
+rma_recordsmanagement.aspect.rma_ascended.decription=Ascendido
+
+rma_recordsmanagement.aspect.rma_frozen.title=En espera
+rma_recordsmanagement.aspect.rma_frozen.decription=En espera
+rma_recordsmanagement.property.rma_frozenAt.title=Bloqueado en
+rma_recordsmanagement.property.rma_frozenAt.decription=Bloqueado en
+rma_recordsmanagement.property.rma_frozenBy.title=Bloqueado por
+rma_recordsmanagement.property.rma_frozenBy.decription=Bloqueado por
+
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Ra\u00edz de configuraci\u00f3n de advertencia
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Ra\u00edz de configuraci\u00f3n de advertencia
+rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Configuraci\u00f3n de advertencia
+rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Configuraci\u00f3n de advertencia
+
+rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Ra\u00edz de configuraci\u00f3n de correo electr\u00f3nico
+rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Ra\u00edz de configuraci\u00f3n de correo electr\u00f3nico
+rma_recordsmanagement.association.rma_emailConfigAssoc.title=Configuraci\u00f3n de correo electr\u00f3nico
+rma_recordsmanagement.association.rma_emailConfigAssoc.description=Configuraci\u00f3n de correo electr\u00f3nico
+
+rma_recordsmanagement.aspect.rma_recordSearch.title=B\u00fasqueda de documentos de archivo
+rma_recordsmanagement.aspect.rma_recordSearch.decription=Informaci\u00f3n para b\u00fasqueda de Records Management
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Tiene planificaci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Indica si el elemento tiene planificaci\u00f3n de retenci\u00f3n asociada
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Nombre de acci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=El nombre de la pr\u00f3xima acci\u00f3n de retenci\u00f3n
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Acci\u00f3n de retenci\u00f3n de
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=La fecha en la cual la pr\u00f3xima acci\u00f3n de retenci\u00f3n reunir\u00e1 los requisitos
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Periodo de retenci\u00f3n
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Periodo de retenci\u00f3n
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Expresi\u00f3n de periodo de retenci\u00f3n
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Expresi\u00f3n de periodo de retenci\u00f3n
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Eventos de retenci\u00f3n elegibles
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Eventos de retenci\u00f3n elegibles
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Eventos de retenci\u00f3n
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Eventos de retenci\u00f3n
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Autoridad de retenci\u00f3n
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Autoridad de retenci\u00f3n
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Instrucciones de retenci\u00f3n
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Instrucciones de retenci\u00f3n
+rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Raz\u00f3n de bloqueo
+rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Raz\u00f3n de bloqueo
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=Per\u00edodo de revisi\u00f3n de documento de archivo vital
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=Per\u00edodo de revisi\u00f3n de documento de archivo vital
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Expresi\u00f3n de per\u00edodo de revisi\u00f3n
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Expresi\u00f3n de per\u00edodo de revisi\u00f3n
+
+rma_recordsmanagement.aspect.rma_versionedRecord.title=Documento de archivo versionado
+rma_recordsmanagement.aspect.rma_versionedRecord.decription=Documento de archivo versionado
+
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Actualizaci\u00f3n sin publicar
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Actualizaci\u00f3n sin publicar
+rma_recordsmanagement.property.rma_unpublishedUpdate.title=Actualizaci\u00f3n sin publicar
+rma_recordsmanagement.property.rma_unpublishedUpdate.description=Indica si existe una actualizaci\u00f3n sin publicar
+rma_recordsmanagement.property.rma_updateTo.title=Actualizar a
+rma_recordsmanagement.property.rma_updateTo.description=Destino de la actualizaci\u00f3n
+rma_recordsmanagement.property.rma_updatedProperties.title=Propiedades actualizadas
+rma_recordsmanagement.property.rma_updatedProperties.description=Las propiedades actualizadas
+rma_recordsmanagement.property.rma_publishInProgress.title=Publicaci\u00f3n en curso
+rma_recordsmanagement.property.rma_publishInProgress.description=Indica si una publicaci\u00f3n se encuentra en curso
+
+rma_recordsmanagement.aspect.dod_ghosted.title=Documento de archivo solo de metadatos
+rma_recordsmanagement.aspect.dod_ghosted.description=Documento de archivo solo de metadatos
+
+listconstraint.rmc_tlList.title=Ubicaciones de la transferencia
listconstraint.rmc_smList.title=Marcas complementarias
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_fr.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_fr.properties
index f02d180488..bc0e4c5526 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_fr.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_fr.properties
@@ -1,265 +1,265 @@
-rma_recordsmanagement.description=Mod\u00e8le de contenu de gestion des archives
-
-rma_recordsmanagement.type.rma_rmsite.title=Site de gestion des archives
-rma_recordsmanagement.type.rma_rmsite.description=Site sp\u00e9cialis\u00e9 pour la gestion des archives
-
-rma_recordsmanagement.type.rma_caveatConfig.title=Configuration des contr\u00f4les de s\u00e9curit\u00e9
-rma_recordsmanagement.type.rma_caveatConfig.decription=Configuration des contr\u00f4les de s\u00e9curit\u00e9
-
-rma_recordsmanagement.type.rma_emailConfig.title=Configuration du courriel
-rma_recordsmanagement.type.rma_emailConfig.decription=Configuration du courriel
-
-rma_recordsmanagement.type.rma_recordsManagementContainer.title=Conteneur de gestion des archives
-rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Conteneur de gestion des archives
-
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Conteneur de la racine du site de gestion des archives
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Conteneur de la racine du site de gestion des archives
-
-rma_recordsmanagement.type.rma_dispositionSchedule.title=R\u00e8gle de r\u00e9tention
-rma_recordsmanagement.type.rma_dispositionSchedule.decription=R\u00e8gle de r\u00e9tention
-
-rma_recordsmanagement.property.rma_dispositionAuthority.title=D\u00e9tenteur de la r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionAuthority.decription=D\u00e9tenteur de la r\u00e9tention
-
-rma_recordsmanagement.property.rma_dispositionInstructions.title=Instructions de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionInstructions.decription=Instructions de r\u00e9tention
-
-rma_recordsmanagement.property.rma_recordLevelDisposition.title=R\u00e9tention au niveau du document d'archives
-rma_recordsmanagement.property.rma_recordLevelDisposition.decription=R\u00e9tention au niveau du document d'archives
-
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Actions de r\u00e9tention
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Actions de r\u00e9tention
-
-rma_recordsmanagement.type.rma_dispositionActionDefinition.title=D\u00e9finition de l'action de r\u00e9tention
-rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=D\u00e9finition de l'action de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionActionName.title=Nom de l'action de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionActionName.decription=Nom de l'action de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionDescription.title=Description de la r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionDescription.decription=Description de la r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionLocation.title=Emplacement de la r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionLocation.decription=Emplacement de la r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionPeriod.title=P\u00e9riode de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionPeriod.decription=P\u00e9riode de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Propri\u00e9t\u00e9 de la p\u00e9riode de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Propri\u00e9t\u00e9 de la p\u00e9riode de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionEvent.title=Ev\u00e9nement de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionEvent.decription=Ev\u00e9nement de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionEventCombination.title=Combinaison d'\u00e9v\u00e9nements de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Combinaison d'\u00e9v\u00e9nements de r\u00e9tention
-
-rma_recordsmanagement.type.rma_recordFolder.title=Dossier d'archives
-rma_recordsmanagement.type.rma_recordFolder.decription=Dossier d'archives
-rma_recordsmanagement.property.rma_isClosed.title=Document d'archives
-rma_recordsmanagement.property.rma_isClosed.decription=Document d'archives
-
-rma_recordsmanagement.type.rma_recordCategory.title=Cat\u00e9gorie de document d'archives
-rma_recordsmanagement.type.rma_recordCategory.decription=Cat\u00e9gorie de document d'archives
-
-rma_recordsmanagement.type.rma_nonElectronicDocument.title=Document non \u00e9lectronique
-rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Document non \u00e9lectronique
-rma_recordsmanagement.property.rma_physicalSize.title=Taille physique
-rma_recordsmanagement.property.rma_physicalSize.decription=Taille du document mesur\u00e9e en m\u00e8tres lin\u00e9aires.
-rma_recordsmanagement.property.rma_numberOfCopies.title=Nombre de copies
-rma_recordsmanagement.property.rma_numberOfCopies.description=Nombre de copies du document.
-rma_recordsmanagement.property.rma_storageLocation.title=Emplacement de stockage
-rma_recordsmanagement.property.rma_storageLocation.decription=Emplacement de stockage physique du document d'archives.
-rma_recordsmanagement.property.rma_shelf.title=Etag\u00e8re
-rma_recordsmanagement.property.rma_shelf.decription=Etag\u00e8re sur laquelle le document d'archives est stock\u00e9.
-rma_recordsmanagement.property.rma_box.title=Bo\u00eete
-rma_recordsmanagement.property.rma_box.description=Bo\u00eete dans laquelle le document d'archives est stock\u00e9.
-rma_recordsmanagement.property.rma_file.title=Fichier
-rma_recordsmanagement.property.rma_file.decription=Fichier dans lequel le document d'archives est stock\u00e9.
-
-rma_recordsmanagement.type.rma_dispositionAction.title=Action de r\u00e9tention
-rma_recordsmanagement.type.rma_dispositionAction.decription=Action de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionActionId.title=Identifiant de l'action de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionActionId.decription=Identifiant de l'action de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionAction.title=Action de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionAction.decription=Action de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionAsOf.title=Action de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionAsOf.decription=Action de r\u00e9tention
-rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Ev\u00e9nements de r\u00e9tention \u00e9ligibles
-rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Ev\u00e9nements de r\u00e9tention \u00e9ligibles
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Action de r\u00e9tention d\u00e9marr\u00e9e \u00e0
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Action de r\u00e9tention d\u00e9marr\u00e9e \u00e0
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Action de r\u00e9tention d\u00e9marr\u00e9e par
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Action de r\u00e9tention d\u00e9marr\u00e9e par
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Action de r\u00e9tention termin\u00e9e \u00e0
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Action de r\u00e9tention termin\u00e9e \u00e0
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Action de r\u00e9tention termin\u00e9e par
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Action de r\u00e9tention termin\u00e9e par
-rma_recordsmanagement.association.rma_eventExecutions.title=Ex\u00e9cutions de l'\u00e9v\u00e9nement
-rma_recordsmanagement.association.rma_eventExecutions.decription=Ex\u00e9cutions de l'\u00e9v\u00e9nement
-
-rma_recordsmanagement.type.rma_eventExecution.title=Ex\u00e9cution de l'\u00e9v\u00e9nement
-rma_recordsmanagement.type.rma_eventExecution.decription=Ex\u00e9cution de l'\u00e9v\u00e9nement
-rma_recordsmanagement.property.rma_eventExecutionName.title=Nom d'\u00e9v\u00e9nement
-rma_recordsmanagement.property.rma_eventExecutionName.decription=Nom d'\u00e9v\u00e9nement
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Ev\u00e9nement automatique
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Ev\u00e9nement automatique
-rma_recordsmanagement.property.rma_eventExecutionComplete.title=Ev\u00e9nement termin\u00e9
-rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Ev\u00e9nement termin\u00e9
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Ev\u00e9nement termin\u00e9 par
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Ev\u00e9nement termin\u00e9 par
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Ev\u00e9nement termin\u00e9 \u00e0
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Ev\u00e9nement termin\u00e9 \u00e0
-
-rma_recordsmanagement.type.rma_hold.title=Suspendre
-rma_recordsmanagement.type.rma_hold.decription=Suspendre
-rma_recordsmanagement.property.rma_holdReason.title=Motif de suspension
-rma_recordsmanagement.property.rma_holdReason.decription=Motif de suspension
-rma_recordsmanagement.association.rma_frozenRecords.title=Documents d'archives suspendus
-rma_recordsmanagement.association.rma_frozenRecords.decription=Documents d'archives suspendus
-
-rma_recordsmanagement.type.rma_transfer.title=Transf\u00e9rer
-rma_recordsmanagement.type.rma_transfer.decription=Transf\u00e9rer
-rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Transf\u00e9rer l'indicateur de versement \u00e0 un autre organisme
-rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Transf\u00e9rer l'indicateur de versement \u00e0 un autre organisme
-rma_recordsmanagement.property.rma_transferPDFIndicator.title=Transf\u00e9rer l'indicateur PDF
-rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Transf\u00e9rer l'indicateur PDF
-rma_recordsmanagement.property.rma_transferLocation.title=Transf\u00e9rer le PDF
-rma_recordsmanagement.property.rma_transferLocation.decription=Transf\u00e9rer le PDF
-rma_recordsmanagement.association.rma_transferred.title=Transf\u00e9r\u00e9
-rma_recordsmanagement.association.rma_transferred.decription=Transf\u00e9r\u00e9
-
-rma_recordsmanagement.aspect.rma_filePlanComponent.title=Composant du plan de classification
-rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Composant du plan de classification
-rma_recordsmanagement.property.rma_rootNodeRef.title=N\u0153ud racine
-rma_recordsmanagement.property.rma_rootNodeRef.decription=N\u0153ud racine
-
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Racine du site de gestion des archives
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Racine du site de gestion des archives
-rma_recordsmanagement.association.rma_holds.title=Suspensions
-rma_recordsmanagement.association.rma_holds.decription=Suspensions
-rma_recordsmanagement.association.rma_transfers.title=Transferts
-rma_recordsmanagement.association.rma_transfers.decription=Transferts
-
-rma_recordsmanagement.aspect.rma_declaredRecord.title=Document d'archives complet
-rma_recordsmanagement.aspect.rma_declaredRecord.decription=Document d'archives complet
-rma_recordsmanagement.property.rma_declaredAt.title=Date d'ach\u00e8vement
-rma_recordsmanagement.property.rma_declaredAt.decription=Date d'ach\u00e8vement
-rma_recordsmanagement.property.rma_declaredBy.title=Compl\u00e9t\u00e9 par
-rma_recordsmanagement.property.rma_declaredBy.decription=Compl\u00e9t\u00e9 par
-
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Identifiant de composant de document d'archives
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Identifiant de composant de document d'archives
-rma_recordsmanagement.property.rma_identifier.title=ID du document d'archives
-rma_recordsmanagement.property.rma_identifier.decription=Identifiant unique de document d'archives
-rma_recordsmanagement.property.rma_dbUniquenessId.title=Unicit\u00e9 de base de donn\u00e9es
-rma_recordsmanagement.property.rma_dbUniquenessId.decription=Unicit\u00e9 de base de donn\u00e9es
-
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=D\u00e9finition du document d'archives essentiel
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=D\u00e9finition du document d'archives essentiel
-
-rma_recordsmanagement.property.rma_reviewPeriod.title=P\u00e9riode de r\u00e9vision
-rma_recordsmanagement.property.rma_reviewPeriod.decription=P\u00e9riode de r\u00e9vision
-rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Identifiant de document d'archives essentiel
-rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Identifiant de document d'archives essentiel
-
-rma_recordsmanagement.aspect.rma_record.title=Document d'archives
-rma_recordsmanagement.aspect.rma_record.decription=Document d'archives
-rma_recordsmanagement.property.rma_dateFiled.title=Date de versement au site des archives
-rma_recordsmanagement.property.rma_dateFiled.decription=Date de versement au site des archives
-rma_recordsmanagement.property.rma_origionalName=Nom d'origine
-
-rma_recordsmanagement.aspect.rma_recordMetaData.title=M\u00e9tadonn\u00e9es de document d'archives
-rma_recordsmanagement.aspect.rma_recordMetaData.description=Aspect du marqueur de m\u00e9tadonn\u00e9es de document d'archives
-
-rma_recordsmanagement.aspect.rma_commonRecordDetails.title=D\u00e9tails des documents d'archives communs
-rma_recordsmanagement.aspect.rma_commonRecordDetails.description=M\u00e9tadonn\u00e9es communes \u00e0 tous les types de document d'archives
-rma_recordsmanagement.property.rma_location.title=Emplacement
-rma_recordsmanagement.property.rma_location.decription=Emplacement
-
-rma_recordsmanagement.aspect.rma_vitalRecord.title=Document d'archives essentiel
-rma_recordsmanagement.aspect.rma_vitalRecord.decription=Document d'archives essentiel
-rma_recordsmanagement.property.rma_reviewAsOf.title=V\u00e9rification suivante
-rma_recordsmanagement.property.rma_reviewAsOf.decription=V\u00e9rification suivante
-rma_recordsmanagement.property.rma_notificationIssued.title=Indique qu'une notification d'arriv\u00e9e \u00e0 \u00e9ch\u00e9ance pour v\u00e9rification a \u00e9t\u00e9 \u00e9mise pour ce document d'archives
-rma_recordsmanagement.property.rma_notificationIssued.decription=Indique qu'une notification d'arriv\u00e9e \u00e0 \u00e9ch\u00e9ance pour v\u00e9rification a \u00e9t\u00e9 \u00e9mise pour ce document d'archives
-
-rma_recordsmanagement.aspect.rma_scheduled.title=Planifi\u00e9
-rma_recordsmanagement.aspect.rma_scheduled.decription=Planifi\u00e9
-rma_recordsmanagement.association.rma_dispositionSchedule.title=R\u00e8gle de r\u00e9tention
-rma_recordsmanagement.association.rma_dispositionSchedule.decription=R\u00e8gle de r\u00e9tention
-
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Etapes du d\u00e9lai de r\u00e9tention
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Etapes du d\u00e9lai de r\u00e9tention
-rma_recordsmanagement.association.rma_nextDispositionAction.title=Etape suivante du d\u00e9lai de r\u00e9tention
-rma_recordsmanagement.association.rma_nextDispositionAction.decription=Etape suivante du d\u00e9lai de r\u00e9tention
-rma_recordsmanagement.association.rma_dispositionActionHistory.title=Historique des actions de r\u00e9tention
-rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Historique des actions de r\u00e9tention
-
-rma_recordsmanagement.aspect.rma_cutOff.title=D\u00e9classer
-rma_recordsmanagement.aspect.rma_cutOff.decription=D\u00e9classer
-rma_recordsmanagement.property.rma_cutOffDate.title=Date de d\u00e9classement
-rma_recordsmanagement.property.rma_cutOffDate.decription=Date de d\u00e9classement
-
-rma_recordsmanagement.aspect.rma_transferred.title=Transf\u00e9r\u00e9
-rma_recordsmanagement.aspect.rma_transferred.decription=Transf\u00e9r\u00e9
-
-rma_recordsmanagement.aspect.rma_ascended.title=Mont\u00e9
-rma_recordsmanagement.aspect.rma_ascended.decription=Mont\u00e9
-
-rma_recordsmanagement.aspect.rma_frozen.title=Suspendu
-rma_recordsmanagement.aspect.rma_frozen.decription=Suspendu
-rma_recordsmanagement.property.rma_frozenAt.title=Suspendu \u00e0
-rma_recordsmanagement.property.rma_frozenAt.decription=Suspendu \u00e0
-rma_recordsmanagement.property.rma_frozenBy.title=Suspendu par
-rma_recordsmanagement.property.rma_frozenBy.decription=Suspendu par
-
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Racine de configuration des avertissements
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Racine de configuration des avertissements
-rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Configuration des avertissements
-rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Configuration des avertissements
-
-rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Racine de configuration d'e-mail
-rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Racine de configuration d'e-mail
-rma_recordsmanagement.association.rma_emailConfigAssoc.title=Configuration du courriel
-rma_recordsmanagement.association.rma_emailConfigAssoc.description=Configuration du courriel
-
-rma_recordsmanagement.aspect.rma_recordSearch.title=Recherche de document d'archives
-rma_recordsmanagement.aspect.rma_recordSearch.decription=Informations pour prendre en charge la recherche dans la gestion des archives
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=A une r\u00e8gle de r\u00e9tention
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Indique si une r\u00e8gle de r\u00e9tention est associ\u00e9e \u00e0 l'\u00e9l\u00e9ment
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Nom de l'action de r\u00e9tention
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=Le nom de l'\u00e9tape suivante du d\u00e9lai de r\u00e9tention
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Action de r\u00e9tention de
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=La date \u00e0 laquelle l'\u00e9tape suivante du d\u00e9lai de r\u00e9tention devient \u00e9ligible
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=P\u00e9riode de r\u00e9tention
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=P\u00e9riode de r\u00e9tention
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Expression de la p\u00e9riode de r\u00e9tention
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Expression de la p\u00e9riode de r\u00e9tention
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Ev\u00e9nements de r\u00e9tention \u00e9ligibles
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Ev\u00e9nements de r\u00e9tention \u00e9ligibles
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Ev\u00e9nements de r\u00e9tention
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Ev\u00e9nements de r\u00e9tention
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=D\u00e9tenteur de la r\u00e9tention
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=D\u00e9tenteur de la r\u00e9tention
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Instructions de r\u00e9tention
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Instructions de r\u00e9tention
-rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Motif de suspension
-rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Motif de suspension
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=P\u00e9riode de v\u00e9rification du document d'archives essentiel
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=P\u00e9riode de v\u00e9rification du document d'archives essentiel
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Expression de p\u00e9riode de r\u00e9vision
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Expression de p\u00e9riode de r\u00e9vision
-
-rma_recordsmanagement.aspect.rma_versionedRecord.title=Document d'archives versionn\u00e9
-rma_recordsmanagement.aspect.rma_versionedRecord.decription=Document d'archives versionn\u00e9
-
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Mise \u00e0 jour non publi\u00e9e
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Mise \u00e0 jour non publi\u00e9e
-rma_recordsmanagement.property.rma_unpublishedUpdate.title=Mise \u00e0 jour non publi\u00e9e
-rma_recordsmanagement.property.rma_unpublishedUpdate.description=Indique s'il existe une mise \u00e0 jour non publi\u00e9e
-rma_recordsmanagement.property.rma_updateTo.title=Mettre \u00e0 jour vers
-rma_recordsmanagement.property.rma_updateTo.description=Destination de la mise \u00e0 jour
-rma_recordsmanagement.property.rma_updatedProperties.title=Propri\u00e9t\u00e9s mises \u00e0 jour
-rma_recordsmanagement.property.rma_updatedProperties.description=Les propri\u00e9t\u00e9s mises \u00e0 jour
-rma_recordsmanagement.property.rma_publishInProgress.title=Publication en cours
-rma_recordsmanagement.property.rma_publishInProgress.description=Indique si une publication est en cours
-
-rma_recordsmanagement.aspect.dod_ghosted.title=M\u00e9tadonn\u00e9es d'archives seulement
-rma_recordsmanagement.aspect.dod_ghosted.description=M\u00e9tadonn\u00e9es d'archives seulement
-
-listconstraint.rmc_tlList.title=Transf\u00e9rer les emplacements
+rma_recordsmanagement.description=Mod\u00e8le de contenu de gestion des archives
+
+rma_recordsmanagement.type.rma_rmsite.title=Site de gestion des archives
+rma_recordsmanagement.type.rma_rmsite.description=Site sp\u00e9cialis\u00e9 pour la gestion des archives
+
+rma_recordsmanagement.type.rma_caveatConfig.title=Configuration des contr\u00f4les de s\u00e9curit\u00e9
+rma_recordsmanagement.type.rma_caveatConfig.decription=Configuration des contr\u00f4les de s\u00e9curit\u00e9
+
+rma_recordsmanagement.type.rma_emailConfig.title=Configuration du courriel
+rma_recordsmanagement.type.rma_emailConfig.decription=Configuration du courriel
+
+rma_recordsmanagement.type.rma_recordsManagementContainer.title=Conteneur de gestion des archives
+rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Conteneur de gestion des archives
+
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Conteneur de la racine du site de gestion des archives
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Conteneur de la racine du site de gestion des archives
+
+rma_recordsmanagement.type.rma_dispositionSchedule.title=R\u00e8gle de r\u00e9tention
+rma_recordsmanagement.type.rma_dispositionSchedule.decription=R\u00e8gle de r\u00e9tention
+
+rma_recordsmanagement.property.rma_dispositionAuthority.title=D\u00e9tenteur de la r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionAuthority.decription=D\u00e9tenteur de la r\u00e9tention
+
+rma_recordsmanagement.property.rma_dispositionInstructions.title=Instructions de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionInstructions.decription=Instructions de r\u00e9tention
+
+rma_recordsmanagement.property.rma_recordLevelDisposition.title=R\u00e9tention au niveau du document d'archives
+rma_recordsmanagement.property.rma_recordLevelDisposition.decription=R\u00e9tention au niveau du document d'archives
+
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Actions de r\u00e9tention
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Actions de r\u00e9tention
+
+rma_recordsmanagement.type.rma_dispositionActionDefinition.title=D\u00e9finition de l'action de r\u00e9tention
+rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=D\u00e9finition de l'action de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionActionName.title=Nom de l'action de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionActionName.decription=Nom de l'action de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionDescription.title=Description de la r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionDescription.decription=Description de la r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionLocation.title=Emplacement de la r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionLocation.decription=Emplacement de la r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionPeriod.title=P\u00e9riode de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionPeriod.decription=P\u00e9riode de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Propri\u00e9t\u00e9 de la p\u00e9riode de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Propri\u00e9t\u00e9 de la p\u00e9riode de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionEvent.title=Ev\u00e9nement de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionEvent.decription=Ev\u00e9nement de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionEventCombination.title=Combinaison d'\u00e9v\u00e9nements de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Combinaison d'\u00e9v\u00e9nements de r\u00e9tention
+
+rma_recordsmanagement.type.rma_recordFolder.title=Dossier d'archives
+rma_recordsmanagement.type.rma_recordFolder.decription=Dossier d'archives
+rma_recordsmanagement.property.rma_isClosed.title=Document d'archives
+rma_recordsmanagement.property.rma_isClosed.decription=Document d'archives
+
+rma_recordsmanagement.type.rma_recordCategory.title=Cat\u00e9gorie de document d'archives
+rma_recordsmanagement.type.rma_recordCategory.decription=Cat\u00e9gorie de document d'archives
+
+rma_recordsmanagement.type.rma_nonElectronicDocument.title=Document non \u00e9lectronique
+rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Document non \u00e9lectronique
+rma_recordsmanagement.property.rma_physicalSize.title=Taille physique
+rma_recordsmanagement.property.rma_physicalSize.decription=Taille du document mesur\u00e9e en m\u00e8tres lin\u00e9aires.
+rma_recordsmanagement.property.rma_numberOfCopies.title=Nombre de copies
+rma_recordsmanagement.property.rma_numberOfCopies.description=Nombre de copies du document.
+rma_recordsmanagement.property.rma_storageLocation.title=Emplacement de stockage
+rma_recordsmanagement.property.rma_storageLocation.decription=Emplacement de stockage physique du document d'archives.
+rma_recordsmanagement.property.rma_shelf.title=Etag\u00e8re
+rma_recordsmanagement.property.rma_shelf.decription=Etag\u00e8re sur laquelle le document d'archives est stock\u00e9.
+rma_recordsmanagement.property.rma_box.title=Bo\u00eete
+rma_recordsmanagement.property.rma_box.description=Bo\u00eete dans laquelle le document d'archives est stock\u00e9.
+rma_recordsmanagement.property.rma_file.title=Fichier
+rma_recordsmanagement.property.rma_file.decription=Fichier dans lequel le document d'archives est stock\u00e9.
+
+rma_recordsmanagement.type.rma_dispositionAction.title=Action de r\u00e9tention
+rma_recordsmanagement.type.rma_dispositionAction.decription=Action de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionActionId.title=Identifiant de l'action de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionActionId.decription=Identifiant de l'action de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionAction.title=Action de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionAction.decription=Action de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionAsOf.title=Action de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionAsOf.decription=Action de r\u00e9tention
+rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Ev\u00e9nements de r\u00e9tention \u00e9ligibles
+rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Ev\u00e9nements de r\u00e9tention \u00e9ligibles
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Action de r\u00e9tention d\u00e9marr\u00e9e \u00e0
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Action de r\u00e9tention d\u00e9marr\u00e9e \u00e0
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Action de r\u00e9tention d\u00e9marr\u00e9e par
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Action de r\u00e9tention d\u00e9marr\u00e9e par
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Action de r\u00e9tention termin\u00e9e \u00e0
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Action de r\u00e9tention termin\u00e9e \u00e0
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Action de r\u00e9tention termin\u00e9e par
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Action de r\u00e9tention termin\u00e9e par
+rma_recordsmanagement.association.rma_eventExecutions.title=Ex\u00e9cutions de l'\u00e9v\u00e9nement
+rma_recordsmanagement.association.rma_eventExecutions.decription=Ex\u00e9cutions de l'\u00e9v\u00e9nement
+
+rma_recordsmanagement.type.rma_eventExecution.title=Ex\u00e9cution de l'\u00e9v\u00e9nement
+rma_recordsmanagement.type.rma_eventExecution.decription=Ex\u00e9cution de l'\u00e9v\u00e9nement
+rma_recordsmanagement.property.rma_eventExecutionName.title=Nom d'\u00e9v\u00e9nement
+rma_recordsmanagement.property.rma_eventExecutionName.decription=Nom d'\u00e9v\u00e9nement
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Ev\u00e9nement automatique
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Ev\u00e9nement automatique
+rma_recordsmanagement.property.rma_eventExecutionComplete.title=Ev\u00e9nement termin\u00e9
+rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Ev\u00e9nement termin\u00e9
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Ev\u00e9nement termin\u00e9 par
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Ev\u00e9nement termin\u00e9 par
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Ev\u00e9nement termin\u00e9 \u00e0
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Ev\u00e9nement termin\u00e9 \u00e0
+
+rma_recordsmanagement.type.rma_hold.title=Suspendre
+rma_recordsmanagement.type.rma_hold.decription=Suspendre
+rma_recordsmanagement.property.rma_holdReason.title=Motif de suspension
+rma_recordsmanagement.property.rma_holdReason.decription=Motif de suspension
+rma_recordsmanagement.association.rma_frozenRecords.title=Documents d'archives suspendus
+rma_recordsmanagement.association.rma_frozenRecords.decription=Documents d'archives suspendus
+
+rma_recordsmanagement.type.rma_transfer.title=Transf\u00e9rer
+rma_recordsmanagement.type.rma_transfer.decription=Transf\u00e9rer
+rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Transf\u00e9rer l'indicateur de versement \u00e0 un autre organisme
+rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Transf\u00e9rer l'indicateur de versement \u00e0 un autre organisme
+rma_recordsmanagement.property.rma_transferPDFIndicator.title=Transf\u00e9rer l'indicateur PDF
+rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Transf\u00e9rer l'indicateur PDF
+rma_recordsmanagement.property.rma_transferLocation.title=Transf\u00e9rer le PDF
+rma_recordsmanagement.property.rma_transferLocation.decription=Transf\u00e9rer le PDF
+rma_recordsmanagement.association.rma_transferred.title=Transf\u00e9r\u00e9
+rma_recordsmanagement.association.rma_transferred.decription=Transf\u00e9r\u00e9
+
+rma_recordsmanagement.aspect.rma_filePlanComponent.title=Composant du plan de classification
+rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Composant du plan de classification
+rma_recordsmanagement.property.rma_rootNodeRef.title=N\u0153ud racine
+rma_recordsmanagement.property.rma_rootNodeRef.decription=N\u0153ud racine
+
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Racine du site de gestion des archives
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Racine du site de gestion des archives
+rma_recordsmanagement.association.rma_holds.title=Suspensions
+rma_recordsmanagement.association.rma_holds.decription=Suspensions
+rma_recordsmanagement.association.rma_transfers.title=Transferts
+rma_recordsmanagement.association.rma_transfers.decription=Transferts
+
+rma_recordsmanagement.aspect.rma_declaredRecord.title=Document d'archives complet
+rma_recordsmanagement.aspect.rma_declaredRecord.decription=Document d'archives complet
+rma_recordsmanagement.property.rma_declaredAt.title=Date d'ach\u00e8vement
+rma_recordsmanagement.property.rma_declaredAt.decription=Date d'ach\u00e8vement
+rma_recordsmanagement.property.rma_declaredBy.title=Compl\u00e9t\u00e9 par
+rma_recordsmanagement.property.rma_declaredBy.decription=Compl\u00e9t\u00e9 par
+
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Identifiant de composant de document d'archives
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Identifiant de composant de document d'archives
+rma_recordsmanagement.property.rma_identifier.title=ID du document d'archives
+rma_recordsmanagement.property.rma_identifier.decription=Identifiant unique de document d'archives
+rma_recordsmanagement.property.rma_dbUniquenessId.title=Unicit\u00e9 de base de donn\u00e9es
+rma_recordsmanagement.property.rma_dbUniquenessId.decription=Unicit\u00e9 de base de donn\u00e9es
+
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=D\u00e9finition du document d'archives essentiel
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=D\u00e9finition du document d'archives essentiel
+
+rma_recordsmanagement.property.rma_reviewPeriod.title=P\u00e9riode de r\u00e9vision
+rma_recordsmanagement.property.rma_reviewPeriod.decription=P\u00e9riode de r\u00e9vision
+rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Identifiant de document d'archives essentiel
+rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Identifiant de document d'archives essentiel
+
+rma_recordsmanagement.aspect.rma_record.title=Document d'archives
+rma_recordsmanagement.aspect.rma_record.decription=Document d'archives
+rma_recordsmanagement.property.rma_dateFiled.title=Date de versement au site des archives
+rma_recordsmanagement.property.rma_dateFiled.decription=Date de versement au site des archives
+rma_recordsmanagement.property.rma_origionalName=Nom d'origine
+
+rma_recordsmanagement.aspect.rma_recordMetaData.title=M\u00e9tadonn\u00e9es de document d'archives
+rma_recordsmanagement.aspect.rma_recordMetaData.description=Aspect du marqueur de m\u00e9tadonn\u00e9es de document d'archives
+
+rma_recordsmanagement.aspect.rma_commonRecordDetails.title=D\u00e9tails des documents d'archives communs
+rma_recordsmanagement.aspect.rma_commonRecordDetails.description=M\u00e9tadonn\u00e9es communes \u00e0 tous les types de document d'archives
+rma_recordsmanagement.property.rma_location.title=Emplacement
+rma_recordsmanagement.property.rma_location.decription=Emplacement
+
+rma_recordsmanagement.aspect.rma_vitalRecord.title=Document d'archives essentiel
+rma_recordsmanagement.aspect.rma_vitalRecord.decription=Document d'archives essentiel
+rma_recordsmanagement.property.rma_reviewAsOf.title=V\u00e9rification suivante
+rma_recordsmanagement.property.rma_reviewAsOf.decription=V\u00e9rification suivante
+rma_recordsmanagement.property.rma_notificationIssued.title=Indique qu'une notification d'arriv\u00e9e \u00e0 \u00e9ch\u00e9ance pour v\u00e9rification a \u00e9t\u00e9 \u00e9mise pour ce document d'archives
+rma_recordsmanagement.property.rma_notificationIssued.decription=Indique qu'une notification d'arriv\u00e9e \u00e0 \u00e9ch\u00e9ance pour v\u00e9rification a \u00e9t\u00e9 \u00e9mise pour ce document d'archives
+
+rma_recordsmanagement.aspect.rma_scheduled.title=Planifi\u00e9
+rma_recordsmanagement.aspect.rma_scheduled.decription=Planifi\u00e9
+rma_recordsmanagement.association.rma_dispositionSchedule.title=R\u00e8gle de r\u00e9tention
+rma_recordsmanagement.association.rma_dispositionSchedule.decription=R\u00e8gle de r\u00e9tention
+
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Etapes du d\u00e9lai de r\u00e9tention
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Etapes du d\u00e9lai de r\u00e9tention
+rma_recordsmanagement.association.rma_nextDispositionAction.title=Etape suivante du d\u00e9lai de r\u00e9tention
+rma_recordsmanagement.association.rma_nextDispositionAction.decription=Etape suivante du d\u00e9lai de r\u00e9tention
+rma_recordsmanagement.association.rma_dispositionActionHistory.title=Historique des actions de r\u00e9tention
+rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Historique des actions de r\u00e9tention
+
+rma_recordsmanagement.aspect.rma_cutOff.title=D\u00e9classer
+rma_recordsmanagement.aspect.rma_cutOff.decription=D\u00e9classer
+rma_recordsmanagement.property.rma_cutOffDate.title=Date de d\u00e9classement
+rma_recordsmanagement.property.rma_cutOffDate.decription=Date de d\u00e9classement
+
+rma_recordsmanagement.aspect.rma_transferred.title=Transf\u00e9r\u00e9
+rma_recordsmanagement.aspect.rma_transferred.decription=Transf\u00e9r\u00e9
+
+rma_recordsmanagement.aspect.rma_ascended.title=Mont\u00e9
+rma_recordsmanagement.aspect.rma_ascended.decription=Mont\u00e9
+
+rma_recordsmanagement.aspect.rma_frozen.title=Suspendu
+rma_recordsmanagement.aspect.rma_frozen.decription=Suspendu
+rma_recordsmanagement.property.rma_frozenAt.title=Suspendu \u00e0
+rma_recordsmanagement.property.rma_frozenAt.decription=Suspendu \u00e0
+rma_recordsmanagement.property.rma_frozenBy.title=Suspendu par
+rma_recordsmanagement.property.rma_frozenBy.decription=Suspendu par
+
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Racine de configuration des avertissements
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Racine de configuration des avertissements
+rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Configuration des avertissements
+rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Configuration des avertissements
+
+rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Racine de configuration d'e-mail
+rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Racine de configuration d'e-mail
+rma_recordsmanagement.association.rma_emailConfigAssoc.title=Configuration du courriel
+rma_recordsmanagement.association.rma_emailConfigAssoc.description=Configuration du courriel
+
+rma_recordsmanagement.aspect.rma_recordSearch.title=Recherche de document d'archives
+rma_recordsmanagement.aspect.rma_recordSearch.decription=Informations pour prendre en charge la recherche dans la gestion des archives
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=A une r\u00e8gle de r\u00e9tention
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Indique si une r\u00e8gle de r\u00e9tention est associ\u00e9e \u00e0 l'\u00e9l\u00e9ment
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Nom de l'action de r\u00e9tention
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=Le nom de l'\u00e9tape suivante du d\u00e9lai de r\u00e9tention
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Action de r\u00e9tention de
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=La date \u00e0 laquelle l'\u00e9tape suivante du d\u00e9lai de r\u00e9tention devient \u00e9ligible
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=P\u00e9riode de r\u00e9tention
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=P\u00e9riode de r\u00e9tention
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Expression de la p\u00e9riode de r\u00e9tention
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Expression de la p\u00e9riode de r\u00e9tention
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Ev\u00e9nements de r\u00e9tention \u00e9ligibles
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Ev\u00e9nements de r\u00e9tention \u00e9ligibles
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Ev\u00e9nements de r\u00e9tention
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Ev\u00e9nements de r\u00e9tention
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=D\u00e9tenteur de la r\u00e9tention
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=D\u00e9tenteur de la r\u00e9tention
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Instructions de r\u00e9tention
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Instructions de r\u00e9tention
+rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Motif de suspension
+rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Motif de suspension
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=P\u00e9riode de v\u00e9rification du document d'archives essentiel
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=P\u00e9riode de v\u00e9rification du document d'archives essentiel
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Expression de p\u00e9riode de r\u00e9vision
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Expression de p\u00e9riode de r\u00e9vision
+
+rma_recordsmanagement.aspect.rma_versionedRecord.title=Document d'archives versionn\u00e9
+rma_recordsmanagement.aspect.rma_versionedRecord.decription=Document d'archives versionn\u00e9
+
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Mise \u00e0 jour non publi\u00e9e
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Mise \u00e0 jour non publi\u00e9e
+rma_recordsmanagement.property.rma_unpublishedUpdate.title=Mise \u00e0 jour non publi\u00e9e
+rma_recordsmanagement.property.rma_unpublishedUpdate.description=Indique s'il existe une mise \u00e0 jour non publi\u00e9e
+rma_recordsmanagement.property.rma_updateTo.title=Mettre \u00e0 jour vers
+rma_recordsmanagement.property.rma_updateTo.description=Destination de la mise \u00e0 jour
+rma_recordsmanagement.property.rma_updatedProperties.title=Propri\u00e9t\u00e9s mises \u00e0 jour
+rma_recordsmanagement.property.rma_updatedProperties.description=Les propri\u00e9t\u00e9s mises \u00e0 jour
+rma_recordsmanagement.property.rma_publishInProgress.title=Publication en cours
+rma_recordsmanagement.property.rma_publishInProgress.description=Indique si une publication est en cours
+
+rma_recordsmanagement.aspect.dod_ghosted.title=M\u00e9tadonn\u00e9es d'archives seulement
+rma_recordsmanagement.aspect.dod_ghosted.description=M\u00e9tadonn\u00e9es d'archives seulement
+
+listconstraint.rmc_tlList.title=Transf\u00e9rer les emplacements
listconstraint.rmc_smList.title=Marquages compl\u00e9mentaires
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_it.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_it.properties
index dc6364b593..07bc88aa96 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_it.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_it.properties
@@ -1,265 +1,265 @@
-rma_recordsmanagement.description=Modello di contenuto di Records Management
-
-rma_recordsmanagement.type.rma_rmsite.title=Sito di Records Management
-rma_recordsmanagement.type.rma_rmsite.description=Sito specializzato di Records Management
-
-rma_recordsmanagement.type.rma_caveatConfig.title=Configurazione controlli di sicurezza
-rma_recordsmanagement.type.rma_caveatConfig.decription=Configurazione controlli di sicurezza
-
-rma_recordsmanagement.type.rma_emailConfig.title=Configurazione e-mail
-rma_recordsmanagement.type.rma_emailConfig.decription=Configurazione e-mail
-
-rma_recordsmanagement.type.rma_recordsManagementContainer.title=Contenitore di Records Management
-rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Contenitore di Records Management
-
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Contenitore radice di Records Management
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Contenitore radice di Records Management
-
-rma_recordsmanagement.type.rma_dispositionSchedule.title=Programma di conservazione
-rma_recordsmanagement.type.rma_dispositionSchedule.decription=Programma di conservazione
-
-rma_recordsmanagement.property.rma_dispositionAuthority.title=Autorit\u00e0 di conservazione
-rma_recordsmanagement.property.rma_dispositionAuthority.decription=Autorit\u00e0 di conservazione
-
-rma_recordsmanagement.property.rma_dispositionInstructions.title=Istruzioni per la conservazione
-rma_recordsmanagement.property.rma_dispositionInstructions.decription=Istruzioni per la conservazione
-
-rma_recordsmanagement.property.rma_recordLevelDisposition.title=Conservazione livello record
-rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Conservazione livello record
-
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Azioni di conservazione
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Azioni di conservazione
-
-rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Definizione azione di conservazione
-rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Definizione azione di conservazione
-rma_recordsmanagement.property.rma_dispositionActionName.title=Nome dell'azione di conservazione
-rma_recordsmanagement.property.rma_dispositionActionName.decription=Nome dell'azione di conservazione
-rma_recordsmanagement.property.rma_dispositionDescription.title=Descrizione conservazione
-rma_recordsmanagement.property.rma_dispositionDescription.decription=Descrizione conservazione
-rma_recordsmanagement.property.rma_dispositionLocation.title=Posizione di conservazione
-rma_recordsmanagement.property.rma_dispositionLocation.decription=Posizione di conservazione
-rma_recordsmanagement.property.rma_dispositionPeriod.title=Periodo di conservazione
-rma_recordsmanagement.property.rma_dispositionPeriod.decription=Periodo di conservazione
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Propriet\u00e0 del periodo di conservazione
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Propriet\u00e0 del periodo di conservazione
-rma_recordsmanagement.property.rma_dispositionEvent.title=Evento di conservazione
-rma_recordsmanagement.property.rma_dispositionEvent.decription=Evento di conservazione
-rma_recordsmanagement.property.rma_dispositionEventCombination.title=Combinazione eventi di conservazione
-rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Combinazione eventi di conservazione
-
-rma_recordsmanagement.type.rma_recordFolder.title=Cartella di record
-rma_recordsmanagement.type.rma_recordFolder.decription=Cartella di record
-rma_recordsmanagement.property.rma_isClosed.title=Record
-rma_recordsmanagement.property.rma_isClosed.decription=Record
-
-rma_recordsmanagement.type.rma_recordCategory.title=Categoria record
-rma_recordsmanagement.type.rma_recordCategory.decription=Categoria record
-
-rma_recordsmanagement.type.rma_nonElectronicDocument.title=Documento non elettronico
-rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Documento non elettronico
-rma_recordsmanagement.property.rma_physicalSize.title=Dimensioni fisiche
-rma_recordsmanagement.property.rma_physicalSize.decription=Le dimensioni del documento misurate in metri lineari.
-rma_recordsmanagement.property.rma_numberOfCopies.title=Numero di copie
-rma_recordsmanagement.property.rma_numberOfCopies.description=Il numero di copie del documento.
-rma_recordsmanagement.property.rma_storageLocation.title=Posizione di archiviazione
-rma_recordsmanagement.property.rma_storageLocation.decription=La posizione fisica di archiviazione del record.
-rma_recordsmanagement.property.rma_shelf.title=Ripiano
-rma_recordsmanagement.property.rma_shelf.decription=Il ripiano nel quale \u00e8 conservato il record.
-rma_recordsmanagement.property.rma_box.title=Casella
-rma_recordsmanagement.property.rma_box.description=La casella dove \u00e8 conservato il record.
-rma_recordsmanagement.property.rma_file.title=File
-rma_recordsmanagement.property.rma_file.decription=Il file dove \u00e8 conservato il record.
-
-rma_recordsmanagement.type.rma_dispositionAction.title=Azione di conservazione
-rma_recordsmanagement.type.rma_dispositionAction.decription=Azione di conservazione
-rma_recordsmanagement.property.rma_dispositionActionId.title=ID azione di conservazione
-rma_recordsmanagement.property.rma_dispositionActionId.decription=ID azione di conservazione
-rma_recordsmanagement.property.rma_dispositionAction.title=Azione di conservazione
-rma_recordsmanagement.property.rma_dispositionAction.decription=Azione di conservazione
-rma_recordsmanagement.property.rma_dispositionAsOf.title=Azione di conservazione
-rma_recordsmanagement.property.rma_dispositionAsOf.decription=Azione di conservazione
-rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Eventi di conservazione idonei
-rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Eventi di conservazione idonei
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Azione di conservazione iniziata alle ore
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Azione di conservazione iniziata alle ore
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Azione di conservazione iniziata da
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Azione di conservazione iniziata da
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Azione di conservazione completata alle ore
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Azione di conservazione completata alle ore
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Azione di conservazione completata da
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Azione di conservazione completata da
-rma_recordsmanagement.association.rma_eventExecutions.title=Esecuzioni evento
-rma_recordsmanagement.association.rma_eventExecutions.decription=Esecuzioni evento
-
-rma_recordsmanagement.type.rma_eventExecution.title=Esecuzione evento
-rma_recordsmanagement.type.rma_eventExecution.decription=Esecuzione evento
-rma_recordsmanagement.property.rma_eventExecutionName.title=Nome evento
-rma_recordsmanagement.property.rma_eventExecutionName.decription=Nome evento
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Evento automatico
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Evento automatico
-rma_recordsmanagement.property.rma_eventExecutionComplete.title=Evento completato
-rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Evento completato
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Evento completato da
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Evento completato da
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Evento completato alle ore
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Evento completato alle ore
-
-rma_recordsmanagement.type.rma_hold.title=Sospensione
-rma_recordsmanagement.type.rma_hold.decription=Sospensione
-rma_recordsmanagement.property.rma_holdReason.title=Motivo sospensione
-rma_recordsmanagement.property.rma_holdReason.decription=Motivo sospensione
-rma_recordsmanagement.association.rma_frozenRecords.title=Record sospesi
-rma_recordsmanagement.association.rma_frozenRecords.decription=Record sospesi
-
-rma_recordsmanagement.type.rma_transfer.title=Trasferisci
-rma_recordsmanagement.type.rma_transfer.decription=Trasferisci
-rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Indicatore di trasferimento/trasferimento ad altri
-rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Indicatore di trasferimento/trasferimento ad altri
-rma_recordsmanagement.property.rma_transferPDFIndicator.title=Indicatore di trasferimento PDF
-rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Indicatore di trasferimento PDF
-rma_recordsmanagement.property.rma_transferLocation.title=Trasferisci PDF
-rma_recordsmanagement.property.rma_transferLocation.decription=Trasferisci PDF
-rma_recordsmanagement.association.rma_transferred.title=Trasferito
-rma_recordsmanagement.association.rma_transferred.decription=Trasferito
-
-rma_recordsmanagement.aspect.rma_filePlanComponent.title=Componente piano file
-rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Componente piano file
-rma_recordsmanagement.property.rma_rootNodeRef.title=Nodo radice
-rma_recordsmanagement.property.rma_rootNodeRef.decription=Nodo radice
-
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Radice di Records Management
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Radice di Records Management
-rma_recordsmanagement.association.rma_holds.title=Sospensioni
-rma_recordsmanagement.association.rma_holds.decription=Sospensioni
-rma_recordsmanagement.association.rma_transfers.title=Trasferimenti
-rma_recordsmanagement.association.rma_transfers.decription=Trasferimenti
-
-rma_recordsmanagement.aspect.rma_declaredRecord.title=Record completato
-rma_recordsmanagement.aspect.rma_declaredRecord.decription=Record completato
-rma_recordsmanagement.property.rma_declaredAt.title=Data completamento
-rma_recordsmanagement.property.rma_declaredAt.decription=Data completamento
-rma_recordsmanagement.property.rma_declaredBy.title=Completato da
-rma_recordsmanagement.property.rma_declaredBy.decription=Completato da
-
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Identificatore componente record
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Identificatore componente record
-rma_recordsmanagement.property.rma_identifier.title=ID Record
-rma_recordsmanagement.property.rma_identifier.decription=Identificatore record univoco
-rma_recordsmanagement.property.rma_dbUniquenessId.title=Unicit\u00e0 database
-rma_recordsmanagement.property.rma_dbUniquenessId.decription=Unicit\u00e0 database
-
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Definizione di record fondamentale
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Definizione di record fondamentale
-
-rma_recordsmanagement.property.rma_reviewPeriod.title=Periodo di esame
-rma_recordsmanagement.property.rma_reviewPeriod.decription=Periodo di esame
-rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Indicatore record fondamentale
-rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Indicatore record fondamentale
-
-rma_recordsmanagement.aspect.rma_record.title=Record
-rma_recordsmanagement.aspect.rma_record.decription=Record
-rma_recordsmanagement.property.rma_dateFiled.title=Data di archiviazione
-rma_recordsmanagement.property.rma_dateFiled.decription=Data di archiviazione
-rma_recordsmanagement.property.rma_origionalName=Nome originale
-
-rma_recordsmanagement.aspect.rma_recordMetaData.title=Metadati del record
-rma_recordsmanagement.aspect.rma_recordMetaData.description=Aspetto indicatore per metadati di record
-
-rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Dettagli record comuni
-rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Metadati comuni a tutti i tipi di record
-rma_recordsmanagement.property.rma_location.title=Posizione
-rma_recordsmanagement.property.rma_location.decription=Posizione
-
-rma_recordsmanagement.aspect.rma_vitalRecord.title=Record fondamentale
-rma_recordsmanagement.aspect.rma_vitalRecord.decription=Record fondamentale
-rma_recordsmanagement.property.rma_reviewAsOf.title=Prossimo esame
-rma_recordsmanagement.property.rma_reviewAsOf.decription=Prossimo esame
-rma_recordsmanagement.property.rma_notificationIssued.title=Indica che \u00e8 stata rilasciata una notifica di esame per questo record
-rma_recordsmanagement.property.rma_notificationIssued.decription=Indica che \u00e8 stata rilasciata una notifica di esame per questo record
-
-rma_recordsmanagement.aspect.rma_scheduled.title=Programmato
-rma_recordsmanagement.aspect.rma_scheduled.decription=Programmato
-rma_recordsmanagement.association.rma_dispositionSchedule.title=Programma di conservazione
-rma_recordsmanagement.association.rma_dispositionSchedule.decription=Programma di conservazione
-
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Ciclo di vita di conservazione
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Ciclo di vita di conservazione
-rma_recordsmanagement.association.rma_nextDispositionAction.title=Prossima azione di conservazione
-rma_recordsmanagement.association.rma_nextDispositionAction.decription=Prossima azione di conservazione
-rma_recordsmanagement.association.rma_dispositionActionHistory.title=Cronologia azione di conservazione
-rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Cronologia azione di conservazione
-
-rma_recordsmanagement.aspect.rma_cutOff.title=Cut off
-rma_recordsmanagement.aspect.rma_cutOff.decription=Cut off
-rma_recordsmanagement.property.rma_cutOffDate.title=Data cut off
-rma_recordsmanagement.property.rma_cutOffDate.decription=Data cut off
-
-rma_recordsmanagement.aspect.rma_transferred.title=Trasferito
-rma_recordsmanagement.aspect.rma_transferred.decription=Trasferito
-
-rma_recordsmanagement.aspect.rma_ascended.title=Asceso
-rma_recordsmanagement.aspect.rma_ascended.decription=Asceso
-
-rma_recordsmanagement.aspect.rma_frozen.title=Sospeso
-rma_recordsmanagement.aspect.rma_frozen.decription=Sospeso
-rma_recordsmanagement.property.rma_frozenAt.title=Sospeso presso
-rma_recordsmanagement.property.rma_frozenAt.decription=Sospeso presso
-rma_recordsmanagement.property.rma_frozenBy.title=Sospeso da
-rma_recordsmanagement.property.rma_frozenBy.decription=Sospeso da
-
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Radice di configurazione avvertenza
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Radice di configurazione avvertenza
-rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Configurazione avvertenza
-rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Configurazione avvertenza
-
-rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Radice Config E-mail
-rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Radice Config E-mail
-rma_recordsmanagement.association.rma_emailConfigAssoc.title=Configurazione e-mail
-rma_recordsmanagement.association.rma_emailConfigAssoc.description=Configurazione e-mail
-
-rma_recordsmanagement.aspect.rma_recordSearch.title=Ricerca record
-rma_recordsmanagement.aspect.rma_recordSearch.decription=Informazioni per supportare la ricerca di Records Management
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Con Programma di conservazione
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Indica se un programma di conservazione \u00e8 stato associato a un certo elemento
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Nome dell'azione di conservazione
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=Il nome della prossima azione di conservazione
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Azione di conservazione del
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=La data in cui la prossima azione di conservazione diventa idonea
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Periodo di conservazione
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Periodo di conservazione
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Espressione del periodo di conservazione
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Espressione del periodo di conservazione
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Eventi di conservazione idonei
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Eventi di conservazione idonei
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Eventi di conservazione
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Eventi di conservazione
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Autorit\u00e0 di conservazione
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Autorit\u00e0 di conservazione
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Istruzioni per la conservazione
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Istruzioni per la conservazione
-rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Motivo sospensione
-rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Motivo sospensione
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=Periodo di esame record fondamentale
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=Periodo di esame record fondamentale
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Espressione periodo di esame
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Espressione periodo di esame
-
-rma_recordsmanagement.aspect.rma_versionedRecord.title=Record con versione
-rma_recordsmanagement.aspect.rma_versionedRecord.decription=Record con versione
-
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Aggiornamento non pubblicato
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Aggiornamento non pubblicato
-rma_recordsmanagement.property.rma_unpublishedUpdate.title=Aggiornamento non pubblicato
-rma_recordsmanagement.property.rma_unpublishedUpdate.description=Indica se \u00e8 presente un aggiornamento non pubblicato
-rma_recordsmanagement.property.rma_updateTo.title=Aggiornamento a
-rma_recordsmanagement.property.rma_updateTo.description=Destinazione dell'aggiornamento
-rma_recordsmanagement.property.rma_updatedProperties.title=Propriet\u00e0 aggiornate
-rma_recordsmanagement.property.rma_updatedProperties.description=Le propriet\u00e0 aggiornate
-rma_recordsmanagement.property.rma_publishInProgress.title=Pubblicazione in corso
-rma_recordsmanagement.property.rma_publishInProgress.description=Indica se \u00e8 in corso una pubblicazione
-
-rma_recordsmanagement.aspect.dod_ghosted.title=Record di soli metadati
-rma_recordsmanagement.aspect.dod_ghosted.description=Record di soli metadati
-
-listconstraint.rmc_tlList.title=Posizioni di trasferimento
+rma_recordsmanagement.description=Modello di contenuto di Records Management
+
+rma_recordsmanagement.type.rma_rmsite.title=Sito di Records Management
+rma_recordsmanagement.type.rma_rmsite.description=Sito specializzato di Records Management
+
+rma_recordsmanagement.type.rma_caveatConfig.title=Configurazione controlli di sicurezza
+rma_recordsmanagement.type.rma_caveatConfig.decription=Configurazione controlli di sicurezza
+
+rma_recordsmanagement.type.rma_emailConfig.title=Configurazione e-mail
+rma_recordsmanagement.type.rma_emailConfig.decription=Configurazione e-mail
+
+rma_recordsmanagement.type.rma_recordsManagementContainer.title=Contenitore di Records Management
+rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Contenitore di Records Management
+
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Contenitore radice di Records Management
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Contenitore radice di Records Management
+
+rma_recordsmanagement.type.rma_dispositionSchedule.title=Programma di conservazione
+rma_recordsmanagement.type.rma_dispositionSchedule.decription=Programma di conservazione
+
+rma_recordsmanagement.property.rma_dispositionAuthority.title=Autorit\u00e0 di conservazione
+rma_recordsmanagement.property.rma_dispositionAuthority.decription=Autorit\u00e0 di conservazione
+
+rma_recordsmanagement.property.rma_dispositionInstructions.title=Istruzioni per la conservazione
+rma_recordsmanagement.property.rma_dispositionInstructions.decription=Istruzioni per la conservazione
+
+rma_recordsmanagement.property.rma_recordLevelDisposition.title=Conservazione livello record
+rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Conservazione livello record
+
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Azioni di conservazione
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Azioni di conservazione
+
+rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Definizione azione di conservazione
+rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Definizione azione di conservazione
+rma_recordsmanagement.property.rma_dispositionActionName.title=Nome dell'azione di conservazione
+rma_recordsmanagement.property.rma_dispositionActionName.decription=Nome dell'azione di conservazione
+rma_recordsmanagement.property.rma_dispositionDescription.title=Descrizione conservazione
+rma_recordsmanagement.property.rma_dispositionDescription.decription=Descrizione conservazione
+rma_recordsmanagement.property.rma_dispositionLocation.title=Posizione di conservazione
+rma_recordsmanagement.property.rma_dispositionLocation.decription=Posizione di conservazione
+rma_recordsmanagement.property.rma_dispositionPeriod.title=Periodo di conservazione
+rma_recordsmanagement.property.rma_dispositionPeriod.decription=Periodo di conservazione
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Propriet\u00e0 del periodo di conservazione
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Propriet\u00e0 del periodo di conservazione
+rma_recordsmanagement.property.rma_dispositionEvent.title=Evento di conservazione
+rma_recordsmanagement.property.rma_dispositionEvent.decription=Evento di conservazione
+rma_recordsmanagement.property.rma_dispositionEventCombination.title=Combinazione eventi di conservazione
+rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Combinazione eventi di conservazione
+
+rma_recordsmanagement.type.rma_recordFolder.title=Cartella di record
+rma_recordsmanagement.type.rma_recordFolder.decription=Cartella di record
+rma_recordsmanagement.property.rma_isClosed.title=Record
+rma_recordsmanagement.property.rma_isClosed.decription=Record
+
+rma_recordsmanagement.type.rma_recordCategory.title=Categoria record
+rma_recordsmanagement.type.rma_recordCategory.decription=Categoria record
+
+rma_recordsmanagement.type.rma_nonElectronicDocument.title=Documento non elettronico
+rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Documento non elettronico
+rma_recordsmanagement.property.rma_physicalSize.title=Dimensioni fisiche
+rma_recordsmanagement.property.rma_physicalSize.decription=Le dimensioni del documento misurate in metri lineari.
+rma_recordsmanagement.property.rma_numberOfCopies.title=Numero di copie
+rma_recordsmanagement.property.rma_numberOfCopies.description=Il numero di copie del documento.
+rma_recordsmanagement.property.rma_storageLocation.title=Posizione di archiviazione
+rma_recordsmanagement.property.rma_storageLocation.decription=La posizione fisica di archiviazione del record.
+rma_recordsmanagement.property.rma_shelf.title=Ripiano
+rma_recordsmanagement.property.rma_shelf.decription=Il ripiano nel quale \u00e8 conservato il record.
+rma_recordsmanagement.property.rma_box.title=Casella
+rma_recordsmanagement.property.rma_box.description=La casella dove \u00e8 conservato il record.
+rma_recordsmanagement.property.rma_file.title=File
+rma_recordsmanagement.property.rma_file.decription=Il file dove \u00e8 conservato il record.
+
+rma_recordsmanagement.type.rma_dispositionAction.title=Azione di conservazione
+rma_recordsmanagement.type.rma_dispositionAction.decription=Azione di conservazione
+rma_recordsmanagement.property.rma_dispositionActionId.title=ID azione di conservazione
+rma_recordsmanagement.property.rma_dispositionActionId.decription=ID azione di conservazione
+rma_recordsmanagement.property.rma_dispositionAction.title=Azione di conservazione
+rma_recordsmanagement.property.rma_dispositionAction.decription=Azione di conservazione
+rma_recordsmanagement.property.rma_dispositionAsOf.title=Azione di conservazione
+rma_recordsmanagement.property.rma_dispositionAsOf.decription=Azione di conservazione
+rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Eventi di conservazione idonei
+rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Eventi di conservazione idonei
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Azione di conservazione iniziata alle ore
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Azione di conservazione iniziata alle ore
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Azione di conservazione iniziata da
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Azione di conservazione iniziata da
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Azione di conservazione completata alle ore
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Azione di conservazione completata alle ore
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Azione di conservazione completata da
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Azione di conservazione completata da
+rma_recordsmanagement.association.rma_eventExecutions.title=Esecuzioni evento
+rma_recordsmanagement.association.rma_eventExecutions.decription=Esecuzioni evento
+
+rma_recordsmanagement.type.rma_eventExecution.title=Esecuzione evento
+rma_recordsmanagement.type.rma_eventExecution.decription=Esecuzione evento
+rma_recordsmanagement.property.rma_eventExecutionName.title=Nome evento
+rma_recordsmanagement.property.rma_eventExecutionName.decription=Nome evento
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Evento automatico
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Evento automatico
+rma_recordsmanagement.property.rma_eventExecutionComplete.title=Evento completato
+rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Evento completato
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Evento completato da
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Evento completato da
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Evento completato alle ore
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Evento completato alle ore
+
+rma_recordsmanagement.type.rma_hold.title=Sospensione
+rma_recordsmanagement.type.rma_hold.decription=Sospensione
+rma_recordsmanagement.property.rma_holdReason.title=Motivo sospensione
+rma_recordsmanagement.property.rma_holdReason.decription=Motivo sospensione
+rma_recordsmanagement.association.rma_frozenRecords.title=Record sospesi
+rma_recordsmanagement.association.rma_frozenRecords.decription=Record sospesi
+
+rma_recordsmanagement.type.rma_transfer.title=Trasferisci
+rma_recordsmanagement.type.rma_transfer.decription=Trasferisci
+rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Indicatore di trasferimento/trasferimento ad altri
+rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Indicatore di trasferimento/trasferimento ad altri
+rma_recordsmanagement.property.rma_transferPDFIndicator.title=Indicatore di trasferimento PDF
+rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Indicatore di trasferimento PDF
+rma_recordsmanagement.property.rma_transferLocation.title=Trasferisci PDF
+rma_recordsmanagement.property.rma_transferLocation.decription=Trasferisci PDF
+rma_recordsmanagement.association.rma_transferred.title=Trasferito
+rma_recordsmanagement.association.rma_transferred.decription=Trasferito
+
+rma_recordsmanagement.aspect.rma_filePlanComponent.title=Componente piano file
+rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Componente piano file
+rma_recordsmanagement.property.rma_rootNodeRef.title=Nodo radice
+rma_recordsmanagement.property.rma_rootNodeRef.decription=Nodo radice
+
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Radice di Records Management
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Radice di Records Management
+rma_recordsmanagement.association.rma_holds.title=Sospensioni
+rma_recordsmanagement.association.rma_holds.decription=Sospensioni
+rma_recordsmanagement.association.rma_transfers.title=Trasferimenti
+rma_recordsmanagement.association.rma_transfers.decription=Trasferimenti
+
+rma_recordsmanagement.aspect.rma_declaredRecord.title=Record completato
+rma_recordsmanagement.aspect.rma_declaredRecord.decription=Record completato
+rma_recordsmanagement.property.rma_declaredAt.title=Data completamento
+rma_recordsmanagement.property.rma_declaredAt.decription=Data completamento
+rma_recordsmanagement.property.rma_declaredBy.title=Completato da
+rma_recordsmanagement.property.rma_declaredBy.decription=Completato da
+
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Identificatore componente record
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Identificatore componente record
+rma_recordsmanagement.property.rma_identifier.title=ID Record
+rma_recordsmanagement.property.rma_identifier.decription=Identificatore record univoco
+rma_recordsmanagement.property.rma_dbUniquenessId.title=Unicit\u00e0 database
+rma_recordsmanagement.property.rma_dbUniquenessId.decription=Unicit\u00e0 database
+
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Definizione di record fondamentale
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Definizione di record fondamentale
+
+rma_recordsmanagement.property.rma_reviewPeriod.title=Periodo di esame
+rma_recordsmanagement.property.rma_reviewPeriod.decription=Periodo di esame
+rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Indicatore record fondamentale
+rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Indicatore record fondamentale
+
+rma_recordsmanagement.aspect.rma_record.title=Record
+rma_recordsmanagement.aspect.rma_record.decription=Record
+rma_recordsmanagement.property.rma_dateFiled.title=Data di archiviazione
+rma_recordsmanagement.property.rma_dateFiled.decription=Data di archiviazione
+rma_recordsmanagement.property.rma_origionalName=Nome originale
+
+rma_recordsmanagement.aspect.rma_recordMetaData.title=Metadati del record
+rma_recordsmanagement.aspect.rma_recordMetaData.description=Aspetto indicatore per metadati di record
+
+rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Dettagli record comuni
+rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Metadati comuni a tutti i tipi di record
+rma_recordsmanagement.property.rma_location.title=Posizione
+rma_recordsmanagement.property.rma_location.decription=Posizione
+
+rma_recordsmanagement.aspect.rma_vitalRecord.title=Record fondamentale
+rma_recordsmanagement.aspect.rma_vitalRecord.decription=Record fondamentale
+rma_recordsmanagement.property.rma_reviewAsOf.title=Prossimo esame
+rma_recordsmanagement.property.rma_reviewAsOf.decription=Prossimo esame
+rma_recordsmanagement.property.rma_notificationIssued.title=Indica che \u00e8 stata rilasciata una notifica di esame per questo record
+rma_recordsmanagement.property.rma_notificationIssued.decription=Indica che \u00e8 stata rilasciata una notifica di esame per questo record
+
+rma_recordsmanagement.aspect.rma_scheduled.title=Programmato
+rma_recordsmanagement.aspect.rma_scheduled.decription=Programmato
+rma_recordsmanagement.association.rma_dispositionSchedule.title=Programma di conservazione
+rma_recordsmanagement.association.rma_dispositionSchedule.decription=Programma di conservazione
+
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Ciclo di vita di conservazione
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Ciclo di vita di conservazione
+rma_recordsmanagement.association.rma_nextDispositionAction.title=Prossima azione di conservazione
+rma_recordsmanagement.association.rma_nextDispositionAction.decription=Prossima azione di conservazione
+rma_recordsmanagement.association.rma_dispositionActionHistory.title=Cronologia azione di conservazione
+rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Cronologia azione di conservazione
+
+rma_recordsmanagement.aspect.rma_cutOff.title=Cut off
+rma_recordsmanagement.aspect.rma_cutOff.decription=Cut off
+rma_recordsmanagement.property.rma_cutOffDate.title=Data cut off
+rma_recordsmanagement.property.rma_cutOffDate.decription=Data cut off
+
+rma_recordsmanagement.aspect.rma_transferred.title=Trasferito
+rma_recordsmanagement.aspect.rma_transferred.decription=Trasferito
+
+rma_recordsmanagement.aspect.rma_ascended.title=Asceso
+rma_recordsmanagement.aspect.rma_ascended.decription=Asceso
+
+rma_recordsmanagement.aspect.rma_frozen.title=Sospeso
+rma_recordsmanagement.aspect.rma_frozen.decription=Sospeso
+rma_recordsmanagement.property.rma_frozenAt.title=Sospeso presso
+rma_recordsmanagement.property.rma_frozenAt.decription=Sospeso presso
+rma_recordsmanagement.property.rma_frozenBy.title=Sospeso da
+rma_recordsmanagement.property.rma_frozenBy.decription=Sospeso da
+
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Radice di configurazione avvertenza
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Radice di configurazione avvertenza
+rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Configurazione avvertenza
+rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Configurazione avvertenza
+
+rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Radice Config E-mail
+rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Radice Config E-mail
+rma_recordsmanagement.association.rma_emailConfigAssoc.title=Configurazione e-mail
+rma_recordsmanagement.association.rma_emailConfigAssoc.description=Configurazione e-mail
+
+rma_recordsmanagement.aspect.rma_recordSearch.title=Ricerca record
+rma_recordsmanagement.aspect.rma_recordSearch.decription=Informazioni per supportare la ricerca di Records Management
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Con Programma di conservazione
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Indica se un programma di conservazione \u00e8 stato associato a un certo elemento
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Nome dell'azione di conservazione
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=Il nome della prossima azione di conservazione
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Azione di conservazione del
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=La data in cui la prossima azione di conservazione diventa idonea
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Periodo di conservazione
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Periodo di conservazione
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Espressione del periodo di conservazione
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Espressione del periodo di conservazione
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Eventi di conservazione idonei
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Eventi di conservazione idonei
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Eventi di conservazione
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Eventi di conservazione
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Autorit\u00e0 di conservazione
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Autorit\u00e0 di conservazione
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Istruzioni per la conservazione
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Istruzioni per la conservazione
+rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Motivo sospensione
+rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Motivo sospensione
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=Periodo di esame record fondamentale
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=Periodo di esame record fondamentale
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Espressione periodo di esame
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Espressione periodo di esame
+
+rma_recordsmanagement.aspect.rma_versionedRecord.title=Record con versione
+rma_recordsmanagement.aspect.rma_versionedRecord.decription=Record con versione
+
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Aggiornamento non pubblicato
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Aggiornamento non pubblicato
+rma_recordsmanagement.property.rma_unpublishedUpdate.title=Aggiornamento non pubblicato
+rma_recordsmanagement.property.rma_unpublishedUpdate.description=Indica se \u00e8 presente un aggiornamento non pubblicato
+rma_recordsmanagement.property.rma_updateTo.title=Aggiornamento a
+rma_recordsmanagement.property.rma_updateTo.description=Destinazione dell'aggiornamento
+rma_recordsmanagement.property.rma_updatedProperties.title=Propriet\u00e0 aggiornate
+rma_recordsmanagement.property.rma_updatedProperties.description=Le propriet\u00e0 aggiornate
+rma_recordsmanagement.property.rma_publishInProgress.title=Pubblicazione in corso
+rma_recordsmanagement.property.rma_publishInProgress.description=Indica se \u00e8 in corso una pubblicazione
+
+rma_recordsmanagement.aspect.dod_ghosted.title=Record di soli metadati
+rma_recordsmanagement.aspect.dod_ghosted.description=Record di soli metadati
+
+listconstraint.rmc_tlList.title=Posizioni di trasferimento
listconstraint.rmc_smList.title=Contrassegni supplementari
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_ja.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_ja.properties
index 451ffcd1cf..f3040b4a23 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_ja.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_ja.properties
@@ -1,265 +1,265 @@
-rma_recordsmanagement.description=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u30e2\u30c7\u30eb
-
-rma_recordsmanagement.type.rma_rmsite.title=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30b5\u30a4\u30c8
-rma_recordsmanagement.type.rma_rmsite.description=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u7528\u306e\u5c02\u9580\u30b5\u30a4\u30c8
-
-rma_recordsmanagement.type.rma_caveatConfig.title=\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u306e\u8a2d\u5b9a
-rma_recordsmanagement.type.rma_caveatConfig.decription=\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u306e\u8a2d\u5b9a
-
-rma_recordsmanagement.type.rma_emailConfig.title=E \u30e1\u30fc\u30eb\u306e\u8a2d\u5b9a
-rma_recordsmanagement.type.rma_emailConfig.decription=E \u30e1\u30fc\u30eb\u306e\u8a2d\u5b9a
-
-rma_recordsmanagement.type.rma_recordsManagementContainer.title=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30b3\u30f3\u30c6\u30ca\u30fc
-rma_recordsmanagement.type.rma_recordsManagementContainer.decription=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30b3\u30f3\u30c6\u30ca\u30fc
-
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8\u30b3\u30f3\u30c6\u30ca\u30fc
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8\u30b3\u30f3\u30c6\u30ca\u30fc
-
-rma_recordsmanagement.type.rma_dispositionSchedule.title=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb
-rma_recordsmanagement.type.rma_dispositionSchedule.decription=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb
-
-rma_recordsmanagement.property.rma_dispositionAuthority.title=\u4fdd\u7ba1\u6a29\u9650
-rma_recordsmanagement.property.rma_dispositionAuthority.decription=\u4fdd\u7ba1\u6a29\u9650
-
-rma_recordsmanagement.property.rma_dispositionInstructions.title=\u4fdd\u7ba1\u6307\u793a
-rma_recordsmanagement.property.rma_dispositionInstructions.decription=\u4fdd\u7ba1\u6307\u793a
-
-rma_recordsmanagement.property.rma_recordLevelDisposition.title=\u30ec\u30b3\u30fc\u30c9\u30ec\u30d9\u30eb\u306e\u4fdd\u7ba1
-rma_recordsmanagement.property.rma_recordLevelDisposition.decription=\u30ec\u30b3\u30fc\u30c9\u30ec\u30d9\u30eb\u306e\u4fdd\u7ba1
-
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=\u4fdd\u7ba1\u51e6\u7406
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=\u4fdd\u7ba1\u51e6\u7406
-
-rma_recordsmanagement.type.rma_dispositionActionDefinition.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9a\u7fa9
-rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9a\u7fa9
-rma_recordsmanagement.property.rma_dispositionActionName.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u540d\u524d
-rma_recordsmanagement.property.rma_dispositionActionName.decription=\u4fdd\u7ba1\u51e6\u7406\u306e\u540d\u524d
-rma_recordsmanagement.property.rma_dispositionDescription.title=\u4fdd\u7ba1\u306e\u8aac\u660e
-rma_recordsmanagement.property.rma_dispositionDescription.decription=\u4fdd\u7ba1\u306e\u8aac\u660e
-rma_recordsmanagement.property.rma_dispositionLocation.title=\u4fdd\u7ba1\u5834\u6240
-rma_recordsmanagement.property.rma_dispositionLocation.decription=\u4fdd\u7ba1\u5834\u6240
-rma_recordsmanagement.property.rma_dispositionPeriod.title=\u4fdd\u7ba1\u671f\u9593
-rma_recordsmanagement.property.rma_dispositionPeriod.decription=\u4fdd\u7ba1\u671f\u9593
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=\u4fdd\u7ba1\u671f\u9593\u306e\u30d7\u30ed\u30d1\u30c6\u30a3
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=\u4fdd\u7ba1\u671f\u9593\u306e\u30d7\u30ed\u30d1\u30c6\u30a3
-rma_recordsmanagement.property.rma_dispositionEvent.title=\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8
-rma_recordsmanagement.property.rma_dispositionEvent.decription=\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8
-rma_recordsmanagement.property.rma_dispositionEventCombination.title=\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8\u306e\u7d44\u307f\u5408\u308f\u305b
-rma_recordsmanagement.property.rma_dispositionEventCombination.decription=\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8\u306e\u7d44\u307f\u5408\u308f\u305b
-
-rma_recordsmanagement.type.rma_recordFolder.title=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
-rma_recordsmanagement.type.rma_recordFolder.decription=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
-rma_recordsmanagement.property.rma_isClosed.title=\u30ec\u30b3\u30fc\u30c9
-rma_recordsmanagement.property.rma_isClosed.decription=\u30ec\u30b3\u30fc\u30c9
-
-rma_recordsmanagement.type.rma_recordCategory.title=\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea
-rma_recordsmanagement.type.rma_recordCategory.decription=\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea
-
-rma_recordsmanagement.type.rma_nonElectronicDocument.title=\u975e\u96fb\u5b50\u6587\u66f8
-rma_recordsmanagement.type.rma_nonElectronicDocument.decription=\u975e\u96fb\u5b50\u6587\u66f8
-rma_recordsmanagement.property.rma_physicalSize.title=\u7269\u7406\u7684\u306a\u30b5\u30a4\u30ba
-rma_recordsmanagement.property.rma_physicalSize.decription=\u6587\u66f8\u306e\u30b5\u30a4\u30ba\u306f\u30ea\u30cb\u30a2\u30e1\u30fc\u30bf\u30fc\u3067\u8a08\u6e2c\u3055\u308c\u307e\u3059\u3002
-rma_recordsmanagement.property.rma_numberOfCopies.title=\u30b3\u30d4\u30fc\u6570
-rma_recordsmanagement.property.rma_numberOfCopies.description=\u6587\u66f8\u306e\u30b3\u30d4\u30fc\u6570\u3002
-rma_recordsmanagement.property.rma_storageLocation.title=\u4fdd\u7ba1\u5834\u6240
-rma_recordsmanagement.property.rma_storageLocation.decription=\u30ec\u30b3\u30fc\u30c9\u306e\u7269\u7406\u7684\u306a\u4fdd\u7ba1\u5834\u6240\u3002
-rma_recordsmanagement.property.rma_shelf.title=\u68da
-rma_recordsmanagement.property.rma_shelf.decription=\u30ec\u30b3\u30fc\u30c9\u3092\u4fdd\u7ba1\u3057\u3066\u304a\u304f\u68da\u3002
-rma_recordsmanagement.property.rma_box.title=\u7bb1
-rma_recordsmanagement.property.rma_box.description=\u30ec\u30b3\u30fc\u30c9\u3092\u4fdd\u7ba1\u3057\u3066\u304a\u304f\u7bb1\u3002
-rma_recordsmanagement.property.rma_file.title=\u30d5\u30a1\u30a4\u30eb
-rma_recordsmanagement.property.rma_file.decription=\u30ec\u30b3\u30fc\u30c9\u3092\u4fdd\u7ba1\u3057\u3066\u304a\u304f\u30d5\u30a1\u30a4\u30eb\u3002
-
-rma_recordsmanagement.type.rma_dispositionAction.title=\u4fdd\u7ba1\u51e6\u7406
-rma_recordsmanagement.type.rma_dispositionAction.decription=\u4fdd\u7ba1\u51e6\u7406
-rma_recordsmanagement.property.rma_dispositionActionId.title=\u4fdd\u7ba1\u51e6\u7406 ID
-rma_recordsmanagement.property.rma_dispositionActionId.decription=\u4fdd\u7ba1\u51e6\u7406 ID
-rma_recordsmanagement.property.rma_dispositionAction.title=\u4fdd\u7ba1\u51e6\u7406
-rma_recordsmanagement.property.rma_dispositionAction.decription=\u4fdd\u7ba1\u51e6\u7406
-rma_recordsmanagement.property.rma_dispositionAsOf.title=\u4fdd\u7ba1\u51e6\u7406
-rma_recordsmanagement.property.rma_dispositionAsOf.decription=\u4fdd\u7ba1\u51e6\u7406
-rma_recordsmanagement.property.rma_dispositionEventsEligible.title=\u5b9f\u884c\u53ef\u80fd\u306a\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8
-rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=\u5b9f\u884c\u53ef\u80fd\u306a\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u958b\u59cb\u65e5\u6642
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=\u4fdd\u7ba1\u51e6\u7406\u306e\u958b\u59cb\u65e5\u6642
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u958b\u59cb\u8005
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=\u4fdd\u7ba1\u51e6\u7406\u306e\u958b\u59cb\u8005
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b8c\u4e86\u65e5\u6642
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b8c\u4e86\u65e5\u6642
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b8c\u4e86\u8005
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b8c\u4e86\u8005
-rma_recordsmanagement.association.rma_eventExecutions.title=\u30a4\u30d9\u30f3\u30c8\u306e\u5b9f\u884c
-rma_recordsmanagement.association.rma_eventExecutions.decription=\u30a4\u30d9\u30f3\u30c8\u306e\u5b9f\u884c
-
-rma_recordsmanagement.type.rma_eventExecution.title=\u30a4\u30d9\u30f3\u30c8\u306e\u5b9f\u884c
-rma_recordsmanagement.type.rma_eventExecution.decription=\u30a4\u30d9\u30f3\u30c8\u306e\u5b9f\u884c
-rma_recordsmanagement.property.rma_eventExecutionName.title=\u30a4\u30d9\u30f3\u30c8\u540d
-rma_recordsmanagement.property.rma_eventExecutionName.decription=\u30a4\u30d9\u30f3\u30c8\u540d
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=\u30a4\u30d9\u30f3\u30c8\u306e\u81ea\u52d5\u5316
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=\u30a4\u30d9\u30f3\u30c8\u306e\u81ea\u52d5\u5316
-rma_recordsmanagement.property.rma_eventExecutionComplete.title=\u30a4\u30d9\u30f3\u30c8\u5b8c\u4e86
-rma_recordsmanagement.property.rma_eventExecutionComplete.decription=\u30a4\u30d9\u30f3\u30c8\u5b8c\u4e86
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=\u30a4\u30d9\u30f3\u30c8\u306e\u5b8c\u4e86\u8005
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=\u30a4\u30d9\u30f3\u30c8\u306e\u5b8c\u4e86\u8005
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=\u30a4\u30d9\u30f3\u30c8\u306e\u5b8c\u4e86\u65e5\u6642
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=\u30a4\u30d9\u30f3\u30c8\u306e\u5b8c\u4e86\u65e5\u6642
-
-rma_recordsmanagement.type.rma_hold.title=\u30db\u30fc\u30eb\u30c9
-rma_recordsmanagement.type.rma_hold.decription=\u30db\u30fc\u30eb\u30c9
-rma_recordsmanagement.property.rma_holdReason.title=\u30db\u30fc\u30eb\u30c9\u7406\u7531
-rma_recordsmanagement.property.rma_holdReason.decription=\u30db\u30fc\u30eb\u30c9\u7406\u7531
-rma_recordsmanagement.association.rma_frozenRecords.title=\u30db\u30fc\u30eb\u30c9\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9
-rma_recordsmanagement.association.rma_frozenRecords.decription=\u30db\u30fc\u30eb\u30c9\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9
-
-rma_recordsmanagement.type.rma_transfer.title=\u8ee2\u9001
-rma_recordsmanagement.type.rma_transfer.decription=\u8ee2\u9001
-rma_recordsmanagement.property.rma_transferAccessionIndicator.title=\u8ee2\u9001\u53d7\u8afe\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc
-rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=\u8ee2\u9001\u53d7\u8afe\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc
-rma_recordsmanagement.property.rma_transferPDFIndicator.title=PDF\u306e\u8ee2\u9001\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc
-rma_recordsmanagement.property.rma_transferPDFIndicator.decription=PDF\u306e\u8ee2\u9001\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc
-rma_recordsmanagement.property.rma_transferLocation.title=PDF\u306e\u8ee2\u9001
-rma_recordsmanagement.property.rma_transferLocation.decription=PDF\u306e\u8ee2\u9001
-rma_recordsmanagement.association.rma_transferred.title=\u8ee2\u9001\u6e08\u307f
-rma_recordsmanagement.association.rma_transferred.decription=\u8ee2\u9001\u6e08\u307f
-
-rma_recordsmanagement.aspect.rma_filePlanComponent.title=\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8
-rma_recordsmanagement.aspect.rma_filePlanComponent.decription=\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8
-rma_recordsmanagement.property.rma_rootNodeRef.title=\u30eb\u30fc\u30c8\u30ce\u30fc\u30c9
-rma_recordsmanagement.property.rma_rootNodeRef.decription=\u30eb\u30fc\u30c8\u30ce\u30fc\u30c9
-
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8
-rma_recordsmanagement.association.rma_holds.title=\u30db\u30fc\u30eb\u30c9
-rma_recordsmanagement.association.rma_holds.decription=\u30db\u30fc\u30eb\u30c9
-rma_recordsmanagement.association.rma_transfers.title=\u8ee2\u9001
-rma_recordsmanagement.association.rma_transfers.decription=\u8ee2\u9001
-
-rma_recordsmanagement.aspect.rma_declaredRecord.title=\u5b8c\u4e86\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
-rma_recordsmanagement.aspect.rma_declaredRecord.decription=\u5b8c\u4e86\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
-rma_recordsmanagement.property.rma_declaredAt.title=\u5b8c\u4e86\u65e5
-rma_recordsmanagement.property.rma_declaredAt.decription=\u5b8c\u4e86\u65e5
-rma_recordsmanagement.property.rma_declaredBy.title=\u5b8c\u4e86\u8005
-rma_recordsmanagement.property.rma_declaredBy.decription=\u5b8c\u4e86\u8005
-
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=\u30ec\u30b3\u30fc\u30c9\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8 ID
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=\u30ec\u30b3\u30fc\u30c9\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8 ID
-rma_recordsmanagement.property.rma_identifier.title=\u30ec\u30b3\u30fc\u30c9 ID
-rma_recordsmanagement.property.rma_identifier.decription=\u4e00\u610f\u306e\u30ec\u30b3\u30fc\u30c9 ID
-rma_recordsmanagement.property.rma_dbUniquenessId.title=\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u4e00\u610f\u6027
-rma_recordsmanagement.property.rma_dbUniquenessId.decription=\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u4e00\u610f\u6027
-
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u5b9a\u7fa9
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u5b9a\u7fa9
-
-rma_recordsmanagement.property.rma_reviewPeriod.title=\u30ec\u30d3\u30e5\u30fc\u671f\u9593
-rma_recordsmanagement.property.rma_reviewPeriod.decription=\u30ec\u30d3\u30e5\u30fc\u671f\u9593
-rma_recordsmanagement.property.rma_vitalRecordIndicator.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc
-rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc
-
-rma_recordsmanagement.aspect.rma_record.title=\u30ec\u30b3\u30fc\u30c9
-rma_recordsmanagement.aspect.rma_record.decription=\u30ec\u30b3\u30fc\u30c9
-rma_recordsmanagement.property.rma_dateFiled.title=\u6574\u7406\u4fdd\u7ba1\u65e5
-rma_recordsmanagement.property.rma_dateFiled.decription=\u6574\u7406\u4fdd\u7ba1\u65e5
-rma_recordsmanagement.property.rma_origionalName=\u5143\u306e\u540d\u524d
-
-rma_recordsmanagement.aspect.rma_recordMetaData.title=\u30ec\u30b3\u30fc\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf
-rma_recordsmanagement.aspect.rma_recordMetaData.description=\u30ec\u30b3\u30fc\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u30de\u30fc\u30ab\u30fc\u30a2\u30b9\u30da\u30af\u30c8
-
-rma_recordsmanagement.aspect.rma_commonRecordDetails.title=\u5171\u901a\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u60c5\u5831
-rma_recordsmanagement.aspect.rma_commonRecordDetails.description=\u3059\u3079\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7\u306b\u5171\u901a\u3059\u308b\u30e1\u30bf\u30c7\u30fc\u30bf
-rma_recordsmanagement.property.rma_location.title=\u5834\u6240
-rma_recordsmanagement.property.rma_location.decription=\u5834\u6240
-
-rma_recordsmanagement.aspect.rma_vitalRecord.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9
-rma_recordsmanagement.aspect.rma_vitalRecord.decription=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9
-rma_recordsmanagement.property.rma_reviewAsOf.title=\u6b21\u56de\u306e\u30ec\u30d3\u30e5\u30fc
-rma_recordsmanagement.property.rma_reviewAsOf.decription=\u6b21\u56de\u306e\u30ec\u30d3\u30e5\u30fc
-rma_recordsmanagement.property.rma_notificationIssued.title=\u3053\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u30ec\u30d3\u30e5\u30fc\u4e88\u5b9a\u304c\u901a\u77e5\u3055\u308c\u305f\u3053\u3068\u3092\u793a\u3057\u307e\u3059
-rma_recordsmanagement.property.rma_notificationIssued.decription=\u3053\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u30ec\u30d3\u30e5\u30fc\u4e88\u5b9a\u304c\u901a\u77e5\u3055\u308c\u305f\u3053\u3068\u3092\u793a\u3057\u307e\u3059
-
-rma_recordsmanagement.aspect.rma_scheduled.title=\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u6e08\u307f
-rma_recordsmanagement.aspect.rma_scheduled.decription=\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u6e08\u307f
-rma_recordsmanagement.association.rma_dispositionSchedule.title=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb
-rma_recordsmanagement.association.rma_dispositionSchedule.decription=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb
-
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=\u4fdd\u7ba1\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=\u4fdd\u7ba1\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb
-rma_recordsmanagement.association.rma_nextDispositionAction.title=\u6b21\u56de\u306e\u4fdd\u7ba1\u51e6\u7406
-rma_recordsmanagement.association.rma_nextDispositionAction.decription=\u6b21\u56de\u306e\u4fdd\u7ba1\u51e6\u7406
-rma_recordsmanagement.association.rma_dispositionActionHistory.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u5c65\u6b74
-rma_recordsmanagement.association.rma_dispositionActionHistory.decription=\u4fdd\u7ba1\u51e6\u7406\u306e\u5c65\u6b74
-
-rma_recordsmanagement.aspect.rma_cutOff.title=\u30ab\u30c3\u30c8\u30aa\u30d5
-rma_recordsmanagement.aspect.rma_cutOff.decription=\u30ab\u30c3\u30c8\u30aa\u30d5
-rma_recordsmanagement.property.rma_cutOffDate.title=\u30ab\u30c3\u30c8\u30aa\u30d5\u65e5
-rma_recordsmanagement.property.rma_cutOffDate.decription=\u30ab\u30c3\u30c8\u30aa\u30d5\u65e5
-
-rma_recordsmanagement.aspect.rma_transferred.title=\u8ee2\u9001\u6e08\u307f
-rma_recordsmanagement.aspect.rma_transferred.decription=\u8ee2\u9001\u6e08\u307f
-
-rma_recordsmanagement.aspect.rma_ascended.title=\u6607\u9806\u3067\u4e26\u3079\u66ff\u3048\u6e08\u307f
-rma_recordsmanagement.aspect.rma_ascended.decription=\u6607\u9806\u3067\u4e26\u3079\u66ff\u3048\u6e08\u307f
-
-rma_recordsmanagement.aspect.rma_frozen.title=\u30db\u30fc\u30eb\u30c9\u4e2d
-rma_recordsmanagement.aspect.rma_frozen.decription=\u30db\u30fc\u30eb\u30c9\u4e2d
-rma_recordsmanagement.property.rma_frozenAt.title=\u30db\u30fc\u30eb\u30c9\u65e5\u6642
-rma_recordsmanagement.property.rma_frozenAt.decription=\u30db\u30fc\u30eb\u30c9\u65e5\u6642
-rma_recordsmanagement.property.rma_frozenBy.title=\u30db\u30fc\u30eb\u30c9\u5b9f\u884c\u8005
-rma_recordsmanagement.property.rma_frozenBy.decription=\u30db\u30fc\u30eb\u30c9\u5b9f\u884c\u8005
-
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=\u8b66\u544a\u306e\u8a2d\u5b9a\u30eb\u30fc\u30c8
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=\u8b66\u544a\u306e\u8a2d\u5b9a\u30eb\u30fc\u30c8
-rma_recordsmanagement.association.rma_caveatConfigAssoc.title=\u8b66\u544a\u306e\u8a2d\u5b9a
-rma_recordsmanagement.association.rma_caveatConfigAssoc.description=\u8b66\u544a\u306e\u8a2d\u5b9a
-
-rma_recordsmanagement.aspect.rma_emailConfigRoot.title=E \u30e1\u30fc\u30eb\u306e\u8a2d\u5b9a\u30eb\u30fc\u30c8
-rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=E \u30e1\u30fc\u30eb\u306e\u8a2d\u5b9a\u30eb\u30fc\u30c8
-rma_recordsmanagement.association.rma_emailConfigAssoc.title=E \u30e1\u30fc\u30eb\u306e\u8a2d\u5b9a
-rma_recordsmanagement.association.rma_emailConfigAssoc.description=E \u30e1\u30fc\u30eb\u306e\u8a2d\u5b9a
-
-rma_recordsmanagement.aspect.rma_recordSearch.title=\u30ec\u30b3\u30fc\u30c9\u306e\u691c\u7d22
-rma_recordsmanagement.aspect.rma_recordSearch.decription=[\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406] \u3067\u306e\u691c\u7d22\u306b\u95a2\u3059\u308b\u60c5\u5831
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3042\u308a
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=\u30a2\u30a4\u30c6\u30e0\u306b\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u304c\u95a2\u9023\u4ed8\u3051\u3089\u308c\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u3092\u793a\u3057\u307e\u3059\u3002
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u540d\u524d
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=\u6b21\u56de\u306e\u4fdd\u7ba1\u51e6\u7406\u306e\u540d\u524d
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9f\u884c\u53ef\u80fd\u65e5
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=\u6b21\u56de\u306e\u4fdd\u7ba1\u51e6\u7406\u304c\u5b9f\u884c\u53ef\u80fd\u306b\u306a\u308b\u65e5
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=\u4fdd\u7ba1\u671f\u9593
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=\u4fdd\u7ba1\u671f\u9593
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=\u4fdd\u7ba1\u671f\u9593\u306e\u8a08\u7b97\u5f0f
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=\u4fdd\u7ba1\u671f\u9593\u306e\u8a08\u7b97\u5f0f
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=\u5b9f\u884c\u53ef\u80fd\u306a\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=\u5b9f\u884c\u53ef\u80fd\u306a\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=\u4fdd\u7ba1\u6a29\u9650
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=\u4fdd\u7ba1\u6a29\u9650
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=\u4fdd\u7ba1\u6307\u793a
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=\u4fdd\u7ba1\u6307\u793a
-rma_recordsmanagement.property.rma_recordSearchHoldReason.title=\u30db\u30fc\u30eb\u30c9\u7406\u7531
-rma_recordsmanagement.property.rma_recordSearchHoldReason.description=\u30db\u30fc\u30eb\u30c9\u7406\u7531
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u30ec\u30d3\u30e5\u30fc\u671f\u9593
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u30ec\u30d3\u30e5\u30fc\u671f\u9593
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=\u30ec\u30d3\u30e5\u30fc\u671f\u9593\u306e\u8a08\u7b97\u5f0f
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=\u30ec\u30d3\u30e5\u30fc\u671f\u9593\u306e\u8a08\u7b97\u5f0f
-
-rma_recordsmanagement.aspect.rma_versionedRecord.title=\u30d0\u30fc\u30b8\u30e7\u30f3\u7ba1\u7406\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9
-rma_recordsmanagement.aspect.rma_versionedRecord.decription=\u30d0\u30fc\u30b8\u30e7\u30f3\u7ba1\u7406\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9
-
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=\u975e\u516c\u958b\u306e\u66f4\u65b0\u60c5\u5831
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=\u975e\u516c\u958b\u306e\u66f4\u65b0\u60c5\u5831
-rma_recordsmanagement.property.rma_unpublishedUpdate.title=\u975e\u516c\u958b\u306e\u66f4\u65b0\u60c5\u5831
-rma_recordsmanagement.property.rma_unpublishedUpdate.description=\u975e\u516c\u958b\u306e\u66f4\u65b0\u60c5\u5831\u304c\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u793a\u3057\u307e\u3059
-rma_recordsmanagement.property.rma_updateTo.title=\u66f4\u65b0\u5148
-rma_recordsmanagement.property.rma_updateTo.description=\u66f4\u65b0\u306e\u9069\u7528\u5148
-rma_recordsmanagement.property.rma_updatedProperties.title=\u66f4\u65b0\u6e08\u307f\u30d7\u30ed\u30d1\u30c6\u30a3
-rma_recordsmanagement.property.rma_updatedProperties.description=\u66f4\u65b0\u6e08\u307f\u30d7\u30ed\u30d1\u30c6\u30a3
-rma_recordsmanagement.property.rma_publishInProgress.title=\u516c\u958b\u4e2d
-rma_recordsmanagement.property.rma_publishInProgress.description=\u73fe\u5728\u516c\u958b\u4e2d\u3067\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u793a\u3057\u307e\u3059
-
-rma_recordsmanagement.aspect.dod_ghosted.title=\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u307f\u306e\u30ec\u30b3\u30fc\u30c9
-rma_recordsmanagement.aspect.dod_ghosted.description=\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u307f\u306e\u30ec\u30b3\u30fc\u30c9
-
-listconstraint.rmc_tlList.title=\u8ee2\u9001\u5834\u6240
+rma_recordsmanagement.description=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u30e2\u30c7\u30eb
+
+rma_recordsmanagement.type.rma_rmsite.title=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30b5\u30a4\u30c8
+rma_recordsmanagement.type.rma_rmsite.description=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u7528\u306e\u5c02\u9580\u30b5\u30a4\u30c8
+
+rma_recordsmanagement.type.rma_caveatConfig.title=\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u306e\u8a2d\u5b9a
+rma_recordsmanagement.type.rma_caveatConfig.decription=\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u306e\u8a2d\u5b9a
+
+rma_recordsmanagement.type.rma_emailConfig.title=E \u30e1\u30fc\u30eb\u306e\u8a2d\u5b9a
+rma_recordsmanagement.type.rma_emailConfig.decription=E \u30e1\u30fc\u30eb\u306e\u8a2d\u5b9a
+
+rma_recordsmanagement.type.rma_recordsManagementContainer.title=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30b3\u30f3\u30c6\u30ca\u30fc
+rma_recordsmanagement.type.rma_recordsManagementContainer.decription=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30b3\u30f3\u30c6\u30ca\u30fc
+
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8\u30b3\u30f3\u30c6\u30ca\u30fc
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8\u30b3\u30f3\u30c6\u30ca\u30fc
+
+rma_recordsmanagement.type.rma_dispositionSchedule.title=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb
+rma_recordsmanagement.type.rma_dispositionSchedule.decription=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb
+
+rma_recordsmanagement.property.rma_dispositionAuthority.title=\u4fdd\u7ba1\u6a29\u9650
+rma_recordsmanagement.property.rma_dispositionAuthority.decription=\u4fdd\u7ba1\u6a29\u9650
+
+rma_recordsmanagement.property.rma_dispositionInstructions.title=\u4fdd\u7ba1\u6307\u793a
+rma_recordsmanagement.property.rma_dispositionInstructions.decription=\u4fdd\u7ba1\u6307\u793a
+
+rma_recordsmanagement.property.rma_recordLevelDisposition.title=\u30ec\u30b3\u30fc\u30c9\u30ec\u30d9\u30eb\u306e\u4fdd\u7ba1
+rma_recordsmanagement.property.rma_recordLevelDisposition.decription=\u30ec\u30b3\u30fc\u30c9\u30ec\u30d9\u30eb\u306e\u4fdd\u7ba1
+
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=\u4fdd\u7ba1\u51e6\u7406
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=\u4fdd\u7ba1\u51e6\u7406
+
+rma_recordsmanagement.type.rma_dispositionActionDefinition.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9a\u7fa9
+rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9a\u7fa9
+rma_recordsmanagement.property.rma_dispositionActionName.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u540d\u524d
+rma_recordsmanagement.property.rma_dispositionActionName.decription=\u4fdd\u7ba1\u51e6\u7406\u306e\u540d\u524d
+rma_recordsmanagement.property.rma_dispositionDescription.title=\u4fdd\u7ba1\u306e\u8aac\u660e
+rma_recordsmanagement.property.rma_dispositionDescription.decription=\u4fdd\u7ba1\u306e\u8aac\u660e
+rma_recordsmanagement.property.rma_dispositionLocation.title=\u4fdd\u7ba1\u5834\u6240
+rma_recordsmanagement.property.rma_dispositionLocation.decription=\u4fdd\u7ba1\u5834\u6240
+rma_recordsmanagement.property.rma_dispositionPeriod.title=\u4fdd\u7ba1\u671f\u9593
+rma_recordsmanagement.property.rma_dispositionPeriod.decription=\u4fdd\u7ba1\u671f\u9593
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=\u4fdd\u7ba1\u671f\u9593\u306e\u30d7\u30ed\u30d1\u30c6\u30a3
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=\u4fdd\u7ba1\u671f\u9593\u306e\u30d7\u30ed\u30d1\u30c6\u30a3
+rma_recordsmanagement.property.rma_dispositionEvent.title=\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8
+rma_recordsmanagement.property.rma_dispositionEvent.decription=\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8
+rma_recordsmanagement.property.rma_dispositionEventCombination.title=\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8\u306e\u7d44\u307f\u5408\u308f\u305b
+rma_recordsmanagement.property.rma_dispositionEventCombination.decription=\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8\u306e\u7d44\u307f\u5408\u308f\u305b
+
+rma_recordsmanagement.type.rma_recordFolder.title=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
+rma_recordsmanagement.type.rma_recordFolder.decription=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
+rma_recordsmanagement.property.rma_isClosed.title=\u30ec\u30b3\u30fc\u30c9
+rma_recordsmanagement.property.rma_isClosed.decription=\u30ec\u30b3\u30fc\u30c9
+
+rma_recordsmanagement.type.rma_recordCategory.title=\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea
+rma_recordsmanagement.type.rma_recordCategory.decription=\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea
+
+rma_recordsmanagement.type.rma_nonElectronicDocument.title=\u975e\u96fb\u5b50\u6587\u66f8
+rma_recordsmanagement.type.rma_nonElectronicDocument.decription=\u975e\u96fb\u5b50\u6587\u66f8
+rma_recordsmanagement.property.rma_physicalSize.title=\u7269\u7406\u7684\u306a\u30b5\u30a4\u30ba
+rma_recordsmanagement.property.rma_physicalSize.decription=\u6587\u66f8\u306e\u30b5\u30a4\u30ba\u306f\u30ea\u30cb\u30a2\u30e1\u30fc\u30bf\u30fc\u3067\u8a08\u6e2c\u3055\u308c\u307e\u3059\u3002
+rma_recordsmanagement.property.rma_numberOfCopies.title=\u30b3\u30d4\u30fc\u6570
+rma_recordsmanagement.property.rma_numberOfCopies.description=\u6587\u66f8\u306e\u30b3\u30d4\u30fc\u6570\u3002
+rma_recordsmanagement.property.rma_storageLocation.title=\u4fdd\u7ba1\u5834\u6240
+rma_recordsmanagement.property.rma_storageLocation.decription=\u30ec\u30b3\u30fc\u30c9\u306e\u7269\u7406\u7684\u306a\u4fdd\u7ba1\u5834\u6240\u3002
+rma_recordsmanagement.property.rma_shelf.title=\u68da
+rma_recordsmanagement.property.rma_shelf.decription=\u30ec\u30b3\u30fc\u30c9\u3092\u4fdd\u7ba1\u3057\u3066\u304a\u304f\u68da\u3002
+rma_recordsmanagement.property.rma_box.title=\u7bb1
+rma_recordsmanagement.property.rma_box.description=\u30ec\u30b3\u30fc\u30c9\u3092\u4fdd\u7ba1\u3057\u3066\u304a\u304f\u7bb1\u3002
+rma_recordsmanagement.property.rma_file.title=\u30d5\u30a1\u30a4\u30eb
+rma_recordsmanagement.property.rma_file.decription=\u30ec\u30b3\u30fc\u30c9\u3092\u4fdd\u7ba1\u3057\u3066\u304a\u304f\u30d5\u30a1\u30a4\u30eb\u3002
+
+rma_recordsmanagement.type.rma_dispositionAction.title=\u4fdd\u7ba1\u51e6\u7406
+rma_recordsmanagement.type.rma_dispositionAction.decription=\u4fdd\u7ba1\u51e6\u7406
+rma_recordsmanagement.property.rma_dispositionActionId.title=\u4fdd\u7ba1\u51e6\u7406 ID
+rma_recordsmanagement.property.rma_dispositionActionId.decription=\u4fdd\u7ba1\u51e6\u7406 ID
+rma_recordsmanagement.property.rma_dispositionAction.title=\u4fdd\u7ba1\u51e6\u7406
+rma_recordsmanagement.property.rma_dispositionAction.decription=\u4fdd\u7ba1\u51e6\u7406
+rma_recordsmanagement.property.rma_dispositionAsOf.title=\u4fdd\u7ba1\u51e6\u7406
+rma_recordsmanagement.property.rma_dispositionAsOf.decription=\u4fdd\u7ba1\u51e6\u7406
+rma_recordsmanagement.property.rma_dispositionEventsEligible.title=\u5b9f\u884c\u53ef\u80fd\u306a\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8
+rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=\u5b9f\u884c\u53ef\u80fd\u306a\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u958b\u59cb\u65e5\u6642
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=\u4fdd\u7ba1\u51e6\u7406\u306e\u958b\u59cb\u65e5\u6642
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u958b\u59cb\u8005
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=\u4fdd\u7ba1\u51e6\u7406\u306e\u958b\u59cb\u8005
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b8c\u4e86\u65e5\u6642
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b8c\u4e86\u65e5\u6642
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b8c\u4e86\u8005
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b8c\u4e86\u8005
+rma_recordsmanagement.association.rma_eventExecutions.title=\u30a4\u30d9\u30f3\u30c8\u306e\u5b9f\u884c
+rma_recordsmanagement.association.rma_eventExecutions.decription=\u30a4\u30d9\u30f3\u30c8\u306e\u5b9f\u884c
+
+rma_recordsmanagement.type.rma_eventExecution.title=\u30a4\u30d9\u30f3\u30c8\u306e\u5b9f\u884c
+rma_recordsmanagement.type.rma_eventExecution.decription=\u30a4\u30d9\u30f3\u30c8\u306e\u5b9f\u884c
+rma_recordsmanagement.property.rma_eventExecutionName.title=\u30a4\u30d9\u30f3\u30c8\u540d
+rma_recordsmanagement.property.rma_eventExecutionName.decription=\u30a4\u30d9\u30f3\u30c8\u540d
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=\u30a4\u30d9\u30f3\u30c8\u306e\u81ea\u52d5\u5316
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=\u30a4\u30d9\u30f3\u30c8\u306e\u81ea\u52d5\u5316
+rma_recordsmanagement.property.rma_eventExecutionComplete.title=\u30a4\u30d9\u30f3\u30c8\u5b8c\u4e86
+rma_recordsmanagement.property.rma_eventExecutionComplete.decription=\u30a4\u30d9\u30f3\u30c8\u5b8c\u4e86
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=\u30a4\u30d9\u30f3\u30c8\u306e\u5b8c\u4e86\u8005
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=\u30a4\u30d9\u30f3\u30c8\u306e\u5b8c\u4e86\u8005
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=\u30a4\u30d9\u30f3\u30c8\u306e\u5b8c\u4e86\u65e5\u6642
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=\u30a4\u30d9\u30f3\u30c8\u306e\u5b8c\u4e86\u65e5\u6642
+
+rma_recordsmanagement.type.rma_hold.title=\u30db\u30fc\u30eb\u30c9
+rma_recordsmanagement.type.rma_hold.decription=\u30db\u30fc\u30eb\u30c9
+rma_recordsmanagement.property.rma_holdReason.title=\u30db\u30fc\u30eb\u30c9\u7406\u7531
+rma_recordsmanagement.property.rma_holdReason.decription=\u30db\u30fc\u30eb\u30c9\u7406\u7531
+rma_recordsmanagement.association.rma_frozenRecords.title=\u30db\u30fc\u30eb\u30c9\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9
+rma_recordsmanagement.association.rma_frozenRecords.decription=\u30db\u30fc\u30eb\u30c9\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9
+
+rma_recordsmanagement.type.rma_transfer.title=\u8ee2\u9001
+rma_recordsmanagement.type.rma_transfer.decription=\u8ee2\u9001
+rma_recordsmanagement.property.rma_transferAccessionIndicator.title=\u8ee2\u9001\u53d7\u8afe\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc
+rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=\u8ee2\u9001\u53d7\u8afe\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc
+rma_recordsmanagement.property.rma_transferPDFIndicator.title=PDF\u306e\u8ee2\u9001\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc
+rma_recordsmanagement.property.rma_transferPDFIndicator.decription=PDF\u306e\u8ee2\u9001\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc
+rma_recordsmanagement.property.rma_transferLocation.title=PDF\u306e\u8ee2\u9001
+rma_recordsmanagement.property.rma_transferLocation.decription=PDF\u306e\u8ee2\u9001
+rma_recordsmanagement.association.rma_transferred.title=\u8ee2\u9001\u6e08\u307f
+rma_recordsmanagement.association.rma_transferred.decription=\u8ee2\u9001\u6e08\u307f
+
+rma_recordsmanagement.aspect.rma_filePlanComponent.title=\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8
+rma_recordsmanagement.aspect.rma_filePlanComponent.decription=\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8
+rma_recordsmanagement.property.rma_rootNodeRef.title=\u30eb\u30fc\u30c8\u30ce\u30fc\u30c9
+rma_recordsmanagement.property.rma_rootNodeRef.decription=\u30eb\u30fc\u30c8\u30ce\u30fc\u30c9
+
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8
+rma_recordsmanagement.association.rma_holds.title=\u30db\u30fc\u30eb\u30c9
+rma_recordsmanagement.association.rma_holds.decription=\u30db\u30fc\u30eb\u30c9
+rma_recordsmanagement.association.rma_transfers.title=\u8ee2\u9001
+rma_recordsmanagement.association.rma_transfers.decription=\u8ee2\u9001
+
+rma_recordsmanagement.aspect.rma_declaredRecord.title=\u5b8c\u4e86\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
+rma_recordsmanagement.aspect.rma_declaredRecord.decription=\u5b8c\u4e86\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
+rma_recordsmanagement.property.rma_declaredAt.title=\u5b8c\u4e86\u65e5
+rma_recordsmanagement.property.rma_declaredAt.decription=\u5b8c\u4e86\u65e5
+rma_recordsmanagement.property.rma_declaredBy.title=\u5b8c\u4e86\u8005
+rma_recordsmanagement.property.rma_declaredBy.decription=\u5b8c\u4e86\u8005
+
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=\u30ec\u30b3\u30fc\u30c9\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8 ID
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=\u30ec\u30b3\u30fc\u30c9\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8 ID
+rma_recordsmanagement.property.rma_identifier.title=\u30ec\u30b3\u30fc\u30c9 ID
+rma_recordsmanagement.property.rma_identifier.decription=\u4e00\u610f\u306e\u30ec\u30b3\u30fc\u30c9 ID
+rma_recordsmanagement.property.rma_dbUniquenessId.title=\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u4e00\u610f\u6027
+rma_recordsmanagement.property.rma_dbUniquenessId.decription=\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u4e00\u610f\u6027
+
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u5b9a\u7fa9
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u5b9a\u7fa9
+
+rma_recordsmanagement.property.rma_reviewPeriod.title=\u30ec\u30d3\u30e5\u30fc\u671f\u9593
+rma_recordsmanagement.property.rma_reviewPeriod.decription=\u30ec\u30d3\u30e5\u30fc\u671f\u9593
+rma_recordsmanagement.property.rma_vitalRecordIndicator.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc
+rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc
+
+rma_recordsmanagement.aspect.rma_record.title=\u30ec\u30b3\u30fc\u30c9
+rma_recordsmanagement.aspect.rma_record.decription=\u30ec\u30b3\u30fc\u30c9
+rma_recordsmanagement.property.rma_dateFiled.title=\u6574\u7406\u4fdd\u7ba1\u65e5
+rma_recordsmanagement.property.rma_dateFiled.decription=\u6574\u7406\u4fdd\u7ba1\u65e5
+rma_recordsmanagement.property.rma_origionalName=\u5143\u306e\u540d\u524d
+
+rma_recordsmanagement.aspect.rma_recordMetaData.title=\u30ec\u30b3\u30fc\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf
+rma_recordsmanagement.aspect.rma_recordMetaData.description=\u30ec\u30b3\u30fc\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u30de\u30fc\u30ab\u30fc\u30a2\u30b9\u30da\u30af\u30c8
+
+rma_recordsmanagement.aspect.rma_commonRecordDetails.title=\u5171\u901a\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u60c5\u5831
+rma_recordsmanagement.aspect.rma_commonRecordDetails.description=\u3059\u3079\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7\u306b\u5171\u901a\u3059\u308b\u30e1\u30bf\u30c7\u30fc\u30bf
+rma_recordsmanagement.property.rma_location.title=\u5834\u6240
+rma_recordsmanagement.property.rma_location.decription=\u5834\u6240
+
+rma_recordsmanagement.aspect.rma_vitalRecord.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9
+rma_recordsmanagement.aspect.rma_vitalRecord.decription=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9
+rma_recordsmanagement.property.rma_reviewAsOf.title=\u6b21\u56de\u306e\u30ec\u30d3\u30e5\u30fc
+rma_recordsmanagement.property.rma_reviewAsOf.decription=\u6b21\u56de\u306e\u30ec\u30d3\u30e5\u30fc
+rma_recordsmanagement.property.rma_notificationIssued.title=\u3053\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u30ec\u30d3\u30e5\u30fc\u4e88\u5b9a\u304c\u901a\u77e5\u3055\u308c\u305f\u3053\u3068\u3092\u793a\u3057\u307e\u3059
+rma_recordsmanagement.property.rma_notificationIssued.decription=\u3053\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u30ec\u30d3\u30e5\u30fc\u4e88\u5b9a\u304c\u901a\u77e5\u3055\u308c\u305f\u3053\u3068\u3092\u793a\u3057\u307e\u3059
+
+rma_recordsmanagement.aspect.rma_scheduled.title=\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u6e08\u307f
+rma_recordsmanagement.aspect.rma_scheduled.decription=\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u6e08\u307f
+rma_recordsmanagement.association.rma_dispositionSchedule.title=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb
+rma_recordsmanagement.association.rma_dispositionSchedule.decription=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb
+
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=\u4fdd\u7ba1\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=\u4fdd\u7ba1\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb
+rma_recordsmanagement.association.rma_nextDispositionAction.title=\u6b21\u56de\u306e\u4fdd\u7ba1\u51e6\u7406
+rma_recordsmanagement.association.rma_nextDispositionAction.decription=\u6b21\u56de\u306e\u4fdd\u7ba1\u51e6\u7406
+rma_recordsmanagement.association.rma_dispositionActionHistory.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u5c65\u6b74
+rma_recordsmanagement.association.rma_dispositionActionHistory.decription=\u4fdd\u7ba1\u51e6\u7406\u306e\u5c65\u6b74
+
+rma_recordsmanagement.aspect.rma_cutOff.title=\u30ab\u30c3\u30c8\u30aa\u30d5
+rma_recordsmanagement.aspect.rma_cutOff.decription=\u30ab\u30c3\u30c8\u30aa\u30d5
+rma_recordsmanagement.property.rma_cutOffDate.title=\u30ab\u30c3\u30c8\u30aa\u30d5\u65e5
+rma_recordsmanagement.property.rma_cutOffDate.decription=\u30ab\u30c3\u30c8\u30aa\u30d5\u65e5
+
+rma_recordsmanagement.aspect.rma_transferred.title=\u8ee2\u9001\u6e08\u307f
+rma_recordsmanagement.aspect.rma_transferred.decription=\u8ee2\u9001\u6e08\u307f
+
+rma_recordsmanagement.aspect.rma_ascended.title=\u6607\u9806\u3067\u4e26\u3079\u66ff\u3048\u6e08\u307f
+rma_recordsmanagement.aspect.rma_ascended.decription=\u6607\u9806\u3067\u4e26\u3079\u66ff\u3048\u6e08\u307f
+
+rma_recordsmanagement.aspect.rma_frozen.title=\u30db\u30fc\u30eb\u30c9\u4e2d
+rma_recordsmanagement.aspect.rma_frozen.decription=\u30db\u30fc\u30eb\u30c9\u4e2d
+rma_recordsmanagement.property.rma_frozenAt.title=\u30db\u30fc\u30eb\u30c9\u65e5\u6642
+rma_recordsmanagement.property.rma_frozenAt.decription=\u30db\u30fc\u30eb\u30c9\u65e5\u6642
+rma_recordsmanagement.property.rma_frozenBy.title=\u30db\u30fc\u30eb\u30c9\u5b9f\u884c\u8005
+rma_recordsmanagement.property.rma_frozenBy.decription=\u30db\u30fc\u30eb\u30c9\u5b9f\u884c\u8005
+
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=\u8b66\u544a\u306e\u8a2d\u5b9a\u30eb\u30fc\u30c8
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=\u8b66\u544a\u306e\u8a2d\u5b9a\u30eb\u30fc\u30c8
+rma_recordsmanagement.association.rma_caveatConfigAssoc.title=\u8b66\u544a\u306e\u8a2d\u5b9a
+rma_recordsmanagement.association.rma_caveatConfigAssoc.description=\u8b66\u544a\u306e\u8a2d\u5b9a
+
+rma_recordsmanagement.aspect.rma_emailConfigRoot.title=E \u30e1\u30fc\u30eb\u306e\u8a2d\u5b9a\u30eb\u30fc\u30c8
+rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=E \u30e1\u30fc\u30eb\u306e\u8a2d\u5b9a\u30eb\u30fc\u30c8
+rma_recordsmanagement.association.rma_emailConfigAssoc.title=E \u30e1\u30fc\u30eb\u306e\u8a2d\u5b9a
+rma_recordsmanagement.association.rma_emailConfigAssoc.description=E \u30e1\u30fc\u30eb\u306e\u8a2d\u5b9a
+
+rma_recordsmanagement.aspect.rma_recordSearch.title=\u30ec\u30b3\u30fc\u30c9\u306e\u691c\u7d22
+rma_recordsmanagement.aspect.rma_recordSearch.decription=[\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406] \u3067\u306e\u691c\u7d22\u306b\u95a2\u3059\u308b\u60c5\u5831
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3042\u308a
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=\u30a2\u30a4\u30c6\u30e0\u306b\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u304c\u95a2\u9023\u4ed8\u3051\u3089\u308c\u3066\u3044\u308b\u304b\u3069\u3046\u304b\u3092\u793a\u3057\u307e\u3059\u3002
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u540d\u524d
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=\u6b21\u56de\u306e\u4fdd\u7ba1\u51e6\u7406\u306e\u540d\u524d
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9f\u884c\u53ef\u80fd\u65e5
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=\u6b21\u56de\u306e\u4fdd\u7ba1\u51e6\u7406\u304c\u5b9f\u884c\u53ef\u80fd\u306b\u306a\u308b\u65e5
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=\u4fdd\u7ba1\u671f\u9593
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=\u4fdd\u7ba1\u671f\u9593
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=\u4fdd\u7ba1\u671f\u9593\u306e\u8a08\u7b97\u5f0f
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=\u4fdd\u7ba1\u671f\u9593\u306e\u8a08\u7b97\u5f0f
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=\u5b9f\u884c\u53ef\u80fd\u306a\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=\u5b9f\u884c\u53ef\u80fd\u306a\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=\u4fdd\u7ba1\u30a4\u30d9\u30f3\u30c8
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=\u4fdd\u7ba1\u6a29\u9650
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=\u4fdd\u7ba1\u6a29\u9650
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=\u4fdd\u7ba1\u6307\u793a
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=\u4fdd\u7ba1\u6307\u793a
+rma_recordsmanagement.property.rma_recordSearchHoldReason.title=\u30db\u30fc\u30eb\u30c9\u7406\u7531
+rma_recordsmanagement.property.rma_recordSearchHoldReason.description=\u30db\u30fc\u30eb\u30c9\u7406\u7531
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u30ec\u30d3\u30e5\u30fc\u671f\u9593
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u30ec\u30d3\u30e5\u30fc\u671f\u9593
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=\u30ec\u30d3\u30e5\u30fc\u671f\u9593\u306e\u8a08\u7b97\u5f0f
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=\u30ec\u30d3\u30e5\u30fc\u671f\u9593\u306e\u8a08\u7b97\u5f0f
+
+rma_recordsmanagement.aspect.rma_versionedRecord.title=\u30d0\u30fc\u30b8\u30e7\u30f3\u7ba1\u7406\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9
+rma_recordsmanagement.aspect.rma_versionedRecord.decription=\u30d0\u30fc\u30b8\u30e7\u30f3\u7ba1\u7406\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9
+
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=\u975e\u516c\u958b\u306e\u66f4\u65b0\u60c5\u5831
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=\u975e\u516c\u958b\u306e\u66f4\u65b0\u60c5\u5831
+rma_recordsmanagement.property.rma_unpublishedUpdate.title=\u975e\u516c\u958b\u306e\u66f4\u65b0\u60c5\u5831
+rma_recordsmanagement.property.rma_unpublishedUpdate.description=\u975e\u516c\u958b\u306e\u66f4\u65b0\u60c5\u5831\u304c\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u793a\u3057\u307e\u3059
+rma_recordsmanagement.property.rma_updateTo.title=\u66f4\u65b0\u5148
+rma_recordsmanagement.property.rma_updateTo.description=\u66f4\u65b0\u306e\u9069\u7528\u5148
+rma_recordsmanagement.property.rma_updatedProperties.title=\u66f4\u65b0\u6e08\u307f\u30d7\u30ed\u30d1\u30c6\u30a3
+rma_recordsmanagement.property.rma_updatedProperties.description=\u66f4\u65b0\u6e08\u307f\u30d7\u30ed\u30d1\u30c6\u30a3
+rma_recordsmanagement.property.rma_publishInProgress.title=\u516c\u958b\u4e2d
+rma_recordsmanagement.property.rma_publishInProgress.description=\u73fe\u5728\u516c\u958b\u4e2d\u3067\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u793a\u3057\u307e\u3059
+
+rma_recordsmanagement.aspect.dod_ghosted.title=\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u307f\u306e\u30ec\u30b3\u30fc\u30c9
+rma_recordsmanagement.aspect.dod_ghosted.description=\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u307f\u306e\u30ec\u30b3\u30fc\u30c9
+
+listconstraint.rmc_tlList.title=\u8ee2\u9001\u5834\u6240
listconstraint.rmc_smList.title=\u88dc\u8db3\u30de\u30fc\u30ad\u30f3\u30b0
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_nb.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_nb.properties
index 189eb574e1..549efbf075 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_nb.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_nb.properties
@@ -1,265 +1,265 @@
-rma_recordsmanagement.description=Oppf\u00f8ringsh\u00e5ndtering av innholdsmodell
-
-rma_recordsmanagement.type.rma_rmsite.title=Sted til oppf\u00f8ringsh\u00e5ndtering
-rma_recordsmanagement.type.rma_rmsite.description=Spesialisert omr\u00e5de til oppf\u00f8ringsh\u00e5ndtering
-
-rma_recordsmanagement.type.rma_caveatConfig.title=Konfigurasjon av sikkerhetskontroller
-rma_recordsmanagement.type.rma_caveatConfig.decription=Konfigurasjon av sikkerhetskontroller
-
-rma_recordsmanagement.type.rma_emailConfig.title=E-postkonfigurasjon
-rma_recordsmanagement.type.rma_emailConfig.decription=E-postkonfigurasjon
-
-rma_recordsmanagement.type.rma_recordsManagementContainer.title=Oppf\u00f8ringsh\u00e5ndteringsbeholder
-rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Oppf\u00f8ringsh\u00e5ndteringsbeholder
-
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Filplanbeholder
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Filplanbeholder
-
-rma_recordsmanagement.type.rma_dispositionSchedule.title=Retensjonsplan
-rma_recordsmanagement.type.rma_dispositionSchedule.decription=Retensjonsplan
-
-rma_recordsmanagement.property.rma_dispositionAuthority.title=Retensjonsrett
-rma_recordsmanagement.property.rma_dispositionAuthority.decription=Retensjonsrett
-
-rma_recordsmanagement.property.rma_dispositionInstructions.title=Retensjonsinstruksjoner
-rma_recordsmanagement.property.rma_dispositionInstructions.decription=Retensjonsinstruksjoner
-
-rma_recordsmanagement.property.rma_recordLevelDisposition.title=Oppf\u00f8ringsniv\u00e5 ved retensjon
-rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Oppf\u00f8ringsniv\u00e5 ved retensjon
-
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Retensjonshandlinger
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Retensjonshandlinger
-
-rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Definisjon av retensjonshandling
-rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Definisjon av retensjonshandling
-rma_recordsmanagement.property.rma_dispositionActionName.title=Navn p\u00e5 retensjonshandling
-rma_recordsmanagement.property.rma_dispositionActionName.decription=Navn p\u00e5 retensjonshandling
-rma_recordsmanagement.property.rma_dispositionDescription.title=Retensjonsbeskrivelse
-rma_recordsmanagement.property.rma_dispositionDescription.decription=Retensjonsbeskrivelse
-rma_recordsmanagement.property.rma_dispositionLocation.title=Retensjonssted
-rma_recordsmanagement.property.rma_dispositionLocation.decription=Retensjonssted
-rma_recordsmanagement.property.rma_dispositionPeriod.title=Retensjonsperiode
-rma_recordsmanagement.property.rma_dispositionPeriod.decription=Retensjonsperiode
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Egenskap ved retensjonsperiode
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Egenskap ved retensjonsperiode
-rma_recordsmanagement.property.rma_dispositionEvent.title=Retensjonshendelse
-rma_recordsmanagement.property.rma_dispositionEvent.decription=Retensjonshendelse
-rma_recordsmanagement.property.rma_dispositionEventCombination.title=Kombinert retensjonshendelse
-rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Kombinert retensjonshendelse
-
-rma_recordsmanagement.type.rma_recordFolder.title=Oppf\u00f8ringsmappe
-rma_recordsmanagement.type.rma_recordFolder.decription=Oppf\u00f8ringsmappe
-rma_recordsmanagement.property.rma_isClosed.title=Oppf\u00f8ring
-rma_recordsmanagement.property.rma_isClosed.decription=Oppf\u00f8ring
-
-rma_recordsmanagement.type.rma_recordCategory.title=Oppf\u00f8ringskategori
-rma_recordsmanagement.type.rma_recordCategory.decription=Oppf\u00f8ringskategori
-
-rma_recordsmanagement.type.rma_nonElectronicDocument.title=Ikke-elektronisk dokument
-rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Ikke-elektronisk dokument
-rma_recordsmanagement.property.rma_physicalSize.title=Fysisk st\u00f8rrelse
-rma_recordsmanagement.property.rma_physicalSize.decription=St\u00f8rrelsen p\u00e5 dokumentet m\u00e5lt i line\u00e6re meter.
-rma_recordsmanagement.property.rma_numberOfCopies.title=Antall kopier
-rma_recordsmanagement.property.rma_numberOfCopies.description=Antall kopier av dokumentet.
-rma_recordsmanagement.property.rma_storageLocation.title=Lagringssted
-rma_recordsmanagement.property.rma_storageLocation.decription=Det fysiske lagringsstedet til oppf\u00f8ringen.
-rma_recordsmanagement.property.rma_shelf.title=Hylle
-rma_recordsmanagement.property.rma_shelf.decription=Hyllen som oppf\u00f8ringen oppbevares p\u00e5.
-rma_recordsmanagement.property.rma_box.title=Eske
-rma_recordsmanagement.property.rma_box.description=Esken som oppf\u00f8ringen oppbevares i.
-rma_recordsmanagement.property.rma_file.title=Fil
-rma_recordsmanagement.property.rma_file.decription=Filen som oppf\u00f8ringen oppbevares i.
-
-rma_recordsmanagement.type.rma_dispositionAction.title=Retensjonshandling
-rma_recordsmanagement.type.rma_dispositionAction.decription=Retensjonshandling
-rma_recordsmanagement.property.rma_dispositionActionId.title=Retensjonshandling-ID
-rma_recordsmanagement.property.rma_dispositionActionId.decription=Retensjonshandling-ID
-rma_recordsmanagement.property.rma_dispositionAction.title=Retensjonshandling
-rma_recordsmanagement.property.rma_dispositionAction.decription=Retensjonshandling
-rma_recordsmanagement.property.rma_dispositionAsOf.title=Retensjonshandling
-rma_recordsmanagement.property.rma_dispositionAsOf.decription=Retensjonshandling
-rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Kvalifiserte retensjonshendelser
-rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Kvalifiserte retensjonshendelser
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Retensjonshandling som starter p\u00e5
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Retensjonshandling som starter p\u00e5
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Retensjonshandling som startes av
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Retensjonshandling som startes av
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Retensjonshandling som fullf\u00f8res p\u00e5
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Retensjonshandling som fullf\u00f8res p\u00e5
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Retensjonshandling som fullf\u00f8res av
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Retensjonshandling som fullf\u00f8res av
-rma_recordsmanagement.association.rma_eventExecutions.title=Utf\u00f8rte hendelser
-rma_recordsmanagement.association.rma_eventExecutions.decription=Utf\u00f8rte hendelser
-
-rma_recordsmanagement.type.rma_eventExecution.title=Utf\u00f8relse av hendelse
-rma_recordsmanagement.type.rma_eventExecution.decription=Utf\u00f8relse av hendelse
-rma_recordsmanagement.property.rma_eventExecutionName.title=Hendelsenavn
-rma_recordsmanagement.property.rma_eventExecutionName.decription=Hendelsenavn
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Automatisk hendelse
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Automatisk hendelse
-rma_recordsmanagement.property.rma_eventExecutionComplete.title=Fullf\u00f8rt hendelse
-rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Fullf\u00f8rt hendelse
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Hendelse fullf\u00f8rt av
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Hendelse fullf\u00f8rt av
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Hendelse fullf\u00f8rt den
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Hendelse fullf\u00f8rt den
-
-rma_recordsmanagement.type.rma_hold.title=Hold
-rma_recordsmanagement.type.rma_hold.decription=Hold
-rma_recordsmanagement.property.rma_holdReason.title=Grunn til holdet
-rma_recordsmanagement.property.rma_holdReason.decription=Grunn til holdet
-rma_recordsmanagement.association.rma_frozenRecords.title=Oppf\u00f8ringer p\u00e5 hold
-rma_recordsmanagement.association.rma_frozenRecords.decription=Oppf\u00f8ringer p\u00e5 hold
-
-rma_recordsmanagement.type.rma_transfer.title=Overf\u00f8r
-rma_recordsmanagement.type.rma_transfer.decription=Overf\u00f8r
-rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Overf\u00f8r tilgangsindikator
-rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Overf\u00f8r tilgangsindikator
-rma_recordsmanagement.property.rma_transferPDFIndicator.title=Overf\u00f8r PDF-indikator
-rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Overf\u00f8r PDF-indikator
-rma_recordsmanagement.property.rma_transferLocation.title=Overf\u00f8r PDF
-rma_recordsmanagement.property.rma_transferLocation.decription=Overf\u00f8r PDF
-rma_recordsmanagement.association.rma_transferred.title=Overf\u00f8rt
-rma_recordsmanagement.association.rma_transferred.decription=Overf\u00f8rt
-
-rma_recordsmanagement.aspect.rma_filePlanComponent.title=Filplandel
-rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Filplandel
-rma_recordsmanagement.property.rma_rootNodeRef.title=Rotnode
-rma_recordsmanagement.property.rma_rootNodeRef.decription=Rotnode
-
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Filplan
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Filplan
-rma_recordsmanagement.association.rma_holds.title=Hold
-rma_recordsmanagement.association.rma_holds.decription=Hold
-rma_recordsmanagement.association.rma_transfers.title=Overf\u00f8ringer
-rma_recordsmanagement.association.rma_transfers.decription=Overf\u00f8ringer
-
-rma_recordsmanagement.aspect.rma_declaredRecord.title=Fullf\u00f8rt oppf\u00f8ring
-rma_recordsmanagement.aspect.rma_declaredRecord.decription=Fullf\u00f8rt oppf\u00f8ring
-rma_recordsmanagement.property.rma_declaredAt.title=Dato fullf\u00f8rt
-rma_recordsmanagement.property.rma_declaredAt.decription=Dato fullf\u00f8rt
-rma_recordsmanagement.property.rma_declaredBy.title=Fullf\u00f8rt av
-rma_recordsmanagement.property.rma_declaredBy.decription=Fullf\u00f8rt av
-
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Del-ID til oppf\u00f8ring
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Del-ID til oppf\u00f8ring
-rma_recordsmanagement.property.rma_identifier.title=Oppf\u00f8rings-ID
-rma_recordsmanagement.property.rma_identifier.decription=Unik oppf\u00f8rings-ID
-rma_recordsmanagement.property.rma_dbUniquenessId.title=Unikt ved database
-rma_recordsmanagement.property.rma_dbUniquenessId.decription=Unikt ved database
-
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Sv\u00e6rt viktig oppf\u00f8ringsdefinisjon
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Sv\u00e6rt viktig oppf\u00f8ringsdefinisjon
-
-rma_recordsmanagement.property.rma_reviewPeriod.title=Gjennomgangsperiode
-rma_recordsmanagement.property.rma_reviewPeriod.decription=Gjennomgangsperiode
-rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Sv\u00e6rt viktig oppf\u00f8ringsindikator
-rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Sv\u00e6rt viktig oppf\u00f8ringsindikator
-
-rma_recordsmanagement.aspect.rma_record.title=Oppf\u00f8ring
-rma_recordsmanagement.aspect.rma_record.decription=Oppf\u00f8ring
-rma_recordsmanagement.property.rma_dateFiled.title=Dato registrert
-rma_recordsmanagement.property.rma_dateFiled.decription=Dato registrert
-rma_recordsmanagement.property.rma_origionalName=Opprinnelig navn
-
-rma_recordsmanagement.aspect.rma_recordMetaData.title=Oppf\u00f8ringsmetadata
-rma_recordsmanagement.aspect.rma_recordMetaData.description=Mark\u00f8raspekt for oppf\u00f8ringsmetadata
-
-rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Felles oppf\u00f8ringsinformasjon
-rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Felles metadata for alle oppf\u00f8ringstyper
-rma_recordsmanagement.property.rma_location.title=Sted
-rma_recordsmanagement.property.rma_location.decription=Sted
-
-rma_recordsmanagement.aspect.rma_vitalRecord.title=Sv\u00e6rt viktig oppf\u00f8ring
-rma_recordsmanagement.aspect.rma_vitalRecord.decription=Sv\u00e6rt viktig oppf\u00f8ring
-rma_recordsmanagement.property.rma_reviewAsOf.title=Neste gjennomgang
-rma_recordsmanagement.property.rma_reviewAsOf.decription=Neste gjennomgang
-rma_recordsmanagement.property.rma_notificationIssued.title=Indikerer at en melding om at denne oppf\u00f8ringen skal gjennomg\u00e5s, er blitt utstedt
-rma_recordsmanagement.property.rma_notificationIssued.decription=Indikerer at en melding om at denne oppf\u00f8ringen skal gjennomg\u00e5s, er blitt utstedt
-
-rma_recordsmanagement.aspect.rma_scheduled.title=Planlagt
-rma_recordsmanagement.aspect.rma_scheduled.decription=Planlagt
-rma_recordsmanagement.association.rma_dispositionSchedule.title=Retensjonsplan
-rma_recordsmanagement.association.rma_dispositionSchedule.decription=Retensjonsplan
-
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Livssyklus ved retensjon
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Livssyklus ved retensjon
-rma_recordsmanagement.association.rma_nextDispositionAction.title=Neste retensjonshandling
-rma_recordsmanagement.association.rma_nextDispositionAction.decription=Neste retensjonshandling
-rma_recordsmanagement.association.rma_dispositionActionHistory.title=Historikk ved retensjonshandling
-rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Historikk ved retensjonshandling
-
-rma_recordsmanagement.aspect.rma_cutOff.title=Cut off
-rma_recordsmanagement.aspect.rma_cutOff.decription=Cut off
-rma_recordsmanagement.property.rma_cutOffDate.title=Cut off-dato
-rma_recordsmanagement.property.rma_cutOffDate.decription=Cut off-dato
-
-rma_recordsmanagement.aspect.rma_transferred.title=Overf\u00f8rt
-rma_recordsmanagement.aspect.rma_transferred.decription=Overf\u00f8rt
-
-rma_recordsmanagement.aspect.rma_ascended.title=Stigende
-rma_recordsmanagement.aspect.rma_ascended.decription=Stigende
-
-rma_recordsmanagement.aspect.rma_frozen.title=P\u00e5 hold
-rma_recordsmanagement.aspect.rma_frozen.decription=P\u00e5 hold
-rma_recordsmanagement.property.rma_frozenAt.title=Holdes ved
-rma_recordsmanagement.property.rma_frozenAt.decription=Holdes ved
-rma_recordsmanagement.property.rma_frozenBy.title=Holdes av
-rma_recordsmanagement.property.rma_frozenBy.decription=Holdes av
-
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Varselskonfigurasjonsrot
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Varselskonfigurasjonsrot
-rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Varselskonfigurasjon
-rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Varselskonfigurasjon
-
-rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Roten ved e-postkonfigurasjon
-rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Roten ved e-postkonfigurasjon
-rma_recordsmanagement.association.rma_emailConfigAssoc.title=E-postkonfigurasjon
-rma_recordsmanagement.association.rma_emailConfigAssoc.description=E-postkonfigurasjon
-
-rma_recordsmanagement.aspect.rma_recordSearch.title=Oppf\u00f8ringss\u00f8k
-rma_recordsmanagement.aspect.rma_recordSearch.decription=Informasjon som st\u00f8tter s\u00f8k i oppf\u00f8ringsh\u00e5ndtering
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Har retensjonsplan
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Indikerer om elementet er forbundet med retensjonsplanen
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Navn p\u00e5 retensjonshandling
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=Navnet p\u00e5 neste retensjonshandling
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Retensjonshandling av
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=Datoen n\u00e5r neste retensjonshandling blir kvalifisert
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Retensjonsperiode
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Retensjonsperiode
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Uttrykk ved retensjonsperiode
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Uttrykk ved retensjonsperiode
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Kvalifiserte retensjonshendelser
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Kvalifiserte retensjonshendelser
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Retensjonshendelser
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Retensjonshendelser
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Retensjonsrett
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Retensjonsrett
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Retensjonsinstruksjoner
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Retensjonsinstruksjoner
-rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Grunn til holdet
-rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Grunn til holdet
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=Gjennomgangsperiode til den sv\u00e6rt viktige oppf\u00f8ringen
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=Gjennomgangsperiode til den sv\u00e6rt viktige oppf\u00f8ringen
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Uttrykk av gjennomgangsperioden
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Uttrykk av gjennomgangsperioden
-
-rma_recordsmanagement.aspect.rma_versionedRecord.title=Oppf\u00f8ring med versjon
-rma_recordsmanagement.aspect.rma_versionedRecord.decription=Oppf\u00f8ring med versjon
-
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Upublisert oppdatering
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Upublisert oppdatering
-rma_recordsmanagement.property.rma_unpublishedUpdate.title=Upublisert oppdatering
-rma_recordsmanagement.property.rma_unpublishedUpdate.description=Indikerer om det finnes en upublisert oppdatering
-rma_recordsmanagement.property.rma_updateTo.title=Oppdater til
-rma_recordsmanagement.property.rma_updateTo.description=M\u00e5let til oppdateringen
-rma_recordsmanagement.property.rma_updatedProperties.title=Oppdaterte egenskaper
-rma_recordsmanagement.property.rma_updatedProperties.description=De oppdaterte egenskapene
-rma_recordsmanagement.property.rma_publishInProgress.title=Publisering p\u00e5g\u00e5r
-rma_recordsmanagement.property.rma_publishInProgress.description=Indikerer om en publisering p\u00e5g\u00e5r for tiden
-
-rma_recordsmanagement.aspect.dod_ghosted.title=Oppf\u00f8ring kun med metadata
-rma_recordsmanagement.aspect.dod_ghosted.description=Oppf\u00f8ring kun med metadata
-
-listconstraint.rmc_tlList.title=Overf\u00f8ringssteder
+rma_recordsmanagement.description=Oppf\u00f8ringsh\u00e5ndtering av innholdsmodell
+
+rma_recordsmanagement.type.rma_rmsite.title=Sted til oppf\u00f8ringsh\u00e5ndtering
+rma_recordsmanagement.type.rma_rmsite.description=Spesialisert omr\u00e5de til oppf\u00f8ringsh\u00e5ndtering
+
+rma_recordsmanagement.type.rma_caveatConfig.title=Konfigurasjon av sikkerhetskontroller
+rma_recordsmanagement.type.rma_caveatConfig.decription=Konfigurasjon av sikkerhetskontroller
+
+rma_recordsmanagement.type.rma_emailConfig.title=E-postkonfigurasjon
+rma_recordsmanagement.type.rma_emailConfig.decription=E-postkonfigurasjon
+
+rma_recordsmanagement.type.rma_recordsManagementContainer.title=Oppf\u00f8ringsh\u00e5ndteringsbeholder
+rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Oppf\u00f8ringsh\u00e5ndteringsbeholder
+
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Filplanbeholder
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Filplanbeholder
+
+rma_recordsmanagement.type.rma_dispositionSchedule.title=Retensjonsplan
+rma_recordsmanagement.type.rma_dispositionSchedule.decription=Retensjonsplan
+
+rma_recordsmanagement.property.rma_dispositionAuthority.title=Retensjonsrett
+rma_recordsmanagement.property.rma_dispositionAuthority.decription=Retensjonsrett
+
+rma_recordsmanagement.property.rma_dispositionInstructions.title=Retensjonsinstruksjoner
+rma_recordsmanagement.property.rma_dispositionInstructions.decription=Retensjonsinstruksjoner
+
+rma_recordsmanagement.property.rma_recordLevelDisposition.title=Oppf\u00f8ringsniv\u00e5 ved retensjon
+rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Oppf\u00f8ringsniv\u00e5 ved retensjon
+
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Retensjonshandlinger
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Retensjonshandlinger
+
+rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Definisjon av retensjonshandling
+rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Definisjon av retensjonshandling
+rma_recordsmanagement.property.rma_dispositionActionName.title=Navn p\u00e5 retensjonshandling
+rma_recordsmanagement.property.rma_dispositionActionName.decription=Navn p\u00e5 retensjonshandling
+rma_recordsmanagement.property.rma_dispositionDescription.title=Retensjonsbeskrivelse
+rma_recordsmanagement.property.rma_dispositionDescription.decription=Retensjonsbeskrivelse
+rma_recordsmanagement.property.rma_dispositionLocation.title=Retensjonssted
+rma_recordsmanagement.property.rma_dispositionLocation.decription=Retensjonssted
+rma_recordsmanagement.property.rma_dispositionPeriod.title=Retensjonsperiode
+rma_recordsmanagement.property.rma_dispositionPeriod.decription=Retensjonsperiode
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Egenskap ved retensjonsperiode
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Egenskap ved retensjonsperiode
+rma_recordsmanagement.property.rma_dispositionEvent.title=Retensjonshendelse
+rma_recordsmanagement.property.rma_dispositionEvent.decription=Retensjonshendelse
+rma_recordsmanagement.property.rma_dispositionEventCombination.title=Kombinert retensjonshendelse
+rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Kombinert retensjonshendelse
+
+rma_recordsmanagement.type.rma_recordFolder.title=Oppf\u00f8ringsmappe
+rma_recordsmanagement.type.rma_recordFolder.decription=Oppf\u00f8ringsmappe
+rma_recordsmanagement.property.rma_isClosed.title=Oppf\u00f8ring
+rma_recordsmanagement.property.rma_isClosed.decription=Oppf\u00f8ring
+
+rma_recordsmanagement.type.rma_recordCategory.title=Oppf\u00f8ringskategori
+rma_recordsmanagement.type.rma_recordCategory.decription=Oppf\u00f8ringskategori
+
+rma_recordsmanagement.type.rma_nonElectronicDocument.title=Ikke-elektronisk dokument
+rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Ikke-elektronisk dokument
+rma_recordsmanagement.property.rma_physicalSize.title=Fysisk st\u00f8rrelse
+rma_recordsmanagement.property.rma_physicalSize.decription=St\u00f8rrelsen p\u00e5 dokumentet m\u00e5lt i line\u00e6re meter.
+rma_recordsmanagement.property.rma_numberOfCopies.title=Antall kopier
+rma_recordsmanagement.property.rma_numberOfCopies.description=Antall kopier av dokumentet.
+rma_recordsmanagement.property.rma_storageLocation.title=Lagringssted
+rma_recordsmanagement.property.rma_storageLocation.decription=Det fysiske lagringsstedet til oppf\u00f8ringen.
+rma_recordsmanagement.property.rma_shelf.title=Hylle
+rma_recordsmanagement.property.rma_shelf.decription=Hyllen som oppf\u00f8ringen oppbevares p\u00e5.
+rma_recordsmanagement.property.rma_box.title=Eske
+rma_recordsmanagement.property.rma_box.description=Esken som oppf\u00f8ringen oppbevares i.
+rma_recordsmanagement.property.rma_file.title=Fil
+rma_recordsmanagement.property.rma_file.decription=Filen som oppf\u00f8ringen oppbevares i.
+
+rma_recordsmanagement.type.rma_dispositionAction.title=Retensjonshandling
+rma_recordsmanagement.type.rma_dispositionAction.decription=Retensjonshandling
+rma_recordsmanagement.property.rma_dispositionActionId.title=Retensjonshandling-ID
+rma_recordsmanagement.property.rma_dispositionActionId.decription=Retensjonshandling-ID
+rma_recordsmanagement.property.rma_dispositionAction.title=Retensjonshandling
+rma_recordsmanagement.property.rma_dispositionAction.decription=Retensjonshandling
+rma_recordsmanagement.property.rma_dispositionAsOf.title=Retensjonshandling
+rma_recordsmanagement.property.rma_dispositionAsOf.decription=Retensjonshandling
+rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Kvalifiserte retensjonshendelser
+rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Kvalifiserte retensjonshendelser
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Retensjonshandling som starter p\u00e5
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Retensjonshandling som starter p\u00e5
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Retensjonshandling som startes av
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Retensjonshandling som startes av
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Retensjonshandling som fullf\u00f8res p\u00e5
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Retensjonshandling som fullf\u00f8res p\u00e5
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Retensjonshandling som fullf\u00f8res av
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Retensjonshandling som fullf\u00f8res av
+rma_recordsmanagement.association.rma_eventExecutions.title=Utf\u00f8rte hendelser
+rma_recordsmanagement.association.rma_eventExecutions.decription=Utf\u00f8rte hendelser
+
+rma_recordsmanagement.type.rma_eventExecution.title=Utf\u00f8relse av hendelse
+rma_recordsmanagement.type.rma_eventExecution.decription=Utf\u00f8relse av hendelse
+rma_recordsmanagement.property.rma_eventExecutionName.title=Hendelsenavn
+rma_recordsmanagement.property.rma_eventExecutionName.decription=Hendelsenavn
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Automatisk hendelse
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Automatisk hendelse
+rma_recordsmanagement.property.rma_eventExecutionComplete.title=Fullf\u00f8rt hendelse
+rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Fullf\u00f8rt hendelse
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Hendelse fullf\u00f8rt av
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Hendelse fullf\u00f8rt av
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Hendelse fullf\u00f8rt den
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Hendelse fullf\u00f8rt den
+
+rma_recordsmanagement.type.rma_hold.title=Hold
+rma_recordsmanagement.type.rma_hold.decription=Hold
+rma_recordsmanagement.property.rma_holdReason.title=Grunn til holdet
+rma_recordsmanagement.property.rma_holdReason.decription=Grunn til holdet
+rma_recordsmanagement.association.rma_frozenRecords.title=Oppf\u00f8ringer p\u00e5 hold
+rma_recordsmanagement.association.rma_frozenRecords.decription=Oppf\u00f8ringer p\u00e5 hold
+
+rma_recordsmanagement.type.rma_transfer.title=Overf\u00f8r
+rma_recordsmanagement.type.rma_transfer.decription=Overf\u00f8r
+rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Overf\u00f8r tilgangsindikator
+rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Overf\u00f8r tilgangsindikator
+rma_recordsmanagement.property.rma_transferPDFIndicator.title=Overf\u00f8r PDF-indikator
+rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Overf\u00f8r PDF-indikator
+rma_recordsmanagement.property.rma_transferLocation.title=Overf\u00f8r PDF
+rma_recordsmanagement.property.rma_transferLocation.decription=Overf\u00f8r PDF
+rma_recordsmanagement.association.rma_transferred.title=Overf\u00f8rt
+rma_recordsmanagement.association.rma_transferred.decription=Overf\u00f8rt
+
+rma_recordsmanagement.aspect.rma_filePlanComponent.title=Filplandel
+rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Filplandel
+rma_recordsmanagement.property.rma_rootNodeRef.title=Rotnode
+rma_recordsmanagement.property.rma_rootNodeRef.decription=Rotnode
+
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Filplan
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Filplan
+rma_recordsmanagement.association.rma_holds.title=Hold
+rma_recordsmanagement.association.rma_holds.decription=Hold
+rma_recordsmanagement.association.rma_transfers.title=Overf\u00f8ringer
+rma_recordsmanagement.association.rma_transfers.decription=Overf\u00f8ringer
+
+rma_recordsmanagement.aspect.rma_declaredRecord.title=Fullf\u00f8rt oppf\u00f8ring
+rma_recordsmanagement.aspect.rma_declaredRecord.decription=Fullf\u00f8rt oppf\u00f8ring
+rma_recordsmanagement.property.rma_declaredAt.title=Dato fullf\u00f8rt
+rma_recordsmanagement.property.rma_declaredAt.decription=Dato fullf\u00f8rt
+rma_recordsmanagement.property.rma_declaredBy.title=Fullf\u00f8rt av
+rma_recordsmanagement.property.rma_declaredBy.decription=Fullf\u00f8rt av
+
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Del-ID til oppf\u00f8ring
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Del-ID til oppf\u00f8ring
+rma_recordsmanagement.property.rma_identifier.title=Oppf\u00f8rings-ID
+rma_recordsmanagement.property.rma_identifier.decription=Unik oppf\u00f8rings-ID
+rma_recordsmanagement.property.rma_dbUniquenessId.title=Unikt ved database
+rma_recordsmanagement.property.rma_dbUniquenessId.decription=Unikt ved database
+
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Sv\u00e6rt viktig oppf\u00f8ringsdefinisjon
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Sv\u00e6rt viktig oppf\u00f8ringsdefinisjon
+
+rma_recordsmanagement.property.rma_reviewPeriod.title=Gjennomgangsperiode
+rma_recordsmanagement.property.rma_reviewPeriod.decription=Gjennomgangsperiode
+rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Sv\u00e6rt viktig oppf\u00f8ringsindikator
+rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Sv\u00e6rt viktig oppf\u00f8ringsindikator
+
+rma_recordsmanagement.aspect.rma_record.title=Oppf\u00f8ring
+rma_recordsmanagement.aspect.rma_record.decription=Oppf\u00f8ring
+rma_recordsmanagement.property.rma_dateFiled.title=Dato registrert
+rma_recordsmanagement.property.rma_dateFiled.decription=Dato registrert
+rma_recordsmanagement.property.rma_origionalName=Opprinnelig navn
+
+rma_recordsmanagement.aspect.rma_recordMetaData.title=Oppf\u00f8ringsmetadata
+rma_recordsmanagement.aspect.rma_recordMetaData.description=Mark\u00f8raspekt for oppf\u00f8ringsmetadata
+
+rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Felles oppf\u00f8ringsinformasjon
+rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Felles metadata for alle oppf\u00f8ringstyper
+rma_recordsmanagement.property.rma_location.title=Sted
+rma_recordsmanagement.property.rma_location.decription=Sted
+
+rma_recordsmanagement.aspect.rma_vitalRecord.title=Sv\u00e6rt viktig oppf\u00f8ring
+rma_recordsmanagement.aspect.rma_vitalRecord.decription=Sv\u00e6rt viktig oppf\u00f8ring
+rma_recordsmanagement.property.rma_reviewAsOf.title=Neste gjennomgang
+rma_recordsmanagement.property.rma_reviewAsOf.decription=Neste gjennomgang
+rma_recordsmanagement.property.rma_notificationIssued.title=Indikerer at en melding om at denne oppf\u00f8ringen skal gjennomg\u00e5s, er blitt utstedt
+rma_recordsmanagement.property.rma_notificationIssued.decription=Indikerer at en melding om at denne oppf\u00f8ringen skal gjennomg\u00e5s, er blitt utstedt
+
+rma_recordsmanagement.aspect.rma_scheduled.title=Planlagt
+rma_recordsmanagement.aspect.rma_scheduled.decription=Planlagt
+rma_recordsmanagement.association.rma_dispositionSchedule.title=Retensjonsplan
+rma_recordsmanagement.association.rma_dispositionSchedule.decription=Retensjonsplan
+
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Livssyklus ved retensjon
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Livssyklus ved retensjon
+rma_recordsmanagement.association.rma_nextDispositionAction.title=Neste retensjonshandling
+rma_recordsmanagement.association.rma_nextDispositionAction.decription=Neste retensjonshandling
+rma_recordsmanagement.association.rma_dispositionActionHistory.title=Historikk ved retensjonshandling
+rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Historikk ved retensjonshandling
+
+rma_recordsmanagement.aspect.rma_cutOff.title=Cut off
+rma_recordsmanagement.aspect.rma_cutOff.decription=Cut off
+rma_recordsmanagement.property.rma_cutOffDate.title=Cut off-dato
+rma_recordsmanagement.property.rma_cutOffDate.decription=Cut off-dato
+
+rma_recordsmanagement.aspect.rma_transferred.title=Overf\u00f8rt
+rma_recordsmanagement.aspect.rma_transferred.decription=Overf\u00f8rt
+
+rma_recordsmanagement.aspect.rma_ascended.title=Stigende
+rma_recordsmanagement.aspect.rma_ascended.decription=Stigende
+
+rma_recordsmanagement.aspect.rma_frozen.title=P\u00e5 hold
+rma_recordsmanagement.aspect.rma_frozen.decription=P\u00e5 hold
+rma_recordsmanagement.property.rma_frozenAt.title=Holdes ved
+rma_recordsmanagement.property.rma_frozenAt.decription=Holdes ved
+rma_recordsmanagement.property.rma_frozenBy.title=Holdes av
+rma_recordsmanagement.property.rma_frozenBy.decription=Holdes av
+
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Varselskonfigurasjonsrot
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Varselskonfigurasjonsrot
+rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Varselskonfigurasjon
+rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Varselskonfigurasjon
+
+rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Roten ved e-postkonfigurasjon
+rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Roten ved e-postkonfigurasjon
+rma_recordsmanagement.association.rma_emailConfigAssoc.title=E-postkonfigurasjon
+rma_recordsmanagement.association.rma_emailConfigAssoc.description=E-postkonfigurasjon
+
+rma_recordsmanagement.aspect.rma_recordSearch.title=Oppf\u00f8ringss\u00f8k
+rma_recordsmanagement.aspect.rma_recordSearch.decription=Informasjon som st\u00f8tter s\u00f8k i oppf\u00f8ringsh\u00e5ndtering
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Har retensjonsplan
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Indikerer om elementet er forbundet med retensjonsplanen
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Navn p\u00e5 retensjonshandling
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=Navnet p\u00e5 neste retensjonshandling
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Retensjonshandling av
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=Datoen n\u00e5r neste retensjonshandling blir kvalifisert
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Retensjonsperiode
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Retensjonsperiode
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Uttrykk ved retensjonsperiode
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Uttrykk ved retensjonsperiode
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Kvalifiserte retensjonshendelser
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Kvalifiserte retensjonshendelser
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Retensjonshendelser
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Retensjonshendelser
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Retensjonsrett
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Retensjonsrett
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Retensjonsinstruksjoner
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Retensjonsinstruksjoner
+rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Grunn til holdet
+rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Grunn til holdet
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=Gjennomgangsperiode til den sv\u00e6rt viktige oppf\u00f8ringen
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=Gjennomgangsperiode til den sv\u00e6rt viktige oppf\u00f8ringen
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Uttrykk av gjennomgangsperioden
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Uttrykk av gjennomgangsperioden
+
+rma_recordsmanagement.aspect.rma_versionedRecord.title=Oppf\u00f8ring med versjon
+rma_recordsmanagement.aspect.rma_versionedRecord.decription=Oppf\u00f8ring med versjon
+
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Upublisert oppdatering
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Upublisert oppdatering
+rma_recordsmanagement.property.rma_unpublishedUpdate.title=Upublisert oppdatering
+rma_recordsmanagement.property.rma_unpublishedUpdate.description=Indikerer om det finnes en upublisert oppdatering
+rma_recordsmanagement.property.rma_updateTo.title=Oppdater til
+rma_recordsmanagement.property.rma_updateTo.description=M\u00e5let til oppdateringen
+rma_recordsmanagement.property.rma_updatedProperties.title=Oppdaterte egenskaper
+rma_recordsmanagement.property.rma_updatedProperties.description=De oppdaterte egenskapene
+rma_recordsmanagement.property.rma_publishInProgress.title=Publisering p\u00e5g\u00e5r
+rma_recordsmanagement.property.rma_publishInProgress.description=Indikerer om en publisering p\u00e5g\u00e5r for tiden
+
+rma_recordsmanagement.aspect.dod_ghosted.title=Oppf\u00f8ring kun med metadata
+rma_recordsmanagement.aspect.dod_ghosted.description=Oppf\u00f8ring kun med metadata
+
+listconstraint.rmc_tlList.title=Overf\u00f8ringssteder
listconstraint.rmc_smList.title=Tilleggsmarkeringer
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_nl.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_nl.properties
index 9758923a65..14f033afe4 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_nl.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_nl.properties
@@ -1,265 +1,265 @@
-rma_recordsmanagement.description=Contentmodel Records Management
-
-rma_recordsmanagement.type.rma_rmsite.title=Site Records Management
-rma_recordsmanagement.type.rma_rmsite.description=Gespecialiseerde site voor Records Management
-
-rma_recordsmanagement.type.rma_caveatConfig.title=Configuratie beveiligingsfuncties
-rma_recordsmanagement.type.rma_caveatConfig.decription=Configuratie beveiligingsfuncties
-
-rma_recordsmanagement.type.rma_emailConfig.title=E-mailconfiguratie
-rma_recordsmanagement.type.rma_emailConfig.decription=E-mailconfiguratie
-
-rma_recordsmanagement.type.rma_recordsManagementContainer.title=Container Records Management
-rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Container Records Management
-
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Oorsprongcontainer Records Management
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Oorsprongcontainer Records Management
-
-rma_recordsmanagement.type.rma_dispositionSchedule.title=Retentieschema
-rma_recordsmanagement.type.rma_dispositionSchedule.decription=Retentieschema
-
-rma_recordsmanagement.property.rma_dispositionAuthority.title=Retentieautoriteit
-rma_recordsmanagement.property.rma_dispositionAuthority.decription=Retentieautoriteit
-
-rma_recordsmanagement.property.rma_dispositionInstructions.title=Retentie-instructies
-rma_recordsmanagement.property.rma_dispositionInstructions.decription=Retentie-instructies
-
-rma_recordsmanagement.property.rma_recordLevelDisposition.title=Retentie op recordniveau
-rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Retentie op recordniveau
-
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Retentieacties
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Retentieacties
-
-rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Definitie retentieactie
-rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Definitie retentieactie
-rma_recordsmanagement.property.rma_dispositionActionName.title=Naam retentieactie
-rma_recordsmanagement.property.rma_dispositionActionName.decription=Naam retentieactie
-rma_recordsmanagement.property.rma_dispositionDescription.title=Retentiebeschrijving
-rma_recordsmanagement.property.rma_dispositionDescription.decription=Retentiebeschrijving
-rma_recordsmanagement.property.rma_dispositionLocation.title=Retentielocatie
-rma_recordsmanagement.property.rma_dispositionLocation.decription=Retentielocatie
-rma_recordsmanagement.property.rma_dispositionPeriod.title=Retentieperiode
-rma_recordsmanagement.property.rma_dispositionPeriod.decription=Retentieperiode
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Eigenschap retentieperiode
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Eigenschap retentieperiode
-rma_recordsmanagement.property.rma_dispositionEvent.title=Retentiegebeurtenis
-rma_recordsmanagement.property.rma_dispositionEvent.decription=Retentiegebeurtenis
-rma_recordsmanagement.property.rma_dispositionEventCombination.title=Combinatie retentiegebeurtenis
-rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Combinatie retentiegebeurtenis
-
-rma_recordsmanagement.type.rma_recordFolder.title=Archiefmap
-rma_recordsmanagement.type.rma_recordFolder.decription=Archiefmap
-rma_recordsmanagement.property.rma_isClosed.title=Record
-rma_recordsmanagement.property.rma_isClosed.decription=Record
-
-rma_recordsmanagement.type.rma_recordCategory.title=Recordcategorie
-rma_recordsmanagement.type.rma_recordCategory.decription=Recordcategorie
-
-rma_recordsmanagement.type.rma_nonElectronicDocument.title=Niet-elektronisch document
-rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Niet-elektronisch document
-rma_recordsmanagement.property.rma_physicalSize.title=Fysieke grootte
-rma_recordsmanagement.property.rma_physicalSize.decription=De grootte van het document gemeten in lineaire meters.
-rma_recordsmanagement.property.rma_numberOfCopies.title=Aantal exemplaren
-rma_recordsmanagement.property.rma_numberOfCopies.description=Het aantal exemplaren van het document.
-rma_recordsmanagement.property.rma_storageLocation.title=Opslaglocatie
-rma_recordsmanagement.property.rma_storageLocation.decription=De fysieke opslaglocatie van de record.
-rma_recordsmanagement.property.rma_shelf.title=Plank
-rma_recordsmanagement.property.rma_shelf.decription=De plank waarop de record wordt bewaard.
-rma_recordsmanagement.property.rma_box.title=Doos
-rma_recordsmanagement.property.rma_box.description=De doos waarin de record wordt bewaard.
-rma_recordsmanagement.property.rma_file.title=Archiveren
-rma_recordsmanagement.property.rma_file.decription=Het archief waarin de record wordt bewaard.
-
-rma_recordsmanagement.type.rma_dispositionAction.title=Retentieactie
-rma_recordsmanagement.type.rma_dispositionAction.decription=Retentieactie
-rma_recordsmanagement.property.rma_dispositionActionId.title=Id retentieactie
-rma_recordsmanagement.property.rma_dispositionActionId.decription=Id retentieactie
-rma_recordsmanagement.property.rma_dispositionAction.title=Retentieactie
-rma_recordsmanagement.property.rma_dispositionAction.decription=Retentieactie
-rma_recordsmanagement.property.rma_dispositionAsOf.title=Retentieactie
-rma_recordsmanagement.property.rma_dispositionAsOf.decription=Retentieactie
-rma_recordsmanagement.property.rma_dispositionEventsEligible.title=In aanmerking komende retentiegebeurtenissen
-rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=In aanmerking komende retentiegebeurtenissen
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Retentieactie gestart op
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Retentieactie gestart op
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Retentieactie gestart door
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Retentieactie gestart door
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Retentieactie afgerond op
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Retentieactie afgerond op
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Retentieactie afgerond door
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Retentieactie afgerond door
-rma_recordsmanagement.association.rma_eventExecutions.title=Gebeurtenisuitvoeringen
-rma_recordsmanagement.association.rma_eventExecutions.decription=Gebeurtenisuitvoeringen
-
-rma_recordsmanagement.type.rma_eventExecution.title=Gebeurtenisuitvoering
-rma_recordsmanagement.type.rma_eventExecution.decription=Gebeurtenisuitvoering
-rma_recordsmanagement.property.rma_eventExecutionName.title=Gebeurtenisnaam
-rma_recordsmanagement.property.rma_eventExecutionName.decription=Gebeurtenisnaam
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Gebeurtenis automatisch
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Gebeurtenis automatisch
-rma_recordsmanagement.property.rma_eventExecutionComplete.title=Gebeurtenis afgerond
-rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Gebeurtenis afgerond
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Gebeurtenis afgerond door
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Gebeurtenis afgerond door
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Gebeurtenis afgerond op
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Gebeurtenis afgerond op
-
-rma_recordsmanagement.type.rma_hold.title=Wachtstand
-rma_recordsmanagement.type.rma_hold.decription=Wachtstand
-rma_recordsmanagement.property.rma_holdReason.title=Reden van wachtstand
-rma_recordsmanagement.property.rma_holdReason.decription=Reden van wachtstand
-rma_recordsmanagement.association.rma_frozenRecords.title=Records in wachtstand
-rma_recordsmanagement.association.rma_frozenRecords.decription=Records in wachtstand
-
-rma_recordsmanagement.type.rma_transfer.title=Overzetten
-rma_recordsmanagement.type.rma_transfer.decription=Overzetten
-rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Indicator voor overzettingsoverdracht
-rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Indicator voor overzettingsoverdracht
-rma_recordsmanagement.property.rma_transferPDFIndicator.title=Indicator PDF overzetten
-rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Indicator PDF overzetten
-rma_recordsmanagement.property.rma_transferLocation.title=PDF overzetten
-rma_recordsmanagement.property.rma_transferLocation.decription=PDF overzetten
-rma_recordsmanagement.association.rma_transferred.title=Overgezet
-rma_recordsmanagement.association.rma_transferred.decription=Overgezet
-
-rma_recordsmanagement.aspect.rma_filePlanComponent.title=Onderdeel ordeningsplan
-rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Onderdeel ordeningsplan
-rma_recordsmanagement.property.rma_rootNodeRef.title=Oorsprongnode
-rma_recordsmanagement.property.rma_rootNodeRef.decription=Oorsprongnode
-
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Oorsprong Records Management
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Oorsprong Records Management
-rma_recordsmanagement.association.rma_holds.title=Wachtstanden
-rma_recordsmanagement.association.rma_holds.decription=Wachtstanden
-rma_recordsmanagement.association.rma_transfers.title=Overzettingen
-rma_recordsmanagement.association.rma_transfers.decription=Overzettingen
-
-rma_recordsmanagement.aspect.rma_declaredRecord.title=Afgeronde record
-rma_recordsmanagement.aspect.rma_declaredRecord.decription=Afgeronde record
-rma_recordsmanagement.property.rma_declaredAt.title=Datum afgerond
-rma_recordsmanagement.property.rma_declaredAt.decription=Datum afgerond
-rma_recordsmanagement.property.rma_declaredBy.title=Afgerond door
-rma_recordsmanagement.property.rma_declaredBy.decription=Afgerond door
-
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Identificatie recordonderdeel
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Identificatie recordonderdeel
-rma_recordsmanagement.property.rma_identifier.title=Record-id
-rma_recordsmanagement.property.rma_identifier.decription=Unieke identificatie record
-rma_recordsmanagement.property.rma_dbUniquenessId.title=Uniekheid database
-rma_recordsmanagement.property.rma_dbUniquenessId.decription=Uniekheid database
-
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Definitie vitale record
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Definitie vitale record
-
-rma_recordsmanagement.property.rma_reviewPeriod.title=Revisieperiode
-rma_recordsmanagement.property.rma_reviewPeriod.decription=Revisieperiode
-rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Indicator vitale record
-rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Indicator vitale record
-
-rma_recordsmanagement.aspect.rma_record.title=Record
-rma_recordsmanagement.aspect.rma_record.decription=Record
-rma_recordsmanagement.property.rma_dateFiled.title=Datum gearchiveerd
-rma_recordsmanagement.property.rma_dateFiled.decription=Datum gearchiveerd
-rma_recordsmanagement.property.rma_origionalName=Oorspronkelijke naam
-
-rma_recordsmanagement.aspect.rma_recordMetaData.title=Metagegevens van record
-rma_recordsmanagement.aspect.rma_recordMetaData.description=Markeraspect voor metagegevens van record
-
-rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Algemene recordgegevens
-rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Algemene metagegevens voor alle recordtypes
-rma_recordsmanagement.property.rma_location.title=Locatie
-rma_recordsmanagement.property.rma_location.decription=Locatie
-
-rma_recordsmanagement.aspect.rma_vitalRecord.title=Vitale record
-rma_recordsmanagement.aspect.rma_vitalRecord.decription=Vitale record
-rma_recordsmanagement.property.rma_reviewAsOf.title=Volgende revisie
-rma_recordsmanagement.property.rma_reviewAsOf.decription=Volgende revisie
-rma_recordsmanagement.property.rma_notificationIssued.title=Geeft aan dat er een revisie-gereedmelding is afgegeven voor deze record
-rma_recordsmanagement.property.rma_notificationIssued.decription=Geeft aan dat er een revisie-gereedmelding is afgegeven voor deze record
-
-rma_recordsmanagement.aspect.rma_scheduled.title=Gepland
-rma_recordsmanagement.aspect.rma_scheduled.decription=Gepland
-rma_recordsmanagement.association.rma_dispositionSchedule.title=Retentieschema
-rma_recordsmanagement.association.rma_dispositionSchedule.decription=Retentieschema
-
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Retentiecyclus
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Retentiecyclus
-rma_recordsmanagement.association.rma_nextDispositionAction.title=Volgende retentieactie
-rma_recordsmanagement.association.rma_nextDispositionAction.decription=Volgende retentieactie
-rma_recordsmanagement.association.rma_dispositionActionHistory.title=Geschiedenis retentieactie
-rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Geschiedenis retentieactie
-
-rma_recordsmanagement.aspect.rma_cutOff.title=Afsluiten
-rma_recordsmanagement.aspect.rma_cutOff.decription=Afsluiten
-rma_recordsmanagement.property.rma_cutOffDate.title=Datum voor afsluiten
-rma_recordsmanagement.property.rma_cutOffDate.decription=Datum voor afsluiten
-
-rma_recordsmanagement.aspect.rma_transferred.title=Overgezet
-rma_recordsmanagement.aspect.rma_transferred.decription=Overgezet
-
-rma_recordsmanagement.aspect.rma_ascended.title=Opgelopen
-rma_recordsmanagement.aspect.rma_ascended.decription=Opgelopen
-
-rma_recordsmanagement.aspect.rma_frozen.title=In wachtstand
-rma_recordsmanagement.aspect.rma_frozen.decription=In wachtstand
-rma_recordsmanagement.property.rma_frozenAt.title=In wachtstand in
-rma_recordsmanagement.property.rma_frozenAt.decription=In wachtstand in
-rma_recordsmanagement.property.rma_frozenBy.title=In wachtstand door
-rma_recordsmanagement.property.rma_frozenBy.decription=In wachtstand door
-
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Oorsprong Caveat-configuratie
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Oorsprong Caveat-configuratie
-rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Caveat-configuratie
-rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Caveat-configuratie
-
-rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Oorsprong e-mailconfiguratie
-rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Oorsprong e-mailconfiguratie
-rma_recordsmanagement.association.rma_emailConfigAssoc.title=E-mailconfiguratie
-rma_recordsmanagement.association.rma_emailConfigAssoc.description=E-mailconfiguratie
-
-rma_recordsmanagement.aspect.rma_recordSearch.title=Record zoeken
-rma_recordsmanagement.aspect.rma_recordSearch.decription=Informatie ter ondersteuning van Records Management-zoekopdracht
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Heeft retentieschema
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Geeft aan of er een retentieschema aan het onderdeel is gekoppeld
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Naam retentieactie
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=De naam van de volgende retentieactie
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Retentieactie van
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=De datum waarop de volgende retentieactie in aanmerking komt
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Retentieperiode
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Retentieperiode
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Uitdrukking retentieperiode
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Uitdrukking retentieperiode
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=In aanmerking komende retentiegebeurtenissen
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=In aanmerking komende retentiegebeurtenissen
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Retentiegebeurtenissen
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Retentiegebeurtenissen
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Retentieautoriteit
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Retentieautoriteit
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Retentie-instructies
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Retentie-instructies
-rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Reden van wachtstand
-rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Reden van wachtstand
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=Revisieperiode vitale record
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=Revisieperiode vitale record
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Uitdrukking van revisieperiode
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Uitdrukking van revisieperiode
-
-rma_recordsmanagement.aspect.rma_versionedRecord.title=Record met versiebeheer
-rma_recordsmanagement.aspect.rma_versionedRecord.decription=Record met versiebeheer
-
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Ongepubliceerde update
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Ongepubliceerde update
-rma_recordsmanagement.property.rma_unpublishedUpdate.title=Ongepubliceerde update
-rma_recordsmanagement.property.rma_unpublishedUpdate.description=Geeft aan of er een ongepubliceerde update is
-rma_recordsmanagement.property.rma_updateTo.title=Bijwerken naar
-rma_recordsmanagement.property.rma_updateTo.description=Bestemming van de update
-rma_recordsmanagement.property.rma_updatedProperties.title=Bijgewerkte eigenschappen
-rma_recordsmanagement.property.rma_updatedProperties.description=De bijgewerkte eigenschappen
-rma_recordsmanagement.property.rma_publishInProgress.title=Publicatie bezig
-rma_recordsmanagement.property.rma_publishInProgress.description=Geeft aan of er momenteel een publicatie wordt uitgevoerd
-
-rma_recordsmanagement.aspect.dod_ghosted.title=Record met alleen metagegevens
-rma_recordsmanagement.aspect.dod_ghosted.description=Record met alleen metagegevens
-
-listconstraint.rmc_tlList.title=Overzetlocaties
+rma_recordsmanagement.description=Contentmodel Records Management
+
+rma_recordsmanagement.type.rma_rmsite.title=Site Records Management
+rma_recordsmanagement.type.rma_rmsite.description=Gespecialiseerde site voor Records Management
+
+rma_recordsmanagement.type.rma_caveatConfig.title=Configuratie beveiligingsfuncties
+rma_recordsmanagement.type.rma_caveatConfig.decription=Configuratie beveiligingsfuncties
+
+rma_recordsmanagement.type.rma_emailConfig.title=E-mailconfiguratie
+rma_recordsmanagement.type.rma_emailConfig.decription=E-mailconfiguratie
+
+rma_recordsmanagement.type.rma_recordsManagementContainer.title=Container Records Management
+rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Container Records Management
+
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Oorsprongcontainer Records Management
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Oorsprongcontainer Records Management
+
+rma_recordsmanagement.type.rma_dispositionSchedule.title=Retentieschema
+rma_recordsmanagement.type.rma_dispositionSchedule.decription=Retentieschema
+
+rma_recordsmanagement.property.rma_dispositionAuthority.title=Retentieautoriteit
+rma_recordsmanagement.property.rma_dispositionAuthority.decription=Retentieautoriteit
+
+rma_recordsmanagement.property.rma_dispositionInstructions.title=Retentie-instructies
+rma_recordsmanagement.property.rma_dispositionInstructions.decription=Retentie-instructies
+
+rma_recordsmanagement.property.rma_recordLevelDisposition.title=Retentie op recordniveau
+rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Retentie op recordniveau
+
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Retentieacties
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Retentieacties
+
+rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Definitie retentieactie
+rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Definitie retentieactie
+rma_recordsmanagement.property.rma_dispositionActionName.title=Naam retentieactie
+rma_recordsmanagement.property.rma_dispositionActionName.decription=Naam retentieactie
+rma_recordsmanagement.property.rma_dispositionDescription.title=Retentiebeschrijving
+rma_recordsmanagement.property.rma_dispositionDescription.decription=Retentiebeschrijving
+rma_recordsmanagement.property.rma_dispositionLocation.title=Retentielocatie
+rma_recordsmanagement.property.rma_dispositionLocation.decription=Retentielocatie
+rma_recordsmanagement.property.rma_dispositionPeriod.title=Retentieperiode
+rma_recordsmanagement.property.rma_dispositionPeriod.decription=Retentieperiode
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Eigenschap retentieperiode
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Eigenschap retentieperiode
+rma_recordsmanagement.property.rma_dispositionEvent.title=Retentiegebeurtenis
+rma_recordsmanagement.property.rma_dispositionEvent.decription=Retentiegebeurtenis
+rma_recordsmanagement.property.rma_dispositionEventCombination.title=Combinatie retentiegebeurtenis
+rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Combinatie retentiegebeurtenis
+
+rma_recordsmanagement.type.rma_recordFolder.title=Archiefmap
+rma_recordsmanagement.type.rma_recordFolder.decription=Archiefmap
+rma_recordsmanagement.property.rma_isClosed.title=Record
+rma_recordsmanagement.property.rma_isClosed.decription=Record
+
+rma_recordsmanagement.type.rma_recordCategory.title=Recordcategorie
+rma_recordsmanagement.type.rma_recordCategory.decription=Recordcategorie
+
+rma_recordsmanagement.type.rma_nonElectronicDocument.title=Niet-elektronisch document
+rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Niet-elektronisch document
+rma_recordsmanagement.property.rma_physicalSize.title=Fysieke grootte
+rma_recordsmanagement.property.rma_physicalSize.decription=De grootte van het document gemeten in lineaire meters.
+rma_recordsmanagement.property.rma_numberOfCopies.title=Aantal exemplaren
+rma_recordsmanagement.property.rma_numberOfCopies.description=Het aantal exemplaren van het document.
+rma_recordsmanagement.property.rma_storageLocation.title=Opslaglocatie
+rma_recordsmanagement.property.rma_storageLocation.decription=De fysieke opslaglocatie van de record.
+rma_recordsmanagement.property.rma_shelf.title=Plank
+rma_recordsmanagement.property.rma_shelf.decription=De plank waarop de record wordt bewaard.
+rma_recordsmanagement.property.rma_box.title=Doos
+rma_recordsmanagement.property.rma_box.description=De doos waarin de record wordt bewaard.
+rma_recordsmanagement.property.rma_file.title=Archiveren
+rma_recordsmanagement.property.rma_file.decription=Het archief waarin de record wordt bewaard.
+
+rma_recordsmanagement.type.rma_dispositionAction.title=Retentieactie
+rma_recordsmanagement.type.rma_dispositionAction.decription=Retentieactie
+rma_recordsmanagement.property.rma_dispositionActionId.title=Id retentieactie
+rma_recordsmanagement.property.rma_dispositionActionId.decription=Id retentieactie
+rma_recordsmanagement.property.rma_dispositionAction.title=Retentieactie
+rma_recordsmanagement.property.rma_dispositionAction.decription=Retentieactie
+rma_recordsmanagement.property.rma_dispositionAsOf.title=Retentieactie
+rma_recordsmanagement.property.rma_dispositionAsOf.decription=Retentieactie
+rma_recordsmanagement.property.rma_dispositionEventsEligible.title=In aanmerking komende retentiegebeurtenissen
+rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=In aanmerking komende retentiegebeurtenissen
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Retentieactie gestart op
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Retentieactie gestart op
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Retentieactie gestart door
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Retentieactie gestart door
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Retentieactie afgerond op
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Retentieactie afgerond op
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Retentieactie afgerond door
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Retentieactie afgerond door
+rma_recordsmanagement.association.rma_eventExecutions.title=Gebeurtenisuitvoeringen
+rma_recordsmanagement.association.rma_eventExecutions.decription=Gebeurtenisuitvoeringen
+
+rma_recordsmanagement.type.rma_eventExecution.title=Gebeurtenisuitvoering
+rma_recordsmanagement.type.rma_eventExecution.decription=Gebeurtenisuitvoering
+rma_recordsmanagement.property.rma_eventExecutionName.title=Gebeurtenisnaam
+rma_recordsmanagement.property.rma_eventExecutionName.decription=Gebeurtenisnaam
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Gebeurtenis automatisch
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Gebeurtenis automatisch
+rma_recordsmanagement.property.rma_eventExecutionComplete.title=Gebeurtenis afgerond
+rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Gebeurtenis afgerond
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Gebeurtenis afgerond door
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Gebeurtenis afgerond door
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Gebeurtenis afgerond op
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Gebeurtenis afgerond op
+
+rma_recordsmanagement.type.rma_hold.title=Wachtstand
+rma_recordsmanagement.type.rma_hold.decription=Wachtstand
+rma_recordsmanagement.property.rma_holdReason.title=Reden van wachtstand
+rma_recordsmanagement.property.rma_holdReason.decription=Reden van wachtstand
+rma_recordsmanagement.association.rma_frozenRecords.title=Records in wachtstand
+rma_recordsmanagement.association.rma_frozenRecords.decription=Records in wachtstand
+
+rma_recordsmanagement.type.rma_transfer.title=Overzetten
+rma_recordsmanagement.type.rma_transfer.decription=Overzetten
+rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Indicator voor overzettingsoverdracht
+rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Indicator voor overzettingsoverdracht
+rma_recordsmanagement.property.rma_transferPDFIndicator.title=Indicator PDF overzetten
+rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Indicator PDF overzetten
+rma_recordsmanagement.property.rma_transferLocation.title=PDF overzetten
+rma_recordsmanagement.property.rma_transferLocation.decription=PDF overzetten
+rma_recordsmanagement.association.rma_transferred.title=Overgezet
+rma_recordsmanagement.association.rma_transferred.decription=Overgezet
+
+rma_recordsmanagement.aspect.rma_filePlanComponent.title=Onderdeel ordeningsplan
+rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Onderdeel ordeningsplan
+rma_recordsmanagement.property.rma_rootNodeRef.title=Oorsprongnode
+rma_recordsmanagement.property.rma_rootNodeRef.decription=Oorsprongnode
+
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Oorsprong Records Management
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Oorsprong Records Management
+rma_recordsmanagement.association.rma_holds.title=Wachtstanden
+rma_recordsmanagement.association.rma_holds.decription=Wachtstanden
+rma_recordsmanagement.association.rma_transfers.title=Overzettingen
+rma_recordsmanagement.association.rma_transfers.decription=Overzettingen
+
+rma_recordsmanagement.aspect.rma_declaredRecord.title=Afgeronde record
+rma_recordsmanagement.aspect.rma_declaredRecord.decription=Afgeronde record
+rma_recordsmanagement.property.rma_declaredAt.title=Datum afgerond
+rma_recordsmanagement.property.rma_declaredAt.decription=Datum afgerond
+rma_recordsmanagement.property.rma_declaredBy.title=Afgerond door
+rma_recordsmanagement.property.rma_declaredBy.decription=Afgerond door
+
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Identificatie recordonderdeel
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Identificatie recordonderdeel
+rma_recordsmanagement.property.rma_identifier.title=Record-id
+rma_recordsmanagement.property.rma_identifier.decription=Unieke identificatie record
+rma_recordsmanagement.property.rma_dbUniquenessId.title=Uniekheid database
+rma_recordsmanagement.property.rma_dbUniquenessId.decription=Uniekheid database
+
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Definitie vitale record
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Definitie vitale record
+
+rma_recordsmanagement.property.rma_reviewPeriod.title=Revisieperiode
+rma_recordsmanagement.property.rma_reviewPeriod.decription=Revisieperiode
+rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Indicator vitale record
+rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Indicator vitale record
+
+rma_recordsmanagement.aspect.rma_record.title=Record
+rma_recordsmanagement.aspect.rma_record.decription=Record
+rma_recordsmanagement.property.rma_dateFiled.title=Datum gearchiveerd
+rma_recordsmanagement.property.rma_dateFiled.decription=Datum gearchiveerd
+rma_recordsmanagement.property.rma_origionalName=Oorspronkelijke naam
+
+rma_recordsmanagement.aspect.rma_recordMetaData.title=Metagegevens van record
+rma_recordsmanagement.aspect.rma_recordMetaData.description=Markeraspect voor metagegevens van record
+
+rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Algemene recordgegevens
+rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Algemene metagegevens voor alle recordtypes
+rma_recordsmanagement.property.rma_location.title=Locatie
+rma_recordsmanagement.property.rma_location.decription=Locatie
+
+rma_recordsmanagement.aspect.rma_vitalRecord.title=Vitale record
+rma_recordsmanagement.aspect.rma_vitalRecord.decription=Vitale record
+rma_recordsmanagement.property.rma_reviewAsOf.title=Volgende revisie
+rma_recordsmanagement.property.rma_reviewAsOf.decription=Volgende revisie
+rma_recordsmanagement.property.rma_notificationIssued.title=Geeft aan dat er een revisie-gereedmelding is afgegeven voor deze record
+rma_recordsmanagement.property.rma_notificationIssued.decription=Geeft aan dat er een revisie-gereedmelding is afgegeven voor deze record
+
+rma_recordsmanagement.aspect.rma_scheduled.title=Gepland
+rma_recordsmanagement.aspect.rma_scheduled.decription=Gepland
+rma_recordsmanagement.association.rma_dispositionSchedule.title=Retentieschema
+rma_recordsmanagement.association.rma_dispositionSchedule.decription=Retentieschema
+
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Retentiecyclus
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Retentiecyclus
+rma_recordsmanagement.association.rma_nextDispositionAction.title=Volgende retentieactie
+rma_recordsmanagement.association.rma_nextDispositionAction.decription=Volgende retentieactie
+rma_recordsmanagement.association.rma_dispositionActionHistory.title=Geschiedenis retentieactie
+rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Geschiedenis retentieactie
+
+rma_recordsmanagement.aspect.rma_cutOff.title=Afsluiten
+rma_recordsmanagement.aspect.rma_cutOff.decription=Afsluiten
+rma_recordsmanagement.property.rma_cutOffDate.title=Datum voor afsluiten
+rma_recordsmanagement.property.rma_cutOffDate.decription=Datum voor afsluiten
+
+rma_recordsmanagement.aspect.rma_transferred.title=Overgezet
+rma_recordsmanagement.aspect.rma_transferred.decription=Overgezet
+
+rma_recordsmanagement.aspect.rma_ascended.title=Opgelopen
+rma_recordsmanagement.aspect.rma_ascended.decription=Opgelopen
+
+rma_recordsmanagement.aspect.rma_frozen.title=In wachtstand
+rma_recordsmanagement.aspect.rma_frozen.decription=In wachtstand
+rma_recordsmanagement.property.rma_frozenAt.title=In wachtstand in
+rma_recordsmanagement.property.rma_frozenAt.decription=In wachtstand in
+rma_recordsmanagement.property.rma_frozenBy.title=In wachtstand door
+rma_recordsmanagement.property.rma_frozenBy.decription=In wachtstand door
+
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Oorsprong Caveat-configuratie
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Oorsprong Caveat-configuratie
+rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Caveat-configuratie
+rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Caveat-configuratie
+
+rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Oorsprong e-mailconfiguratie
+rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Oorsprong e-mailconfiguratie
+rma_recordsmanagement.association.rma_emailConfigAssoc.title=E-mailconfiguratie
+rma_recordsmanagement.association.rma_emailConfigAssoc.description=E-mailconfiguratie
+
+rma_recordsmanagement.aspect.rma_recordSearch.title=Record zoeken
+rma_recordsmanagement.aspect.rma_recordSearch.decription=Informatie ter ondersteuning van Records Management-zoekopdracht
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Heeft retentieschema
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Geeft aan of er een retentieschema aan het onderdeel is gekoppeld
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Naam retentieactie
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=De naam van de volgende retentieactie
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Retentieactie van
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=De datum waarop de volgende retentieactie in aanmerking komt
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Retentieperiode
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Retentieperiode
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Uitdrukking retentieperiode
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Uitdrukking retentieperiode
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=In aanmerking komende retentiegebeurtenissen
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=In aanmerking komende retentiegebeurtenissen
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Retentiegebeurtenissen
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Retentiegebeurtenissen
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Retentieautoriteit
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Retentieautoriteit
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Retentie-instructies
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Retentie-instructies
+rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Reden van wachtstand
+rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Reden van wachtstand
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=Revisieperiode vitale record
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=Revisieperiode vitale record
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Uitdrukking van revisieperiode
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Uitdrukking van revisieperiode
+
+rma_recordsmanagement.aspect.rma_versionedRecord.title=Record met versiebeheer
+rma_recordsmanagement.aspect.rma_versionedRecord.decription=Record met versiebeheer
+
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Ongepubliceerde update
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Ongepubliceerde update
+rma_recordsmanagement.property.rma_unpublishedUpdate.title=Ongepubliceerde update
+rma_recordsmanagement.property.rma_unpublishedUpdate.description=Geeft aan of er een ongepubliceerde update is
+rma_recordsmanagement.property.rma_updateTo.title=Bijwerken naar
+rma_recordsmanagement.property.rma_updateTo.description=Bestemming van de update
+rma_recordsmanagement.property.rma_updatedProperties.title=Bijgewerkte eigenschappen
+rma_recordsmanagement.property.rma_updatedProperties.description=De bijgewerkte eigenschappen
+rma_recordsmanagement.property.rma_publishInProgress.title=Publicatie bezig
+rma_recordsmanagement.property.rma_publishInProgress.description=Geeft aan of er momenteel een publicatie wordt uitgevoerd
+
+rma_recordsmanagement.aspect.dod_ghosted.title=Record met alleen metagegevens
+rma_recordsmanagement.aspect.dod_ghosted.description=Record met alleen metagegevens
+
+listconstraint.rmc_tlList.title=Overzetlocaties
listconstraint.rmc_smList.title=Aanvullende markeringen
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_pt_BR.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_pt_BR.properties
index c136cf2d15..3fa7d3f7d5 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_pt_BR.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_pt_BR.properties
@@ -1,265 +1,265 @@
-rma_recordsmanagement.description=Modelo do conte\u00fado do Records Management
-
-rma_recordsmanagement.type.rma_rmsite.title=Site do Records Management
-rma_recordsmanagement.type.rma_rmsite.description=Site especializado do Records Management
-
-rma_recordsmanagement.type.rma_caveatConfig.title=Configura\u00e7\u00e3o de controles de seguran\u00e7a
-rma_recordsmanagement.type.rma_caveatConfig.decription=Configura\u00e7\u00e3o de controles de seguran\u00e7a
-
-rma_recordsmanagement.type.rma_emailConfig.title=Configura\u00e7\u00e3o de e-mail
-rma_recordsmanagement.type.rma_emailConfig.decription=Configura\u00e7\u00e3o de e-mail
-
-rma_recordsmanagement.type.rma_recordsManagementContainer.title=Cont\u00eainer do Records Management
-rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Cont\u00eainer do Records Management
-
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Cont\u00eainer da raiz do Records Management
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Cont\u00eainer da raiz do Records Management
-
-rma_recordsmanagement.type.rma_dispositionSchedule.title=Programa\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.type.rma_dispositionSchedule.decription=Programa\u00e7\u00e3o de reten\u00e7\u00e3o
-
-rma_recordsmanagement.property.rma_dispositionAuthority.title=Autoridade de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionAuthority.decription=Autoridade de reten\u00e7\u00e3o
-
-rma_recordsmanagement.property.rma_dispositionInstructions.title=Instru\u00e7\u00f5es de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionInstructions.decription=Instru\u00e7\u00f5es de reten\u00e7\u00e3o
-
-rma_recordsmanagement.property.rma_recordLevelDisposition.title=Reten\u00e7\u00e3o de n\u00edvel de documento arquiv\u00edstico
-rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Reten\u00e7\u00e3o de n\u00edvel de documento arquiv\u00edstico
-
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=A\u00e7\u00f5es de reten\u00e7\u00e3o
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=A\u00e7\u00f5es de reten\u00e7\u00e3o
-
-rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Defini\u00e7\u00e3o da a\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Defini\u00e7\u00e3o da a\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionActionName.title=Nome da a\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionActionName.decription=Nome da a\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionDescription.title=Descri\u00e7\u00e3o da reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionDescription.decription=Descri\u00e7\u00e3o da reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionLocation.title=Localiza\u00e7\u00e3o da reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionLocation.decription=Localiza\u00e7\u00e3o da reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionPeriod.title=Per\u00edodo de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionPeriod.decription=Per\u00edodo de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Propriedade do per\u00edodo de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Propriedade do per\u00edodo de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionEvent.title=Evento de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionEvent.decription=Evento de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionEventCombination.title=Combina\u00e7\u00e3o de eventos de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Combina\u00e7\u00e3o de eventos de reten\u00e7\u00e3o
-
-rma_recordsmanagement.type.rma_recordFolder.title=Pasta de documento arquiv\u00edstico
-rma_recordsmanagement.type.rma_recordFolder.decription=Pasta de documento arquiv\u00edstico
-rma_recordsmanagement.property.rma_isClosed.title=Documento arquiv\u00edstico
-rma_recordsmanagement.property.rma_isClosed.decription=Documento arquiv\u00edstico
-
-rma_recordsmanagement.type.rma_recordCategory.title=Categoria de documento arquiv\u00edstico
-rma_recordsmanagement.type.rma_recordCategory.decription=Categoria de documento arquiv\u00edstico
-
-rma_recordsmanagement.type.rma_nonElectronicDocument.title=Documento n\u00e3o eletr\u00f4nico
-rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Documento n\u00e3o eletr\u00f4nico
-rma_recordsmanagement.property.rma_physicalSize.title=Tamanho f\u00edsico
-rma_recordsmanagement.property.rma_physicalSize.decription=O tamanho do documento medido em metros lineares.
-rma_recordsmanagement.property.rma_numberOfCopies.title=N\u00famero de c\u00f3pias
-rma_recordsmanagement.property.rma_numberOfCopies.description=O n\u00famero de c\u00f3pias do documento.
-rma_recordsmanagement.property.rma_storageLocation.title=Local de armazenamento
-rma_recordsmanagement.property.rma_storageLocation.decription=O local f\u00edsico de armazenamento do documento arquiv\u00edstico.
-rma_recordsmanagement.property.rma_shelf.title=Prateleira
-rma_recordsmanagement.property.rma_shelf.decription=A prateleira em que o documento arquiv\u00edstico est\u00e1 armazenado.
-rma_recordsmanagement.property.rma_box.title=Caixa
-rma_recordsmanagement.property.rma_box.description=A caixa em que o documento arquiv\u00edstico est\u00e1 armazenado.
-rma_recordsmanagement.property.rma_file.title=Arquivo
-rma_recordsmanagement.property.rma_file.decription=O arquivo em que o documento arquiv\u00edstico est\u00e1 armazenado.
-
-rma_recordsmanagement.type.rma_dispositionAction.title=A\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.type.rma_dispositionAction.decription=A\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionActionId.title=ID da a\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionActionId.decription=ID da a\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionAction.title=A\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionAction.decription=A\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionAsOf.title=A\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionAsOf.decription=A\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Eventos de reten\u00e7\u00e3o qualificados
-rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Eventos de reten\u00e7\u00e3o qualificados
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=A\u00e7\u00e3o de reten\u00e7\u00e3o iniciada em
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=A\u00e7\u00e3o de reten\u00e7\u00e3o iniciada em
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=A\u00e7\u00e3o de reten\u00e7\u00e3o iniciada por
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=A\u00e7\u00e3o de reten\u00e7\u00e3o iniciada por
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=A\u00e7\u00e3o de reten\u00e7\u00e3o conclu\u00edda em
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=A\u00e7\u00e3o de reten\u00e7\u00e3o conclu\u00edda em
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=A\u00e7\u00e3o de reten\u00e7\u00e3o conclu\u00edda por
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=A\u00e7\u00e3o de reten\u00e7\u00e3o conclu\u00edda por
-rma_recordsmanagement.association.rma_eventExecutions.title=Execu\u00e7\u00f5es de eventos
-rma_recordsmanagement.association.rma_eventExecutions.decription=Execu\u00e7\u00f5es de eventos
-
-rma_recordsmanagement.type.rma_eventExecution.title=Execu\u00e7\u00e3o do evento
-rma_recordsmanagement.type.rma_eventExecution.decription=Execu\u00e7\u00e3o do evento
-rma_recordsmanagement.property.rma_eventExecutionName.title=Nome do evento
-rma_recordsmanagement.property.rma_eventExecutionName.decription=Nome do evento
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Evento autom\u00e1tico
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Evento autom\u00e1tico
-rma_recordsmanagement.property.rma_eventExecutionComplete.title=Evento conclu\u00eddo
-rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Evento conclu\u00eddo
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Evento conclu\u00eddo por
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Evento conclu\u00eddo por
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Evento conclu\u00eddo em
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Evento conclu\u00eddo em
-
-rma_recordsmanagement.type.rma_hold.title=Manter
-rma_recordsmanagement.type.rma_hold.decription=Manter
-rma_recordsmanagement.property.rma_holdReason.title=Motivo para manter
-rma_recordsmanagement.property.rma_holdReason.decription=Motivo para manter
-rma_recordsmanagement.association.rma_frozenRecords.title=Documentos arquiv\u00edsticos mantidos
-rma_recordsmanagement.association.rma_frozenRecords.decription=Documentos arquiv\u00edsticos mantidos
-
-rma_recordsmanagement.type.rma_transfer.title=Transferir
-rma_recordsmanagement.type.rma_transfer.decription=Transferir
-rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Transferir indicador de ades\u00e3o
-rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Transferir indicador de ades\u00e3o
-rma_recordsmanagement.property.rma_transferPDFIndicator.title=Transferir indicador do PDF
-rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Transferir indicador do PDF
-rma_recordsmanagement.property.rma_transferLocation.title=Transferir PDF
-rma_recordsmanagement.property.rma_transferLocation.decription=Transferir PDF
-rma_recordsmanagement.association.rma_transferred.title=Transferido
-rma_recordsmanagement.association.rma_transferred.decription=Transferido
-
-rma_recordsmanagement.aspect.rma_filePlanComponent.title=Componente do plano de arquivo
-rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Componente do plano de arquivo
-rma_recordsmanagement.property.rma_rootNodeRef.title=N\u00f3 raiz
-rma_recordsmanagement.property.rma_rootNodeRef.decription=N\u00f3 raiz
-
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Raiz do Records Management
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Raiz do Records Management
-rma_recordsmanagement.association.rma_holds.title=Esperas
-rma_recordsmanagement.association.rma_holds.decription=Esperas
-rma_recordsmanagement.association.rma_transfers.title=Transfer\u00eancias
-rma_recordsmanagement.association.rma_transfers.decription=Transfer\u00eancias
-
-rma_recordsmanagement.aspect.rma_declaredRecord.title=Documento arquiv\u00edstico conclu\u00eddo
-rma_recordsmanagement.aspect.rma_declaredRecord.decription=Documento arquiv\u00edstico conclu\u00eddo
-rma_recordsmanagement.property.rma_declaredAt.title=Data de conclus\u00e3o
-rma_recordsmanagement.property.rma_declaredAt.decription=Data de conclus\u00e3o
-rma_recordsmanagement.property.rma_declaredBy.title=Conclu\u00eddo por
-rma_recordsmanagement.property.rma_declaredBy.decription=Conclu\u00eddo por
-
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Identificador do componente do documento arquiv\u00edstico
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Identificador do componente do documento arquiv\u00edstico
-rma_recordsmanagement.property.rma_identifier.title=ID do documento arquiv\u00edstico
-rma_recordsmanagement.property.rma_identifier.decription=Identificador de documento arquiv\u00edstico exclusivo
-rma_recordsmanagement.property.rma_dbUniquenessId.title=Exclusividade do banco de dados
-rma_recordsmanagement.property.rma_dbUniquenessId.decription=Exclusividade do banco de dados
-
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Defini\u00e7\u00e3o do documento arquiv\u00edstico vital
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Defini\u00e7\u00e3o do documento arquiv\u00edstico vital
-
-rma_recordsmanagement.property.rma_reviewPeriod.title=Per\u00edodo de revis\u00e3o
-rma_recordsmanagement.property.rma_reviewPeriod.decription=Per\u00edodo de revis\u00e3o
-rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Indicador de documento arquiv\u00edstico vital
-rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Indicador de documento arquiv\u00edstico vital
-
-rma_recordsmanagement.aspect.rma_record.title=Documento arquiv\u00edstico
-rma_recordsmanagement.aspect.rma_record.decription=Documento arquiv\u00edstico
-rma_recordsmanagement.property.rma_dateFiled.title=Data de arquivamento
-rma_recordsmanagement.property.rma_dateFiled.decription=Data de arquivamento
-rma_recordsmanagement.property.rma_origionalName=Nome original
-
-rma_recordsmanagement.aspect.rma_recordMetaData.title=Metadados do documento arquiv\u00edstico
-rma_recordsmanagement.aspect.rma_recordMetaData.description=Aspecto do marcador de metadados do documento arquiv\u00edstico
-
-rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Detalhes comuns dos documentos arquiv\u00edsticos
-rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Metadados comuns de todos os tipos de documentos arquiv\u00edsticos
-rma_recordsmanagement.property.rma_location.title=Localiza\u00e7\u00e3o
-rma_recordsmanagement.property.rma_location.decription=Localiza\u00e7\u00e3o
-
-rma_recordsmanagement.aspect.rma_vitalRecord.title=Documento arquiv\u00edstico vital
-rma_recordsmanagement.aspect.rma_vitalRecord.decription=Documento arquiv\u00edstico vital
-rma_recordsmanagement.property.rma_reviewAsOf.title=Pr\u00f3xima revis\u00e3o
-rma_recordsmanagement.property.rma_reviewAsOf.decription=Pr\u00f3xima revis\u00e3o
-rma_recordsmanagement.property.rma_notificationIssued.title=Indica que foi emitida uma notifica\u00e7\u00e3o de prazo para revis\u00e3o para este documento arquiv\u00edstico
-rma_recordsmanagement.property.rma_notificationIssued.decription=Indica que foi emitida uma notifica\u00e7\u00e3o de prazo para revis\u00e3o para este documento arquiv\u00edstico
-
-rma_recordsmanagement.aspect.rma_scheduled.title=Programado
-rma_recordsmanagement.aspect.rma_scheduled.decription=Programado
-rma_recordsmanagement.association.rma_dispositionSchedule.title=Programa\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.association.rma_dispositionSchedule.decription=Programa\u00e7\u00e3o de reten\u00e7\u00e3o
-
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Ciclo de vida de reten\u00e7\u00e3o
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Ciclo de vida de reten\u00e7\u00e3o
-rma_recordsmanagement.association.rma_nextDispositionAction.title=Pr\u00f3xima a\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.association.rma_nextDispositionAction.decription=Pr\u00f3xima a\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.association.rma_dispositionActionHistory.title=Hist\u00f3rico de a\u00e7\u00f5es de reten\u00e7\u00e3o
-rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Hist\u00f3rico de a\u00e7\u00f5es de reten\u00e7\u00e3o
-
-rma_recordsmanagement.aspect.rma_cutOff.title=Cortar
-rma_recordsmanagement.aspect.rma_cutOff.decription=Cortar
-rma_recordsmanagement.property.rma_cutOffDate.title=Data do corte
-rma_recordsmanagement.property.rma_cutOffDate.decription=Data do corte
-
-rma_recordsmanagement.aspect.rma_transferred.title=Transferido
-rma_recordsmanagement.aspect.rma_transferred.decription=Transferido
-
-rma_recordsmanagement.aspect.rma_ascended.title=Elevado
-rma_recordsmanagement.aspect.rma_ascended.decription=Elevado
-
-rma_recordsmanagement.aspect.rma_frozen.title=Em espera
-rma_recordsmanagement.aspect.rma_frozen.decription=Em espera
-rma_recordsmanagement.property.rma_frozenAt.title=Mantido em
-rma_recordsmanagement.property.rma_frozenAt.decription=Mantido em
-rma_recordsmanagement.property.rma_frozenBy.title=Mantido por
-rma_recordsmanagement.property.rma_frozenBy.decription=Mantido por
-
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Raiz da Configura\u00e7\u00e3o Caveat
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Raiz da Configura\u00e7\u00e3o Caveat
-rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Configura\u00e7\u00e3o Caveat
-rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Configura\u00e7\u00e3o Caveat
-
-rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Raiz da configura\u00e7\u00e3o de e-mail
-rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Raiz da configura\u00e7\u00e3o de e-mail
-rma_recordsmanagement.association.rma_emailConfigAssoc.title=Configura\u00e7\u00e3o de e-mail
-rma_recordsmanagement.association.rma_emailConfigAssoc.description=Configura\u00e7\u00e3o de e-mail
-
-rma_recordsmanagement.aspect.rma_recordSearch.title=Pesquisa de documentos arquiv\u00edsticos
-rma_recordsmanagement.aspect.rma_recordSearch.decription=Informa\u00e7\u00f5es para suportar a pesquisa do Records Management
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Tem programa\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Indica se o item tem uma programa\u00e7\u00e3o de reten\u00e7\u00e3o associada
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Nome da a\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=O nome da pr\u00f3xima a\u00e7\u00e3o de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=A\u00e7\u00e3o de reten\u00e7\u00e3o de
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=A data em que a pr\u00f3xima a\u00e7\u00e3o de reten\u00e7\u00e3o torna-se qualificada
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Per\u00edodo de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Per\u00edodo de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Express\u00e3o do per\u00edodo de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Express\u00e3o do per\u00edodo de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Eventos de reten\u00e7\u00e3o qualificados
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Eventos de reten\u00e7\u00e3o qualificados
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Eventos de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Eventos de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Autoridade de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Autoridade de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Instru\u00e7\u00f5es de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Instru\u00e7\u00f5es de reten\u00e7\u00e3o
-rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Motivo para manter
-rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Motivo para manter
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=Per\u00edodo de revis\u00e3o do documento arquiv\u00edstico vital
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=Per\u00edodo de revis\u00e3o do documento arquiv\u00edstico vital
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Express\u00e3o do per\u00edodo de revis\u00e3o
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Express\u00e3o do per\u00edodo de revis\u00e3o
-
-rma_recordsmanagement.aspect.rma_versionedRecord.title=Documento arquiv\u00edstico com vers\u00e3o
-rma_recordsmanagement.aspect.rma_versionedRecord.decription=Documento arquiv\u00edstico com vers\u00e3o
-
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Atualiza\u00e7\u00e3o n\u00e3o publicada
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Atualiza\u00e7\u00e3o n\u00e3o publicada
-rma_recordsmanagement.property.rma_unpublishedUpdate.title=Atualiza\u00e7\u00e3o n\u00e3o publicada
-rma_recordsmanagement.property.rma_unpublishedUpdate.description=Indica se h\u00e1 uma atualiza\u00e7\u00e3o n\u00e3o publicada
-rma_recordsmanagement.property.rma_updateTo.title=Atualizar para
-rma_recordsmanagement.property.rma_updateTo.description=Destino da atualiza\u00e7\u00e3o
-rma_recordsmanagement.property.rma_updatedProperties.title=Propriedades atualizadas
-rma_recordsmanagement.property.rma_updatedProperties.description=As propriedades atualizadas
-rma_recordsmanagement.property.rma_publishInProgress.title=Publica\u00e7\u00e3o em andamento
-rma_recordsmanagement.property.rma_publishInProgress.description=Indica se uma publica\u00e7\u00e3o est\u00e1 em andamento atualmente
-
-rma_recordsmanagement.aspect.dod_ghosted.title=Documento arquiv\u00edstico somente de metadados
-rma_recordsmanagement.aspect.dod_ghosted.description=Documento arquiv\u00edstico somente de metadados
-
-listconstraint.rmc_tlList.title=Locais de transfer\u00eancia
+rma_recordsmanagement.description=Modelo do conte\u00fado do Records Management
+
+rma_recordsmanagement.type.rma_rmsite.title=Site do Records Management
+rma_recordsmanagement.type.rma_rmsite.description=Site especializado do Records Management
+
+rma_recordsmanagement.type.rma_caveatConfig.title=Configura\u00e7\u00e3o de controles de seguran\u00e7a
+rma_recordsmanagement.type.rma_caveatConfig.decription=Configura\u00e7\u00e3o de controles de seguran\u00e7a
+
+rma_recordsmanagement.type.rma_emailConfig.title=Configura\u00e7\u00e3o de e-mail
+rma_recordsmanagement.type.rma_emailConfig.decription=Configura\u00e7\u00e3o de e-mail
+
+rma_recordsmanagement.type.rma_recordsManagementContainer.title=Cont\u00eainer do Records Management
+rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Cont\u00eainer do Records Management
+
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Cont\u00eainer da raiz do Records Management
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Cont\u00eainer da raiz do Records Management
+
+rma_recordsmanagement.type.rma_dispositionSchedule.title=Programa\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.type.rma_dispositionSchedule.decription=Programa\u00e7\u00e3o de reten\u00e7\u00e3o
+
+rma_recordsmanagement.property.rma_dispositionAuthority.title=Autoridade de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionAuthority.decription=Autoridade de reten\u00e7\u00e3o
+
+rma_recordsmanagement.property.rma_dispositionInstructions.title=Instru\u00e7\u00f5es de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionInstructions.decription=Instru\u00e7\u00f5es de reten\u00e7\u00e3o
+
+rma_recordsmanagement.property.rma_recordLevelDisposition.title=Reten\u00e7\u00e3o de n\u00edvel de documento arquiv\u00edstico
+rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Reten\u00e7\u00e3o de n\u00edvel de documento arquiv\u00edstico
+
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=A\u00e7\u00f5es de reten\u00e7\u00e3o
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=A\u00e7\u00f5es de reten\u00e7\u00e3o
+
+rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Defini\u00e7\u00e3o da a\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Defini\u00e7\u00e3o da a\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionActionName.title=Nome da a\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionActionName.decription=Nome da a\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionDescription.title=Descri\u00e7\u00e3o da reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionDescription.decription=Descri\u00e7\u00e3o da reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionLocation.title=Localiza\u00e7\u00e3o da reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionLocation.decription=Localiza\u00e7\u00e3o da reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionPeriod.title=Per\u00edodo de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionPeriod.decription=Per\u00edodo de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Propriedade do per\u00edodo de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Propriedade do per\u00edodo de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionEvent.title=Evento de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionEvent.decription=Evento de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionEventCombination.title=Combina\u00e7\u00e3o de eventos de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Combina\u00e7\u00e3o de eventos de reten\u00e7\u00e3o
+
+rma_recordsmanagement.type.rma_recordFolder.title=Pasta de documento arquiv\u00edstico
+rma_recordsmanagement.type.rma_recordFolder.decription=Pasta de documento arquiv\u00edstico
+rma_recordsmanagement.property.rma_isClosed.title=Documento arquiv\u00edstico
+rma_recordsmanagement.property.rma_isClosed.decription=Documento arquiv\u00edstico
+
+rma_recordsmanagement.type.rma_recordCategory.title=Categoria de documento arquiv\u00edstico
+rma_recordsmanagement.type.rma_recordCategory.decription=Categoria de documento arquiv\u00edstico
+
+rma_recordsmanagement.type.rma_nonElectronicDocument.title=Documento n\u00e3o eletr\u00f4nico
+rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Documento n\u00e3o eletr\u00f4nico
+rma_recordsmanagement.property.rma_physicalSize.title=Tamanho f\u00edsico
+rma_recordsmanagement.property.rma_physicalSize.decription=O tamanho do documento medido em metros lineares.
+rma_recordsmanagement.property.rma_numberOfCopies.title=N\u00famero de c\u00f3pias
+rma_recordsmanagement.property.rma_numberOfCopies.description=O n\u00famero de c\u00f3pias do documento.
+rma_recordsmanagement.property.rma_storageLocation.title=Local de armazenamento
+rma_recordsmanagement.property.rma_storageLocation.decription=O local f\u00edsico de armazenamento do documento arquiv\u00edstico.
+rma_recordsmanagement.property.rma_shelf.title=Prateleira
+rma_recordsmanagement.property.rma_shelf.decription=A prateleira em que o documento arquiv\u00edstico est\u00e1 armazenado.
+rma_recordsmanagement.property.rma_box.title=Caixa
+rma_recordsmanagement.property.rma_box.description=A caixa em que o documento arquiv\u00edstico est\u00e1 armazenado.
+rma_recordsmanagement.property.rma_file.title=Arquivo
+rma_recordsmanagement.property.rma_file.decription=O arquivo em que o documento arquiv\u00edstico est\u00e1 armazenado.
+
+rma_recordsmanagement.type.rma_dispositionAction.title=A\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.type.rma_dispositionAction.decription=A\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionActionId.title=ID da a\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionActionId.decription=ID da a\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionAction.title=A\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionAction.decription=A\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionAsOf.title=A\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionAsOf.decription=A\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Eventos de reten\u00e7\u00e3o qualificados
+rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Eventos de reten\u00e7\u00e3o qualificados
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=A\u00e7\u00e3o de reten\u00e7\u00e3o iniciada em
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=A\u00e7\u00e3o de reten\u00e7\u00e3o iniciada em
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=A\u00e7\u00e3o de reten\u00e7\u00e3o iniciada por
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=A\u00e7\u00e3o de reten\u00e7\u00e3o iniciada por
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=A\u00e7\u00e3o de reten\u00e7\u00e3o conclu\u00edda em
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=A\u00e7\u00e3o de reten\u00e7\u00e3o conclu\u00edda em
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=A\u00e7\u00e3o de reten\u00e7\u00e3o conclu\u00edda por
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=A\u00e7\u00e3o de reten\u00e7\u00e3o conclu\u00edda por
+rma_recordsmanagement.association.rma_eventExecutions.title=Execu\u00e7\u00f5es de eventos
+rma_recordsmanagement.association.rma_eventExecutions.decription=Execu\u00e7\u00f5es de eventos
+
+rma_recordsmanagement.type.rma_eventExecution.title=Execu\u00e7\u00e3o do evento
+rma_recordsmanagement.type.rma_eventExecution.decription=Execu\u00e7\u00e3o do evento
+rma_recordsmanagement.property.rma_eventExecutionName.title=Nome do evento
+rma_recordsmanagement.property.rma_eventExecutionName.decription=Nome do evento
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Evento autom\u00e1tico
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Evento autom\u00e1tico
+rma_recordsmanagement.property.rma_eventExecutionComplete.title=Evento conclu\u00eddo
+rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Evento conclu\u00eddo
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Evento conclu\u00eddo por
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Evento conclu\u00eddo por
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Evento conclu\u00eddo em
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Evento conclu\u00eddo em
+
+rma_recordsmanagement.type.rma_hold.title=Manter
+rma_recordsmanagement.type.rma_hold.decription=Manter
+rma_recordsmanagement.property.rma_holdReason.title=Motivo para manter
+rma_recordsmanagement.property.rma_holdReason.decription=Motivo para manter
+rma_recordsmanagement.association.rma_frozenRecords.title=Documentos arquiv\u00edsticos mantidos
+rma_recordsmanagement.association.rma_frozenRecords.decription=Documentos arquiv\u00edsticos mantidos
+
+rma_recordsmanagement.type.rma_transfer.title=Transferir
+rma_recordsmanagement.type.rma_transfer.decription=Transferir
+rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Transferir indicador de ades\u00e3o
+rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Transferir indicador de ades\u00e3o
+rma_recordsmanagement.property.rma_transferPDFIndicator.title=Transferir indicador do PDF
+rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Transferir indicador do PDF
+rma_recordsmanagement.property.rma_transferLocation.title=Transferir PDF
+rma_recordsmanagement.property.rma_transferLocation.decription=Transferir PDF
+rma_recordsmanagement.association.rma_transferred.title=Transferido
+rma_recordsmanagement.association.rma_transferred.decription=Transferido
+
+rma_recordsmanagement.aspect.rma_filePlanComponent.title=Componente do plano de arquivo
+rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Componente do plano de arquivo
+rma_recordsmanagement.property.rma_rootNodeRef.title=N\u00f3 raiz
+rma_recordsmanagement.property.rma_rootNodeRef.decription=N\u00f3 raiz
+
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Raiz do Records Management
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Raiz do Records Management
+rma_recordsmanagement.association.rma_holds.title=Esperas
+rma_recordsmanagement.association.rma_holds.decription=Esperas
+rma_recordsmanagement.association.rma_transfers.title=Transfer\u00eancias
+rma_recordsmanagement.association.rma_transfers.decription=Transfer\u00eancias
+
+rma_recordsmanagement.aspect.rma_declaredRecord.title=Documento arquiv\u00edstico conclu\u00eddo
+rma_recordsmanagement.aspect.rma_declaredRecord.decription=Documento arquiv\u00edstico conclu\u00eddo
+rma_recordsmanagement.property.rma_declaredAt.title=Data de conclus\u00e3o
+rma_recordsmanagement.property.rma_declaredAt.decription=Data de conclus\u00e3o
+rma_recordsmanagement.property.rma_declaredBy.title=Conclu\u00eddo por
+rma_recordsmanagement.property.rma_declaredBy.decription=Conclu\u00eddo por
+
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Identificador do componente do documento arquiv\u00edstico
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Identificador do componente do documento arquiv\u00edstico
+rma_recordsmanagement.property.rma_identifier.title=ID do documento arquiv\u00edstico
+rma_recordsmanagement.property.rma_identifier.decription=Identificador de documento arquiv\u00edstico exclusivo
+rma_recordsmanagement.property.rma_dbUniquenessId.title=Exclusividade do banco de dados
+rma_recordsmanagement.property.rma_dbUniquenessId.decription=Exclusividade do banco de dados
+
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Defini\u00e7\u00e3o do documento arquiv\u00edstico vital
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Defini\u00e7\u00e3o do documento arquiv\u00edstico vital
+
+rma_recordsmanagement.property.rma_reviewPeriod.title=Per\u00edodo de revis\u00e3o
+rma_recordsmanagement.property.rma_reviewPeriod.decription=Per\u00edodo de revis\u00e3o
+rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Indicador de documento arquiv\u00edstico vital
+rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Indicador de documento arquiv\u00edstico vital
+
+rma_recordsmanagement.aspect.rma_record.title=Documento arquiv\u00edstico
+rma_recordsmanagement.aspect.rma_record.decription=Documento arquiv\u00edstico
+rma_recordsmanagement.property.rma_dateFiled.title=Data de arquivamento
+rma_recordsmanagement.property.rma_dateFiled.decription=Data de arquivamento
+rma_recordsmanagement.property.rma_origionalName=Nome original
+
+rma_recordsmanagement.aspect.rma_recordMetaData.title=Metadados do documento arquiv\u00edstico
+rma_recordsmanagement.aspect.rma_recordMetaData.description=Aspecto do marcador de metadados do documento arquiv\u00edstico
+
+rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Detalhes comuns dos documentos arquiv\u00edsticos
+rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Metadados comuns de todos os tipos de documentos arquiv\u00edsticos
+rma_recordsmanagement.property.rma_location.title=Localiza\u00e7\u00e3o
+rma_recordsmanagement.property.rma_location.decription=Localiza\u00e7\u00e3o
+
+rma_recordsmanagement.aspect.rma_vitalRecord.title=Documento arquiv\u00edstico vital
+rma_recordsmanagement.aspect.rma_vitalRecord.decription=Documento arquiv\u00edstico vital
+rma_recordsmanagement.property.rma_reviewAsOf.title=Pr\u00f3xima revis\u00e3o
+rma_recordsmanagement.property.rma_reviewAsOf.decription=Pr\u00f3xima revis\u00e3o
+rma_recordsmanagement.property.rma_notificationIssued.title=Indica que foi emitida uma notifica\u00e7\u00e3o de prazo para revis\u00e3o para este documento arquiv\u00edstico
+rma_recordsmanagement.property.rma_notificationIssued.decription=Indica que foi emitida uma notifica\u00e7\u00e3o de prazo para revis\u00e3o para este documento arquiv\u00edstico
+
+rma_recordsmanagement.aspect.rma_scheduled.title=Programado
+rma_recordsmanagement.aspect.rma_scheduled.decription=Programado
+rma_recordsmanagement.association.rma_dispositionSchedule.title=Programa\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.association.rma_dispositionSchedule.decription=Programa\u00e7\u00e3o de reten\u00e7\u00e3o
+
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Ciclo de vida de reten\u00e7\u00e3o
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Ciclo de vida de reten\u00e7\u00e3o
+rma_recordsmanagement.association.rma_nextDispositionAction.title=Pr\u00f3xima a\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.association.rma_nextDispositionAction.decription=Pr\u00f3xima a\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.association.rma_dispositionActionHistory.title=Hist\u00f3rico de a\u00e7\u00f5es de reten\u00e7\u00e3o
+rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Hist\u00f3rico de a\u00e7\u00f5es de reten\u00e7\u00e3o
+
+rma_recordsmanagement.aspect.rma_cutOff.title=Cortar
+rma_recordsmanagement.aspect.rma_cutOff.decription=Cortar
+rma_recordsmanagement.property.rma_cutOffDate.title=Data do corte
+rma_recordsmanagement.property.rma_cutOffDate.decription=Data do corte
+
+rma_recordsmanagement.aspect.rma_transferred.title=Transferido
+rma_recordsmanagement.aspect.rma_transferred.decription=Transferido
+
+rma_recordsmanagement.aspect.rma_ascended.title=Elevado
+rma_recordsmanagement.aspect.rma_ascended.decription=Elevado
+
+rma_recordsmanagement.aspect.rma_frozen.title=Em espera
+rma_recordsmanagement.aspect.rma_frozen.decription=Em espera
+rma_recordsmanagement.property.rma_frozenAt.title=Mantido em
+rma_recordsmanagement.property.rma_frozenAt.decription=Mantido em
+rma_recordsmanagement.property.rma_frozenBy.title=Mantido por
+rma_recordsmanagement.property.rma_frozenBy.decription=Mantido por
+
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Raiz da Configura\u00e7\u00e3o Caveat
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Raiz da Configura\u00e7\u00e3o Caveat
+rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Configura\u00e7\u00e3o Caveat
+rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Configura\u00e7\u00e3o Caveat
+
+rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Raiz da configura\u00e7\u00e3o de e-mail
+rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Raiz da configura\u00e7\u00e3o de e-mail
+rma_recordsmanagement.association.rma_emailConfigAssoc.title=Configura\u00e7\u00e3o de e-mail
+rma_recordsmanagement.association.rma_emailConfigAssoc.description=Configura\u00e7\u00e3o de e-mail
+
+rma_recordsmanagement.aspect.rma_recordSearch.title=Pesquisa de documentos arquiv\u00edsticos
+rma_recordsmanagement.aspect.rma_recordSearch.decription=Informa\u00e7\u00f5es para suportar a pesquisa do Records Management
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Tem programa\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Indica se o item tem uma programa\u00e7\u00e3o de reten\u00e7\u00e3o associada
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Nome da a\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=O nome da pr\u00f3xima a\u00e7\u00e3o de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=A\u00e7\u00e3o de reten\u00e7\u00e3o de
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=A data em que a pr\u00f3xima a\u00e7\u00e3o de reten\u00e7\u00e3o torna-se qualificada
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Per\u00edodo de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Per\u00edodo de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Express\u00e3o do per\u00edodo de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Express\u00e3o do per\u00edodo de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Eventos de reten\u00e7\u00e3o qualificados
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Eventos de reten\u00e7\u00e3o qualificados
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Eventos de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Eventos de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Autoridade de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Autoridade de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Instru\u00e7\u00f5es de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Instru\u00e7\u00f5es de reten\u00e7\u00e3o
+rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Motivo para manter
+rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Motivo para manter
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=Per\u00edodo de revis\u00e3o do documento arquiv\u00edstico vital
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=Per\u00edodo de revis\u00e3o do documento arquiv\u00edstico vital
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Express\u00e3o do per\u00edodo de revis\u00e3o
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Express\u00e3o do per\u00edodo de revis\u00e3o
+
+rma_recordsmanagement.aspect.rma_versionedRecord.title=Documento arquiv\u00edstico com vers\u00e3o
+rma_recordsmanagement.aspect.rma_versionedRecord.decription=Documento arquiv\u00edstico com vers\u00e3o
+
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Atualiza\u00e7\u00e3o n\u00e3o publicada
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Atualiza\u00e7\u00e3o n\u00e3o publicada
+rma_recordsmanagement.property.rma_unpublishedUpdate.title=Atualiza\u00e7\u00e3o n\u00e3o publicada
+rma_recordsmanagement.property.rma_unpublishedUpdate.description=Indica se h\u00e1 uma atualiza\u00e7\u00e3o n\u00e3o publicada
+rma_recordsmanagement.property.rma_updateTo.title=Atualizar para
+rma_recordsmanagement.property.rma_updateTo.description=Destino da atualiza\u00e7\u00e3o
+rma_recordsmanagement.property.rma_updatedProperties.title=Propriedades atualizadas
+rma_recordsmanagement.property.rma_updatedProperties.description=As propriedades atualizadas
+rma_recordsmanagement.property.rma_publishInProgress.title=Publica\u00e7\u00e3o em andamento
+rma_recordsmanagement.property.rma_publishInProgress.description=Indica se uma publica\u00e7\u00e3o est\u00e1 em andamento atualmente
+
+rma_recordsmanagement.aspect.dod_ghosted.title=Documento arquiv\u00edstico somente de metadados
+rma_recordsmanagement.aspect.dod_ghosted.description=Documento arquiv\u00edstico somente de metadados
+
+listconstraint.rmc_tlList.title=Locais de transfer\u00eancia
listconstraint.rmc_smList.title=Marca\u00e7\u00f5es complementares
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_ru.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_ru.properties
index 857dd01a66..74059a3629 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_ru.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_ru.properties
@@ -1,265 +1,265 @@
-rma_recordsmanagement.description=\u041c\u043e\u0434\u0435\u043b\u044c \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-
-rma_recordsmanagement.type.rma_rmsite.title=\u0421\u0430\u0439\u0442 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-rma_recordsmanagement.type.rma_rmsite.description=\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u0430\u0439\u0442 \u0434\u043b\u044f \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-
-rma_recordsmanagement.type.rma_caveatConfig.title=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c\u044e
-rma_recordsmanagement.type.rma_caveatConfig.decription=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c\u044e
-
-rma_recordsmanagement.type.rma_emailConfig.title=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
-rma_recordsmanagement.type.rma_emailConfig.decription=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
-
-rma_recordsmanagement.type.rma_recordsManagementContainer.title=\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-rma_recordsmanagement.type.rma_recordsManagementContainer.decription=\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-
-rma_recordsmanagement.type.rma_dispositionSchedule.title=\u0413\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.type.rma_dispositionSchedule.decription=\u0413\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-
-rma_recordsmanagement.property.rma_dispositionAuthority.title=\u041f\u043e\u043b\u043d\u043e\u043c\u043e\u0447\u0438\u044f \u043d\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435
-rma_recordsmanagement.property.rma_dispositionAuthority.decription=\u041f\u043e\u043b\u043d\u043e\u043c\u043e\u0447\u0438\u044f \u043d\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435
-
-rma_recordsmanagement.property.rma_dispositionInstructions.title=\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_dispositionInstructions.decription=\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-
-rma_recordsmanagement.property.rma_recordLevelDisposition.title=\u0425\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0443\u0440\u043e\u0432\u043d\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-rma_recordsmanagement.property.rma_recordLevelDisposition.decription=\u0425\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0443\u0440\u043e\u0432\u043d\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-
-rma_recordsmanagement.type.rma_dispositionActionDefinition.title=\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_dispositionActionName.title=\u0418\u043c\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_dispositionActionName.decription=\u0418\u043c\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_dispositionDescription.title=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_dispositionDescription.decription=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_dispositionLocation.title=\u041c\u0435\u0441\u0442\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_dispositionLocation.decription=\u041c\u0435\u0441\u0442\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_dispositionPeriod.title=\u041f\u0435\u0440\u0438\u043e\u0434 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_dispositionPeriod.decription=\u041f\u0435\u0440\u0438\u043e\u0434 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u043e \u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u043e \u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_dispositionEvent.title=\u0421\u043e\u0431\u044b\u0442\u0438\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_dispositionEvent.decription=\u0421\u043e\u0431\u044b\u0442\u0438\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_dispositionEventCombination.title=\u041a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_dispositionEventCombination.decription=\u041a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-
-rma_recordsmanagement.type.rma_recordFolder.title=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-rma_recordsmanagement.type.rma_recordFolder.decription=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-rma_recordsmanagement.property.rma_isClosed.title=\u0417\u0430\u043f\u0438\u0441\u044c
-rma_recordsmanagement.property.rma_isClosed.decription=\u0417\u0430\u043f\u0438\u0441\u044c
-
-rma_recordsmanagement.type.rma_recordCategory.title=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-rma_recordsmanagement.type.rma_recordCategory.decription=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-
-rma_recordsmanagement.type.rma_nonElectronicDocument.title=\u041d\u0435\u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442
-rma_recordsmanagement.type.rma_nonElectronicDocument.decription=\u041d\u0435\u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442
-rma_recordsmanagement.property.rma_physicalSize.title=\u0424\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0440\u0430\u0437\u043c\u0435\u0440
-rma_recordsmanagement.property.rma_physicalSize.decription=\u0420\u0430\u0437\u043c\u0435\u0440 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430, \u0438\u0441\u0447\u0438\u0441\u043b\u044f\u0435\u043c\u044b\u0439 \u0432 \u043c\u0435\u0442\u0440\u0430\u0445.
-rma_recordsmanagement.property.rma_numberOfCopies.title=\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043a\u043e\u043f\u0438\u0439
-rma_recordsmanagement.property.rma_numberOfCopies.description=\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043a\u043e\u043f\u0438\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430.
-rma_recordsmanagement.property.rma_storageLocation.title=\u041c\u0435\u0441\u0442\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_storageLocation.decription=\u0424\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u043c\u0435\u0441\u0442\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0438.
-rma_recordsmanagement.property.rma_shelf.title=\u041f\u043e\u043b\u043a\u0430
-rma_recordsmanagement.property.rma_shelf.decription=\u041f\u043e\u043b\u043a\u0430, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0445\u0440\u0430\u043d\u0438\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c.
-rma_recordsmanagement.property.rma_box.title=\u042f\u0449\u0438\u043a
-rma_recordsmanagement.property.rma_box.description=\u042f\u0449\u0438\u043a, \u0432 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0445\u0440\u0430\u043d\u0438\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c.
-rma_recordsmanagement.property.rma_file.title=\u0424\u0430\u0439\u043b
-rma_recordsmanagement.property.rma_file.decription=\u0424\u0430\u0439\u043b, \u0432 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0445\u0440\u0430\u043d\u0438\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c.
-
-rma_recordsmanagement.type.rma_dispositionAction.title=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.type.rma_dispositionAction.decription=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_dispositionActionId.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_dispositionActionId.decription=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_dispositionAction.title=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_dispositionAction.decription=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_dispositionAsOf.title=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_dispositionAsOf.decription=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_dispositionEventsEligible.title=\u0414\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=\u0414\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043e \u0432
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043e \u0432
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=\u041a\u0435\u043c \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=\u041a\u0435\u043c \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e \u0432
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e \u0432
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=\u041a\u0435\u043c \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=\u041a\u0435\u043c \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.association.rma_eventExecutions.title=\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u044f
-rma_recordsmanagement.association.rma_eventExecutions.decription=\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u044f
-
-rma_recordsmanagement.type.rma_eventExecution.title=\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f
-rma_recordsmanagement.type.rma_eventExecution.decription=\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f
-rma_recordsmanagement.property.rma_eventExecutionName.title=\u0418\u043c\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u044f
-rma_recordsmanagement.property.rma_eventExecutionName.decription=\u0418\u043c\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u044f
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=\u0410\u0432\u0442\u043e\u043c\u0430\u0442. \u0441\u043e\u0431\u044b\u0442\u0438\u0435
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=\u0410\u0432\u0442\u043e\u043c\u0430\u0442. \u0441\u043e\u0431\u044b\u0442\u0438\u0435
-rma_recordsmanagement.property.rma_eventExecutionComplete.title=\u0421\u043e\u0431\u044b\u0442\u0438\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e
-rma_recordsmanagement.property.rma_eventExecutionComplete.decription=\u0421\u043e\u0431\u044b\u0442\u0438\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c, \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0432\u0448\u0438\u0439 \u0441\u043e\u0431\u044b\u0442\u0438\u0435
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c, \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0432\u0448\u0438\u0439 \u0441\u043e\u0431\u044b\u0442\u0438\u0435
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=\u0414\u0430\u0442\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u044f
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=\u0414\u0430\u0442\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u044f
-
-rma_recordsmanagement.type.rma_hold.title=\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430
-rma_recordsmanagement.type.rma_hold.decription=\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430
-rma_recordsmanagement.property.rma_holdReason.title=\u041f\u0440\u0438\u0447\u0438\u043d\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
-rma_recordsmanagement.property.rma_holdReason.decription=\u041f\u0440\u0438\u0447\u0438\u043d\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
-rma_recordsmanagement.association.rma_frozenRecords.title=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-rma_recordsmanagement.association.rma_frozenRecords.decription=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-
-rma_recordsmanagement.type.rma_transfer.title=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c
-rma_recordsmanagement.type.rma_transfer.decription=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c
-rma_recordsmanagement.property.rma_transferAccessionIndicator.title=\u0418\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0435
-rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=\u0418\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0435
-rma_recordsmanagement.property.rma_transferPDFIndicator.title=\u0418\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 PDF
-rma_recordsmanagement.property.rma_transferPDFIndicator.decription=\u0418\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 PDF
-rma_recordsmanagement.property.rma_transferLocation.title=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c PDF
-rma_recordsmanagement.property.rma_transferLocation.decription=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c PDF
-rma_recordsmanagement.association.rma_transferred.title=\u041f\u0435\u0440\u0435\u0434\u0430\u043d\u043e
-rma_recordsmanagement.association.rma_transferred.decription=\u041f\u0435\u0440\u0435\u0434\u0430\u043d\u043e
-
-rma_recordsmanagement.aspect.rma_filePlanComponent.title=\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u0410\u0440\u0445\u0438\u0432
-rma_recordsmanagement.aspect.rma_filePlanComponent.decription=\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u0410\u0440\u0445\u0438\u0432
-rma_recordsmanagement.property.rma_rootNodeRef.title=\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u043e\u0431\u044a\u0435\u043a\u0442
-rma_recordsmanagement.property.rma_rootNodeRef.decription=\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u043e\u0431\u044a\u0435\u043a\u0442
-
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=\u041a\u043e\u0440\u0435\u043d\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=\u041a\u043e\u0440\u0435\u043d\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-rma_recordsmanagement.association.rma_holds.title=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-rma_recordsmanagement.association.rma_holds.decription=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-rma_recordsmanagement.association.rma_transfers.title=\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0438
-rma_recordsmanagement.association.rma_transfers.decription=\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0438
-
-rma_recordsmanagement.aspect.rma_declaredRecord.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
-rma_recordsmanagement.aspect.rma_declaredRecord.decription=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
-rma_recordsmanagement.property.rma_declaredAt.title=\u0414\u0430\u0442\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_declaredAt.decription=\u0414\u0430\u0442\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_declaredBy.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c
-rma_recordsmanagement.property.rma_declaredBy.decription=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c
-
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430 \u0437\u0430\u043f\u0438\u0441\u0438
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430 \u0437\u0430\u043f\u0438\u0441\u0438
-rma_recordsmanagement.property.rma_identifier.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0437\u0430\u043f\u0438\u0441\u0438
-rma_recordsmanagement.property.rma_identifier.decription=\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0437\u0430\u043f\u0438\u0441\u0438
-rma_recordsmanagement.property.rma_dbUniquenessId.title=\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0431\u0430\u0437\u044b \u0434\u0430\u043d\u043d\u044b\u0445
-rma_recordsmanagement.property.rma_dbUniquenessId.decription=\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0431\u0430\u0437\u044b \u0434\u0430\u043d\u043d\u044b\u0445
-
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
-
-rma_recordsmanagement.property.rma_reviewPeriod.title=\u041f\u0435\u0440\u0438\u043e\u0434 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438
-rma_recordsmanagement.property.rma_reviewPeriod.decription=\u041f\u0435\u0440\u0438\u043e\u0434 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438
-rma_recordsmanagement.property.rma_vitalRecordIndicator.title=\u0418\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
-rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=\u0418\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
-
-rma_recordsmanagement.aspect.rma_record.title=\u0417\u0430\u043f\u0438\u0441\u044c
-rma_recordsmanagement.aspect.rma_record.decription=\u0417\u0430\u043f\u0438\u0441\u044c
-rma_recordsmanagement.property.rma_dateFiled.title=\u0414\u0430\u0442\u0430 \u0432\u0432\u043e\u0434\u0430
-rma_recordsmanagement.property.rma_dateFiled.decription=\u0414\u0430\u0442\u0430 \u0432\u0432\u043e\u0434\u0430
-rma_recordsmanagement.property.rma_origionalName=\u041e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u0435 \u0438\u043c\u044f
-
-rma_recordsmanagement.aspect.rma_recordMetaData.title=\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-rma_recordsmanagement.aspect.rma_recordMetaData.description=\u0410\u0441\u043f\u0435\u043a\u0442 \u043f\u043e\u043c\u0435\u0442\u043a\u0438 \u0434\u043b\u044f \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0438
-
-rma_recordsmanagement.aspect.rma_commonRecordDetails.title=\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u0438 \u043e\u0431\u0449\u0438\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-rma_recordsmanagement.aspect.rma_commonRecordDetails.description=\u041e\u0431\u0449\u0438\u0435 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u0442\u0438\u043f\u043e\u0432 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-rma_recordsmanagement.property.rma_location.title=\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435
-rma_recordsmanagement.property.rma_location.decription=\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435
-
-rma_recordsmanagement.aspect.rma_vitalRecord.title=\u041a\u043b\u044e\u0447\u0435\u0432\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
-rma_recordsmanagement.aspect.rma_vitalRecord.decription=\u041a\u043b\u044e\u0447\u0435\u0432\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
-rma_recordsmanagement.property.rma_reviewAsOf.title=\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430
-rma_recordsmanagement.property.rma_reviewAsOf.decription=\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430
-rma_recordsmanagement.property.rma_notificationIssued.title=\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442, \u0447\u0442\u043e \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u043e \u0437\u0430\u043f\u0438\u0441\u0438, \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0435\u0439 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435
-rma_recordsmanagement.property.rma_notificationIssued.decription=\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442, \u0447\u0442\u043e \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u043e \u0437\u0430\u043f\u0438\u0441\u0438, \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0435\u0439 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435
-
-rma_recordsmanagement.aspect.rma_scheduled.title=\u0417\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043e
-rma_recordsmanagement.aspect.rma_scheduled.decription=\u0417\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043e
-rma_recordsmanagement.association.rma_dispositionSchedule.title=\u0413\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.association.rma_dispositionSchedule.decription=\u0413\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=\u0416\u0438\u0437\u043d\u0435\u043d\u043d\u044b\u0439 \u0446\u0438\u043a\u043b \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=\u0416\u0438\u0437\u043d\u0435\u043d\u043d\u044b\u0439 \u0446\u0438\u043a\u043b \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.association.rma_nextDispositionAction.title=\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.association.rma_nextDispositionAction.decription=\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.association.rma_dispositionActionHistory.title=\u0416\u0443\u0440\u043d\u0430\u043b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.association.rma_dispositionActionHistory.decription=\u0416\u0443\u0440\u043d\u0430\u043b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-
-rma_recordsmanagement.aspect.rma_cutOff.title=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
-rma_recordsmanagement.aspect.rma_cutOff.decription=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
-rma_recordsmanagement.property.rma_cutOffDate.title=\u0414\u0430\u0442\u0430 \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_cutOffDate.decription=\u0414\u0430\u0442\u0430 \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u044f
-
-rma_recordsmanagement.aspect.rma_transferred.title=\u041f\u0435\u0440\u0435\u0434\u0430\u043d\u043e
-rma_recordsmanagement.aspect.rma_transferred.decription=\u041f\u0435\u0440\u0435\u0434\u0430\u043d\u043e
-
-rma_recordsmanagement.aspect.rma_ascended.title=\u0423\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0435\u043d\u043e \u043f\u043e \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u043d\u0438\u044e
-rma_recordsmanagement.aspect.rma_ascended.decription=\u0423\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0435\u043d\u043e \u043f\u043e \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u043d\u0438\u044e
-
-rma_recordsmanagement.aspect.rma_frozen.title=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0430
-rma_recordsmanagement.aspect.rma_frozen.decription=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0430
-rma_recordsmanagement.property.rma_frozenAt.title=\u0423\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0441
-rma_recordsmanagement.property.rma_frozenAt.decription=\u0423\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0441
-rma_recordsmanagement.property.rma_frozenBy.title=\u0423\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c
-rma_recordsmanagement.property.rma_frozenBy.decription=\u0423\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c
-
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=\u041a\u043e\u0440\u0435\u043d\u044c \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a \u0440\u0430\u0437\u044a\u044f\u0441\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=\u041a\u043e\u0440\u0435\u043d\u044c \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a \u0440\u0430\u0437\u044a\u044f\u0441\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.association.rma_caveatConfigAssoc.title=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0440\u0430\u0437\u044a\u044f\u0441\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.association.rma_caveatConfigAssoc.description=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0440\u0430\u0437\u044a\u044f\u0441\u043d\u0435\u043d\u0438\u044f
-
-rma_recordsmanagement.aspect.rma_emailConfigRoot.title=\u041a\u043e\u0440\u0435\u043d\u044c \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
-rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=\u041a\u043e\u0440\u0435\u043d\u044c \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
-rma_recordsmanagement.association.rma_emailConfigAssoc.title=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
-rma_recordsmanagement.association.rma_emailConfigAssoc.description=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
-
-rma_recordsmanagement.aspect.rma_recordSearch.title=\u041f\u043e\u0438\u0441\u043a \u0437\u0430\u043f\u0438\u0441\u0438
-rma_recordsmanagement.aspect.rma_recordSearch.decription=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0434\u043b\u044f \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u043f\u043e\u0438\u0441\u043a\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=\u0415\u0441\u0442\u044c \u0433\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442, \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u043b\u0438 \u0434\u043b\u044f \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0439 \u0433\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=\u0418\u043c\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=\u0418\u043c\u044f \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0433\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=\u0414\u0430\u0442\u0430, \u043f\u043e \u043d\u0430\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0441\u0442\u0430\u043d\u0435\u0442 \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u043c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=\u041f\u0435\u0440\u0438\u043e\u0434 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=\u041f\u0435\u0440\u0438\u043e\u0434 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=\u0412\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=\u0412\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=\u0414\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=\u0414\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=\u0421\u043e\u0431\u044b\u0442\u0438\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=\u0421\u043e\u0431\u044b\u0442\u0438\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=\u041f\u043e\u043b\u043d\u043e\u043c\u043e\u0447\u0438\u044f \u043d\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=\u041f\u043e\u043b\u043d\u043e\u043c\u043e\u0447\u0438\u044f \u043d\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-rma_recordsmanagement.property.rma_recordSearchHoldReason.title=\u041f\u0440\u0438\u0447\u0438\u043d\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
-rma_recordsmanagement.property.rma_recordSearchHoldReason.description=\u041f\u0440\u0438\u0447\u0438\u043d\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=\u041f\u0435\u0440\u0438\u043e\u0434 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=\u041f\u0435\u0440\u0438\u043e\u0434 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=\u0412\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=\u0412\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438
-
-rma_recordsmanagement.aspect.rma_versionedRecord.title=\u0417\u0430\u043f\u0438\u0441\u044c \u0441 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0435\u043c \u0432\u0435\u0440\u0441\u0438\u0439
-rma_recordsmanagement.aspect.rma_versionedRecord.decription=\u0417\u0430\u043f\u0438\u0441\u044c \u0441 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0435\u043c \u0432\u0435\u0440\u0441\u0438\u0439
-
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=\u041d\u0435\u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=\u041d\u0435\u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435
-rma_recordsmanagement.property.rma_unpublishedUpdate.title=\u041d\u0435\u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435
-rma_recordsmanagement.property.rma_unpublishedUpdate.description=\u0423\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u043d\u0430 \u043d\u0430\u043b\u0438\u0447\u0438\u0435 \u043d\u0435\u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_updateTo.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u043e
-rma_recordsmanagement.property.rma_updateTo.description=\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f
-rma_recordsmanagement.property.rma_updatedProperties.title=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430
-rma_recordsmanagement.property.rma_updatedProperties.description=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430
-rma_recordsmanagement.property.rma_publishInProgress.title=\u0418\u0434\u0435\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438
-rma_recordsmanagement.property.rma_publishInProgress.description=\u0423\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u043d\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438
-
-rma_recordsmanagement.aspect.dod_ghosted.title=\u0417\u0430\u043f\u0438\u0441\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0441 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u043c\u0438
-rma_recordsmanagement.aspect.dod_ghosted.description=\u0417\u0430\u043f\u0438\u0441\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0441 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u043c\u0438
-
-listconstraint.rmc_tlList.title=\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438
+rma_recordsmanagement.description=\u041c\u043e\u0434\u0435\u043b\u044c \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+
+rma_recordsmanagement.type.rma_rmsite.title=\u0421\u0430\u0439\u0442 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+rma_recordsmanagement.type.rma_rmsite.description=\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u0430\u0439\u0442 \u0434\u043b\u044f \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+
+rma_recordsmanagement.type.rma_caveatConfig.title=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c\u044e
+rma_recordsmanagement.type.rma_caveatConfig.decription=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c\u044e
+
+rma_recordsmanagement.type.rma_emailConfig.title=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
+rma_recordsmanagement.type.rma_emailConfig.decription=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
+
+rma_recordsmanagement.type.rma_recordsManagementContainer.title=\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+rma_recordsmanagement.type.rma_recordsManagementContainer.decription=\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+
+rma_recordsmanagement.type.rma_dispositionSchedule.title=\u0413\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.type.rma_dispositionSchedule.decription=\u0413\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+
+rma_recordsmanagement.property.rma_dispositionAuthority.title=\u041f\u043e\u043b\u043d\u043e\u043c\u043e\u0447\u0438\u044f \u043d\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435
+rma_recordsmanagement.property.rma_dispositionAuthority.decription=\u041f\u043e\u043b\u043d\u043e\u043c\u043e\u0447\u0438\u044f \u043d\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435
+
+rma_recordsmanagement.property.rma_dispositionInstructions.title=\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_dispositionInstructions.decription=\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+
+rma_recordsmanagement.property.rma_recordLevelDisposition.title=\u0425\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0443\u0440\u043e\u0432\u043d\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+rma_recordsmanagement.property.rma_recordLevelDisposition.decription=\u0425\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0443\u0440\u043e\u0432\u043d\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+
+rma_recordsmanagement.type.rma_dispositionActionDefinition.title=\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_dispositionActionName.title=\u0418\u043c\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_dispositionActionName.decription=\u0418\u043c\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_dispositionDescription.title=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_dispositionDescription.decription=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_dispositionLocation.title=\u041c\u0435\u0441\u0442\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_dispositionLocation.decription=\u041c\u0435\u0441\u0442\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_dispositionPeriod.title=\u041f\u0435\u0440\u0438\u043e\u0434 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_dispositionPeriod.decription=\u041f\u0435\u0440\u0438\u043e\u0434 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u043e \u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u043e \u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_dispositionEvent.title=\u0421\u043e\u0431\u044b\u0442\u0438\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_dispositionEvent.decription=\u0421\u043e\u0431\u044b\u0442\u0438\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_dispositionEventCombination.title=\u041a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_dispositionEventCombination.decription=\u041a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+
+rma_recordsmanagement.type.rma_recordFolder.title=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+rma_recordsmanagement.type.rma_recordFolder.decription=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+rma_recordsmanagement.property.rma_isClosed.title=\u0417\u0430\u043f\u0438\u0441\u044c
+rma_recordsmanagement.property.rma_isClosed.decription=\u0417\u0430\u043f\u0438\u0441\u044c
+
+rma_recordsmanagement.type.rma_recordCategory.title=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+rma_recordsmanagement.type.rma_recordCategory.decription=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+
+rma_recordsmanagement.type.rma_nonElectronicDocument.title=\u041d\u0435\u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442
+rma_recordsmanagement.type.rma_nonElectronicDocument.decription=\u041d\u0435\u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442
+rma_recordsmanagement.property.rma_physicalSize.title=\u0424\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0440\u0430\u0437\u043c\u0435\u0440
+rma_recordsmanagement.property.rma_physicalSize.decription=\u0420\u0430\u0437\u043c\u0435\u0440 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430, \u0438\u0441\u0447\u0438\u0441\u043b\u044f\u0435\u043c\u044b\u0439 \u0432 \u043c\u0435\u0442\u0440\u0430\u0445.
+rma_recordsmanagement.property.rma_numberOfCopies.title=\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043a\u043e\u043f\u0438\u0439
+rma_recordsmanagement.property.rma_numberOfCopies.description=\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043a\u043e\u043f\u0438\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430.
+rma_recordsmanagement.property.rma_storageLocation.title=\u041c\u0435\u0441\u0442\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_storageLocation.decription=\u0424\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u043c\u0435\u0441\u0442\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0438.
+rma_recordsmanagement.property.rma_shelf.title=\u041f\u043e\u043b\u043a\u0430
+rma_recordsmanagement.property.rma_shelf.decription=\u041f\u043e\u043b\u043a\u0430, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0445\u0440\u0430\u043d\u0438\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c.
+rma_recordsmanagement.property.rma_box.title=\u042f\u0449\u0438\u043a
+rma_recordsmanagement.property.rma_box.description=\u042f\u0449\u0438\u043a, \u0432 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0445\u0440\u0430\u043d\u0438\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c.
+rma_recordsmanagement.property.rma_file.title=\u0424\u0430\u0439\u043b
+rma_recordsmanagement.property.rma_file.decription=\u0424\u0430\u0439\u043b, \u0432 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0445\u0440\u0430\u043d\u0438\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c.
+
+rma_recordsmanagement.type.rma_dispositionAction.title=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.type.rma_dispositionAction.decription=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_dispositionActionId.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_dispositionActionId.decription=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_dispositionAction.title=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_dispositionAction.decription=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_dispositionAsOf.title=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_dispositionAsOf.decription=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_dispositionEventsEligible.title=\u0414\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=\u0414\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043e \u0432
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043e \u0432
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=\u041a\u0435\u043c \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=\u041a\u0435\u043c \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e \u0432
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e \u0432
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=\u041a\u0435\u043c \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=\u041a\u0435\u043c \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.association.rma_eventExecutions.title=\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u044f
+rma_recordsmanagement.association.rma_eventExecutions.decription=\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u044f
+
+rma_recordsmanagement.type.rma_eventExecution.title=\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f
+rma_recordsmanagement.type.rma_eventExecution.decription=\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f
+rma_recordsmanagement.property.rma_eventExecutionName.title=\u0418\u043c\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u044f
+rma_recordsmanagement.property.rma_eventExecutionName.decription=\u0418\u043c\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u044f
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=\u0410\u0432\u0442\u043e\u043c\u0430\u0442. \u0441\u043e\u0431\u044b\u0442\u0438\u0435
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=\u0410\u0432\u0442\u043e\u043c\u0430\u0442. \u0441\u043e\u0431\u044b\u0442\u0438\u0435
+rma_recordsmanagement.property.rma_eventExecutionComplete.title=\u0421\u043e\u0431\u044b\u0442\u0438\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e
+rma_recordsmanagement.property.rma_eventExecutionComplete.decription=\u0421\u043e\u0431\u044b\u0442\u0438\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c, \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0432\u0448\u0438\u0439 \u0441\u043e\u0431\u044b\u0442\u0438\u0435
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c, \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0432\u0448\u0438\u0439 \u0441\u043e\u0431\u044b\u0442\u0438\u0435
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=\u0414\u0430\u0442\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u044f
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=\u0414\u0430\u0442\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u0441\u043e\u0431\u044b\u0442\u0438\u044f
+
+rma_recordsmanagement.type.rma_hold.title=\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430
+rma_recordsmanagement.type.rma_hold.decription=\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430
+rma_recordsmanagement.property.rma_holdReason.title=\u041f\u0440\u0438\u0447\u0438\u043d\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
+rma_recordsmanagement.property.rma_holdReason.decription=\u041f\u0440\u0438\u0447\u0438\u043d\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
+rma_recordsmanagement.association.rma_frozenRecords.title=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+rma_recordsmanagement.association.rma_frozenRecords.decription=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+
+rma_recordsmanagement.type.rma_transfer.title=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c
+rma_recordsmanagement.type.rma_transfer.decription=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c
+rma_recordsmanagement.property.rma_transferAccessionIndicator.title=\u0418\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0435
+rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=\u0418\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0435
+rma_recordsmanagement.property.rma_transferPDFIndicator.title=\u0418\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 PDF
+rma_recordsmanagement.property.rma_transferPDFIndicator.decription=\u0418\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 PDF
+rma_recordsmanagement.property.rma_transferLocation.title=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c PDF
+rma_recordsmanagement.property.rma_transferLocation.decription=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c PDF
+rma_recordsmanagement.association.rma_transferred.title=\u041f\u0435\u0440\u0435\u0434\u0430\u043d\u043e
+rma_recordsmanagement.association.rma_transferred.decription=\u041f\u0435\u0440\u0435\u0434\u0430\u043d\u043e
+
+rma_recordsmanagement.aspect.rma_filePlanComponent.title=\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u0410\u0440\u0445\u0438\u0432
+rma_recordsmanagement.aspect.rma_filePlanComponent.decription=\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u0410\u0440\u0445\u0438\u0432
+rma_recordsmanagement.property.rma_rootNodeRef.title=\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u043e\u0431\u044a\u0435\u043a\u0442
+rma_recordsmanagement.property.rma_rootNodeRef.decription=\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u043e\u0431\u044a\u0435\u043a\u0442
+
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=\u041a\u043e\u0440\u0435\u043d\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=\u041a\u043e\u0440\u0435\u043d\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+rma_recordsmanagement.association.rma_holds.title=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+rma_recordsmanagement.association.rma_holds.decription=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+rma_recordsmanagement.association.rma_transfers.title=\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0438
+rma_recordsmanagement.association.rma_transfers.decription=\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0438
+
+rma_recordsmanagement.aspect.rma_declaredRecord.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
+rma_recordsmanagement.aspect.rma_declaredRecord.decription=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
+rma_recordsmanagement.property.rma_declaredAt.title=\u0414\u0430\u0442\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_declaredAt.decription=\u0414\u0430\u0442\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_declaredBy.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c
+rma_recordsmanagement.property.rma_declaredBy.decription=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c
+
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430 \u0437\u0430\u043f\u0438\u0441\u0438
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430 \u0437\u0430\u043f\u0438\u0441\u0438
+rma_recordsmanagement.property.rma_identifier.title=\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0437\u0430\u043f\u0438\u0441\u0438
+rma_recordsmanagement.property.rma_identifier.decription=\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0437\u0430\u043f\u0438\u0441\u0438
+rma_recordsmanagement.property.rma_dbUniquenessId.title=\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0431\u0430\u0437\u044b \u0434\u0430\u043d\u043d\u044b\u0445
+rma_recordsmanagement.property.rma_dbUniquenessId.decription=\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0431\u0430\u0437\u044b \u0434\u0430\u043d\u043d\u044b\u0445
+
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
+
+rma_recordsmanagement.property.rma_reviewPeriod.title=\u041f\u0435\u0440\u0438\u043e\u0434 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438
+rma_recordsmanagement.property.rma_reviewPeriod.decription=\u041f\u0435\u0440\u0438\u043e\u0434 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438
+rma_recordsmanagement.property.rma_vitalRecordIndicator.title=\u0418\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
+rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=\u0418\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
+
+rma_recordsmanagement.aspect.rma_record.title=\u0417\u0430\u043f\u0438\u0441\u044c
+rma_recordsmanagement.aspect.rma_record.decription=\u0417\u0430\u043f\u0438\u0441\u044c
+rma_recordsmanagement.property.rma_dateFiled.title=\u0414\u0430\u0442\u0430 \u0432\u0432\u043e\u0434\u0430
+rma_recordsmanagement.property.rma_dateFiled.decription=\u0414\u0430\u0442\u0430 \u0432\u0432\u043e\u0434\u0430
+rma_recordsmanagement.property.rma_origionalName=\u041e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u0435 \u0438\u043c\u044f
+
+rma_recordsmanagement.aspect.rma_recordMetaData.title=\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+rma_recordsmanagement.aspect.rma_recordMetaData.description=\u0410\u0441\u043f\u0435\u043a\u0442 \u043f\u043e\u043c\u0435\u0442\u043a\u0438 \u0434\u043b\u044f \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0438
+
+rma_recordsmanagement.aspect.rma_commonRecordDetails.title=\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u0438 \u043e\u0431\u0449\u0438\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+rma_recordsmanagement.aspect.rma_commonRecordDetails.description=\u041e\u0431\u0449\u0438\u0435 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u0442\u0438\u043f\u043e\u0432 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+rma_recordsmanagement.property.rma_location.title=\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435
+rma_recordsmanagement.property.rma_location.decription=\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435
+
+rma_recordsmanagement.aspect.rma_vitalRecord.title=\u041a\u043b\u044e\u0447\u0435\u0432\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
+rma_recordsmanagement.aspect.rma_vitalRecord.decription=\u041a\u043b\u044e\u0447\u0435\u0432\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
+rma_recordsmanagement.property.rma_reviewAsOf.title=\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430
+rma_recordsmanagement.property.rma_reviewAsOf.decription=\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430
+rma_recordsmanagement.property.rma_notificationIssued.title=\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442, \u0447\u0442\u043e \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u043e \u0437\u0430\u043f\u0438\u0441\u0438, \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0435\u0439 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435
+rma_recordsmanagement.property.rma_notificationIssued.decription=\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442, \u0447\u0442\u043e \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u043e \u0437\u0430\u043f\u0438\u0441\u0438, \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0435\u0439 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435
+
+rma_recordsmanagement.aspect.rma_scheduled.title=\u0417\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043e
+rma_recordsmanagement.aspect.rma_scheduled.decription=\u0417\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043e
+rma_recordsmanagement.association.rma_dispositionSchedule.title=\u0413\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.association.rma_dispositionSchedule.decription=\u0413\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=\u0416\u0438\u0437\u043d\u0435\u043d\u043d\u044b\u0439 \u0446\u0438\u043a\u043b \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=\u0416\u0438\u0437\u043d\u0435\u043d\u043d\u044b\u0439 \u0446\u0438\u043a\u043b \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.association.rma_nextDispositionAction.title=\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.association.rma_nextDispositionAction.decription=\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.association.rma_dispositionActionHistory.title=\u0416\u0443\u0440\u043d\u0430\u043b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.association.rma_dispositionActionHistory.decription=\u0416\u0443\u0440\u043d\u0430\u043b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+
+rma_recordsmanagement.aspect.rma_cutOff.title=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
+rma_recordsmanagement.aspect.rma_cutOff.decription=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
+rma_recordsmanagement.property.rma_cutOffDate.title=\u0414\u0430\u0442\u0430 \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_cutOffDate.decription=\u0414\u0430\u0442\u0430 \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u044f
+
+rma_recordsmanagement.aspect.rma_transferred.title=\u041f\u0435\u0440\u0435\u0434\u0430\u043d\u043e
+rma_recordsmanagement.aspect.rma_transferred.decription=\u041f\u0435\u0440\u0435\u0434\u0430\u043d\u043e
+
+rma_recordsmanagement.aspect.rma_ascended.title=\u0423\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0435\u043d\u043e \u043f\u043e \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u043d\u0438\u044e
+rma_recordsmanagement.aspect.rma_ascended.decription=\u0423\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0435\u043d\u043e \u043f\u043e \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u043d\u0438\u044e
+
+rma_recordsmanagement.aspect.rma_frozen.title=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0430
+rma_recordsmanagement.aspect.rma_frozen.decription=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0430
+rma_recordsmanagement.property.rma_frozenAt.title=\u0423\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0441
+rma_recordsmanagement.property.rma_frozenAt.decription=\u0423\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0441
+rma_recordsmanagement.property.rma_frozenBy.title=\u0423\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c
+rma_recordsmanagement.property.rma_frozenBy.decription=\u0423\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c
+
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=\u041a\u043e\u0440\u0435\u043d\u044c \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a \u0440\u0430\u0437\u044a\u044f\u0441\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=\u041a\u043e\u0440\u0435\u043d\u044c \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a \u0440\u0430\u0437\u044a\u044f\u0441\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.association.rma_caveatConfigAssoc.title=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0440\u0430\u0437\u044a\u044f\u0441\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.association.rma_caveatConfigAssoc.description=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0440\u0430\u0437\u044a\u044f\u0441\u043d\u0435\u043d\u0438\u044f
+
+rma_recordsmanagement.aspect.rma_emailConfigRoot.title=\u041a\u043e\u0440\u0435\u043d\u044c \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
+rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=\u041a\u043e\u0440\u0435\u043d\u044c \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
+rma_recordsmanagement.association.rma_emailConfigAssoc.title=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
+rma_recordsmanagement.association.rma_emailConfigAssoc.description=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b
+
+rma_recordsmanagement.aspect.rma_recordSearch.title=\u041f\u043e\u0438\u0441\u043a \u0437\u0430\u043f\u0438\u0441\u0438
+rma_recordsmanagement.aspect.rma_recordSearch.decription=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0434\u043b\u044f \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u043f\u043e\u0438\u0441\u043a\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=\u0415\u0441\u0442\u044c \u0433\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442, \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u043b\u0438 \u0434\u043b\u044f \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0439 \u0433\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=\u0418\u043c\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=\u0418\u043c\u044f \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0433\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=\u0414\u0430\u0442\u0430, \u043f\u043e \u043d\u0430\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0438 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0441\u0442\u0430\u043d\u0435\u0442 \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u043c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=\u041f\u0435\u0440\u0438\u043e\u0434 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=\u041f\u0435\u0440\u0438\u043e\u0434 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=\u0412\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=\u0412\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=\u0414\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=\u0414\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=\u0421\u043e\u0431\u044b\u0442\u0438\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=\u0421\u043e\u0431\u044b\u0442\u0438\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=\u041f\u043e\u043b\u043d\u043e\u043c\u043e\u0447\u0438\u044f \u043d\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=\u041f\u043e\u043b\u043d\u043e\u043c\u043e\u0447\u0438\u044f \u043d\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+rma_recordsmanagement.property.rma_recordSearchHoldReason.title=\u041f\u0440\u0438\u0447\u0438\u043d\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
+rma_recordsmanagement.property.rma_recordSearchHoldReason.description=\u041f\u0440\u0438\u0447\u0438\u043d\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=\u041f\u0435\u0440\u0438\u043e\u0434 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=\u041f\u0435\u0440\u0438\u043e\u0434 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=\u0412\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=\u0412\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438
+
+rma_recordsmanagement.aspect.rma_versionedRecord.title=\u0417\u0430\u043f\u0438\u0441\u044c \u0441 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0435\u043c \u0432\u0435\u0440\u0441\u0438\u0439
+rma_recordsmanagement.aspect.rma_versionedRecord.decription=\u0417\u0430\u043f\u0438\u0441\u044c \u0441 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0435\u043c \u0432\u0435\u0440\u0441\u0438\u0439
+
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=\u041d\u0435\u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=\u041d\u0435\u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435
+rma_recordsmanagement.property.rma_unpublishedUpdate.title=\u041d\u0435\u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435
+rma_recordsmanagement.property.rma_unpublishedUpdate.description=\u0423\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u043d\u0430 \u043d\u0430\u043b\u0438\u0447\u0438\u0435 \u043d\u0435\u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_updateTo.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u043e
+rma_recordsmanagement.property.rma_updateTo.description=\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f
+rma_recordsmanagement.property.rma_updatedProperties.title=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430
+rma_recordsmanagement.property.rma_updatedProperties.description=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430
+rma_recordsmanagement.property.rma_publishInProgress.title=\u0418\u0434\u0435\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438
+rma_recordsmanagement.property.rma_publishInProgress.description=\u0423\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u043d\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438
+
+rma_recordsmanagement.aspect.dod_ghosted.title=\u0417\u0430\u043f\u0438\u0441\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0441 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u043c\u0438
+rma_recordsmanagement.aspect.dod_ghosted.description=\u0417\u0430\u043f\u0438\u0441\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0441 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u043c\u0438
+
+listconstraint.rmc_tlList.title=\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438
listconstraint.rmc_smList.title=\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u043c\u0430\u0440\u043a\u0438\u0440\u043e\u0432\u043a\u0430
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_zh_CN.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_zh_CN.properties
index 61da28be01..bdcaf496f4 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_zh_CN.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/records-model_zh_CN.properties
@@ -1,265 +1,265 @@
-rma_recordsmanagement.description=\u8bb0\u5f55\u7ba1\u7406\u5185\u5bb9\u6a21\u578b
-
-rma_recordsmanagement.type.rma_rmsite.title=\u8bb0\u5f55\u7ba1\u7406\u7ad9\u70b9
-rma_recordsmanagement.type.rma_rmsite.description=\u8bb0\u5f55\u7ba1\u7406\u4e13\u7528\u7ad9\u70b9
-
-rma_recordsmanagement.type.rma_caveatConfig.title=\u5b89\u5168\u63a7\u4ef6\u914d\u7f6e
-rma_recordsmanagement.type.rma_caveatConfig.decription=\u5b89\u5168\u63a7\u4ef6\u914d\u7f6e
-
-rma_recordsmanagement.type.rma_emailConfig.title=\u7535\u5b50\u90ae\u4ef6\u914d\u7f6e
-rma_recordsmanagement.type.rma_emailConfig.decription=\u7535\u5b50\u90ae\u4ef6\u914d\u7f6e
-
-rma_recordsmanagement.type.rma_recordsManagementContainer.title=\u8bb0\u5f55\u7ba1\u7406\u5bb9\u5668
-rma_recordsmanagement.type.rma_recordsManagementContainer.decription=\u8bb0\u5f55\u7ba1\u7406\u5bb9\u5668
-
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=\u8bb0\u5f55\u7ba1\u7406\u6839\u5bb9\u5668
-rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=\u8bb0\u5f55\u7ba1\u7406\u6839\u5bb9\u5668
-
-rma_recordsmanagement.type.rma_dispositionSchedule.title=\u4fdd\u7559\u8ba1\u5212
-rma_recordsmanagement.type.rma_dispositionSchedule.decription=\u4fdd\u7559\u8ba1\u5212
-
-rma_recordsmanagement.property.rma_dispositionAuthority.title=\u4fdd\u7559\u6388\u6743
-rma_recordsmanagement.property.rma_dispositionAuthority.decription=\u4fdd\u7559\u6388\u6743
-
-rma_recordsmanagement.property.rma_dispositionInstructions.title=\u4fdd\u7559\u8bf4\u660e
-rma_recordsmanagement.property.rma_dispositionInstructions.decription=\u4fdd\u7559\u8bf4\u660e
-
-rma_recordsmanagement.property.rma_recordLevelDisposition.title=\u8bb0\u5f55\u7ea7\u522b\u4fdd\u7559
-rma_recordsmanagement.property.rma_recordLevelDisposition.decription=\u8bb0\u5f55\u7ea7\u522b\u4fdd\u7559
-
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=\u4fdd\u7559\u64cd\u4f5c
-rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=\u4fdd\u7559\u64cd\u4f5c
-
-rma_recordsmanagement.type.rma_dispositionActionDefinition.title=\u4fdd\u7559\u64cd\u4f5c\u5b9a\u4e49
-rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=\u4fdd\u7559\u64cd\u4f5c\u5b9a\u4e49
-rma_recordsmanagement.property.rma_dispositionActionName.title=\u4fdd\u7559\u64cd\u4f5c\u540d\u79f0
-rma_recordsmanagement.property.rma_dispositionActionName.decription=\u4fdd\u7559\u64cd\u4f5c\u540d\u79f0
-rma_recordsmanagement.property.rma_dispositionDescription.title=\u4fdd\u7559\u8bf4\u660e
-rma_recordsmanagement.property.rma_dispositionDescription.decription=\u4fdd\u7559\u8bf4\u660e
-rma_recordsmanagement.property.rma_dispositionLocation.title=\u4fdd\u7559\u4f4d\u7f6e
-rma_recordsmanagement.property.rma_dispositionLocation.decription=\u4fdd\u7559\u4f4d\u7f6e
-rma_recordsmanagement.property.rma_dispositionPeriod.title=\u4fdd\u7559\u5468\u671f
-rma_recordsmanagement.property.rma_dispositionPeriod.decription=\u4fdd\u7559\u5468\u671f
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=\u4fdd\u7559\u5468\u671f\u5c5e\u6027
-rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=\u4fdd\u7559\u5468\u671f\u5c5e\u6027
-rma_recordsmanagement.property.rma_dispositionEvent.title=\u4fdd\u7559\u4e8b\u4ef6
-rma_recordsmanagement.property.rma_dispositionEvent.decription=\u4fdd\u7559\u4e8b\u4ef6
-rma_recordsmanagement.property.rma_dispositionEventCombination.title=\u4fdd\u7559\u4e8b\u4ef6\u7ec4\u5408
-rma_recordsmanagement.property.rma_dispositionEventCombination.decription=\u4fdd\u7559\u4e8b\u4ef6\u7ec4\u5408
-
-rma_recordsmanagement.type.rma_recordFolder.title=\u8bb0\u5f55\u6587\u4ef6\u5939
-rma_recordsmanagement.type.rma_recordFolder.decription=\u8bb0\u5f55\u6587\u4ef6\u5939
-rma_recordsmanagement.property.rma_isClosed.title=\u8bb0\u5f55
-rma_recordsmanagement.property.rma_isClosed.decription=\u8bb0\u5f55
-
-rma_recordsmanagement.type.rma_recordCategory.title=\u8bb0\u5f55\u7c7b\u522b
-rma_recordsmanagement.type.rma_recordCategory.decription=\u8bb0\u5f55\u7c7b\u522b
-
-rma_recordsmanagement.type.rma_nonElectronicDocument.title=\u975e\u7535\u5b50\u6587\u6863
-rma_recordsmanagement.type.rma_nonElectronicDocument.decription=\u975e\u7535\u5b50\u6587\u6863
-rma_recordsmanagement.property.rma_physicalSize.title=\u7269\u7406\u5c3a\u5bf8
-rma_recordsmanagement.property.rma_physicalSize.decription=\u7ebf\u6027\u4eea\u8868\u6d4b\u91cf\u7684\u6587\u6863\u5c3a\u5bf8\u3002
-rma_recordsmanagement.property.rma_numberOfCopies.title=\u526f\u672c\u6570\u76ee
-rma_recordsmanagement.property.rma_numberOfCopies.description=\u6587\u6863\u526f\u672c\u6570\u76ee\u3002
-rma_recordsmanagement.property.rma_storageLocation.title=\u5b58\u50a8\u4f4d\u7f6e
-rma_recordsmanagement.property.rma_storageLocation.decription=\u8bb0\u5f55\u7684\u7269\u7406\u5b58\u50a8\u4f4d\u7f6e\u3002
-rma_recordsmanagement.property.rma_shelf.title=\u6258\u67b6
-rma_recordsmanagement.property.rma_shelf.decription=\u5b58\u50a8\u8bb0\u5f55\u7684\u673a\u67b6\u3002
-rma_recordsmanagement.property.rma_box.title=\u7bb1
-rma_recordsmanagement.property.rma_box.description=\u5b58\u50a8\u8bb0\u5f55\u7684\u7bb1\u3002
-rma_recordsmanagement.property.rma_file.title=\u6587\u4ef6
-rma_recordsmanagement.property.rma_file.decription=\u5b58\u50a8\u8bb0\u5f55\u7684\u6587\u4ef6\u3002
-
-rma_recordsmanagement.type.rma_dispositionAction.title=\u4fdd\u7559\u64cd\u4f5c
-rma_recordsmanagement.type.rma_dispositionAction.decription=\u4fdd\u7559\u64cd\u4f5c
-rma_recordsmanagement.property.rma_dispositionActionId.title=\u4fdd\u7559\u64cd\u4f5c ID
-rma_recordsmanagement.property.rma_dispositionActionId.decription=\u4fdd\u7559\u64cd\u4f5c ID
-rma_recordsmanagement.property.rma_dispositionAction.title=\u4fdd\u7559\u64cd\u4f5c
-rma_recordsmanagement.property.rma_dispositionAction.decription=\u4fdd\u7559\u64cd\u4f5c
-rma_recordsmanagement.property.rma_dispositionAsOf.title=\u4fdd\u7559\u64cd\u4f5c
-rma_recordsmanagement.property.rma_dispositionAsOf.decription=\u4fdd\u7559\u64cd\u4f5c
-rma_recordsmanagement.property.rma_dispositionEventsEligible.title=\u7b26\u5408\u4fdd\u7559\u4e8b\u4ef6\u6761\u4ef6
-rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=\u7b26\u5408\u4fdd\u7559\u4e8b\u4ef6\u6761\u4ef6
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=\u4fdd\u7559\u64cd\u4f5c\u542f\u52a8\u65f6\u95f4
-rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=\u4fdd\u7559\u64cd\u4f5c\u542f\u52a8\u65f6\u95f4
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=\u4fdd\u7559\u64cd\u4f5c\u542f\u52a8\u8005
-rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=\u4fdd\u7559\u64cd\u4f5c\u542f\u52a8\u8005
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=\u4fdd\u7559\u64cd\u4f5c\u5b8c\u6210\u65f6\u95f4
-rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=\u4fdd\u7559\u64cd\u4f5c\u5b8c\u6210\u65f6\u95f4
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=\u4fdd\u7559\u64cd\u4f5c\u5b8c\u6210\u8005
-rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=\u4fdd\u7559\u64cd\u4f5c\u5b8c\u6210\u8005
-rma_recordsmanagement.association.rma_eventExecutions.title=\u4e8b\u4ef6\u6267\u884c
-rma_recordsmanagement.association.rma_eventExecutions.decription=\u4e8b\u4ef6\u6267\u884c
-
-rma_recordsmanagement.type.rma_eventExecution.title=\u4e8b\u4ef6\u6267\u884c
-rma_recordsmanagement.type.rma_eventExecution.decription=\u4e8b\u4ef6\u6267\u884c
-rma_recordsmanagement.property.rma_eventExecutionName.title=\u4e8b\u4ef6\u540d\u79f0
-rma_recordsmanagement.property.rma_eventExecutionName.decription=\u4e8b\u4ef6\u540d\u79f0
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=\u81ea\u52a8\u4e8b\u4ef6
-rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=\u81ea\u52a8\u4e8b\u4ef6
-rma_recordsmanagement.property.rma_eventExecutionComplete.title=\u4e8b\u4ef6\u5b8c\u6210
-rma_recordsmanagement.property.rma_eventExecutionComplete.decription=\u4e8b\u4ef6\u5b8c\u6210
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=\u4e8b\u4ef6\u5b8c\u6210\u8005
-rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=\u4e8b\u4ef6\u5b8c\u6210\u8005
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=\u4e8b\u4ef6\u5b8c\u6210\u65f6\u95f4
-rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=\u4e8b\u4ef6\u5b8c\u6210\u65f6\u95f4
-
-rma_recordsmanagement.type.rma_hold.title=\u4fdd\u5b58
-rma_recordsmanagement.type.rma_hold.decription=\u4fdd\u5b58
-rma_recordsmanagement.property.rma_holdReason.title=\u4fdd\u5b58\u539f\u56e0
-rma_recordsmanagement.property.rma_holdReason.decription=\u4fdd\u5b58\u539f\u56e0
-rma_recordsmanagement.association.rma_frozenRecords.title=\u4fdd\u5b58\u8bb0\u5f55
-rma_recordsmanagement.association.rma_frozenRecords.decription=\u4fdd\u5b58\u8bb0\u5f55
-
-rma_recordsmanagement.type.rma_transfer.title=\u79fb\u4ea4
-rma_recordsmanagement.type.rma_transfer.decription=\u79fb\u4ea4
-rma_recordsmanagement.property.rma_transferAccessionIndicator.title=\u79fb\u4ea4\u5165\u7ba1\u6307\u793a\u7b26
-rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=\u79fb\u4ea4\u5165\u7ba1\u6307\u793a\u7b26
-rma_recordsmanagement.property.rma_transferPDFIndicator.title=\u79fb\u4ea4 PDF \u6307\u793a\u7b26
-rma_recordsmanagement.property.rma_transferPDFIndicator.decription=\u79fb\u4ea4 PDF \u6307\u793a\u7b26
-rma_recordsmanagement.property.rma_transferLocation.title=\u79fb\u4ea4 PDF
-rma_recordsmanagement.property.rma_transferLocation.decription=\u79fb\u4ea4 PDF
-rma_recordsmanagement.association.rma_transferred.title=\u5df2\u79fb\u4ea4
-rma_recordsmanagement.association.rma_transferred.decription=\u5df2\u79fb\u4ea4
-
-rma_recordsmanagement.aspect.rma_filePlanComponent.title=\u5f52\u7c7b\u65b9\u6848\u7ec4\u4ef6
-rma_recordsmanagement.aspect.rma_filePlanComponent.decription=\u5f52\u7c7b\u65b9\u6848\u7ec4\u4ef6
-rma_recordsmanagement.property.rma_rootNodeRef.title=\u6839\u8282\u70b9
-rma_recordsmanagement.property.rma_rootNodeRef.decription=\u6839\u8282\u70b9
-
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=\u8bb0\u5f55\u7ba1\u7406\u6839
-rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=\u8bb0\u5f55\u7ba1\u7406\u6839
-rma_recordsmanagement.association.rma_holds.title=\u4fdd\u5b58
-rma_recordsmanagement.association.rma_holds.decription=\u4fdd\u5b58
-rma_recordsmanagement.association.rma_transfers.title=\u79fb\u4ea4
-rma_recordsmanagement.association.rma_transfers.decription=\u79fb\u4ea4
-
-rma_recordsmanagement.aspect.rma_declaredRecord.title=\u5b8c\u6210\u7684\u8bb0\u5f55
-rma_recordsmanagement.aspect.rma_declaredRecord.decription=\u5b8c\u6210\u7684\u8bb0\u5f55
-rma_recordsmanagement.property.rma_declaredAt.title=\u5b8c\u6210\u65e5\u671f
-rma_recordsmanagement.property.rma_declaredAt.decription=\u5b8c\u6210\u65e5\u671f
-rma_recordsmanagement.property.rma_declaredBy.title=\u5b8c\u6210\u8005
-rma_recordsmanagement.property.rma_declaredBy.decription=\u5b8c\u6210\u8005
-
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=\u8bb0\u5f55\u7ec4\u4ef6\u6807\u8bc6\u7b26
-rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=\u8bb0\u5f55\u7ec4\u4ef6\u6807\u8bc6\u7b26
-rma_recordsmanagement.property.rma_identifier.title=\u8bb0\u5f55 ID
-rma_recordsmanagement.property.rma_identifier.decription=\u552f\u4e00\u8bb0\u5f55\u6807\u8bc6\u7b26
-rma_recordsmanagement.property.rma_dbUniquenessId.title=\u6570\u636e\u5e93\u552f\u4e00\u6027
-rma_recordsmanagement.property.rma_dbUniquenessId.decription=\u6570\u636e\u5e93\u552f\u4e00\u6027
-
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=\u6838\u5fc3\u8bb0\u5f55\u5b9a\u4e49
-rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=\u6838\u5fc3\u8bb0\u5f55\u5b9a\u4e49
-
-rma_recordsmanagement.property.rma_reviewPeriod.title=\u5ba1\u67e5\u671f\u95f4
-rma_recordsmanagement.property.rma_reviewPeriod.decription=\u5ba1\u67e5\u671f\u95f4
-rma_recordsmanagement.property.rma_vitalRecordIndicator.title=\u6838\u5fc3\u8bb0\u5f55\u6307\u793a\u7b26
-rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=\u6838\u5fc3\u8bb0\u5f55\u6307\u793a\u7b26
-
-rma_recordsmanagement.aspect.rma_record.title=\u8bb0\u5f55
-rma_recordsmanagement.aspect.rma_record.decription=\u8bb0\u5f55
-rma_recordsmanagement.property.rma_dateFiled.title=\u7acb\u5377\u65e5\u671f
-rma_recordsmanagement.property.rma_dateFiled.decription=\u7acb\u5377\u65e5\u671f
-rma_recordsmanagement.property.rma_origionalName=\u539f\u59cb\u540d\u79f0
-
-rma_recordsmanagement.aspect.rma_recordMetaData.title=\u8bb0\u5f55\u5143\u6570\u636e
-rma_recordsmanagement.aspect.rma_recordMetaData.description=\u8bb0\u5f55\u5143\u6570\u636e\u7684\u6807\u8bb0\u5207\u9762
-
-rma_recordsmanagement.aspect.rma_commonRecordDetails.title=\u5e38\u89c1\u8bb0\u5f55\u8be6\u7ec6\u4fe1\u606f
-rma_recordsmanagement.aspect.rma_commonRecordDetails.description=\u6240\u6709\u8bb0\u5f55\u7c7b\u578b\u901a\u7528\u7684\u5143\u6570\u636e
-rma_recordsmanagement.property.rma_location.title=\u4f4d\u7f6e
-rma_recordsmanagement.property.rma_location.decription=\u4f4d\u7f6e
-
-rma_recordsmanagement.aspect.rma_vitalRecord.title=\u6838\u5fc3\u8bb0\u5f55
-rma_recordsmanagement.aspect.rma_vitalRecord.decription=\u6838\u5fc3\u8bb0\u5f55
-rma_recordsmanagement.property.rma_reviewAsOf.title=\u4e0b\u4e2a\u5ba1\u67e5
-rma_recordsmanagement.property.rma_reviewAsOf.decription=\u4e0b\u4e2a\u5ba1\u67e5
-rma_recordsmanagement.property.rma_notificationIssued.title=\u6307\u793a\u5df2\u7ecf\u4e3a\u8be5\u8bb0\u5f55\u53d1\u51fa\u5ba1\u67e5\u5230\u671f\u901a\u77e5
-rma_recordsmanagement.property.rma_notificationIssued.decription=\u6307\u793a\u5df2\u7ecf\u4e3a\u8be5\u8bb0\u5f55\u53d1\u51fa\u5ba1\u67e5\u5230\u671f\u901a\u77e5
-
-rma_recordsmanagement.aspect.rma_scheduled.title=\u5df2\u8ba1\u5212
-rma_recordsmanagement.aspect.rma_scheduled.decription=\u5df2\u8ba1\u5212
-rma_recordsmanagement.association.rma_dispositionSchedule.title=\u4fdd\u7559\u8ba1\u5212
-rma_recordsmanagement.association.rma_dispositionSchedule.decription=\u4fdd\u7559\u8ba1\u5212
-
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=\u4fdd\u7559\u751f\u547d\u5468\u671f
-rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=\u4fdd\u7559\u751f\u547d\u5468\u671f
-rma_recordsmanagement.association.rma_nextDispositionAction.title=\u4e0b\u4e00\u4e2a\u4fdd\u7559\u64cd\u4f5c
-rma_recordsmanagement.association.rma_nextDispositionAction.decription=\u4e0b\u4e00\u4e2a\u4fdd\u7559\u64cd\u4f5c
-rma_recordsmanagement.association.rma_dispositionActionHistory.title=\u4fdd\u7559\u64cd\u4f5c\u5386\u53f2\u8bb0\u5f55
-rma_recordsmanagement.association.rma_dispositionActionHistory.decription=\u4fdd\u7559\u64cd\u4f5c\u5386\u53f2\u8bb0\u5f55
-
-rma_recordsmanagement.aspect.rma_cutOff.title=\u4e2d\u65ad
-rma_recordsmanagement.aspect.rma_cutOff.decription=\u4e2d\u65ad
-rma_recordsmanagement.property.rma_cutOffDate.title=\u4e2d\u65ad\u65e5\u671f
-rma_recordsmanagement.property.rma_cutOffDate.decription=\u4e2d\u65ad\u65e5\u671f
-
-rma_recordsmanagement.aspect.rma_transferred.title=\u5df2\u79fb\u4ea4
-rma_recordsmanagement.aspect.rma_transferred.decription=\u5df2\u79fb\u4ea4
-
-rma_recordsmanagement.aspect.rma_ascended.title=\u5df2\u4e0a\u5347
-rma_recordsmanagement.aspect.rma_ascended.decription=\u5df2\u4e0a\u5347
-
-rma_recordsmanagement.aspect.rma_frozen.title=\u4fdd\u5b58\u4e2d
-rma_recordsmanagement.aspect.rma_frozen.decription=\u4fdd\u5b58\u4e2d
-rma_recordsmanagement.property.rma_frozenAt.title=\u4fdd\u5b58\u4e8e
-rma_recordsmanagement.property.rma_frozenAt.decription=\u4fdd\u5b58\u4e8e
-rma_recordsmanagement.property.rma_frozenBy.title=\u4fdd\u5b58\u8005
-rma_recordsmanagement.property.rma_frozenBy.decription=\u4fdd\u5b58\u8005
-
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=\u8b66\u544a\u914d\u7f6e\u6839
-rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=\u8b66\u544a\u914d\u7f6e\u6839
-rma_recordsmanagement.association.rma_caveatConfigAssoc.title=\u8b66\u544a\u914d\u7f6e
-rma_recordsmanagement.association.rma_caveatConfigAssoc.description=\u8b66\u544a\u914d\u7f6e
-
-rma_recordsmanagement.aspect.rma_emailConfigRoot.title=\u7535\u5b50\u90ae\u4ef6\u914d\u7f6e\u6839
-rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=\u7535\u5b50\u90ae\u4ef6\u914d\u7f6e\u6839
-rma_recordsmanagement.association.rma_emailConfigAssoc.title=\u7535\u5b50\u90ae\u4ef6\u914d\u7f6e
-rma_recordsmanagement.association.rma_emailConfigAssoc.description=\u7535\u5b50\u90ae\u4ef6\u914d\u7f6e
-
-rma_recordsmanagement.aspect.rma_recordSearch.title=\u8bb0\u5f55\u641c\u7d22
-rma_recordsmanagement.aspect.rma_recordSearch.decription=\u652f\u6301\u8bb0\u5f55\u7ba1\u7406\u641c\u7d22\u7684\u4fe1\u606f
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=\u6709\u4fdd\u7559\u8ba1\u5212
-rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=\u6307\u793a\u9879\u76ee\u662f\u5426\u6709\u5173\u8054\u7684\u4fdd\u7559\u8ba1\u5212
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=\u4fdd\u7559\u64cd\u4f5c\u540d\u79f0
-rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=\u4e0b\u4e00\u4e2a\u4fdd\u7559\u64cd\u4f5c\u7684\u540d\u79f0
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=\u4fdd\u7559\u64cd\u4f5c
-rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=\u4e0b\u4e00\u4e2a\u4fdd\u7559\u64cd\u4f5c\u5408\u6cd5\u7684\u65e5\u671f
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=\u4fdd\u7559\u5468\u671f
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=\u4fdd\u7559\u5468\u671f
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=\u4fdd\u7559\u5468\u671f\u8868\u8fbe\u5f0f
-rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=\u4fdd\u7559\u5468\u671f\u8868\u8fbe\u5f0f
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=\u7b26\u5408\u4fdd\u7559\u4e8b\u4ef6\u6761\u4ef6
-rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=\u7b26\u5408\u4fdd\u7559\u4e8b\u4ef6\u6761\u4ef6
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=\u4fdd\u7559\u4e8b\u4ef6
-rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=\u4fdd\u7559\u4e8b\u4ef6
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=\u4fdd\u7559\u6388\u6743
-rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=\u4fdd\u7559\u6388\u6743
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=\u4fdd\u7559\u8bf4\u660e
-rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=\u4fdd\u7559\u8bf4\u660e
-rma_recordsmanagement.property.rma_recordSearchHoldReason.title=\u4fdd\u5b58\u539f\u56e0
-rma_recordsmanagement.property.rma_recordSearchHoldReason.description=\u4fdd\u5b58\u539f\u56e0
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=\u6838\u5fc3\u8bb0\u5f55\u5ba1\u67e5\u671f\u95f4
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=\u6838\u5fc3\u8bb0\u5f55\u5ba1\u67e5\u671f\u95f4
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=\u5ba1\u67e5\u671f\u95f4\u8868\u8fbe\u5f0f
-rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=\u5ba1\u67e5\u671f\u95f4\u8868\u8fbe\u5f0f
-
-rma_recordsmanagement.aspect.rma_versionedRecord.title=\u7248\u672c\u5316\u8bb0\u5f55
-rma_recordsmanagement.aspect.rma_versionedRecord.decription=\u7248\u672c\u5316\u8bb0\u5f55
-
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=\u672a\u53d1\u5e03\u66f4\u65b0
-rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=\u672a\u53d1\u5e03\u66f4\u65b0
-rma_recordsmanagement.property.rma_unpublishedUpdate.title=\u672a\u53d1\u5e03\u66f4\u65b0
-rma_recordsmanagement.property.rma_unpublishedUpdate.description=\u6307\u793a\u662f\u5426\u6709\u672a\u53d1\u5e03\u66f4\u65b0
-rma_recordsmanagement.property.rma_updateTo.title=\u66f4\u65b0\u81f3
-rma_recordsmanagement.property.rma_updateTo.description=\u66f4\u65b0\u76ee\u6807
-rma_recordsmanagement.property.rma_updatedProperties.title=\u66f4\u65b0\u7684\u5c5e\u6027
-rma_recordsmanagement.property.rma_updatedProperties.description=\u66f4\u65b0\u7684\u5c5e\u6027
-rma_recordsmanagement.property.rma_publishInProgress.title=\u53d1\u5e03\u8fdb\u884c\u4e2d
-rma_recordsmanagement.property.rma_publishInProgress.description=\u6307\u793a\u53d1\u5e03\u5f53\u524d\u662f\u5426\u5728\u8fdb\u884c\u4e2d
-
-rma_recordsmanagement.aspect.dod_ghosted.title=\u4ec5\u5143\u6570\u636e\u8bb0\u5f55
-rma_recordsmanagement.aspect.dod_ghosted.description=\u4ec5\u5143\u6570\u636e\u8bb0\u5f55
-
-listconstraint.rmc_tlList.title=\u79fb\u4ea4\u4f4d\u7f6e
+rma_recordsmanagement.description=\u8bb0\u5f55\u7ba1\u7406\u5185\u5bb9\u6a21\u578b
+
+rma_recordsmanagement.type.rma_rmsite.title=\u8bb0\u5f55\u7ba1\u7406\u7ad9\u70b9
+rma_recordsmanagement.type.rma_rmsite.description=\u8bb0\u5f55\u7ba1\u7406\u4e13\u7528\u7ad9\u70b9
+
+rma_recordsmanagement.type.rma_caveatConfig.title=\u5b89\u5168\u63a7\u4ef6\u914d\u7f6e
+rma_recordsmanagement.type.rma_caveatConfig.decription=\u5b89\u5168\u63a7\u4ef6\u914d\u7f6e
+
+rma_recordsmanagement.type.rma_emailConfig.title=\u7535\u5b50\u90ae\u4ef6\u914d\u7f6e
+rma_recordsmanagement.type.rma_emailConfig.decription=\u7535\u5b50\u90ae\u4ef6\u914d\u7f6e
+
+rma_recordsmanagement.type.rma_recordsManagementContainer.title=\u8bb0\u5f55\u7ba1\u7406\u5bb9\u5668
+rma_recordsmanagement.type.rma_recordsManagementContainer.decription=\u8bb0\u5f55\u7ba1\u7406\u5bb9\u5668
+
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=\u8bb0\u5f55\u7ba1\u7406\u6839\u5bb9\u5668
+rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=\u8bb0\u5f55\u7ba1\u7406\u6839\u5bb9\u5668
+
+rma_recordsmanagement.type.rma_dispositionSchedule.title=\u4fdd\u7559\u8ba1\u5212
+rma_recordsmanagement.type.rma_dispositionSchedule.decription=\u4fdd\u7559\u8ba1\u5212
+
+rma_recordsmanagement.property.rma_dispositionAuthority.title=\u4fdd\u7559\u6388\u6743
+rma_recordsmanagement.property.rma_dispositionAuthority.decription=\u4fdd\u7559\u6388\u6743
+
+rma_recordsmanagement.property.rma_dispositionInstructions.title=\u4fdd\u7559\u8bf4\u660e
+rma_recordsmanagement.property.rma_dispositionInstructions.decription=\u4fdd\u7559\u8bf4\u660e
+
+rma_recordsmanagement.property.rma_recordLevelDisposition.title=\u8bb0\u5f55\u7ea7\u522b\u4fdd\u7559
+rma_recordsmanagement.property.rma_recordLevelDisposition.decription=\u8bb0\u5f55\u7ea7\u522b\u4fdd\u7559
+
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=\u4fdd\u7559\u64cd\u4f5c
+rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=\u4fdd\u7559\u64cd\u4f5c
+
+rma_recordsmanagement.type.rma_dispositionActionDefinition.title=\u4fdd\u7559\u64cd\u4f5c\u5b9a\u4e49
+rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=\u4fdd\u7559\u64cd\u4f5c\u5b9a\u4e49
+rma_recordsmanagement.property.rma_dispositionActionName.title=\u4fdd\u7559\u64cd\u4f5c\u540d\u79f0
+rma_recordsmanagement.property.rma_dispositionActionName.decription=\u4fdd\u7559\u64cd\u4f5c\u540d\u79f0
+rma_recordsmanagement.property.rma_dispositionDescription.title=\u4fdd\u7559\u8bf4\u660e
+rma_recordsmanagement.property.rma_dispositionDescription.decription=\u4fdd\u7559\u8bf4\u660e
+rma_recordsmanagement.property.rma_dispositionLocation.title=\u4fdd\u7559\u4f4d\u7f6e
+rma_recordsmanagement.property.rma_dispositionLocation.decription=\u4fdd\u7559\u4f4d\u7f6e
+rma_recordsmanagement.property.rma_dispositionPeriod.title=\u4fdd\u7559\u5468\u671f
+rma_recordsmanagement.property.rma_dispositionPeriod.decription=\u4fdd\u7559\u5468\u671f
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=\u4fdd\u7559\u5468\u671f\u5c5e\u6027
+rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=\u4fdd\u7559\u5468\u671f\u5c5e\u6027
+rma_recordsmanagement.property.rma_dispositionEvent.title=\u4fdd\u7559\u4e8b\u4ef6
+rma_recordsmanagement.property.rma_dispositionEvent.decription=\u4fdd\u7559\u4e8b\u4ef6
+rma_recordsmanagement.property.rma_dispositionEventCombination.title=\u4fdd\u7559\u4e8b\u4ef6\u7ec4\u5408
+rma_recordsmanagement.property.rma_dispositionEventCombination.decription=\u4fdd\u7559\u4e8b\u4ef6\u7ec4\u5408
+
+rma_recordsmanagement.type.rma_recordFolder.title=\u8bb0\u5f55\u6587\u4ef6\u5939
+rma_recordsmanagement.type.rma_recordFolder.decription=\u8bb0\u5f55\u6587\u4ef6\u5939
+rma_recordsmanagement.property.rma_isClosed.title=\u8bb0\u5f55
+rma_recordsmanagement.property.rma_isClosed.decription=\u8bb0\u5f55
+
+rma_recordsmanagement.type.rma_recordCategory.title=\u8bb0\u5f55\u7c7b\u522b
+rma_recordsmanagement.type.rma_recordCategory.decription=\u8bb0\u5f55\u7c7b\u522b
+
+rma_recordsmanagement.type.rma_nonElectronicDocument.title=\u975e\u7535\u5b50\u6587\u6863
+rma_recordsmanagement.type.rma_nonElectronicDocument.decription=\u975e\u7535\u5b50\u6587\u6863
+rma_recordsmanagement.property.rma_physicalSize.title=\u7269\u7406\u5c3a\u5bf8
+rma_recordsmanagement.property.rma_physicalSize.decription=\u7ebf\u6027\u4eea\u8868\u6d4b\u91cf\u7684\u6587\u6863\u5c3a\u5bf8\u3002
+rma_recordsmanagement.property.rma_numberOfCopies.title=\u526f\u672c\u6570\u76ee
+rma_recordsmanagement.property.rma_numberOfCopies.description=\u6587\u6863\u526f\u672c\u6570\u76ee\u3002
+rma_recordsmanagement.property.rma_storageLocation.title=\u5b58\u50a8\u4f4d\u7f6e
+rma_recordsmanagement.property.rma_storageLocation.decription=\u8bb0\u5f55\u7684\u7269\u7406\u5b58\u50a8\u4f4d\u7f6e\u3002
+rma_recordsmanagement.property.rma_shelf.title=\u6258\u67b6
+rma_recordsmanagement.property.rma_shelf.decription=\u5b58\u50a8\u8bb0\u5f55\u7684\u673a\u67b6\u3002
+rma_recordsmanagement.property.rma_box.title=\u7bb1
+rma_recordsmanagement.property.rma_box.description=\u5b58\u50a8\u8bb0\u5f55\u7684\u7bb1\u3002
+rma_recordsmanagement.property.rma_file.title=\u6587\u4ef6
+rma_recordsmanagement.property.rma_file.decription=\u5b58\u50a8\u8bb0\u5f55\u7684\u6587\u4ef6\u3002
+
+rma_recordsmanagement.type.rma_dispositionAction.title=\u4fdd\u7559\u64cd\u4f5c
+rma_recordsmanagement.type.rma_dispositionAction.decription=\u4fdd\u7559\u64cd\u4f5c
+rma_recordsmanagement.property.rma_dispositionActionId.title=\u4fdd\u7559\u64cd\u4f5c ID
+rma_recordsmanagement.property.rma_dispositionActionId.decription=\u4fdd\u7559\u64cd\u4f5c ID
+rma_recordsmanagement.property.rma_dispositionAction.title=\u4fdd\u7559\u64cd\u4f5c
+rma_recordsmanagement.property.rma_dispositionAction.decription=\u4fdd\u7559\u64cd\u4f5c
+rma_recordsmanagement.property.rma_dispositionAsOf.title=\u4fdd\u7559\u64cd\u4f5c
+rma_recordsmanagement.property.rma_dispositionAsOf.decription=\u4fdd\u7559\u64cd\u4f5c
+rma_recordsmanagement.property.rma_dispositionEventsEligible.title=\u7b26\u5408\u4fdd\u7559\u4e8b\u4ef6\u6761\u4ef6
+rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=\u7b26\u5408\u4fdd\u7559\u4e8b\u4ef6\u6761\u4ef6
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=\u4fdd\u7559\u64cd\u4f5c\u542f\u52a8\u65f6\u95f4
+rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=\u4fdd\u7559\u64cd\u4f5c\u542f\u52a8\u65f6\u95f4
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=\u4fdd\u7559\u64cd\u4f5c\u542f\u52a8\u8005
+rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=\u4fdd\u7559\u64cd\u4f5c\u542f\u52a8\u8005
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=\u4fdd\u7559\u64cd\u4f5c\u5b8c\u6210\u65f6\u95f4
+rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=\u4fdd\u7559\u64cd\u4f5c\u5b8c\u6210\u65f6\u95f4
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=\u4fdd\u7559\u64cd\u4f5c\u5b8c\u6210\u8005
+rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=\u4fdd\u7559\u64cd\u4f5c\u5b8c\u6210\u8005
+rma_recordsmanagement.association.rma_eventExecutions.title=\u4e8b\u4ef6\u6267\u884c
+rma_recordsmanagement.association.rma_eventExecutions.decription=\u4e8b\u4ef6\u6267\u884c
+
+rma_recordsmanagement.type.rma_eventExecution.title=\u4e8b\u4ef6\u6267\u884c
+rma_recordsmanagement.type.rma_eventExecution.decription=\u4e8b\u4ef6\u6267\u884c
+rma_recordsmanagement.property.rma_eventExecutionName.title=\u4e8b\u4ef6\u540d\u79f0
+rma_recordsmanagement.property.rma_eventExecutionName.decription=\u4e8b\u4ef6\u540d\u79f0
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=\u81ea\u52a8\u4e8b\u4ef6
+rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=\u81ea\u52a8\u4e8b\u4ef6
+rma_recordsmanagement.property.rma_eventExecutionComplete.title=\u4e8b\u4ef6\u5b8c\u6210
+rma_recordsmanagement.property.rma_eventExecutionComplete.decription=\u4e8b\u4ef6\u5b8c\u6210
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=\u4e8b\u4ef6\u5b8c\u6210\u8005
+rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=\u4e8b\u4ef6\u5b8c\u6210\u8005
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=\u4e8b\u4ef6\u5b8c\u6210\u65f6\u95f4
+rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=\u4e8b\u4ef6\u5b8c\u6210\u65f6\u95f4
+
+rma_recordsmanagement.type.rma_hold.title=\u4fdd\u5b58
+rma_recordsmanagement.type.rma_hold.decription=\u4fdd\u5b58
+rma_recordsmanagement.property.rma_holdReason.title=\u4fdd\u5b58\u539f\u56e0
+rma_recordsmanagement.property.rma_holdReason.decription=\u4fdd\u5b58\u539f\u56e0
+rma_recordsmanagement.association.rma_frozenRecords.title=\u4fdd\u5b58\u8bb0\u5f55
+rma_recordsmanagement.association.rma_frozenRecords.decription=\u4fdd\u5b58\u8bb0\u5f55
+
+rma_recordsmanagement.type.rma_transfer.title=\u79fb\u4ea4
+rma_recordsmanagement.type.rma_transfer.decription=\u79fb\u4ea4
+rma_recordsmanagement.property.rma_transferAccessionIndicator.title=\u79fb\u4ea4\u5165\u7ba1\u6307\u793a\u7b26
+rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=\u79fb\u4ea4\u5165\u7ba1\u6307\u793a\u7b26
+rma_recordsmanagement.property.rma_transferPDFIndicator.title=\u79fb\u4ea4 PDF \u6307\u793a\u7b26
+rma_recordsmanagement.property.rma_transferPDFIndicator.decription=\u79fb\u4ea4 PDF \u6307\u793a\u7b26
+rma_recordsmanagement.property.rma_transferLocation.title=\u79fb\u4ea4 PDF
+rma_recordsmanagement.property.rma_transferLocation.decription=\u79fb\u4ea4 PDF
+rma_recordsmanagement.association.rma_transferred.title=\u5df2\u79fb\u4ea4
+rma_recordsmanagement.association.rma_transferred.decription=\u5df2\u79fb\u4ea4
+
+rma_recordsmanagement.aspect.rma_filePlanComponent.title=\u5f52\u7c7b\u65b9\u6848\u7ec4\u4ef6
+rma_recordsmanagement.aspect.rma_filePlanComponent.decription=\u5f52\u7c7b\u65b9\u6848\u7ec4\u4ef6
+rma_recordsmanagement.property.rma_rootNodeRef.title=\u6839\u8282\u70b9
+rma_recordsmanagement.property.rma_rootNodeRef.decription=\u6839\u8282\u70b9
+
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=\u8bb0\u5f55\u7ba1\u7406\u6839
+rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=\u8bb0\u5f55\u7ba1\u7406\u6839
+rma_recordsmanagement.association.rma_holds.title=\u4fdd\u5b58
+rma_recordsmanagement.association.rma_holds.decription=\u4fdd\u5b58
+rma_recordsmanagement.association.rma_transfers.title=\u79fb\u4ea4
+rma_recordsmanagement.association.rma_transfers.decription=\u79fb\u4ea4
+
+rma_recordsmanagement.aspect.rma_declaredRecord.title=\u5b8c\u6210\u7684\u8bb0\u5f55
+rma_recordsmanagement.aspect.rma_declaredRecord.decription=\u5b8c\u6210\u7684\u8bb0\u5f55
+rma_recordsmanagement.property.rma_declaredAt.title=\u5b8c\u6210\u65e5\u671f
+rma_recordsmanagement.property.rma_declaredAt.decription=\u5b8c\u6210\u65e5\u671f
+rma_recordsmanagement.property.rma_declaredBy.title=\u5b8c\u6210\u8005
+rma_recordsmanagement.property.rma_declaredBy.decription=\u5b8c\u6210\u8005
+
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=\u8bb0\u5f55\u7ec4\u4ef6\u6807\u8bc6\u7b26
+rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=\u8bb0\u5f55\u7ec4\u4ef6\u6807\u8bc6\u7b26
+rma_recordsmanagement.property.rma_identifier.title=\u8bb0\u5f55 ID
+rma_recordsmanagement.property.rma_identifier.decription=\u552f\u4e00\u8bb0\u5f55\u6807\u8bc6\u7b26
+rma_recordsmanagement.property.rma_dbUniquenessId.title=\u6570\u636e\u5e93\u552f\u4e00\u6027
+rma_recordsmanagement.property.rma_dbUniquenessId.decription=\u6570\u636e\u5e93\u552f\u4e00\u6027
+
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=\u6838\u5fc3\u8bb0\u5f55\u5b9a\u4e49
+rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=\u6838\u5fc3\u8bb0\u5f55\u5b9a\u4e49
+
+rma_recordsmanagement.property.rma_reviewPeriod.title=\u5ba1\u67e5\u671f\u95f4
+rma_recordsmanagement.property.rma_reviewPeriod.decription=\u5ba1\u67e5\u671f\u95f4
+rma_recordsmanagement.property.rma_vitalRecordIndicator.title=\u6838\u5fc3\u8bb0\u5f55\u6307\u793a\u7b26
+rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=\u6838\u5fc3\u8bb0\u5f55\u6307\u793a\u7b26
+
+rma_recordsmanagement.aspect.rma_record.title=\u8bb0\u5f55
+rma_recordsmanagement.aspect.rma_record.decription=\u8bb0\u5f55
+rma_recordsmanagement.property.rma_dateFiled.title=\u7acb\u5377\u65e5\u671f
+rma_recordsmanagement.property.rma_dateFiled.decription=\u7acb\u5377\u65e5\u671f
+rma_recordsmanagement.property.rma_origionalName=\u539f\u59cb\u540d\u79f0
+
+rma_recordsmanagement.aspect.rma_recordMetaData.title=\u8bb0\u5f55\u5143\u6570\u636e
+rma_recordsmanagement.aspect.rma_recordMetaData.description=\u8bb0\u5f55\u5143\u6570\u636e\u7684\u6807\u8bb0\u5207\u9762
+
+rma_recordsmanagement.aspect.rma_commonRecordDetails.title=\u5e38\u89c1\u8bb0\u5f55\u8be6\u7ec6\u4fe1\u606f
+rma_recordsmanagement.aspect.rma_commonRecordDetails.description=\u6240\u6709\u8bb0\u5f55\u7c7b\u578b\u901a\u7528\u7684\u5143\u6570\u636e
+rma_recordsmanagement.property.rma_location.title=\u4f4d\u7f6e
+rma_recordsmanagement.property.rma_location.decription=\u4f4d\u7f6e
+
+rma_recordsmanagement.aspect.rma_vitalRecord.title=\u6838\u5fc3\u8bb0\u5f55
+rma_recordsmanagement.aspect.rma_vitalRecord.decription=\u6838\u5fc3\u8bb0\u5f55
+rma_recordsmanagement.property.rma_reviewAsOf.title=\u4e0b\u4e2a\u5ba1\u67e5
+rma_recordsmanagement.property.rma_reviewAsOf.decription=\u4e0b\u4e2a\u5ba1\u67e5
+rma_recordsmanagement.property.rma_notificationIssued.title=\u6307\u793a\u5df2\u7ecf\u4e3a\u8be5\u8bb0\u5f55\u53d1\u51fa\u5ba1\u67e5\u5230\u671f\u901a\u77e5
+rma_recordsmanagement.property.rma_notificationIssued.decription=\u6307\u793a\u5df2\u7ecf\u4e3a\u8be5\u8bb0\u5f55\u53d1\u51fa\u5ba1\u67e5\u5230\u671f\u901a\u77e5
+
+rma_recordsmanagement.aspect.rma_scheduled.title=\u5df2\u8ba1\u5212
+rma_recordsmanagement.aspect.rma_scheduled.decription=\u5df2\u8ba1\u5212
+rma_recordsmanagement.association.rma_dispositionSchedule.title=\u4fdd\u7559\u8ba1\u5212
+rma_recordsmanagement.association.rma_dispositionSchedule.decription=\u4fdd\u7559\u8ba1\u5212
+
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=\u4fdd\u7559\u751f\u547d\u5468\u671f
+rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=\u4fdd\u7559\u751f\u547d\u5468\u671f
+rma_recordsmanagement.association.rma_nextDispositionAction.title=\u4e0b\u4e00\u4e2a\u4fdd\u7559\u64cd\u4f5c
+rma_recordsmanagement.association.rma_nextDispositionAction.decription=\u4e0b\u4e00\u4e2a\u4fdd\u7559\u64cd\u4f5c
+rma_recordsmanagement.association.rma_dispositionActionHistory.title=\u4fdd\u7559\u64cd\u4f5c\u5386\u53f2\u8bb0\u5f55
+rma_recordsmanagement.association.rma_dispositionActionHistory.decription=\u4fdd\u7559\u64cd\u4f5c\u5386\u53f2\u8bb0\u5f55
+
+rma_recordsmanagement.aspect.rma_cutOff.title=\u4e2d\u65ad
+rma_recordsmanagement.aspect.rma_cutOff.decription=\u4e2d\u65ad
+rma_recordsmanagement.property.rma_cutOffDate.title=\u4e2d\u65ad\u65e5\u671f
+rma_recordsmanagement.property.rma_cutOffDate.decription=\u4e2d\u65ad\u65e5\u671f
+
+rma_recordsmanagement.aspect.rma_transferred.title=\u5df2\u79fb\u4ea4
+rma_recordsmanagement.aspect.rma_transferred.decription=\u5df2\u79fb\u4ea4
+
+rma_recordsmanagement.aspect.rma_ascended.title=\u5df2\u4e0a\u5347
+rma_recordsmanagement.aspect.rma_ascended.decription=\u5df2\u4e0a\u5347
+
+rma_recordsmanagement.aspect.rma_frozen.title=\u4fdd\u5b58\u4e2d
+rma_recordsmanagement.aspect.rma_frozen.decription=\u4fdd\u5b58\u4e2d
+rma_recordsmanagement.property.rma_frozenAt.title=\u4fdd\u5b58\u4e8e
+rma_recordsmanagement.property.rma_frozenAt.decription=\u4fdd\u5b58\u4e8e
+rma_recordsmanagement.property.rma_frozenBy.title=\u4fdd\u5b58\u8005
+rma_recordsmanagement.property.rma_frozenBy.decription=\u4fdd\u5b58\u8005
+
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=\u8b66\u544a\u914d\u7f6e\u6839
+rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=\u8b66\u544a\u914d\u7f6e\u6839
+rma_recordsmanagement.association.rma_caveatConfigAssoc.title=\u8b66\u544a\u914d\u7f6e
+rma_recordsmanagement.association.rma_caveatConfigAssoc.description=\u8b66\u544a\u914d\u7f6e
+
+rma_recordsmanagement.aspect.rma_emailConfigRoot.title=\u7535\u5b50\u90ae\u4ef6\u914d\u7f6e\u6839
+rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=\u7535\u5b50\u90ae\u4ef6\u914d\u7f6e\u6839
+rma_recordsmanagement.association.rma_emailConfigAssoc.title=\u7535\u5b50\u90ae\u4ef6\u914d\u7f6e
+rma_recordsmanagement.association.rma_emailConfigAssoc.description=\u7535\u5b50\u90ae\u4ef6\u914d\u7f6e
+
+rma_recordsmanagement.aspect.rma_recordSearch.title=\u8bb0\u5f55\u641c\u7d22
+rma_recordsmanagement.aspect.rma_recordSearch.decription=\u652f\u6301\u8bb0\u5f55\u7ba1\u7406\u641c\u7d22\u7684\u4fe1\u606f
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=\u6709\u4fdd\u7559\u8ba1\u5212
+rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=\u6307\u793a\u9879\u76ee\u662f\u5426\u6709\u5173\u8054\u7684\u4fdd\u7559\u8ba1\u5212
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=\u4fdd\u7559\u64cd\u4f5c\u540d\u79f0
+rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=\u4e0b\u4e00\u4e2a\u4fdd\u7559\u64cd\u4f5c\u7684\u540d\u79f0
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=\u4fdd\u7559\u64cd\u4f5c
+rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=\u4e0b\u4e00\u4e2a\u4fdd\u7559\u64cd\u4f5c\u5408\u6cd5\u7684\u65e5\u671f
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=\u4fdd\u7559\u5468\u671f
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=\u4fdd\u7559\u5468\u671f
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=\u4fdd\u7559\u5468\u671f\u8868\u8fbe\u5f0f
+rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=\u4fdd\u7559\u5468\u671f\u8868\u8fbe\u5f0f
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=\u7b26\u5408\u4fdd\u7559\u4e8b\u4ef6\u6761\u4ef6
+rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=\u7b26\u5408\u4fdd\u7559\u4e8b\u4ef6\u6761\u4ef6
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=\u4fdd\u7559\u4e8b\u4ef6
+rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=\u4fdd\u7559\u4e8b\u4ef6
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=\u4fdd\u7559\u6388\u6743
+rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=\u4fdd\u7559\u6388\u6743
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=\u4fdd\u7559\u8bf4\u660e
+rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=\u4fdd\u7559\u8bf4\u660e
+rma_recordsmanagement.property.rma_recordSearchHoldReason.title=\u4fdd\u5b58\u539f\u56e0
+rma_recordsmanagement.property.rma_recordSearchHoldReason.description=\u4fdd\u5b58\u539f\u56e0
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=\u6838\u5fc3\u8bb0\u5f55\u5ba1\u67e5\u671f\u95f4
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=\u6838\u5fc3\u8bb0\u5f55\u5ba1\u67e5\u671f\u95f4
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=\u5ba1\u67e5\u671f\u95f4\u8868\u8fbe\u5f0f
+rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=\u5ba1\u67e5\u671f\u95f4\u8868\u8fbe\u5f0f
+
+rma_recordsmanagement.aspect.rma_versionedRecord.title=\u7248\u672c\u5316\u8bb0\u5f55
+rma_recordsmanagement.aspect.rma_versionedRecord.decription=\u7248\u672c\u5316\u8bb0\u5f55
+
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=\u672a\u53d1\u5e03\u66f4\u65b0
+rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=\u672a\u53d1\u5e03\u66f4\u65b0
+rma_recordsmanagement.property.rma_unpublishedUpdate.title=\u672a\u53d1\u5e03\u66f4\u65b0
+rma_recordsmanagement.property.rma_unpublishedUpdate.description=\u6307\u793a\u662f\u5426\u6709\u672a\u53d1\u5e03\u66f4\u65b0
+rma_recordsmanagement.property.rma_updateTo.title=\u66f4\u65b0\u81f3
+rma_recordsmanagement.property.rma_updateTo.description=\u66f4\u65b0\u76ee\u6807
+rma_recordsmanagement.property.rma_updatedProperties.title=\u66f4\u65b0\u7684\u5c5e\u6027
+rma_recordsmanagement.property.rma_updatedProperties.description=\u66f4\u65b0\u7684\u5c5e\u6027
+rma_recordsmanagement.property.rma_publishInProgress.title=\u53d1\u5e03\u8fdb\u884c\u4e2d
+rma_recordsmanagement.property.rma_publishInProgress.description=\u6307\u793a\u53d1\u5e03\u5f53\u524d\u662f\u5426\u5728\u8fdb\u884c\u4e2d
+
+rma_recordsmanagement.aspect.dod_ghosted.title=\u4ec5\u5143\u6570\u636e\u8bb0\u5f55
+rma_recordsmanagement.aspect.dod_ghosted.description=\u4ec5\u5143\u6570\u636e\u8bb0\u5f55
+
+listconstraint.rmc_tlList.title=\u79fb\u4ea4\u4f4d\u7f6e
listconstraint.rmc_smList.title=\u8865\u5145\u6807\u8bb0
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model.properties
index 2bb762da70..4491007116 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model.properties
@@ -1,13 +1,13 @@
-rmr_recordsmanagementreport.description=Records Management Report Content Model
-
-rmr_recordsmanagementreport.type.rmr_report.title=Report
-rmr_recordsmanagementreport.type.rmr_report.description=Records Management report.
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=Transfer Report
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=Records Management transfer report.
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=Destruction Report
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=Records Management destruction report.
-
-rmr_recordsmanagementreport.type.rmr_holdReport.title=Hold Report
+rmr_recordsmanagementreport.description=Records Management Report Content Model
+
+rmr_recordsmanagementreport.type.rmr_report.title=Report
+rmr_recordsmanagementreport.type.rmr_report.description=Records Management report.
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=Transfer Report
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=Records Management transfer report.
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=Destruction Report
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=Records Management destruction report.
+
+rmr_recordsmanagementreport.type.rmr_holdReport.title=Hold Report
rmr_recordsmanagementreport.type.rmr_holdReport.description=Records Management hold report.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_de.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_de.properties
index 08a676b63d..61b0d6ccae 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_de.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_de.properties
@@ -1,13 +1,13 @@
-rmr_recordsmanagementreport.description=Content Model f\u00fcr Records Management Bericht
-
-rmr_recordsmanagementreport.type.rmr_report.title=Bericht
-rmr_recordsmanagementreport.type.rmr_report.description=Records Management Bericht.
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=\u00dcbertragungsbericht
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=Records Management \u00dcbertragungsbericht.
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=Vernichtungsprotokoll
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=Records Management Vernichtungsprotokoll.
-
-rmr_recordsmanagementreport.type.rmr_holdReport.title=Sperrbericht
+rmr_recordsmanagementreport.description=Content Model f\u00fcr Records Management Bericht
+
+rmr_recordsmanagementreport.type.rmr_report.title=Bericht
+rmr_recordsmanagementreport.type.rmr_report.description=Records Management Bericht.
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=\u00dcbertragungsbericht
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=Records Management \u00dcbertragungsbericht.
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=Vernichtungsprotokoll
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=Records Management Vernichtungsprotokoll.
+
+rmr_recordsmanagementreport.type.rmr_holdReport.title=Sperrbericht
rmr_recordsmanagementreport.type.rmr_holdReport.description=Records Management Sperrbericht.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_es.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_es.properties
index 5188163ed0..c3afb84a6d 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_es.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_es.properties
@@ -1,13 +1,13 @@
-rmr_recordsmanagementreport.description=Modelo de contenido de informe de gesti\u00f3n de documentos de archivo
-
-rmr_recordsmanagementreport.type.rmr_report.title=Informe
-rmr_recordsmanagementreport.type.rmr_report.description=Informe de Records Management.
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=Informe de transferencia
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=Informe de transferencia de Records Management.
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=Informe de destrucci\u00f3n
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=Informe de destrucci\u00f3n de Records Management.
-
-rmr_recordsmanagementreport.type.rmr_holdReport.title=Informe de bloqueo
+rmr_recordsmanagementreport.description=Modelo de contenido de informe de gesti\u00f3n de documentos de archivo
+
+rmr_recordsmanagementreport.type.rmr_report.title=Informe
+rmr_recordsmanagementreport.type.rmr_report.description=Informe de Records Management.
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=Informe de transferencia
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=Informe de transferencia de Records Management.
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=Informe de destrucci\u00f3n
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=Informe de destrucci\u00f3n de Records Management.
+
+rmr_recordsmanagementreport.type.rmr_holdReport.title=Informe de bloqueo
rmr_recordsmanagementreport.type.rmr_holdReport.description=Informe de bloqueo de Records Management.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_fr.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_fr.properties
index 48b8fd2f7b..0757d6e734 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_fr.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_fr.properties
@@ -1,13 +1,13 @@
-rmr_recordsmanagementreport.description=Mod\u00e8le de contenu de rapport de gestion des archives
-
-rmr_recordsmanagementreport.type.rmr_report.title=Rapport
-rmr_recordsmanagementreport.type.rmr_report.description=Rapport de gestion des archives
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=Rapport de transfert
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=Rapport de transfert de gestion des archives.
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=Rapport de destruction
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=Rapport de destruction de gestion des archives.
-
-rmr_recordsmanagementreport.type.rmr_holdReport.title=Rapport de suspension
+rmr_recordsmanagementreport.description=Mod\u00e8le de contenu de rapport de gestion des archives
+
+rmr_recordsmanagementreport.type.rmr_report.title=Rapport
+rmr_recordsmanagementreport.type.rmr_report.description=Rapport de gestion des archives
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=Rapport de transfert
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=Rapport de transfert de gestion des archives.
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=Rapport de destruction
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=Rapport de destruction de gestion des archives.
+
+rmr_recordsmanagementreport.type.rmr_holdReport.title=Rapport de suspension
rmr_recordsmanagementreport.type.rmr_holdReport.description=Rapport de suspension de gestion des archives.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_it.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_it.properties
index 4d9809a39d..3fe3c3c354 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_it.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_it.properties
@@ -1,13 +1,13 @@
-rmr_recordsmanagementreport.description=Modello di contenuto per rapporti di Records Management
-
-rmr_recordsmanagementreport.type.rmr_report.title=Rapporto
-rmr_recordsmanagementreport.type.rmr_report.description=Rapporto Records Management.
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=Rapporto di trasferimento
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=Rapporto di trasferimento Records Management.
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=Rapporto di eliminazione definitiva
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=Rapporto di eliminazione definitiva Records Management.
-
-rmr_recordsmanagementreport.type.rmr_holdReport.title=Rapporto di sospensione
+rmr_recordsmanagementreport.description=Modello di contenuto per rapporti di Records Management
+
+rmr_recordsmanagementreport.type.rmr_report.title=Rapporto
+rmr_recordsmanagementreport.type.rmr_report.description=Rapporto Records Management.
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=Rapporto di trasferimento
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=Rapporto di trasferimento Records Management.
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=Rapporto di eliminazione definitiva
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=Rapporto di eliminazione definitiva Records Management.
+
+rmr_recordsmanagementreport.type.rmr_holdReport.title=Rapporto di sospensione
rmr_recordsmanagementreport.type.rmr_holdReport.description=Rapporto di sospensione Records Management.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_ja.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_ja.properties
index 1ca4879cc1..5850f9ea80 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_ja.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_ja.properties
@@ -1,13 +1,13 @@
-rmr_recordsmanagementreport.description=[\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406] \u306e\u30ec\u30dd\u30fc\u30c8\u30b3\u30f3\u30c6\u30f3\u30c4\u30e2\u30c7\u30eb
-
-rmr_recordsmanagementreport.type.rmr_report.title=\u30ec\u30dd\u30fc\u30c8
-rmr_recordsmanagementreport.type.rmr_report.description=[\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406] \u306e\u30ec\u30dd\u30fc\u30c8\u3002
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=\u8ee2\u9001\u30ec\u30dd\u30fc\u30c8
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=[\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406] \u306e\u8ee2\u9001\u30ec\u30dd\u30fc\u30c8\u3002
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=\u7834\u68c4\u30ec\u30dd\u30fc\u30c8
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=[\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406] \u306e\u7834\u68c4\u30ec\u30dd\u30fc\u30c8\u3002
-
-rmr_recordsmanagementreport.type.rmr_holdReport.title=\u30db\u30fc\u30eb\u30c9\u30ec\u30dd\u30fc\u30c8
+rmr_recordsmanagementreport.description=[\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406] \u306e\u30ec\u30dd\u30fc\u30c8\u30b3\u30f3\u30c6\u30f3\u30c4\u30e2\u30c7\u30eb
+
+rmr_recordsmanagementreport.type.rmr_report.title=\u30ec\u30dd\u30fc\u30c8
+rmr_recordsmanagementreport.type.rmr_report.description=[\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406] \u306e\u30ec\u30dd\u30fc\u30c8\u3002
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=\u8ee2\u9001\u30ec\u30dd\u30fc\u30c8
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=[\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406] \u306e\u8ee2\u9001\u30ec\u30dd\u30fc\u30c8\u3002
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=\u7834\u68c4\u30ec\u30dd\u30fc\u30c8
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=[\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406] \u306e\u7834\u68c4\u30ec\u30dd\u30fc\u30c8\u3002
+
+rmr_recordsmanagementreport.type.rmr_holdReport.title=\u30db\u30fc\u30eb\u30c9\u30ec\u30dd\u30fc\u30c8
rmr_recordsmanagementreport.type.rmr_holdReport.description=[\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406] \u306e\u30db\u30fc\u30eb\u30c9\u30ec\u30dd\u30fc\u30c8
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_nb.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_nb.properties
index 4fa9d9a18c..e7c579259f 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_nb.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_nb.properties
@@ -1,13 +1,13 @@
-rmr_recordsmanagementreport.description=Oppf\u00f8ringsh\u00e5ndtering til innholdsmodellen
-
-rmr_recordsmanagementreport.type.rmr_report.title=Rapport
-rmr_recordsmanagementreport.type.rmr_report.description=Oppf\u00f8ringsh\u00e5ndteringsrapport.
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=Overf\u00f8ringsrapport
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=Oppf\u00f8ringsh\u00e5ndteringsrapport med overf\u00f8ringer.
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=Destruksjonsrapport
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=Oppf\u00f8ringsh\u00e5ndteringsrapport med destruksjoner.
-
-rmr_recordsmanagementreport.type.rmr_holdReport.title=Holdrapport
+rmr_recordsmanagementreport.description=Oppf\u00f8ringsh\u00e5ndtering til innholdsmodellen
+
+rmr_recordsmanagementreport.type.rmr_report.title=Rapport
+rmr_recordsmanagementreport.type.rmr_report.description=Oppf\u00f8ringsh\u00e5ndteringsrapport.
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=Overf\u00f8ringsrapport
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=Oppf\u00f8ringsh\u00e5ndteringsrapport med overf\u00f8ringer.
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=Destruksjonsrapport
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=Oppf\u00f8ringsh\u00e5ndteringsrapport med destruksjoner.
+
+rmr_recordsmanagementreport.type.rmr_holdReport.title=Holdrapport
rmr_recordsmanagementreport.type.rmr_holdReport.description=Oppf\u00f8ringsh\u00e5ndteringsrapport med hold.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_nl.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_nl.properties
index 7b693a464f..5eca5de2dc 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_nl.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_nl.properties
@@ -1,13 +1,13 @@
-rmr_recordsmanagementreport.description=Contentmodel Records Management-rapport
-
-rmr_recordsmanagementreport.type.rmr_report.title=Rapport
-rmr_recordsmanagementreport.type.rmr_report.description=Records Management-rapport.
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=Overzetrapport
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=Records Management-overzetrapport.
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=Vernietigingsrapport
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=Records Management-vernietigingsrapport.
-
-rmr_recordsmanagementreport.type.rmr_holdReport.title=Wachtstandrapport
+rmr_recordsmanagementreport.description=Contentmodel Records Management-rapport
+
+rmr_recordsmanagementreport.type.rmr_report.title=Rapport
+rmr_recordsmanagementreport.type.rmr_report.description=Records Management-rapport.
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=Overzetrapport
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=Records Management-overzetrapport.
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=Vernietigingsrapport
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=Records Management-vernietigingsrapport.
+
+rmr_recordsmanagementreport.type.rmr_holdReport.title=Wachtstandrapport
rmr_recordsmanagementreport.type.rmr_holdReport.description=Records Management-wachtstandrapport
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_pt_BR.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_pt_BR.properties
index 386801ca24..6305d20799 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_pt_BR.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_pt_BR.properties
@@ -1,13 +1,13 @@
-rmr_recordsmanagementreport.description=Modelo do conte\u00fado do relat\u00f3rio do Records Management
-
-rmr_recordsmanagementreport.type.rmr_report.title=Relat\u00f3rio
-rmr_recordsmanagementreport.type.rmr_report.description=Relat\u00f3rios do Records Management.
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=Relat\u00f3rio de transfer\u00eancia
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=Relat\u00f3rio de transfer\u00eancia do Records Management.
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=Relat\u00f3rio de destrui\u00e7\u00e3o
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=Relat\u00f3rio de destrui\u00e7\u00e3o do Records Management.
-
-rmr_recordsmanagementreport.type.rmr_holdReport.title=Relat\u00f3rio de espera
+rmr_recordsmanagementreport.description=Modelo do conte\u00fado do relat\u00f3rio do Records Management
+
+rmr_recordsmanagementreport.type.rmr_report.title=Relat\u00f3rio
+rmr_recordsmanagementreport.type.rmr_report.description=Relat\u00f3rios do Records Management.
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=Relat\u00f3rio de transfer\u00eancia
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=Relat\u00f3rio de transfer\u00eancia do Records Management.
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=Relat\u00f3rio de destrui\u00e7\u00e3o
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=Relat\u00f3rio de destrui\u00e7\u00e3o do Records Management.
+
+rmr_recordsmanagementreport.type.rmr_holdReport.title=Relat\u00f3rio de espera
rmr_recordsmanagementreport.type.rmr_holdReport.description=Relat\u00f3rio de espera do Records Management.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_ru.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_ru.properties
index b4417bd85a..e695d6fb7e 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_ru.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_ru.properties
@@ -1,13 +1,13 @@
-rmr_recordsmanagementreport.description=\u041c\u043e\u0434\u0435\u043b\u044c \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043e\u0442\u0447\u0435\u0442\u0430 \u043e\u0431 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-
-rmr_recordsmanagementreport.type.rmr_report.title=\u041e\u0442\u0447\u0435\u0442
-rmr_recordsmanagementreport.type.rmr_report.description=\u041e\u0442\u0447\u0435\u0442 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438.
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=\u041e\u0442\u0447\u0435\u0442 \u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0435
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=\u041e\u0442\u0447\u0435\u0442 \u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438.
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0438
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438.
-
-rmr_recordsmanagementreport.type.rmr_holdReport.title=\u041e\u0442\u0447\u0435\u0442 \u043e \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0435
+rmr_recordsmanagementreport.description=\u041c\u043e\u0434\u0435\u043b\u044c \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043e\u0442\u0447\u0435\u0442\u0430 \u043e\u0431 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+
+rmr_recordsmanagementreport.type.rmr_report.title=\u041e\u0442\u0447\u0435\u0442
+rmr_recordsmanagementreport.type.rmr_report.description=\u041e\u0442\u0447\u0435\u0442 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438.
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=\u041e\u0442\u0447\u0435\u0442 \u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0435
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=\u041e\u0442\u0447\u0435\u0442 \u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438.
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0438
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438.
+
+rmr_recordsmanagementreport.type.rmr_holdReport.title=\u041e\u0442\u0447\u0435\u0442 \u043e \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0435
rmr_recordsmanagementreport.type.rmr_holdReport.description=\u041e\u0442\u0447\u0435\u0442 \u043e \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_zh_CN.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_zh_CN.properties
index 5316a9e599..5e241bfe3a 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_zh_CN.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-model_zh_CN.properties
@@ -1,13 +1,13 @@
-rmr_recordsmanagementreport.description=\u8bb0\u5f55\u7ba1\u7406\u62a5\u544a\u5185\u5bb9\u6a21\u578b
-
-rmr_recordsmanagementreport.type.rmr_report.title=\u62a5\u544a
-rmr_recordsmanagementreport.type.rmr_report.description=\u8bb0\u5f55\u7ba1\u7406\u62a5\u544a\u3002
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=\u79fb\u4ea4\u62a5\u544a
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=\u8bb0\u5f55\u7ba1\u7406\u79fb\u4ea4\u62a5\u544a\u3002
-
-rmr_recordsmanagementreport.type.rmr_destructionReport.title=\u9500\u6bc1\u62a5\u544a
-rmr_recordsmanagementreport.type.rmr_destructionReport.description=\u8bb0\u5f55\u7ba1\u7406\u9500\u6bc1\u62a5\u544a\u3002
-
-rmr_recordsmanagementreport.type.rmr_holdReport.title=\u4fdd\u5b58\u62a5\u544a
+rmr_recordsmanagementreport.description=\u8bb0\u5f55\u7ba1\u7406\u62a5\u544a\u5185\u5bb9\u6a21\u578b
+
+rmr_recordsmanagementreport.type.rmr_report.title=\u62a5\u544a
+rmr_recordsmanagementreport.type.rmr_report.description=\u8bb0\u5f55\u7ba1\u7406\u62a5\u544a\u3002
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=\u79fb\u4ea4\u62a5\u544a
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=\u8bb0\u5f55\u7ba1\u7406\u79fb\u4ea4\u62a5\u544a\u3002
+
+rmr_recordsmanagementreport.type.rmr_destructionReport.title=\u9500\u6bc1\u62a5\u544a
+rmr_recordsmanagementreport.type.rmr_destructionReport.description=\u8bb0\u5f55\u7ba1\u7406\u9500\u6bc1\u62a5\u544a\u3002
+
+rmr_recordsmanagementreport.type.rmr_holdReport.title=\u4fdd\u5b58\u62a5\u544a
rmr_recordsmanagementreport.type.rmr_holdReport.description=\u8bb0\u5f55\u7ba1\u7406\u4fdd\u5b58\u62a5\u544a\u3002
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions.properties
index f26c15c0fa..34f97a8c2c 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions.properties
@@ -1,8 +1,8 @@
-# Retention Actions
-cutoff.title=Cut Off
-cutoff.description=Cut Off
-retain.title=Retain
-retain.description=Retain
-destroy.title=Destroy
-destroy.description=Destroy
-
+# Retention Actions
+cutoff.title=Cut Off
+cutoff.description=Cut Off
+retain.title=Retain
+retain.description=Retain
+destroy.title=Destroy
+destroy.description=Destroy
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_de.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_de.properties
index 6c5dc7dbb5..b3f4e0ea58 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_de.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_de.properties
@@ -1,8 +1,8 @@
-# Retention Actions
-cutoff.title=Trennen
-cutoff.description=Trennen
-retain.title=Aufbewahren
-retain.description=Aufbewahren
-destroy.title=Vernichten
-destroy.description=Vernichten
-
+# Retention Actions
+cutoff.title=Trennen
+cutoff.description=Trennen
+retain.title=Aufbewahren
+retain.description=Aufbewahren
+destroy.title=Vernichten
+destroy.description=Vernichten
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_es.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_es.properties
index 9926210341..5864fa03f3 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_es.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_es.properties
@@ -1,8 +1,8 @@
-# Retention Actions
-cutoff.title=Interrumpir
-cutoff.description=Interrumpir
-retain.title=Retener
-retain.description=Retener
-destroy.title=Destruir
-destroy.description=Destruir
-
+# Retention Actions
+cutoff.title=Interrumpir
+cutoff.description=Interrumpir
+retain.title=Retener
+retain.description=Retener
+destroy.title=Destruir
+destroy.description=Destruir
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_fr.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_fr.properties
index 9e7a3e0e5f..b86b687a3a 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_fr.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_fr.properties
@@ -1,8 +1,8 @@
-# Retention Actions
-cutoff.title=D\u00e9classer
-cutoff.description=D\u00e9classer
-retain.title=Retenir
-retain.description=Retenir
-destroy.title=D\u00e9truire
-destroy.description=D\u00e9truire
-
+# Retention Actions
+cutoff.title=D\u00e9classer
+cutoff.description=D\u00e9classer
+retain.title=Retenir
+retain.description=Retenir
+destroy.title=D\u00e9truire
+destroy.description=D\u00e9truire
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_it.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_it.properties
index 2f89ddfd51..ff17b5bab8 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_it.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_it.properties
@@ -1,8 +1,8 @@
-# Retention Actions
-cutoff.title=Cut off
-cutoff.description=Cut off
-retain.title=Conserva
-retain.description=Conserva
-destroy.title=Elimina definitivamente
-destroy.description=Elimina definitivamente
-
+# Retention Actions
+cutoff.title=Cut off
+cutoff.description=Cut off
+retain.title=Conserva
+retain.description=Conserva
+destroy.title=Elimina definitivamente
+destroy.description=Elimina definitivamente
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_ja.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_ja.properties
index b089273f09..70b4db447d 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_ja.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_ja.properties
@@ -1,8 +1,8 @@
-# Retention Actions
-cutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5
-cutoff.description=\u30ab\u30c3\u30c8\u30aa\u30d5
-retain.title=\u4fdd\u7ba1
-retain.description=\u4fdd\u7ba1
-destroy.title=\u7834\u68c4
-destroy.description=\u7834\u68c4
-
+# Retention Actions
+cutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5
+cutoff.description=\u30ab\u30c3\u30c8\u30aa\u30d5
+retain.title=\u4fdd\u7ba1
+retain.description=\u4fdd\u7ba1
+destroy.title=\u7834\u68c4
+destroy.description=\u7834\u68c4
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_nb.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_nb.properties
index 7ffb94561d..51d817a8ca 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_nb.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_nb.properties
@@ -1,8 +1,8 @@
-# Retention Actions
-cutoff.title=Cut off
-cutoff.description=Cut off
-retain.title=Behold
-retain.description=Behold
-destroy.title=Destruer
-destroy.description=Destruer
-
+# Retention Actions
+cutoff.title=Cut off
+cutoff.description=Cut off
+retain.title=Behold
+retain.description=Behold
+destroy.title=Destruer
+destroy.description=Destruer
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_nl.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_nl.properties
index 42235c182d..77644e5178 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_nl.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_nl.properties
@@ -1,8 +1,8 @@
-# Retention Actions
-cutoff.title=Afsluiten
-cutoff.description=Afsluiten
-retain.title=Behouden
-retain.description=Behouden
-destroy.title=Vernietigen
-destroy.description=Vernietigen
-
+# Retention Actions
+cutoff.title=Afsluiten
+cutoff.description=Afsluiten
+retain.title=Behouden
+retain.description=Behouden
+destroy.title=Vernietigen
+destroy.description=Vernietigen
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_pt_BR.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_pt_BR.properties
index 065235577f..59b77b8f87 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_pt_BR.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_pt_BR.properties
@@ -1,8 +1,8 @@
-# Retention Actions
-cutoff.title=Cortar
-cutoff.description=Cortar
-retain.title=Manter
-retain.description=Manter
-destroy.title=Destruir
-destroy.description=Destruir
-
+# Retention Actions
+cutoff.title=Cortar
+cutoff.description=Cortar
+retain.title=Manter
+retain.description=Manter
+destroy.title=Destruir
+destroy.description=Destruir
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_ru.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_ru.properties
index 0572749ee6..2e084377df 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_ru.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_ru.properties
@@ -1,8 +1,8 @@
-# Retention Actions
-cutoff.title=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
-cutoff.description=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
-retain.title=\u0425\u0440\u0430\u043d\u0438\u0442\u044c
-retain.description=\u0425\u0440\u0430\u043d\u0438\u0442\u044c
-destroy.title=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c
-destroy.description=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c
-
+# Retention Actions
+cutoff.title=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
+cutoff.description=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
+retain.title=\u0425\u0440\u0430\u043d\u0438\u0442\u044c
+retain.description=\u0425\u0440\u0430\u043d\u0438\u0442\u044c
+destroy.title=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c
+destroy.description=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_zh_CN.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_zh_CN.properties
index 9ab89514c1..f87c7d5c18 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_zh_CN.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions_zh_CN.properties
@@ -1,8 +1,8 @@
-# Retention Actions
-cutoff.title=\u4e2d\u65ad
-cutoff.description=\u4e2d\u65ad
-retain.title=\u4fdd\u7559
-retain.description=\u4fdd\u7559
-destroy.title=\u9500\u6bc1
-destroy.description=\u9500\u6bc1
-
+# Retention Actions
+cutoff.title=\u4e2d\u65ad
+cutoff.description=\u4e2d\u65ad
+retain.title=\u4fdd\u7559
+retain.description=\u4fdd\u7559
+destroy.title=\u9500\u6bc1
+destroy.description=\u9500\u6bc1
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events.properties
index 970902e42d..ea0094fc86 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events.properties
@@ -1,22 +1,22 @@
-# Event Types
-rmeventservice.rmEventType.simple=Simple Event
-rmeventservice.rmEventType.obsolete=Obsoleted Event
-rmeventservice.rmEventType.superseded=Superseded Event
-rmeventservice.rmEventType.crossReferencedRecordTransfered=Cross-Referenced Record Transferred
-rmeventservice.rmEventType.versioned=Versioned Event
-
-# Default events
-rmevent.case_closed=Case Closed
-rmevent.abolished=Abolished
-rmevent.re_designated=Redesignated
-rmevent.no_longer_needed=No Longer Needed
-rmevent.superseded=Superseded
-rmevent.versioned=Versioned
-rmevent.study_complete=Study Complete
-rmevent.training_complete=Training Complete
-rmevent.related_record_trasfered_inactive_storage=Related Record Transferred to Inactive Storage
-rmevent.obsolete=Obsolete
-rmevent.all_allowances_granted_are_terminated=All Allowances Granted are Terminated
-rmevent.WGI_action_complete=WGI Action Complete
-rmevent.separation=Separation
+# Event Types
+rmeventservice.rmEventType.simple=Simple Event
+rmeventservice.rmEventType.obsolete=Obsoleted Event
+rmeventservice.rmEventType.superseded=Superseded Event
+rmeventservice.rmEventType.crossReferencedRecordTransfered=Cross-Referenced Record Transferred
+rmeventservice.rmEventType.versioned=Versioned Event
+
+# Default events
+rmevent.case_closed=Case Closed
+rmevent.abolished=Abolished
+rmevent.re_designated=Redesignated
+rmevent.no_longer_needed=No Longer Needed
+rmevent.superseded=Superseded
+rmevent.versioned=Versioned
+rmevent.study_complete=Study Complete
+rmevent.training_complete=Training Complete
+rmevent.related_record_trasfered_inactive_storage=Related Record Transferred to Inactive Storage
+rmevent.obsolete=Obsolete
+rmevent.all_allowances_granted_are_terminated=All Allowances Granted are Terminated
+rmevent.WGI_action_complete=WGI Action Complete
+rmevent.separation=Separation
rmevent.case_complete=Case Complete
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_de.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_de.properties
index 1678403242..3b4f3490dd 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_de.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_de.properties
@@ -1,22 +1,22 @@
-# Event Types
-rmeventservice.rmEventType.simple=Einfaches Ereignis
-rmeventservice.rmEventType.obsolete=Ereignis mit veraltetem Record
-rmeventservice.rmEventType.superseded=Ereignis mit abgel\u00f6stem Record
-rmeventservice.rmEventType.crossReferencedRecordTransfered=Record mit Querverweis \u00fcbertragen
-rmeventservice.rmEventType.versioned=Versioniertes Ereignis
-
-# Default events
-rmevent.case_closed=Fall geschlossen
-rmevent.abolished=Aufgehoben
-rmevent.re_designated=Neu zugewiesen
-rmevent.no_longer_needed=Nicht mehr ben\u00f6tigt
-rmevent.superseded=Abgel\u00f6st
-rmevent.versioned=Versioniert
-rmevent.study_complete=Untersuchung abgeschlossen
-rmevent.training_complete=Training abgeschlossen
-rmevent.related_record_trasfered_inactive_storage=Zugeh\u00f6riger Record an inaktiven Speicherort \u00fcbertragen
-rmevent.obsolete=Veraltet
-rmevent.all_allowances_granted_are_terminated=Alle einger\u00e4umten Berechtigungen sind beendet.
-rmevent.WGI_action_complete=WGI-Aktion abschlie\u00dfen
-rmevent.separation=Trennung
+# Event Types
+rmeventservice.rmEventType.simple=Einfaches Ereignis
+rmeventservice.rmEventType.obsolete=Ereignis mit veraltetem Record
+rmeventservice.rmEventType.superseded=Ereignis mit abgel\u00f6stem Record
+rmeventservice.rmEventType.crossReferencedRecordTransfered=Record mit Querverweis \u00fcbertragen
+rmeventservice.rmEventType.versioned=Versioniertes Ereignis
+
+# Default events
+rmevent.case_closed=Fall geschlossen
+rmevent.abolished=Aufgehoben
+rmevent.re_designated=Neu zugewiesen
+rmevent.no_longer_needed=Nicht mehr ben\u00f6tigt
+rmevent.superseded=Abgel\u00f6st
+rmevent.versioned=Versioniert
+rmevent.study_complete=Untersuchung abgeschlossen
+rmevent.training_complete=Training abgeschlossen
+rmevent.related_record_trasfered_inactive_storage=Zugeh\u00f6riger Record an inaktiven Speicherort \u00fcbertragen
+rmevent.obsolete=Veraltet
+rmevent.all_allowances_granted_are_terminated=Alle einger\u00e4umten Berechtigungen sind beendet.
+rmevent.WGI_action_complete=WGI-Aktion abschlie\u00dfen
+rmevent.separation=Trennung
rmevent.case_complete=Fall abgeschlossen
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_es.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_es.properties
index f712f35a5c..e16251ccf9 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_es.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_es.properties
@@ -1,22 +1,22 @@
-# Event Types
-rmeventservice.rmEventType.simple=Evento simple
-rmeventservice.rmEventType.obsolete=Evento obsoleto
-rmeventservice.rmEventType.superseded=Evento reemplazado
-rmeventservice.rmEventType.crossReferencedRecordTransfered=Documento de archivo con referencia cruzada transferido
-rmeventservice.rmEventType.versioned=Evento versionado
-
-# Default events
-rmevent.case_closed=Caso cerrado
-rmevent.abolished=Abolido
-rmevent.re_designated=Redise\u00f1ado
-rmevent.no_longer_needed=Ya no se necesita
-rmevent.superseded=Reemplazado
-rmevent.versioned=Versionado
-rmevent.study_complete=Estudio completo
-rmevent.training_complete=Formaci\u00f3n completo
-rmevent.related_record_trasfered_inactive_storage=Documento de archivo relacionado transferido a almacenamiento inactivo
-rmevent.obsolete=Obsoleto
-rmevent.all_allowances_granted_are_terminated=Todas las provisiones otorgadas han terminado
-rmevent.WGI_action_complete=Acci\u00f3n WGI completa
-rmevent.separation=Separaci\u00f3n
+# Event Types
+rmeventservice.rmEventType.simple=Evento simple
+rmeventservice.rmEventType.obsolete=Evento obsoleto
+rmeventservice.rmEventType.superseded=Evento reemplazado
+rmeventservice.rmEventType.crossReferencedRecordTransfered=Documento de archivo con referencia cruzada transferido
+rmeventservice.rmEventType.versioned=Evento versionado
+
+# Default events
+rmevent.case_closed=Caso cerrado
+rmevent.abolished=Abolido
+rmevent.re_designated=Redise\u00f1ado
+rmevent.no_longer_needed=Ya no se necesita
+rmevent.superseded=Reemplazado
+rmevent.versioned=Versionado
+rmevent.study_complete=Estudio completo
+rmevent.training_complete=Formaci\u00f3n completo
+rmevent.related_record_trasfered_inactive_storage=Documento de archivo relacionado transferido a almacenamiento inactivo
+rmevent.obsolete=Obsoleto
+rmevent.all_allowances_granted_are_terminated=Todas las provisiones otorgadas han terminado
+rmevent.WGI_action_complete=Acci\u00f3n WGI completa
+rmevent.separation=Separaci\u00f3n
rmevent.case_complete=Caso completo
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_fr.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_fr.properties
index a18d97bb55..332a8dfb6a 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_fr.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_fr.properties
@@ -1,22 +1,22 @@
-# Event Types
-rmeventservice.rmEventType.simple=Ev\u00e9nement simple
-rmeventservice.rmEventType.obsolete=Ev\u00e9nement obsol\u00e8te
-rmeventservice.rmEventType.superseded=Ev\u00e9nement remplac\u00e9
-rmeventservice.rmEventType.crossReferencedRecordTransfered=Document d'archives avec r\u00e9f\u00e9rence crois\u00e9e transf\u00e9r\u00e9
-rmeventservice.rmEventType.versioned=Ev\u00e9nement versionn\u00e9
-
-# Default events
-rmevent.case_closed=Cas clos
-rmevent.abolished=Aboli
-rmevent.re_designated=Renomm\u00e9
-rmevent.no_longer_needed=Plus n\u00e9cessaire
-rmevent.superseded=Remplac\u00e9
-rmevent.versioned=Versionn\u00e9
-rmevent.study_complete=Etude termin\u00e9e
-rmevent.training_complete=Formation termin\u00e9e
-rmevent.related_record_trasfered_inactive_storage=Document d'archives li\u00e9 transf\u00e9r\u00e9 au stockage inactif
-rmevent.obsolete=Obsol\u00e8te
-rmevent.all_allowances_granted_are_terminated=Toutes les autorisations accord\u00e9es sont termin\u00e9es
-rmevent.WGI_action_complete=Action WGI termin\u00e9e
-rmevent.separation=S\u00e9paration
+# Event Types
+rmeventservice.rmEventType.simple=Ev\u00e9nement simple
+rmeventservice.rmEventType.obsolete=Ev\u00e9nement obsol\u00e8te
+rmeventservice.rmEventType.superseded=Ev\u00e9nement remplac\u00e9
+rmeventservice.rmEventType.crossReferencedRecordTransfered=Document d'archives avec r\u00e9f\u00e9rence crois\u00e9e transf\u00e9r\u00e9
+rmeventservice.rmEventType.versioned=Ev\u00e9nement versionn\u00e9
+
+# Default events
+rmevent.case_closed=Cas clos
+rmevent.abolished=Aboli
+rmevent.re_designated=Renomm\u00e9
+rmevent.no_longer_needed=Plus n\u00e9cessaire
+rmevent.superseded=Remplac\u00e9
+rmevent.versioned=Versionn\u00e9
+rmevent.study_complete=Etude termin\u00e9e
+rmevent.training_complete=Formation termin\u00e9e
+rmevent.related_record_trasfered_inactive_storage=Document d'archives li\u00e9 transf\u00e9r\u00e9 au stockage inactif
+rmevent.obsolete=Obsol\u00e8te
+rmevent.all_allowances_granted_are_terminated=Toutes les autorisations accord\u00e9es sont termin\u00e9es
+rmevent.WGI_action_complete=Action WGI termin\u00e9e
+rmevent.separation=S\u00e9paration
rmevent.case_complete=Cas termin\u00e9
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_it.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_it.properties
index 11fc965165..606bd6cb2d 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_it.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_it.properties
@@ -1,22 +1,22 @@
-# Event Types
-rmeventservice.rmEventType.simple=Evento semplice
-rmeventservice.rmEventType.obsolete=Evento obsoleto
-rmeventservice.rmEventType.superseded=Evento sostituito
-rmeventservice.rmEventType.crossReferencedRecordTransfered=Record con rif. incrociati trasferito
-rmeventservice.rmEventType.versioned=Evento con versione
-
-# Default events
-rmevent.case_closed=Caso chiuso
-rmevent.abolished=Abolito
-rmevent.re_designated=Riprogettato
-rmevent.no_longer_needed=Non pi\u00f9 necessario
-rmevent.superseded=Sostituito
-rmevent.versioned=Con versione
-rmevent.study_complete=Studio completato
-rmevent.training_complete=Training Completato
-rmevent.related_record_trasfered_inactive_storage=Record correlato trasferito a Archiviazione inattiva
-rmevent.obsolete=Obsoleto
-rmevent.all_allowances_granted_are_terminated=Tutte le concessioni sono state terminate
-rmevent.WGI_action_complete=Azione WGI completata
-rmevent.separation=Separazione
+# Event Types
+rmeventservice.rmEventType.simple=Evento semplice
+rmeventservice.rmEventType.obsolete=Evento obsoleto
+rmeventservice.rmEventType.superseded=Evento sostituito
+rmeventservice.rmEventType.crossReferencedRecordTransfered=Record con rif. incrociati trasferito
+rmeventservice.rmEventType.versioned=Evento con versione
+
+# Default events
+rmevent.case_closed=Caso chiuso
+rmevent.abolished=Abolito
+rmevent.re_designated=Riprogettato
+rmevent.no_longer_needed=Non pi\u00f9 necessario
+rmevent.superseded=Sostituito
+rmevent.versioned=Con versione
+rmevent.study_complete=Studio completato
+rmevent.training_complete=Training Completato
+rmevent.related_record_trasfered_inactive_storage=Record correlato trasferito a Archiviazione inattiva
+rmevent.obsolete=Obsoleto
+rmevent.all_allowances_granted_are_terminated=Tutte le concessioni sono state terminate
+rmevent.WGI_action_complete=Azione WGI completata
+rmevent.separation=Separazione
rmevent.case_complete=Caso completato
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_ja.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_ja.properties
index 55e7a5fd32..00b71722b5 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_ja.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_ja.properties
@@ -1,22 +1,22 @@
-# Event Types
-rmeventservice.rmEventType.simple=\u7c21\u6613\u30a4\u30d9\u30f3\u30c8
-rmeventservice.rmEventType.obsolete=\u5ec3\u6b62\u30a4\u30d9\u30f3\u30c8
-rmeventservice.rmEventType.superseded=\u5dee\u3057\u66ff\u3048\u30a4\u30d9\u30f3\u30c8
-rmeventservice.rmEventType.crossReferencedRecordTransfered=\u76f8\u4e92\u53c2\u7167\u30ec\u30b3\u30fc\u30c9\u306e\u8ee2\u9001
-rmeventservice.rmEventType.versioned=\u30d0\u30fc\u30b8\u30e7\u30f3\u7ba1\u7406\u30a4\u30d9\u30f3\u30c8
-
-# Default events
-rmevent.case_closed=\u30b1\u30fc\u30b9\u7d42\u4e86
-rmevent.abolished=\u5ec3\u6b62
-rmevent.re_designated=\u518d\u6307\u5b9a
-rmevent.no_longer_needed=\u4eca\u5f8c\u4e0d\u8981
-rmevent.superseded=\u5dee\u3057\u66ff\u3048
-rmevent.versioned=\u30d0\u30fc\u30b8\u30e7\u30f3\u7ba1\u7406
-rmevent.study_complete=\u5b66\u7fd2\u5b8c\u4e86
-rmevent.training_complete=\u30c8\u30ec\u30fc\u30cb\u30f3\u30b0\u5b8c\u4e86
-rmevent.related_record_trasfered_inactive_storage=\u95a2\u9023\u30ec\u30b3\u30fc\u30c9\u3092\u975e\u30a2\u30af\u30c6\u30a3\u30d6\u30b9\u30c8\u30ec\u30fc\u30b8\u306b\u8ee2\u9001
-rmevent.obsolete=\u5ec3\u6b62
-rmevent.all_allowances_granted_are_terminated=\u8a31\u53ef\u3055\u308c\u3066\u3044\u308b\u3059\u3079\u3066\u306e\u51e6\u7406\u304c\u7d42\u4e86
-rmevent.WGI_action_complete=WGI \u51e6\u7406\u5b8c\u4e86
-rmevent.separation=\u5206\u96e2
+# Event Types
+rmeventservice.rmEventType.simple=\u7c21\u6613\u30a4\u30d9\u30f3\u30c8
+rmeventservice.rmEventType.obsolete=\u5ec3\u6b62\u30a4\u30d9\u30f3\u30c8
+rmeventservice.rmEventType.superseded=\u5dee\u3057\u66ff\u3048\u30a4\u30d9\u30f3\u30c8
+rmeventservice.rmEventType.crossReferencedRecordTransfered=\u76f8\u4e92\u53c2\u7167\u30ec\u30b3\u30fc\u30c9\u306e\u8ee2\u9001
+rmeventservice.rmEventType.versioned=\u30d0\u30fc\u30b8\u30e7\u30f3\u7ba1\u7406\u30a4\u30d9\u30f3\u30c8
+
+# Default events
+rmevent.case_closed=\u30b1\u30fc\u30b9\u7d42\u4e86
+rmevent.abolished=\u5ec3\u6b62
+rmevent.re_designated=\u518d\u6307\u5b9a
+rmevent.no_longer_needed=\u4eca\u5f8c\u4e0d\u8981
+rmevent.superseded=\u5dee\u3057\u66ff\u3048
+rmevent.versioned=\u30d0\u30fc\u30b8\u30e7\u30f3\u7ba1\u7406
+rmevent.study_complete=\u5b66\u7fd2\u5b8c\u4e86
+rmevent.training_complete=\u30c8\u30ec\u30fc\u30cb\u30f3\u30b0\u5b8c\u4e86
+rmevent.related_record_trasfered_inactive_storage=\u95a2\u9023\u30ec\u30b3\u30fc\u30c9\u3092\u975e\u30a2\u30af\u30c6\u30a3\u30d6\u30b9\u30c8\u30ec\u30fc\u30b8\u306b\u8ee2\u9001
+rmevent.obsolete=\u5ec3\u6b62
+rmevent.all_allowances_granted_are_terminated=\u8a31\u53ef\u3055\u308c\u3066\u3044\u308b\u3059\u3079\u3066\u306e\u51e6\u7406\u304c\u7d42\u4e86
+rmevent.WGI_action_complete=WGI \u51e6\u7406\u5b8c\u4e86
+rmevent.separation=\u5206\u96e2
rmevent.case_complete=\u30b1\u30fc\u30b9\u5b8c\u4e86
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_nb.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_nb.properties
index 48374749cf..3191fd332b 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_nb.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_nb.properties
@@ -1,22 +1,22 @@
-# Event Types
-rmeventservice.rmEventType.simple=Enkel hendelse
-rmeventservice.rmEventType.obsolete=Utg\u00e5tt hendelse
-rmeventservice.rmEventType.superseded=Erstattet hendelse
-rmeventservice.rmEventType.crossReferencedRecordTransfered=Oppf\u00f8ring med krysshenvisninger er overf\u00f8rt
-rmeventservice.rmEventType.versioned=Oppf\u00f8ring med hendelse
-
-# Default events
-rmevent.case_closed=Sak avslutt
-rmevent.abolished=Avskaffet
-rmevent.re_designated=Angitt p\u00e5 nytt
-rmevent.no_longer_needed=Ikke lenger n\u00f8dvendig
-rmevent.superseded=Erstattet
-rmevent.versioned=Med versjon
-rmevent.study_complete=Studie fullf\u00f8rt
-rmevent.training_complete=Oppl\u00e6ring fullf\u00f8rt
-rmevent.related_record_trasfered_inactive_storage=Relatert oppf\u00f8ring overf\u00f8rt til inaktiv lagring
-rmevent.obsolete=Utg\u00e5tt
-rmevent.all_allowances_granted_are_terminated=Alle tillatelser som er gitt, er avsluttet
-rmevent.WGI_action_complete=WGI-handling fullf\u00f8rt
-rmevent.separation=Separasjon
+# Event Types
+rmeventservice.rmEventType.simple=Enkel hendelse
+rmeventservice.rmEventType.obsolete=Utg\u00e5tt hendelse
+rmeventservice.rmEventType.superseded=Erstattet hendelse
+rmeventservice.rmEventType.crossReferencedRecordTransfered=Oppf\u00f8ring med krysshenvisninger er overf\u00f8rt
+rmeventservice.rmEventType.versioned=Oppf\u00f8ring med hendelse
+
+# Default events
+rmevent.case_closed=Sak avslutt
+rmevent.abolished=Avskaffet
+rmevent.re_designated=Angitt p\u00e5 nytt
+rmevent.no_longer_needed=Ikke lenger n\u00f8dvendig
+rmevent.superseded=Erstattet
+rmevent.versioned=Med versjon
+rmevent.study_complete=Studie fullf\u00f8rt
+rmevent.training_complete=Oppl\u00e6ring fullf\u00f8rt
+rmevent.related_record_trasfered_inactive_storage=Relatert oppf\u00f8ring overf\u00f8rt til inaktiv lagring
+rmevent.obsolete=Utg\u00e5tt
+rmevent.all_allowances_granted_are_terminated=Alle tillatelser som er gitt, er avsluttet
+rmevent.WGI_action_complete=WGI-handling fullf\u00f8rt
+rmevent.separation=Separasjon
rmevent.case_complete=Sak fullf\u00f8rt
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_nl.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_nl.properties
index 6f5894c01d..6d3aefb5e0 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_nl.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_nl.properties
@@ -1,22 +1,22 @@
-# Event Types
-rmeventservice.rmEventType.simple=Eenvoudige gebeurtenis
-rmeventservice.rmEventType.obsolete=Verouderde gebeurtenis
-rmeventservice.rmEventType.superseded=Vervangen gebeurtenis
-rmeventservice.rmEventType.crossReferencedRecordTransfered=Record met kruisverwijzing overgezet
-rmeventservice.rmEventType.versioned=Gebeurtenis met versiebeheer
-
-# Default events
-rmevent.case_closed=Geval gesloten
-rmevent.abolished=Vervallen
-rmevent.re_designated=Opnieuw aangewezen
-rmevent.no_longer_needed=Niet langer nodig
-rmevent.superseded=Vervangen
-rmevent.versioned=Met versiebeheer
-rmevent.study_complete=Onderzoek afgerond
-rmevent.training_complete=Training afgerond
-rmevent.related_record_trasfered_inactive_storage=Gerelateerde record overgezet naar inactieve opslag
-rmevent.obsolete=Verouderd
-rmevent.all_allowances_granted_are_terminated=Alle toegekende rechten zijn be\u00ebindigd
-rmevent.WGI_action_complete=WGI-actie afgerond
-rmevent.separation=Scheiding
+# Event Types
+rmeventservice.rmEventType.simple=Eenvoudige gebeurtenis
+rmeventservice.rmEventType.obsolete=Verouderde gebeurtenis
+rmeventservice.rmEventType.superseded=Vervangen gebeurtenis
+rmeventservice.rmEventType.crossReferencedRecordTransfered=Record met kruisverwijzing overgezet
+rmeventservice.rmEventType.versioned=Gebeurtenis met versiebeheer
+
+# Default events
+rmevent.case_closed=Geval gesloten
+rmevent.abolished=Vervallen
+rmevent.re_designated=Opnieuw aangewezen
+rmevent.no_longer_needed=Niet langer nodig
+rmevent.superseded=Vervangen
+rmevent.versioned=Met versiebeheer
+rmevent.study_complete=Onderzoek afgerond
+rmevent.training_complete=Training afgerond
+rmevent.related_record_trasfered_inactive_storage=Gerelateerde record overgezet naar inactieve opslag
+rmevent.obsolete=Verouderd
+rmevent.all_allowances_granted_are_terminated=Alle toegekende rechten zijn be\u00ebindigd
+rmevent.WGI_action_complete=WGI-actie afgerond
+rmevent.separation=Scheiding
rmevent.case_complete=Geval afgerond
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_pt_BR.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_pt_BR.properties
index 6c41bac492..2945e4edde 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_pt_BR.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_pt_BR.properties
@@ -1,22 +1,22 @@
-# Event Types
-rmeventservice.rmEventType.simple=Evento simples
-rmeventservice.rmEventType.obsolete=Evento obsoleto
-rmeventservice.rmEventType.superseded=Evento substitu\u00eddo
-rmeventservice.rmEventType.crossReferencedRecordTransfered=Documento arquiv\u00edstico com refer\u00eancia cruzada transferido
-rmeventservice.rmEventType.versioned=Evento em vers\u00e3o
-
-# Default events
-rmevent.case_closed=Caso fechado
-rmevent.abolished=Abolido
-rmevent.re_designated=Redesignado
-rmevent.no_longer_needed=N\u00e3o mais necess\u00e1rio
-rmevent.superseded=Substitu\u00eddo
-rmevent.versioned=Em vers\u00e3o
-rmevent.study_complete=Estudo conclu\u00eddo
-rmevent.training_complete=Treinamento conclu\u00eddo
-rmevent.related_record_trasfered_inactive_storage=Documento arquiv\u00edstico relacionado transferido para armazenamento inativo
-rmevent.obsolete=Obsoleto
-rmevent.all_allowances_granted_are_terminated=Todas as bonifica\u00e7\u00f5es concedidas s\u00e3o rescindidas
-rmevent.WGI_action_complete=A\u00e7\u00e3o de WGI conclu\u00edda
-rmevent.separation=Separa\u00e7\u00e3o
+# Event Types
+rmeventservice.rmEventType.simple=Evento simples
+rmeventservice.rmEventType.obsolete=Evento obsoleto
+rmeventservice.rmEventType.superseded=Evento substitu\u00eddo
+rmeventservice.rmEventType.crossReferencedRecordTransfered=Documento arquiv\u00edstico com refer\u00eancia cruzada transferido
+rmeventservice.rmEventType.versioned=Evento em vers\u00e3o
+
+# Default events
+rmevent.case_closed=Caso fechado
+rmevent.abolished=Abolido
+rmevent.re_designated=Redesignado
+rmevent.no_longer_needed=N\u00e3o mais necess\u00e1rio
+rmevent.superseded=Substitu\u00eddo
+rmevent.versioned=Em vers\u00e3o
+rmevent.study_complete=Estudo conclu\u00eddo
+rmevent.training_complete=Treinamento conclu\u00eddo
+rmevent.related_record_trasfered_inactive_storage=Documento arquiv\u00edstico relacionado transferido para armazenamento inativo
+rmevent.obsolete=Obsoleto
+rmevent.all_allowances_granted_are_terminated=Todas as bonifica\u00e7\u00f5es concedidas s\u00e3o rescindidas
+rmevent.WGI_action_complete=A\u00e7\u00e3o de WGI conclu\u00edda
+rmevent.separation=Separa\u00e7\u00e3o
rmevent.case_complete=Caso conclu\u00eddo
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_ru.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_ru.properties
index 14fca49876..de4281e217 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_ru.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_ru.properties
@@ -1,22 +1,22 @@
-# Event Types
-rmeventservice.rmEventType.simple=\u041f\u0440\u043e\u0441\u0442\u043e\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0435
-rmeventservice.rmEventType.obsolete=\u0423\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0435\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0435
-rmeventservice.rmEventType.superseded=\u0417\u0430\u043c\u0435\u043d\u0435\u043d\u043d\u043e\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0435
-rmeventservice.rmEventType.crossReferencedRecordTransfered=\u0417\u0430\u043f\u0438\u0441\u044c \u0441 \u043f\u0435\u0440\u0435\u043a\u0440\u0435\u0441\u0442\u043d\u044b\u043c\u0438 \u0441\u0441\u044b\u043b\u043a\u0430\u043c\u0438 \u043f\u0435\u0440\u0435\u0434\u0430\u043d\u0430
-rmeventservice.rmEventType.versioned=\u0421\u043e\u0431\u044b\u0442\u0438\u0435 \u0441 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0435\u043c \u0432\u0435\u0440\u0441\u0438\u0439
-
-# Default events
-rmevent.case_closed=\u0421\u043b\u0443\u0447\u0430\u0439 \u0437\u0430\u043a\u0440\u044b\u0442
-rmevent.abolished=\u041e\u0442\u043c\u0435\u043d\u0435\u043d\u043e
-rmevent.re_designated=\u041f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u043e
-rmevent.no_longer_needed=\u0411\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f
-rmevent.superseded=\u0417\u0430\u043c\u0435\u043d\u0435\u043d\u043e
-rmevent.versioned=\u0421 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0435\u043c \u0432\u0435\u0440\u0441\u0438\u0439
-rmevent.study_complete=\u041e\u0431\u0443\u0447\u0435\u043d\u0438\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e
-rmevent.training_complete=\u041a\u0443\u0440\u0441 \u043e\u0431\u0443\u0447\u0435\u043d\u0438\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d
-rmevent.related_record_trasfered_inactive_storage=\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c \u043f\u0435\u0440\u0435\u0434\u0430\u043d\u0430 \u0432 \u043d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0435 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435
-rmevent.obsolete=\u0423\u0441\u0442\u0430\u0440\u0435\u043b\u043e
-rmevent.all_allowances_granted_are_terminated=\u0412\u0441\u0435 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u043a\u0432\u043e\u0442\u044b \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u044b
-rmevent.WGI_action_complete=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 WGI \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e
-rmevent.separation=\u0420\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u0435
+# Event Types
+rmeventservice.rmEventType.simple=\u041f\u0440\u043e\u0441\u0442\u043e\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0435
+rmeventservice.rmEventType.obsolete=\u0423\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0435\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0435
+rmeventservice.rmEventType.superseded=\u0417\u0430\u043c\u0435\u043d\u0435\u043d\u043d\u043e\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0435
+rmeventservice.rmEventType.crossReferencedRecordTransfered=\u0417\u0430\u043f\u0438\u0441\u044c \u0441 \u043f\u0435\u0440\u0435\u043a\u0440\u0435\u0441\u0442\u043d\u044b\u043c\u0438 \u0441\u0441\u044b\u043b\u043a\u0430\u043c\u0438 \u043f\u0435\u0440\u0435\u0434\u0430\u043d\u0430
+rmeventservice.rmEventType.versioned=\u0421\u043e\u0431\u044b\u0442\u0438\u0435 \u0441 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0435\u043c \u0432\u0435\u0440\u0441\u0438\u0439
+
+# Default events
+rmevent.case_closed=\u0421\u043b\u0443\u0447\u0430\u0439 \u0437\u0430\u043a\u0440\u044b\u0442
+rmevent.abolished=\u041e\u0442\u043c\u0435\u043d\u0435\u043d\u043e
+rmevent.re_designated=\u041f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u043e
+rmevent.no_longer_needed=\u0411\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f
+rmevent.superseded=\u0417\u0430\u043c\u0435\u043d\u0435\u043d\u043e
+rmevent.versioned=\u0421 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0435\u043c \u0432\u0435\u0440\u0441\u0438\u0439
+rmevent.study_complete=\u041e\u0431\u0443\u0447\u0435\u043d\u0438\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e
+rmevent.training_complete=\u041a\u0443\u0440\u0441 \u043e\u0431\u0443\u0447\u0435\u043d\u0438\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d
+rmevent.related_record_trasfered_inactive_storage=\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c \u043f\u0435\u0440\u0435\u0434\u0430\u043d\u0430 \u0432 \u043d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0435 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435
+rmevent.obsolete=\u0423\u0441\u0442\u0430\u0440\u0435\u043b\u043e
+rmevent.all_allowances_granted_are_terminated=\u0412\u0441\u0435 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u043a\u0432\u043e\u0442\u044b \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u044b
+rmevent.WGI_action_complete=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 WGI \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e
+rmevent.separation=\u0420\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u0435
rmevent.case_complete=\u0421\u043b\u0443\u0447\u0430\u0439 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_zh_CN.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_zh_CN.properties
index 54cebe098e..8bfcff9dff 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_zh_CN.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events_zh_CN.properties
@@ -1,22 +1,22 @@
-# Event Types
-rmeventservice.rmEventType.simple=\u7b80\u5355\u4e8b\u4ef6
-rmeventservice.rmEventType.obsolete=\u8fc7\u65f6\u7684\u4e8b\u4ef6
-rmeventservice.rmEventType.superseded=\u88ab\u53d6\u4ee3\u7684\u4e8b\u4ef6
-rmeventservice.rmEventType.crossReferencedRecordTransfered=\u5df2\u79fb\u4ea4\u4ea4\u53c9\u53c2\u8003\u8bb0\u5f55
-rmeventservice.rmEventType.versioned=\u7248\u672c\u5316\u4e8b\u4ef6
-
-# Default events
-rmevent.case_closed=\u6848\u4f8b\u5df2\u7ed3
-rmevent.abolished=\u5df2\u5e9f\u9664
-rmevent.re_designated=\u5df2\u91cd\u65b0\u6307\u5b9a
-rmevent.no_longer_needed=\u4e0d\u518d\u9700\u8981
-rmevent.superseded=\u5df2\u88ab\u53d6\u4ee3
-rmevent.versioned=\u7248\u672c\u5316
-rmevent.study_complete=\u5b66\u4e60\u5b8c\u6210
-rmevent.training_complete=\u57f9\u8bad\u5b8c\u6210
-rmevent.related_record_trasfered_inactive_storage=\u76f8\u5173\u8bb0\u5f55\u5df2\u79fb\u4ea4\u81f3\u4e0d\u6d3b\u52a8\u7684\u5b58\u50a8
-rmevent.obsolete=\u8fc7\u65f6
-rmevent.all_allowances_granted_are_terminated=\u6240\u6709\u6388\u4e88\u7684\u9650\u989d\u5df2\u7ec8\u6b62
-rmevent.WGI_action_complete=WGI \u64cd\u4f5c\u5b8c\u6210
-rmevent.separation=\u5206\u79bb
+# Event Types
+rmeventservice.rmEventType.simple=\u7b80\u5355\u4e8b\u4ef6
+rmeventservice.rmEventType.obsolete=\u8fc7\u65f6\u7684\u4e8b\u4ef6
+rmeventservice.rmEventType.superseded=\u88ab\u53d6\u4ee3\u7684\u4e8b\u4ef6
+rmeventservice.rmEventType.crossReferencedRecordTransfered=\u5df2\u79fb\u4ea4\u4ea4\u53c9\u53c2\u8003\u8bb0\u5f55
+rmeventservice.rmEventType.versioned=\u7248\u672c\u5316\u4e8b\u4ef6
+
+# Default events
+rmevent.case_closed=\u6848\u4f8b\u5df2\u7ed3
+rmevent.abolished=\u5df2\u5e9f\u9664
+rmevent.re_designated=\u5df2\u91cd\u65b0\u6307\u5b9a
+rmevent.no_longer_needed=\u4e0d\u518d\u9700\u8981
+rmevent.superseded=\u5df2\u88ab\u53d6\u4ee3
+rmevent.versioned=\u7248\u672c\u5316
+rmevent.study_complete=\u5b66\u4e60\u5b8c\u6210
+rmevent.training_complete=\u57f9\u8bad\u5b8c\u6210
+rmevent.related_record_trasfered_inactive_storage=\u76f8\u5173\u8bb0\u5f55\u5df2\u79fb\u4ea4\u81f3\u4e0d\u6d3b\u52a8\u7684\u5b58\u50a8
+rmevent.obsolete=\u8fc7\u65f6
+rmevent.all_allowances_granted_are_terminated=\u6240\u6709\u6388\u4e88\u7684\u9650\u989d\u5df2\u7ec8\u6b62
+rmevent.WGI_action_complete=WGI \u64cd\u4f5c\u5b8c\u6210
+rmevent.separation=\u5206\u79bb
rmevent.case_complete=\u6848\u4f8b\u5b8c\u6210
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system.properties
index f0d113973a..727ce24344 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system.properties
@@ -1,25 +1,25 @@
-rm.hold.name=Hold
-
-## Default roles
-rm.role.extendedReaders=In-Place Readers
-rm.role.extendedWriters=In-Place Writers
-rm.role.user=Records Management User
-rm.role.powerUser=Records Management Power User
-rm.role.securityOfficer=Records Management Security Officer
-rm.role.recordsManager=Records Management Manager
-rm.role.administrator=Records Management Administrator
-rm.role.all=All Records Management Roles
-
-## Default searches
-rm.savedsearch.vitalRecordsName=Vital Records due for Review
-rm.savedsearch.vitalRecordsDesc=All records currently due for review.
-rm.savedsearch.incompleteRecordsName=Incomplete Records
-rm.savedsearch.incompleteRecordsDesc=All incomplete records.
-rm.savedsearch.cutoffRecordsName=Records and Record Folders Eligible for Cut Off
-rm.savedsearch.cutoffRecordsDesc=All records and record folders currently eligible for cut off.
-rm.savedsearch.transferRecordsName=Records and Record Folders Eligible for Transfer
-rm.savedsearch.transferRecordsDesc=All record folders and records currently eligible for transfer.
-rm.savedsearch.destructionRecordsName=Records and Record Folders Eligible for Destruction
-rm.savedsearch.destructionRecordsDesc=All records currently eligible for destruction.
-rm.savedsearch.frozenRecordsName= Records and Record Folders On Hold
+rm.hold.name=Hold
+
+## Default roles
+rm.role.extendedReaders=In-Place Readers
+rm.role.extendedWriters=In-Place Writers
+rm.role.user=Records Management User
+rm.role.powerUser=Records Management Power User
+rm.role.securityOfficer=Records Management Security Officer
+rm.role.recordsManager=Records Management Manager
+rm.role.administrator=Records Management Administrator
+rm.role.all=All Records Management Roles
+
+## Default searches
+rm.savedsearch.vitalRecordsName=Vital Records due for Review
+rm.savedsearch.vitalRecordsDesc=All records currently due for review.
+rm.savedsearch.incompleteRecordsName=Incomplete Records
+rm.savedsearch.incompleteRecordsDesc=All incomplete records.
+rm.savedsearch.cutoffRecordsName=Records and Record Folders Eligible for Cut Off
+rm.savedsearch.cutoffRecordsDesc=All records and record folders currently eligible for cut off.
+rm.savedsearch.transferRecordsName=Records and Record Folders Eligible for Transfer
+rm.savedsearch.transferRecordsDesc=All record folders and records currently eligible for transfer.
+rm.savedsearch.destructionRecordsName=Records and Record Folders Eligible for Destruction
+rm.savedsearch.destructionRecordsDesc=All records currently eligible for destruction.
+rm.savedsearch.frozenRecordsName= Records and Record Folders On Hold
rm.savedsearch.frozenRecordsDesc=All records and record folders currently on hold.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_de.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_de.properties
index 6aff9b3622..4034f191a1 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_de.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_de.properties
@@ -1,25 +1,25 @@
-rm.hold.name=Sperrbereich
-
-## Default roles
-rm.role.extendedReaders=An Originalposition lesen
-rm.role.extendedWriters=An Originalposition schreiben
-rm.role.user=Records Management Benutzer
-rm.role.powerUser=Records Management Profibenutzer
-rm.role.securityOfficer=Records Management Sicherheitsbeauftragter
-rm.role.recordsManager=Records Management Manager
-rm.role.administrator=Records Management Administrator
-rm.role.all=Alle Records Management Rollen
-
-## Default searches
-rm.savedsearch.vitalRecordsName=Besonders relevante Records mit f\u00e4lliger \u00dcberpr\u00fcfung
-rm.savedsearch.vitalRecordsDesc=Alle aktuell zum \u00dcberpr\u00fcfen f\u00e4lligen Records.
-rm.savedsearch.incompleteRecordsName=Nicht abgeschlossene Records
-rm.savedsearch.incompleteRecordsDesc=Alle nicht abgeschlossenen Records.
-rm.savedsearch.cutoffRecordsName=Zur Trennung geeignete Records und Record-Ordner
-rm.savedsearch.cutoffRecordsDesc=Alle derzeit zur Trennung geeigneten Records und Record-Ordner.
-rm.savedsearch.transferRecordsName=Zur \u00dcbertragung geeignete Records und Record-Ordner
-rm.savedsearch.transferRecordsDesc=Alle aktuell zur \u00dcbertragung geeigneten Records und Record-Ordner.
-rm.savedsearch.destructionRecordsName=Zur Vernichtung geeignete Records und Record-Ordner
-rm.savedsearch.destructionRecordsDesc=Alle aktuell zur Vernichtung geeigneten Records.
-rm.savedsearch.frozenRecordsName= Gesperrte Records und Record-Ordner
+rm.hold.name=Sperrbereich
+
+## Default roles
+rm.role.extendedReaders=An Originalposition lesen
+rm.role.extendedWriters=An Originalposition schreiben
+rm.role.user=Records Management Benutzer
+rm.role.powerUser=Records Management Profibenutzer
+rm.role.securityOfficer=Records Management Sicherheitsbeauftragter
+rm.role.recordsManager=Records Management Manager
+rm.role.administrator=Records Management Administrator
+rm.role.all=Alle Records Management Rollen
+
+## Default searches
+rm.savedsearch.vitalRecordsName=Besonders relevante Records mit f\u00e4lliger \u00dcberpr\u00fcfung
+rm.savedsearch.vitalRecordsDesc=Alle aktuell zum \u00dcberpr\u00fcfen f\u00e4lligen Records.
+rm.savedsearch.incompleteRecordsName=Nicht abgeschlossene Records
+rm.savedsearch.incompleteRecordsDesc=Alle nicht abgeschlossenen Records.
+rm.savedsearch.cutoffRecordsName=Zur Trennung geeignete Records und Record-Ordner
+rm.savedsearch.cutoffRecordsDesc=Alle derzeit zur Trennung geeigneten Records und Record-Ordner.
+rm.savedsearch.transferRecordsName=Zur \u00dcbertragung geeignete Records und Record-Ordner
+rm.savedsearch.transferRecordsDesc=Alle aktuell zur \u00dcbertragung geeigneten Records und Record-Ordner.
+rm.savedsearch.destructionRecordsName=Zur Vernichtung geeignete Records und Record-Ordner
+rm.savedsearch.destructionRecordsDesc=Alle aktuell zur Vernichtung geeigneten Records.
+rm.savedsearch.frozenRecordsName= Gesperrte Records und Record-Ordner
rm.savedsearch.frozenRecordsDesc=Alle derzeit gesperrten Records und Record-Ordner.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_es.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_es.properties
index 781745ce0e..c6a97a80f8 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_es.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_es.properties
@@ -1,25 +1,25 @@
-rm.hold.name=Bloqueo
-
-## Default roles
-rm.role.extendedReaders=Lectores in situ
-rm.role.extendedWriters=Escritores in situ
-rm.role.user=Usuario de gesti\u00f3n de documentos de archivo
-rm.role.powerUser=Usuario de potencia de gesti\u00f3n de documentos de archivo
-rm.role.securityOfficer=Encargado de seguridad de gesti\u00f3n de documentos de archivo
-rm.role.recordsManager=Gestor de gesti\u00f3n de documentos de archivo
-rm.role.administrator=Jefe de gesti\u00f3n de documentos de archivo
-rm.role.all=Todos los roles de gesti\u00f3n de documentos de archivo
-
-## Default searches
-rm.savedsearch.vitalRecordsName=Documentos de archivo vitales pendientes de revisi\u00f3n
-rm.savedsearch.vitalRecordsDesc=Todos los documentos de archivo pendientes de revisi\u00f3n.
-rm.savedsearch.incompleteRecordsName=Documentos de archivo incompletos
-rm.savedsearch.incompleteRecordsDesc=Todos los documentos de archivo incompletos.
-rm.savedsearch.cutoffRecordsName=Documentos de archivo y carpetas de documentos de archivo que se pueden interrumpir
-rm.savedsearch.cutoffRecordsDesc=Todos los documentos de archivos y carpetas de documentos de archivos que se pueden interrumpir actualmente.
-rm.savedsearch.transferRecordsName=Documentos de archivo y carpetas de documentos de archivo que se pueden transferir
-rm.savedsearch.transferRecordsDesc=Actualmente, todos los documentos y carpetas de documentos de archivo se pueden transferir.
-rm.savedsearch.destructionRecordsName=Documentos de archivo y carpetas de documentos de archivo que se pueden destruir
-rm.savedsearch.destructionRecordsDesc=Actualmente, todos los documentos de archivo se pueden destruir.
-rm.savedsearch.frozenRecordsName= Documentos de archivo y carpetas de documentos de archivo en espera
+rm.hold.name=Bloqueo
+
+## Default roles
+rm.role.extendedReaders=Lectores in situ
+rm.role.extendedWriters=Escritores in situ
+rm.role.user=Usuario de gesti\u00f3n de documentos de archivo
+rm.role.powerUser=Usuario de potencia de gesti\u00f3n de documentos de archivo
+rm.role.securityOfficer=Encargado de seguridad de gesti\u00f3n de documentos de archivo
+rm.role.recordsManager=Gestor de gesti\u00f3n de documentos de archivo
+rm.role.administrator=Jefe de gesti\u00f3n de documentos de archivo
+rm.role.all=Todos los roles de gesti\u00f3n de documentos de archivo
+
+## Default searches
+rm.savedsearch.vitalRecordsName=Documentos de archivo vitales pendientes de revisi\u00f3n
+rm.savedsearch.vitalRecordsDesc=Todos los documentos de archivo pendientes de revisi\u00f3n.
+rm.savedsearch.incompleteRecordsName=Documentos de archivo incompletos
+rm.savedsearch.incompleteRecordsDesc=Todos los documentos de archivo incompletos.
+rm.savedsearch.cutoffRecordsName=Documentos de archivo y carpetas de documentos de archivo que se pueden interrumpir
+rm.savedsearch.cutoffRecordsDesc=Todos los documentos de archivos y carpetas de documentos de archivos que se pueden interrumpir actualmente.
+rm.savedsearch.transferRecordsName=Documentos de archivo y carpetas de documentos de archivo que se pueden transferir
+rm.savedsearch.transferRecordsDesc=Actualmente, todos los documentos y carpetas de documentos de archivo se pueden transferir.
+rm.savedsearch.destructionRecordsName=Documentos de archivo y carpetas de documentos de archivo que se pueden destruir
+rm.savedsearch.destructionRecordsDesc=Actualmente, todos los documentos de archivo se pueden destruir.
+rm.savedsearch.frozenRecordsName= Documentos de archivo y carpetas de documentos de archivo en espera
rm.savedsearch.frozenRecordsDesc=Todos los documentos de archivo y carpetas de documentos de archivo est\u00e1n en espera.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_fr.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_fr.properties
index 9a1562e6ef..d4e764d993 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_fr.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_fr.properties
@@ -1,25 +1,25 @@
-rm.hold.name=Suspendre
-
-## Default roles
-rm.role.extendedReaders=Lecteurs sur place
-rm.role.extendedWriters=R\u00e9dacteurs sur place
-rm.role.user=Utilisateur de la gestion des archives
-rm.role.powerUser=Utilisateur principal de la gestion des archives
-rm.role.securityOfficer=Agent de s\u00e9curit\u00e9 de la gestion des archives
-rm.role.recordsManager=Responsable de la gestion des archives
-rm.role.administrator=Administrateur de la gestion des archives
-rm.role.all=Tous les r\u00f4les de la gestion des archives
-
-## Default searches
-rm.savedsearch.vitalRecordsName=Documents d'archives essentiels arriv\u00e9s \u00e0 \u00e9ch\u00e9ance pour v\u00e9rification
-rm.savedsearch.vitalRecordsDesc=Tous les documents d'archives arriv\u00e9s \u00e0 \u00e9ch\u00e9ance pour v\u00e9rification.
-rm.savedsearch.incompleteRecordsName=Documents d'archives incomplets
-rm.savedsearch.incompleteRecordsDesc=Tous les documents d'archives incomplets.
-rm.savedsearch.cutoffRecordsName=Documents d'archives et dossiers d'archives \u00e9ligibles pour un d\u00e9classement
-rm.savedsearch.cutoffRecordsDesc=Tous les documents d'archives et dossiers d'archives actuellement \u00e9ligibles pour un d\u00e9classement.
-rm.savedsearch.transferRecordsName=Documents d'archives et dossiers d'archives \u00e9ligibles pour un transfert
-rm.savedsearch.transferRecordsDesc=Tous les documents d'archives et dossiers d'archives actuellement \u00e9ligibles pour un transfert.
-rm.savedsearch.destructionRecordsName=Documents d'archives et dossiers d'archives \u00e9ligibles pour une destruction
-rm.savedsearch.destructionRecordsDesc=Tous les documents d'archives actuellement \u00e9ligibles pour destruction.
-rm.savedsearch.frozenRecordsName= Documents d'archives et dossiers d'archives suspendus
+rm.hold.name=Suspendre
+
+## Default roles
+rm.role.extendedReaders=Lecteurs sur place
+rm.role.extendedWriters=R\u00e9dacteurs sur place
+rm.role.user=Utilisateur de la gestion des archives
+rm.role.powerUser=Utilisateur principal de la gestion des archives
+rm.role.securityOfficer=Agent de s\u00e9curit\u00e9 de la gestion des archives
+rm.role.recordsManager=Responsable de la gestion des archives
+rm.role.administrator=Administrateur de la gestion des archives
+rm.role.all=Tous les r\u00f4les de la gestion des archives
+
+## Default searches
+rm.savedsearch.vitalRecordsName=Documents d'archives essentiels arriv\u00e9s \u00e0 \u00e9ch\u00e9ance pour v\u00e9rification
+rm.savedsearch.vitalRecordsDesc=Tous les documents d'archives arriv\u00e9s \u00e0 \u00e9ch\u00e9ance pour v\u00e9rification.
+rm.savedsearch.incompleteRecordsName=Documents d'archives incomplets
+rm.savedsearch.incompleteRecordsDesc=Tous les documents d'archives incomplets.
+rm.savedsearch.cutoffRecordsName=Documents d'archives et dossiers d'archives \u00e9ligibles pour un d\u00e9classement
+rm.savedsearch.cutoffRecordsDesc=Tous les documents d'archives et dossiers d'archives actuellement \u00e9ligibles pour un d\u00e9classement.
+rm.savedsearch.transferRecordsName=Documents d'archives et dossiers d'archives \u00e9ligibles pour un transfert
+rm.savedsearch.transferRecordsDesc=Tous les documents d'archives et dossiers d'archives actuellement \u00e9ligibles pour un transfert.
+rm.savedsearch.destructionRecordsName=Documents d'archives et dossiers d'archives \u00e9ligibles pour une destruction
+rm.savedsearch.destructionRecordsDesc=Tous les documents d'archives actuellement \u00e9ligibles pour destruction.
+rm.savedsearch.frozenRecordsName= Documents d'archives et dossiers d'archives suspendus
rm.savedsearch.frozenRecordsDesc=Tous les documents d'archives et dossiers d'archives actuellement suspendus.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_it.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_it.properties
index 90fedf3fcd..325d50264e 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_it.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_it.properties
@@ -1,25 +1,25 @@
-rm.hold.name=Sospensione
-
-## Default roles
-rm.role.extendedReaders=Utenti con permessi di lettura
-rm.role.extendedWriters=Utenti con permessi di scrittura
-rm.role.user=Utente di Records Management
-rm.role.powerUser=Power user di Records Management
-rm.role.securityOfficer=Responsabile della sicurezza di Records Management
-rm.role.recordsManager=Manager di Records Management
-rm.role.administrator=Amministratore di Records Management
-rm.role.all=Tutti i ruoli di Records Management
-
-## Default searches
-rm.savedsearch.vitalRecordsName=Record fondamentali da esaminare
-rm.savedsearch.vitalRecordsDesc=Tutti i record attualmente da esaminare.
-rm.savedsearch.incompleteRecordsName=Record incompleti
-rm.savedsearch.incompleteRecordsDesc=Tutti i record incompleti.
-rm.savedsearch.cutoffRecordsName=Record e cartelle di record idonei per il cut off
-rm.savedsearch.cutoffRecordsDesc=Tutti i record e le cartelle di record attualmente idonei per il cut off.
-rm.savedsearch.transferRecordsName=Record e cartelle di record idonei per il trasferimento
-rm.savedsearch.transferRecordsDesc=Tutti i record e le cartelle di record idonei per il trasferimento.
-rm.savedsearch.destructionRecordsName=Record e cartelle di record idonei per l'eliminazione definitiva
-rm.savedsearch.destructionRecordsDesc=Tutti i record attuali idonei per l'eliminazione definitiva.
-rm.savedsearch.frozenRecordsName= Record e cartelle di record in sospeso
+rm.hold.name=Sospensione
+
+## Default roles
+rm.role.extendedReaders=Utenti con permessi di lettura
+rm.role.extendedWriters=Utenti con permessi di scrittura
+rm.role.user=Utente di Records Management
+rm.role.powerUser=Power user di Records Management
+rm.role.securityOfficer=Responsabile della sicurezza di Records Management
+rm.role.recordsManager=Manager di Records Management
+rm.role.administrator=Amministratore di Records Management
+rm.role.all=Tutti i ruoli di Records Management
+
+## Default searches
+rm.savedsearch.vitalRecordsName=Record fondamentali da esaminare
+rm.savedsearch.vitalRecordsDesc=Tutti i record attualmente da esaminare.
+rm.savedsearch.incompleteRecordsName=Record incompleti
+rm.savedsearch.incompleteRecordsDesc=Tutti i record incompleti.
+rm.savedsearch.cutoffRecordsName=Record e cartelle di record idonei per il cut off
+rm.savedsearch.cutoffRecordsDesc=Tutti i record e le cartelle di record attualmente idonei per il cut off.
+rm.savedsearch.transferRecordsName=Record e cartelle di record idonei per il trasferimento
+rm.savedsearch.transferRecordsDesc=Tutti i record e le cartelle di record idonei per il trasferimento.
+rm.savedsearch.destructionRecordsName=Record e cartelle di record idonei per l'eliminazione definitiva
+rm.savedsearch.destructionRecordsDesc=Tutti i record attuali idonei per l'eliminazione definitiva.
+rm.savedsearch.frozenRecordsName= Record e cartelle di record in sospeso
rm.savedsearch.frozenRecordsDesc=Tutti i record e le cartelle di record attuali in sospeso.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_ja.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_ja.properties
index 404f1fee48..5fba29c388 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_ja.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_ja.properties
@@ -1,25 +1,25 @@
-rm.hold.name=\u30db\u30fc\u30eb\u30c9
-
-## Default roles
-rm.role.extendedReaders=\u7d44\u307f\u8fbc\u307f\u8aad\u8005
-rm.role.extendedWriters=\u7d44\u307f\u8fbc\u307f\u8457\u8005
-rm.role.user=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u30e6\u30fc\u30b6\u30fc
-rm.role.powerUser=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u30d1\u30ef\u30fc\u30e6\u30fc\u30b6\u30fc
-rm.role.securityOfficer=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u5f79\u54e1
-rm.role.recordsManager=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u30de\u30cd\u30fc\u30b8\u30e3\u30fc
-rm.role.administrator=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u7ba1\u7406\u8005
-rm.role.all=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u3059\u3079\u3066\u306e\u5f79\u5272
-
-## Default searches
-rm.savedsearch.vitalRecordsName=\u30ec\u30d3\u30e5\u30fc\u4e88\u5b9a\u306e\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9
-rm.savedsearch.vitalRecordsDesc=\u73fe\u5728\u30ec\u30d3\u30e5\u30fc\u4e88\u5b9a\u306e\u3059\u3079\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u3002
-rm.savedsearch.incompleteRecordsName=\u672a\u5b8c\u4e86\u30ec\u30b3\u30fc\u30c9
-rm.savedsearch.incompleteRecordsDesc=\u3059\u3079\u3066\u306e\u672a\u5b8c\u4e86\u30ec\u30b3\u30fc\u30c9\u3002
-rm.savedsearch.cutoffRecordsName=\u30ab\u30c3\u30c8\u30aa\u30d5\u5bfe\u8c61\u306e\u30ec\u30b3\u30fc\u30c9\u304a\u3088\u3073\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
-rm.savedsearch.cutoffRecordsDesc=\u73fe\u5728\u30ab\u30c3\u30c8\u30aa\u30d5\u306e\u6761\u4ef6\u3092\u6e80\u305f\u3057\u3066\u3044\u308b\u3059\u3079\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u3068\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3002
-rm.savedsearch.transferRecordsName=\u8ee2\u9001\u6761\u4ef6\u3092\u6e80\u305f\u3057\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u304a\u3088\u3073\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
-rm.savedsearch.transferRecordsDesc=\u73fe\u5728\u8ee2\u9001\u6761\u4ef6\u3092\u6e80\u305f\u3057\u3066\u3044\u308b\u3059\u3079\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3068\u30ec\u30b3\u30fc\u30c9\u3002
-rm.savedsearch.destructionRecordsName=\u5ec3\u68c4\u6761\u4ef6\u3092\u6e80\u305f\u3057\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u3068\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
-rm.savedsearch.destructionRecordsDesc=\u73fe\u5728\u5ec3\u68c4\u6761\u4ef6\u3092\u6e80\u305f\u3057\u3066\u3044\u308b\u3059\u3079\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u3002
-rm.savedsearch.frozenRecordsName= \u30db\u30fc\u30eb\u30c9\u4e2d\u306e\u30ec\u30b3\u30fc\u30c9\u304a\u3088\u3073\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
+rm.hold.name=\u30db\u30fc\u30eb\u30c9
+
+## Default roles
+rm.role.extendedReaders=\u7d44\u307f\u8fbc\u307f\u8aad\u8005
+rm.role.extendedWriters=\u7d44\u307f\u8fbc\u307f\u8457\u8005
+rm.role.user=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u30e6\u30fc\u30b6\u30fc
+rm.role.powerUser=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u30d1\u30ef\u30fc\u30e6\u30fc\u30b6\u30fc
+rm.role.securityOfficer=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u5f79\u54e1
+rm.role.recordsManager=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u30de\u30cd\u30fc\u30b8\u30e3\u30fc
+rm.role.administrator=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u7ba1\u7406\u8005
+rm.role.all=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u3059\u3079\u3066\u306e\u5f79\u5272
+
+## Default searches
+rm.savedsearch.vitalRecordsName=\u30ec\u30d3\u30e5\u30fc\u4e88\u5b9a\u306e\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9
+rm.savedsearch.vitalRecordsDesc=\u73fe\u5728\u30ec\u30d3\u30e5\u30fc\u4e88\u5b9a\u306e\u3059\u3079\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u3002
+rm.savedsearch.incompleteRecordsName=\u672a\u5b8c\u4e86\u30ec\u30b3\u30fc\u30c9
+rm.savedsearch.incompleteRecordsDesc=\u3059\u3079\u3066\u306e\u672a\u5b8c\u4e86\u30ec\u30b3\u30fc\u30c9\u3002
+rm.savedsearch.cutoffRecordsName=\u30ab\u30c3\u30c8\u30aa\u30d5\u5bfe\u8c61\u306e\u30ec\u30b3\u30fc\u30c9\u304a\u3088\u3073\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
+rm.savedsearch.cutoffRecordsDesc=\u73fe\u5728\u30ab\u30c3\u30c8\u30aa\u30d5\u306e\u6761\u4ef6\u3092\u6e80\u305f\u3057\u3066\u3044\u308b\u3059\u3079\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u3068\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3002
+rm.savedsearch.transferRecordsName=\u8ee2\u9001\u6761\u4ef6\u3092\u6e80\u305f\u3057\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u304a\u3088\u3073\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
+rm.savedsearch.transferRecordsDesc=\u73fe\u5728\u8ee2\u9001\u6761\u4ef6\u3092\u6e80\u305f\u3057\u3066\u3044\u308b\u3059\u3079\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3068\u30ec\u30b3\u30fc\u30c9\u3002
+rm.savedsearch.destructionRecordsName=\u5ec3\u68c4\u6761\u4ef6\u3092\u6e80\u305f\u3057\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u3068\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
+rm.savedsearch.destructionRecordsDesc=\u73fe\u5728\u5ec3\u68c4\u6761\u4ef6\u3092\u6e80\u305f\u3057\u3066\u3044\u308b\u3059\u3079\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u3002
+rm.savedsearch.frozenRecordsName= \u30db\u30fc\u30eb\u30c9\u4e2d\u306e\u30ec\u30b3\u30fc\u30c9\u304a\u3088\u3073\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
rm.savedsearch.frozenRecordsDesc=\u73fe\u5728\u30db\u30fc\u30eb\u30c9\u4e2d\u306e\u3059\u3079\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u3068\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3002
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_nb.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_nb.properties
index 77513a4c7d..c8a520fa20 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_nb.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_nb.properties
@@ -1,25 +1,25 @@
-rm.hold.name=Hold
-
-## Default roles
-rm.role.extendedReaders=P\u00e5 plass lesere
-rm.role.extendedWriters=P\u00e5 plass skribenter
-rm.role.user=Bruker av oppf\u00f8ringsh\u00e5ndtering
-rm.role.powerUser=Priviligert bruker av oppf\u00f8ringsh\u00e5ndtering
-rm.role.securityOfficer=Sikkerhetsansvarlig ved oppf\u00f8ringsh\u00e5ndtering
-rm.role.recordsManager=Ansvarlig ved oppf\u00f8ringsh\u00e5ndtering
-rm.role.administrator=Administrator ved oppf\u00f8ringsh\u00e5ndtering
-rm.role.all=Alle oppf\u00f8ringsh\u00e5ndteringsrollene
-
-## Default searches
-rm.savedsearch.vitalRecordsName=Sv\u00e6rt viktige oppf\u00f8ringer som skal gjennomg\u00e5s
-rm.savedsearch.vitalRecordsDesc=Alle oppf\u00f8ringer som n\u00e5 skal gjennomg\u00e5s.
-rm.savedsearch.incompleteRecordsName=Ufullstendige oppf\u00f8ringer
-rm.savedsearch.incompleteRecordsDesc=Alle ufullstendige oppf\u00f8ringer.
-rm.savedsearch.cutoffRecordsName=Oppf\u00f8ringer og oppf\u00f8ringsmapper som er kvalifisert til cut off
-rm.savedsearch.cutoffRecordsDesc=Alle oppf\u00f8ringer og oppf\u00f8ringsmapper som for tiden er kvalifisert til cut off.
-rm.savedsearch.transferRecordsName=Oppf\u00f8ringer og oppf\u00f8ringsmapper som er kvalifisert til overf\u00f8ring
-rm.savedsearch.transferRecordsDesc=Alle oppf\u00f8ringmapper og oppf\u00f8ringer som for tiden er kvalifisert til overf\u00f8ring.
-rm.savedsearch.destructionRecordsName=Oppf\u00f8ringer og oppf\u00f8ringsmapper som er kvalifisert til destruksjon
-rm.savedsearch.destructionRecordsDesc=Alle oppf\u00f8ringer som for tiden er kvalifisert til destruksjon.
-rm.savedsearch.frozenRecordsName= Oppf\u00f8ringer og oppf\u00f8ringsmapper p\u00e5 hold
+rm.hold.name=Hold
+
+## Default roles
+rm.role.extendedReaders=P\u00e5 plass lesere
+rm.role.extendedWriters=P\u00e5 plass skribenter
+rm.role.user=Bruker av oppf\u00f8ringsh\u00e5ndtering
+rm.role.powerUser=Priviligert bruker av oppf\u00f8ringsh\u00e5ndtering
+rm.role.securityOfficer=Sikkerhetsansvarlig ved oppf\u00f8ringsh\u00e5ndtering
+rm.role.recordsManager=Ansvarlig ved oppf\u00f8ringsh\u00e5ndtering
+rm.role.administrator=Administrator ved oppf\u00f8ringsh\u00e5ndtering
+rm.role.all=Alle oppf\u00f8ringsh\u00e5ndteringsrollene
+
+## Default searches
+rm.savedsearch.vitalRecordsName=Sv\u00e6rt viktige oppf\u00f8ringer som skal gjennomg\u00e5s
+rm.savedsearch.vitalRecordsDesc=Alle oppf\u00f8ringer som n\u00e5 skal gjennomg\u00e5s.
+rm.savedsearch.incompleteRecordsName=Ufullstendige oppf\u00f8ringer
+rm.savedsearch.incompleteRecordsDesc=Alle ufullstendige oppf\u00f8ringer.
+rm.savedsearch.cutoffRecordsName=Oppf\u00f8ringer og oppf\u00f8ringsmapper som er kvalifisert til cut off
+rm.savedsearch.cutoffRecordsDesc=Alle oppf\u00f8ringer og oppf\u00f8ringsmapper som for tiden er kvalifisert til cut off.
+rm.savedsearch.transferRecordsName=Oppf\u00f8ringer og oppf\u00f8ringsmapper som er kvalifisert til overf\u00f8ring
+rm.savedsearch.transferRecordsDesc=Alle oppf\u00f8ringmapper og oppf\u00f8ringer som for tiden er kvalifisert til overf\u00f8ring.
+rm.savedsearch.destructionRecordsName=Oppf\u00f8ringer og oppf\u00f8ringsmapper som er kvalifisert til destruksjon
+rm.savedsearch.destructionRecordsDesc=Alle oppf\u00f8ringer som for tiden er kvalifisert til destruksjon.
+rm.savedsearch.frozenRecordsName= Oppf\u00f8ringer og oppf\u00f8ringsmapper p\u00e5 hold
rm.savedsearch.frozenRecordsDesc=Alle oppf\u00f8ringer og oppf\u00f8ringsmapper for tiden p\u00e5 hold.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_nl.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_nl.properties
index ad2b9cbe63..fe711fe845 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_nl.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_nl.properties
@@ -1,25 +1,25 @@
-rm.hold.name=Wachtstand
-
-## Default roles
-rm.role.extendedReaders=Ge\u00efntegreerde lezers
-rm.role.extendedWriters=Ge\u00efntegreerde schrijvers
-rm.role.user=Gebruiker Record Management
-rm.role.powerUser=Hoofdgebruiker Record Management
-rm.role.securityOfficer=Beveiligingsmedewerker Record Management
-rm.role.recordsManager=Manager Record Management
-rm.role.administrator=Beheerder Record Management
-rm.role.all=Alle rollen voor Record Management
-
-## Default searches
-rm.savedsearch.vitalRecordsName=Vitale records gereed voor revisie
-rm.savedsearch.vitalRecordsDesc=Alle records die momenteel gereed zijn voor revisie.
-rm.savedsearch.incompleteRecordsName=Niet-afgeronde records
-rm.savedsearch.incompleteRecordsDesc=Alle niet-afgeronde records.
-rm.savedsearch.cutoffRecordsName=Records en archiefmappen die in aanmerking komen voor afsluiten
-rm.savedsearch.cutoffRecordsDesc=Alle records en archiefmappen die momenteel in aanmerking komen voor afsluiten
-rm.savedsearch.transferRecordsName=Records en archiefmappen die in aanmerking komen voor overzetten
-rm.savedsearch.transferRecordsDesc=Alle records en archiefmappen die momenteel in aanmerking komen voor overzetten.
-rm.savedsearch.destructionRecordsName=Records en archiefmappen die in aanmerking komen voor vernietiging
-rm.savedsearch.destructionRecordsDesc=Alle records die momenteel in aanmerking komen voor vernietiging.
-rm.savedsearch.frozenRecordsName= Records en archiefmappen die in wachtstand zijn
+rm.hold.name=Wachtstand
+
+## Default roles
+rm.role.extendedReaders=Ge\u00efntegreerde lezers
+rm.role.extendedWriters=Ge\u00efntegreerde schrijvers
+rm.role.user=Gebruiker Record Management
+rm.role.powerUser=Hoofdgebruiker Record Management
+rm.role.securityOfficer=Beveiligingsmedewerker Record Management
+rm.role.recordsManager=Manager Record Management
+rm.role.administrator=Beheerder Record Management
+rm.role.all=Alle rollen voor Record Management
+
+## Default searches
+rm.savedsearch.vitalRecordsName=Vitale records gereed voor revisie
+rm.savedsearch.vitalRecordsDesc=Alle records die momenteel gereed zijn voor revisie.
+rm.savedsearch.incompleteRecordsName=Niet-afgeronde records
+rm.savedsearch.incompleteRecordsDesc=Alle niet-afgeronde records.
+rm.savedsearch.cutoffRecordsName=Records en archiefmappen die in aanmerking komen voor afsluiten
+rm.savedsearch.cutoffRecordsDesc=Alle records en archiefmappen die momenteel in aanmerking komen voor afsluiten
+rm.savedsearch.transferRecordsName=Records en archiefmappen die in aanmerking komen voor overzetten
+rm.savedsearch.transferRecordsDesc=Alle records en archiefmappen die momenteel in aanmerking komen voor overzetten.
+rm.savedsearch.destructionRecordsName=Records en archiefmappen die in aanmerking komen voor vernietiging
+rm.savedsearch.destructionRecordsDesc=Alle records die momenteel in aanmerking komen voor vernietiging.
+rm.savedsearch.frozenRecordsName= Records en archiefmappen die in wachtstand zijn
rm.savedsearch.frozenRecordsDesc=Alle records en archiefmappen die momenteel in wachtstand zijn.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_pt_BR.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_pt_BR.properties
index fc74cca443..5e05519d92 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_pt_BR.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_pt_BR.properties
@@ -1,25 +1,25 @@
-rm.hold.name=Manter
-
-## Default roles
-rm.role.extendedReaders=Leitores no local
-rm.role.extendedWriters=Gravadores no local
-rm.role.user=Usu\u00e1rio do Records Management
-rm.role.powerUser=Usu\u00e1rio avan\u00e7ado do Records Management
-rm.role.securityOfficer=Diretor de seguran\u00e7a do Records Management
-rm.role.recordsManager=Gerente do Records Management
-rm.role.administrator=Administrador do Records Management
-rm.role.all=Todas as fun\u00e7\u00f5es do Records Management
-
-## Default searches
-rm.savedsearch.vitalRecordsName=Documentos arquiv\u00edsticos vitais em prazo para revis\u00e3o
-rm.savedsearch.vitalRecordsDesc=Todos os documentos arquiv\u00edsticos atualmente no prazo para revis\u00e3o.
-rm.savedsearch.incompleteRecordsName=Documentos arquiv\u00edsticos incompletos
-rm.savedsearch.incompleteRecordsDesc=Todos os documentos arquiv\u00edsticos incompletos.
-rm.savedsearch.cutoffRecordsName=Documentos arquiv\u00edsticos e pastas de documentos arquiv\u00edsticos qualificados para corte
-rm.savedsearch.cutoffRecordsDesc=Todos os documentos arquiv\u00edsticos e pastas de documentos arquiv\u00edsticos qualificados para corte.
-rm.savedsearch.transferRecordsName=Documentos arquiv\u00edsticos e pastas de documentos arquiv\u00edsticos qualificados para transfer\u00eancia
-rm.savedsearch.transferRecordsDesc=Todos os documentos arquiv\u00edsticos e pastas de documentos arquiv\u00edsticos qualificados para transfer\u00eancia.
-rm.savedsearch.destructionRecordsName=Documentos arquiv\u00edsticos e pastas de documentos arquiv\u00edsticos qualificados para destrui\u00e7\u00e3o
-rm.savedsearch.destructionRecordsDesc=Todos os documentos arquiv\u00edsticos atualmente qualificados para destrui\u00e7\u00e3o.
-rm.savedsearch.frozenRecordsName= Documentos arquiv\u00edsticos e pastas de documentos arquiv\u00edsticos em espera
+rm.hold.name=Manter
+
+## Default roles
+rm.role.extendedReaders=Leitores no local
+rm.role.extendedWriters=Gravadores no local
+rm.role.user=Usu\u00e1rio do Records Management
+rm.role.powerUser=Usu\u00e1rio avan\u00e7ado do Records Management
+rm.role.securityOfficer=Diretor de seguran\u00e7a do Records Management
+rm.role.recordsManager=Gerente do Records Management
+rm.role.administrator=Administrador do Records Management
+rm.role.all=Todas as fun\u00e7\u00f5es do Records Management
+
+## Default searches
+rm.savedsearch.vitalRecordsName=Documentos arquiv\u00edsticos vitais em prazo para revis\u00e3o
+rm.savedsearch.vitalRecordsDesc=Todos os documentos arquiv\u00edsticos atualmente no prazo para revis\u00e3o.
+rm.savedsearch.incompleteRecordsName=Documentos arquiv\u00edsticos incompletos
+rm.savedsearch.incompleteRecordsDesc=Todos os documentos arquiv\u00edsticos incompletos.
+rm.savedsearch.cutoffRecordsName=Documentos arquiv\u00edsticos e pastas de documentos arquiv\u00edsticos qualificados para corte
+rm.savedsearch.cutoffRecordsDesc=Todos os documentos arquiv\u00edsticos e pastas de documentos arquiv\u00edsticos qualificados para corte.
+rm.savedsearch.transferRecordsName=Documentos arquiv\u00edsticos e pastas de documentos arquiv\u00edsticos qualificados para transfer\u00eancia
+rm.savedsearch.transferRecordsDesc=Todos os documentos arquiv\u00edsticos e pastas de documentos arquiv\u00edsticos qualificados para transfer\u00eancia.
+rm.savedsearch.destructionRecordsName=Documentos arquiv\u00edsticos e pastas de documentos arquiv\u00edsticos qualificados para destrui\u00e7\u00e3o
+rm.savedsearch.destructionRecordsDesc=Todos os documentos arquiv\u00edsticos atualmente qualificados para destrui\u00e7\u00e3o.
+rm.savedsearch.frozenRecordsName= Documentos arquiv\u00edsticos e pastas de documentos arquiv\u00edsticos em espera
rm.savedsearch.frozenRecordsDesc=Todos os documentos arquiv\u00edsticos e pastas de documentos arquiv\u00edsticos atualmente em espera.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_ru.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_ru.properties
index 1484e776ba..85d0f7e858 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_ru.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_ru.properties
@@ -1,25 +1,25 @@
-rm.hold.name=\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430
-
-## Default roles
-rm.role.extendedReaders=\u041b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0447\u0438\u0442\u0430\u0442\u0435\u043b\u0438
-rm.role.extendedWriters=\u041b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0430\u0433\u0435\u043d\u0442\u044b \u0437\u0430\u043f\u0438\u0441\u0438
-rm.role.user=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-rm.role.powerUser=\u041a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-rm.role.securityOfficer=\u0421\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u043a \u0441\u043b\u0443\u0436\u0431\u044b \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-rm.role.recordsManager=\u041c\u0435\u043d\u0435\u0434\u0436\u0435\u0440 \u043f\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-rm.role.administrator=\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440 \u043f\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-rm.role.all=\u0412\u0441\u0435 \u0440\u043e\u043b\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
-
-## Default searches
-rm.savedsearch.vitalRecordsName=\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438, \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435
-rm.savedsearch.vitalRecordsDesc=\u0412\u0441\u0435 \u0437\u0430\u043f\u0438\u0441\u0438, \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435 \u0432 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442.
-rm.savedsearch.incompleteRecordsName=\u041d\u0435\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-rm.savedsearch.incompleteRecordsDesc=\u0412\u0441\u0435 \u043d\u0435\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438.
-rm.savedsearch.cutoffRecordsName=\u0417\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0434\u043b\u044f \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u044f
-rm.savedsearch.cutoffRecordsDesc=\u0412\u0441\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0434\u043b\u044f \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u044f \u0432 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442.
-rm.savedsearch.transferRecordsName=\u0417\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438
-rm.savedsearch.transferRecordsDesc=\u0412\u0441\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442.
-rm.savedsearch.destructionRecordsName=\u0417\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0434\u043b\u044f \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u044f
-rm.savedsearch.destructionRecordsDesc=\u0412\u0441\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0434\u043b\u044f \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u044f \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442.
-rm.savedsearch.frozenRecordsName= \u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+rm.hold.name=\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430
+
+## Default roles
+rm.role.extendedReaders=\u041b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0447\u0438\u0442\u0430\u0442\u0435\u043b\u0438
+rm.role.extendedWriters=\u041b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0430\u0433\u0435\u043d\u0442\u044b \u0437\u0430\u043f\u0438\u0441\u0438
+rm.role.user=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+rm.role.powerUser=\u041a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+rm.role.securityOfficer=\u0421\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u043a \u0441\u043b\u0443\u0436\u0431\u044b \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+rm.role.recordsManager=\u041c\u0435\u043d\u0435\u0434\u0436\u0435\u0440 \u043f\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+rm.role.administrator=\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440 \u043f\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+rm.role.all=\u0412\u0441\u0435 \u0440\u043e\u043b\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
+
+## Default searches
+rm.savedsearch.vitalRecordsName=\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438, \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435
+rm.savedsearch.vitalRecordsDesc=\u0412\u0441\u0435 \u0437\u0430\u043f\u0438\u0441\u0438, \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435 \u0432 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442.
+rm.savedsearch.incompleteRecordsName=\u041d\u0435\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+rm.savedsearch.incompleteRecordsDesc=\u0412\u0441\u0435 \u043d\u0435\u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438.
+rm.savedsearch.cutoffRecordsName=\u0417\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0434\u043b\u044f \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u044f
+rm.savedsearch.cutoffRecordsDesc=\u0412\u0441\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0434\u043b\u044f \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u044f \u0432 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442.
+rm.savedsearch.transferRecordsName=\u0417\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438
+rm.savedsearch.transferRecordsDesc=\u0412\u0441\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442.
+rm.savedsearch.destructionRecordsName=\u0417\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0434\u043b\u044f \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u044f
+rm.savedsearch.destructionRecordsDesc=\u0412\u0441\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0434\u043b\u044f \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u044f \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442.
+rm.savedsearch.frozenRecordsName= \u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
rm.savedsearch.frozenRecordsDesc=\u0412\u0441\u0435 \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_zh_CN.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_zh_CN.properties
index 8c6f68b7ab..fbd441193a 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_zh_CN.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system_zh_CN.properties
@@ -1,25 +1,25 @@
-rm.hold.name=\u4fdd\u5b58
-
-## Default roles
-rm.role.extendedReaders=\u5c31\u5730\u8bfb\u8005
-rm.role.extendedWriters=\u5c31\u5730\u4f5c\u8005
-rm.role.user=\u8bb0\u5f55\u7ba1\u7406\u7528\u6237
-rm.role.powerUser=\u8bb0\u5f55\u7ba1\u7406\u9ad8\u7ea7\u7528\u6237
-rm.role.securityOfficer=\u8bb0\u5f55\u7ba1\u7406\u5b89\u5168\u5b98\u5458
-rm.role.recordsManager=\u8bb0\u5f55\u7ba1\u7406\u7684\u7ba1\u7406\u4eba\u5458
-rm.role.administrator=\u8bb0\u5f55\u7ba1\u7406\u7684\u7ba1\u7406\u5458
-rm.role.all=\u6240\u6709\u8bb0\u5f55\u7ba1\u7406\u89d2\u8272
-
-## Default searches
-rm.savedsearch.vitalRecordsName=\u6838\u5fc3\u8bb0\u5f55\u7684\u5ba1\u67e5\u5230\u671f
-rm.savedsearch.vitalRecordsDesc=\u6240\u6709\u8bb0\u5f55\u7684\u5ba1\u67e5\u5f53\u524d\u5df2\u5230\u671f\u3002
-rm.savedsearch.incompleteRecordsName=\u4e0d\u5b8c\u6574\u7684\u8bb0\u5f55
-rm.savedsearch.incompleteRecordsDesc=\u6240\u6709\u4e0d\u5b8c\u6574\u7684\u8bb0\u5f55\u3002
-rm.savedsearch.cutoffRecordsName=\u53ef\u4e2d\u65ad\u7684\u8bb0\u5f55\u548c\u8bb0\u5f55\u6587\u4ef6\u5939
-rm.savedsearch.cutoffRecordsDesc=\u5f53\u524d\u53ef\u4e2d\u65ad\u7684\u6240\u6709\u8bb0\u5f55\u548c\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
-rm.savedsearch.transferRecordsName=\u53ef\u79fb\u4ea4\u7684\u8bb0\u5f55\u548c\u8bb0\u5f55\u6587\u4ef6\u5939
-rm.savedsearch.transferRecordsDesc=\u5f53\u524d\u53ef\u79fb\u4ea4\u7684\u6240\u6709\u8bb0\u5f55\u6587\u4ef6\u5939\u548c\u8bb0\u5f55\u3002
-rm.savedsearch.destructionRecordsName=\u53ef\u9500\u6bc1\u7684\u8bb0\u5f55\u548c\u8bb0\u5f55\u6587\u4ef6\u5939
-rm.savedsearch.destructionRecordsDesc=\u5f53\u524d\u53ef\u9500\u6bc1\u7684\u6240\u6709\u8bb0\u5f55\u3002
-rm.savedsearch.frozenRecordsName= \u4fdd\u5b58\u4e2d\u7684\u8bb0\u5f55\u548c\u8bb0\u5f55\u6587\u4ef6\u5939
+rm.hold.name=\u4fdd\u5b58
+
+## Default roles
+rm.role.extendedReaders=\u5c31\u5730\u8bfb\u8005
+rm.role.extendedWriters=\u5c31\u5730\u4f5c\u8005
+rm.role.user=\u8bb0\u5f55\u7ba1\u7406\u7528\u6237
+rm.role.powerUser=\u8bb0\u5f55\u7ba1\u7406\u9ad8\u7ea7\u7528\u6237
+rm.role.securityOfficer=\u8bb0\u5f55\u7ba1\u7406\u5b89\u5168\u5b98\u5458
+rm.role.recordsManager=\u8bb0\u5f55\u7ba1\u7406\u7684\u7ba1\u7406\u4eba\u5458
+rm.role.administrator=\u8bb0\u5f55\u7ba1\u7406\u7684\u7ba1\u7406\u5458
+rm.role.all=\u6240\u6709\u8bb0\u5f55\u7ba1\u7406\u89d2\u8272
+
+## Default searches
+rm.savedsearch.vitalRecordsName=\u6838\u5fc3\u8bb0\u5f55\u7684\u5ba1\u67e5\u5230\u671f
+rm.savedsearch.vitalRecordsDesc=\u6240\u6709\u8bb0\u5f55\u7684\u5ba1\u67e5\u5f53\u524d\u5df2\u5230\u671f\u3002
+rm.savedsearch.incompleteRecordsName=\u4e0d\u5b8c\u6574\u7684\u8bb0\u5f55
+rm.savedsearch.incompleteRecordsDesc=\u6240\u6709\u4e0d\u5b8c\u6574\u7684\u8bb0\u5f55\u3002
+rm.savedsearch.cutoffRecordsName=\u53ef\u4e2d\u65ad\u7684\u8bb0\u5f55\u548c\u8bb0\u5f55\u6587\u4ef6\u5939
+rm.savedsearch.cutoffRecordsDesc=\u5f53\u524d\u53ef\u4e2d\u65ad\u7684\u6240\u6709\u8bb0\u5f55\u548c\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
+rm.savedsearch.transferRecordsName=\u53ef\u79fb\u4ea4\u7684\u8bb0\u5f55\u548c\u8bb0\u5f55\u6587\u4ef6\u5939
+rm.savedsearch.transferRecordsDesc=\u5f53\u524d\u53ef\u79fb\u4ea4\u7684\u6240\u6709\u8bb0\u5f55\u6587\u4ef6\u5939\u548c\u8bb0\u5f55\u3002
+rm.savedsearch.destructionRecordsName=\u53ef\u9500\u6bc1\u7684\u8bb0\u5f55\u548c\u8bb0\u5f55\u6587\u4ef6\u5939
+rm.savedsearch.destructionRecordsDesc=\u5f53\u524d\u53ef\u9500\u6bc1\u7684\u6240\u6709\u8bb0\u5f55\u3002
+rm.savedsearch.frozenRecordsName= \u4fdd\u5b58\u4e2d\u7684\u8bb0\u5f55\u548c\u8bb0\u5f55\u6587\u4ef6\u5939
rm.savedsearch.frozenRecordsDesc=\u5f53\u524d\u4fdd\u5b58\u4e2d\u7684\u6240\u6709\u8bb0\u5f55\u548c\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template.properties
index b3b73bbed9..98b96881a9 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template.properties
@@ -1,27 +1,27 @@
-# File Report Template
-file.report.acession.report=Accession Report
-file.report.date.format=EEE MMM dd HH:mm:ss zzz yyyy
-file.report.declared.by=declared by
-file.report.declared.on=on
-file.report.destroyed=Destroyed
-file.report.destroyed.records=Destroyed Records
-file.report.destruction.report=Destruction Report
-file.report.disposition.authority=Retention Authority
-file.report.disposition.instructions=Retention Instructions
-file.report.nara=NARA
-file.report.transfer.date=Transfer Date
-file.report.transfer.location=Transfer Location
-file.report.transfer.report=Transfer Report
-file.report.transferred.items=Transferred Items
-file.report.performed.by=Performed By
-file.report.record=Record
-file.report.record.folder=Record Folder
-file.report.unique.folder.identifier=Unique Folder ID
-file.report.unique.record.identifier=Unique Record ID
-file.report.hold.report=Hold Report
-file.report.hold.name=Hold Name
-file.report.hold.description=Hold Description
-file.report.hold.reason=Hold Reason
-file.report.hold.held=Held
-file.report.createdby=Created By
+# File Report Template
+file.report.acession.report=Accession Report
+file.report.date.format=EEE MMM dd HH:mm:ss zzz yyyy
+file.report.declared.by=declared by
+file.report.declared.on=on
+file.report.destroyed=Destroyed
+file.report.destroyed.records=Destroyed Records
+file.report.destruction.report=Destruction Report
+file.report.disposition.authority=Retention Authority
+file.report.disposition.instructions=Retention Instructions
+file.report.nara=NARA
+file.report.transfer.date=Transfer Date
+file.report.transfer.location=Transfer Location
+file.report.transfer.report=Transfer Report
+file.report.transferred.items=Transferred Items
+file.report.performed.by=Performed By
+file.report.record=Record
+file.report.record.folder=Record Folder
+file.report.unique.folder.identifier=Unique Folder ID
+file.report.unique.record.identifier=Unique Record ID
+file.report.hold.report=Hold Report
+file.report.hold.name=Hold Name
+file.report.hold.description=Hold Description
+file.report.hold.reason=Hold Reason
+file.report.hold.held=Held
+file.report.createdby=Created By
file.report.createdon=Created On
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_de.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_de.properties
index c91207a4f8..1afc21f513 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_de.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_de.properties
@@ -1,27 +1,27 @@
-# File Report Template
-file.report.acession.report=Bericht zur Aufnahme
-file.report.date.format=EEE MMM dd HH:mm:ss zzz yyyy
-file.report.declared.by=deklariert von
-file.report.declared.on=am
-file.report.destroyed=Vernichtet
-file.report.destroyed.records=Vernichtete Records
-file.report.destruction.report=Vernichtungsprotokoll
-file.report.disposition.authority=Aufbewahrungs-Authority
-file.report.disposition.instructions=Aufbewahrungsanweisungen
-file.report.nara=NARA
-file.report.transfer.date=\u00dcbertragungsdatum
-file.report.transfer.location=\u00dcbertragungsort
-file.report.transfer.report=\u00dcbertragungsbericht
-file.report.transferred.items=\u00dcbertragene Elemente
-file.report.performed.by=Durchgef\u00fchrt von
-file.report.record=Record
-file.report.record.folder=Record-Ordner
-file.report.unique.folder.identifier=Eindeutige Ordner-ID
-file.report.unique.record.identifier=Eindeutige Record-ID
-file.report.hold.report=Sperrbericht
-file.report.hold.name=Sperrname
-file.report.hold.description=Sperrbeschreibung
-file.report.hold.reason=Sperrgrund
-file.report.hold.held=Gesperrt
-file.report.createdby=Erstellt von
+# File Report Template
+file.report.acession.report=Bericht zur Aufnahme
+file.report.date.format=EEE MMM dd HH:mm:ss zzz yyyy
+file.report.declared.by=deklariert von
+file.report.declared.on=am
+file.report.destroyed=Vernichtet
+file.report.destroyed.records=Vernichtete Records
+file.report.destruction.report=Vernichtungsprotokoll
+file.report.disposition.authority=Aufbewahrungs-Authority
+file.report.disposition.instructions=Aufbewahrungsanweisungen
+file.report.nara=NARA
+file.report.transfer.date=\u00dcbertragungsdatum
+file.report.transfer.location=\u00dcbertragungsort
+file.report.transfer.report=\u00dcbertragungsbericht
+file.report.transferred.items=\u00dcbertragene Elemente
+file.report.performed.by=Durchgef\u00fchrt von
+file.report.record=Record
+file.report.record.folder=Record-Ordner
+file.report.unique.folder.identifier=Eindeutige Ordner-ID
+file.report.unique.record.identifier=Eindeutige Record-ID
+file.report.hold.report=Sperrbericht
+file.report.hold.name=Sperrname
+file.report.hold.description=Sperrbeschreibung
+file.report.hold.reason=Sperrgrund
+file.report.hold.held=Gesperrt
+file.report.createdby=Erstellt von
file.report.createdon=Erstellt am
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_es.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_es.properties
index 287a23a0f3..7138821ae2 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_es.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_es.properties
@@ -1,27 +1,27 @@
-# File Report Template
-file.report.acession.report=Informe de adhesi\u00f3n
-file.report.date.format=EEE MMM dd HH:mm:ss zzz yyyy
-file.report.declared.by=declarado por
-file.report.declared.on=en
-file.report.destroyed=Destruido
-file.report.destroyed.records=Documentos de archivo destruidos
-file.report.destruction.report=Informe de destrucci\u00f3n
-file.report.disposition.authority=Autoridad de retenci\u00f3n
-file.report.disposition.instructions=Instrucciones de retenci\u00f3n
-file.report.nara=NARA
-file.report.transfer.date=Fecha de transferencia
-file.report.transfer.location=Ubicaci\u00f3n de transferencia
-file.report.transfer.report=Informe de transferencia
-file.report.transferred.items=Elementos transferidos
-file.report.performed.by=Realizado por
-file.report.record=Documento de archivo
-file.report.record.folder=Carpeta de documentos de archivo
-file.report.unique.folder.identifier=ID de carpeta \u00fanico
-file.report.unique.record.identifier=ID de documento de archivo \u00fanico
-file.report.hold.report=Informe de bloqueo
-file.report.hold.name=Nombre de bloqueo
-file.report.hold.description=Descripci\u00f3n de bloqueo
-file.report.hold.reason=Raz\u00f3n de bloqueo
-file.report.hold.held=Bloqueado
-file.report.createdby=Creado por
+# File Report Template
+file.report.acession.report=Informe de adhesi\u00f3n
+file.report.date.format=EEE MMM dd HH:mm:ss zzz yyyy
+file.report.declared.by=declarado por
+file.report.declared.on=en
+file.report.destroyed=Destruido
+file.report.destroyed.records=Documentos de archivo destruidos
+file.report.destruction.report=Informe de destrucci\u00f3n
+file.report.disposition.authority=Autoridad de retenci\u00f3n
+file.report.disposition.instructions=Instrucciones de retenci\u00f3n
+file.report.nara=NARA
+file.report.transfer.date=Fecha de transferencia
+file.report.transfer.location=Ubicaci\u00f3n de transferencia
+file.report.transfer.report=Informe de transferencia
+file.report.transferred.items=Elementos transferidos
+file.report.performed.by=Realizado por
+file.report.record=Documento de archivo
+file.report.record.folder=Carpeta de documentos de archivo
+file.report.unique.folder.identifier=ID de carpeta \u00fanico
+file.report.unique.record.identifier=ID de documento de archivo \u00fanico
+file.report.hold.report=Informe de bloqueo
+file.report.hold.name=Nombre de bloqueo
+file.report.hold.description=Descripci\u00f3n de bloqueo
+file.report.hold.reason=Raz\u00f3n de bloqueo
+file.report.hold.held=Bloqueado
+file.report.createdby=Creado por
file.report.createdon=Creado
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_fr.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_fr.properties
index a7af9641db..85ffa94898 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_fr.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_fr.properties
@@ -1,27 +1,27 @@
-# File Report Template
-file.report.acession.report=Rapport sur le versement \u00e0 un autre organisme
-file.report.date.format=EEE MMM jj HH:mm:ss zzz yyyy
-file.report.declared.by=d\u00e9clar\u00e9 par
-file.report.declared.on=le
-file.report.destroyed=D\u00e9truit
-file.report.destroyed.records=Documents d'archives d\u00e9truits
-file.report.destruction.report=Rapport de destruction
-file.report.disposition.authority=D\u00e9tenteur de la r\u00e9tention
-file.report.disposition.instructions=Instructions de r\u00e9tention
-file.report.nara=NARA
-file.report.transfer.date=Date de transfert
-file.report.transfer.location=Emplacement de transfert
-file.report.transfer.report=Rapport de transfert
-file.report.transferred.items=El\u00e9ments transf\u00e9r\u00e9s
-file.report.performed.by=Effectu\u00e9 par
-file.report.record=Document d'archives
-file.report.record.folder=Dossier d'archives
-file.report.unique.folder.identifier=ID unique de dossier
-file.report.unique.record.identifier=ID unique de document d'archives
-file.report.hold.report=Rapport de suspension
-file.report.hold.name=Nom de la suspension
-file.report.hold.description=Description de la suspension
-file.report.hold.reason=Motif de suspension
-file.report.hold.held=Suspendu
-file.report.createdby=Cr\u00e9\u00e9 par
+# File Report Template
+file.report.acession.report=Rapport sur le versement \u00e0 un autre organisme
+file.report.date.format=EEE MMM jj HH:mm:ss zzz yyyy
+file.report.declared.by=d\u00e9clar\u00e9 par
+file.report.declared.on=le
+file.report.destroyed=D\u00e9truit
+file.report.destroyed.records=Documents d'archives d\u00e9truits
+file.report.destruction.report=Rapport de destruction
+file.report.disposition.authority=D\u00e9tenteur de la r\u00e9tention
+file.report.disposition.instructions=Instructions de r\u00e9tention
+file.report.nara=NARA
+file.report.transfer.date=Date de transfert
+file.report.transfer.location=Emplacement de transfert
+file.report.transfer.report=Rapport de transfert
+file.report.transferred.items=El\u00e9ments transf\u00e9r\u00e9s
+file.report.performed.by=Effectu\u00e9 par
+file.report.record=Document d'archives
+file.report.record.folder=Dossier d'archives
+file.report.unique.folder.identifier=ID unique de dossier
+file.report.unique.record.identifier=ID unique de document d'archives
+file.report.hold.report=Rapport de suspension
+file.report.hold.name=Nom de la suspension
+file.report.hold.description=Description de la suspension
+file.report.hold.reason=Motif de suspension
+file.report.hold.held=Suspendu
+file.report.createdby=Cr\u00e9\u00e9 par
file.report.createdon=Cr\u00e9\u00e9
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_it.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_it.properties
index 03fab7987e..465188d1aa 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_it.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_it.properties
@@ -1,27 +1,27 @@
-# File Report Template
-file.report.acession.report=Rapporto di trasferimento ad altri
-file.report.date.format=EEE MMM dd HH:mm:ss zzz yyyy
-file.report.declared.by=dichiarato da
-file.report.declared.on=in data
-file.report.destroyed=Eliminato definitivamente
-file.report.destroyed.records=Record eliminati definitivamente
-file.report.destruction.report=Rapporto di eliminazione definitiva
-file.report.disposition.authority=Autorit\u00e0 di conservazione
-file.report.disposition.instructions=Istruzioni per la conservazione
-file.report.nara=NARA (USA)
-file.report.transfer.date=Data di trasferimento
-file.report.transfer.location=Posizione di trasferimento
-file.report.transfer.report=Rapporto di trasferimento
-file.report.transferred.items=Elementi trasferiti
-file.report.performed.by=Eseguito da
-file.report.record=Record
-file.report.record.folder=Cartella di record
-file.report.unique.folder.identifier=ID univoco cartella
-file.report.unique.record.identifier=ID univoco record
-file.report.hold.report=Rapporto di sospensione
-file.report.hold.name=Nome sospensione
-file.report.hold.description=Descrizione sospensione
-file.report.hold.reason=Motivo sospensione
-file.report.hold.held=Sospeso
-file.report.createdby=Creato da
+# File Report Template
+file.report.acession.report=Rapporto di trasferimento ad altri
+file.report.date.format=EEE MMM dd HH:mm:ss zzz yyyy
+file.report.declared.by=dichiarato da
+file.report.declared.on=in data
+file.report.destroyed=Eliminato definitivamente
+file.report.destroyed.records=Record eliminati definitivamente
+file.report.destruction.report=Rapporto di eliminazione definitiva
+file.report.disposition.authority=Autorit\u00e0 di conservazione
+file.report.disposition.instructions=Istruzioni per la conservazione
+file.report.nara=NARA (USA)
+file.report.transfer.date=Data di trasferimento
+file.report.transfer.location=Posizione di trasferimento
+file.report.transfer.report=Rapporto di trasferimento
+file.report.transferred.items=Elementi trasferiti
+file.report.performed.by=Eseguito da
+file.report.record=Record
+file.report.record.folder=Cartella di record
+file.report.unique.folder.identifier=ID univoco cartella
+file.report.unique.record.identifier=ID univoco record
+file.report.hold.report=Rapporto di sospensione
+file.report.hold.name=Nome sospensione
+file.report.hold.description=Descrizione sospensione
+file.report.hold.reason=Motivo sospensione
+file.report.hold.held=Sospeso
+file.report.createdby=Creato da
file.report.createdon=Creato il
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_ja.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_ja.properties
index fe63ba4b1d..ddf22acd3a 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_ja.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_ja.properties
@@ -1,27 +1,27 @@
-# File Report Template
-file.report.acession.report=\u53d7\u8afe\u30ec\u30dd\u30fc\u30c8
-file.report.date.format=EEE\u5e74MMM\u6708dd\u65e5\u3001HH:mm:ss zzz yyyy
-file.report.declared.by=\u5ba3\u8a00\u8005
-file.report.declared.on=\u5ba3\u8a00\u65e5
-file.report.destroyed=\u7834\u68c4\u6e08\u307f
-file.report.destroyed.records=\u7834\u68c4\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
-file.report.destruction.report=\u7834\u68c4\u30ec\u30dd\u30fc\u30c8
-file.report.disposition.authority=\u4fdd\u7ba1\u6a29\u9650
-file.report.disposition.instructions=\u4fdd\u7ba1\u6307\u793a
-file.report.nara=NARA
-file.report.transfer.date=\u8ee2\u9001\u65e5
-file.report.transfer.location=\u8ee2\u9001\u5834\u6240
-file.report.transfer.report=\u8ee2\u9001\u30ec\u30dd\u30fc\u30c8
-file.report.transferred.items=\u8ee2\u9001\u6e08\u307f\u30a2\u30a4\u30c6\u30e0
-file.report.performed.by=\u5b9f\u884c\u8005
-file.report.record=\u30ec\u30b3\u30fc\u30c9
-file.report.record.folder=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
-file.report.unique.folder.identifier=\u4e00\u610f\u306e\u30d5\u30a9\u30eb\u30c0 ID
-file.report.unique.record.identifier=\u4e00\u610f\u306e\u30ec\u30b3\u30fc\u30c9 ID
-file.report.hold.report=\u30db\u30fc\u30eb\u30c9\u30ec\u30dd\u30fc\u30c8
-file.report.hold.name=\u30db\u30fc\u30eb\u30c9\u540d
-file.report.hold.description=\u30db\u30fc\u30eb\u30c9\u8aac\u660e
-file.report.hold.reason=\u30db\u30fc\u30eb\u30c9\u7406\u7531
-file.report.hold.held=\u30db\u30fc\u30eb\u30c9\u6e08\u307f
-file.report.createdby=\u4f5c\u6210\u8005
+# File Report Template
+file.report.acession.report=\u53d7\u8afe\u30ec\u30dd\u30fc\u30c8
+file.report.date.format=EEE\u5e74MMM\u6708dd\u65e5\u3001HH:mm:ss zzz yyyy
+file.report.declared.by=\u5ba3\u8a00\u8005
+file.report.declared.on=\u5ba3\u8a00\u65e5
+file.report.destroyed=\u7834\u68c4\u6e08\u307f
+file.report.destroyed.records=\u7834\u68c4\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
+file.report.destruction.report=\u7834\u68c4\u30ec\u30dd\u30fc\u30c8
+file.report.disposition.authority=\u4fdd\u7ba1\u6a29\u9650
+file.report.disposition.instructions=\u4fdd\u7ba1\u6307\u793a
+file.report.nara=NARA
+file.report.transfer.date=\u8ee2\u9001\u65e5
+file.report.transfer.location=\u8ee2\u9001\u5834\u6240
+file.report.transfer.report=\u8ee2\u9001\u30ec\u30dd\u30fc\u30c8
+file.report.transferred.items=\u8ee2\u9001\u6e08\u307f\u30a2\u30a4\u30c6\u30e0
+file.report.performed.by=\u5b9f\u884c\u8005
+file.report.record=\u30ec\u30b3\u30fc\u30c9
+file.report.record.folder=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
+file.report.unique.folder.identifier=\u4e00\u610f\u306e\u30d5\u30a9\u30eb\u30c0 ID
+file.report.unique.record.identifier=\u4e00\u610f\u306e\u30ec\u30b3\u30fc\u30c9 ID
+file.report.hold.report=\u30db\u30fc\u30eb\u30c9\u30ec\u30dd\u30fc\u30c8
+file.report.hold.name=\u30db\u30fc\u30eb\u30c9\u540d
+file.report.hold.description=\u30db\u30fc\u30eb\u30c9\u8aac\u660e
+file.report.hold.reason=\u30db\u30fc\u30eb\u30c9\u7406\u7531
+file.report.hold.held=\u30db\u30fc\u30eb\u30c9\u6e08\u307f
+file.report.createdby=\u4f5c\u6210\u8005
file.report.createdon=\u4f5c\u6210\u65e5
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_nb.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_nb.properties
index c26d519f43..693a6d7ae7 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_nb.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_nb.properties
@@ -1,27 +1,27 @@
-# File Report Template
-file.report.acession.report=Tilgangsrapport
-file.report.date.format=EEE MMM dd TT:mm:ss zzz \u00e5\u00e5\u00e5\u00e5
-file.report.declared.by=erkl\u00e6rt av
-file.report.declared.on=p\u00e5
-file.report.destroyed=Destruert
-file.report.destroyed.records=Destruerte oppf\u00f8ringer
-file.report.destruction.report=Destruksjonsrapport
-file.report.disposition.authority=Retensjonsrett
-file.report.disposition.instructions=Retensjonsinstruksjoner
-file.report.nara=NARA
-file.report.transfer.date=Overf\u00f8ringsdato
-file.report.transfer.location=Overf\u00f8ringssted
-file.report.transfer.report=Overf\u00f8ringsrapport
-file.report.transferred.items=Overf\u00f8rte elementer
-file.report.performed.by=Utf\u00f8rt av
-file.report.record=Oppf\u00f8ring
-file.report.record.folder=Oppf\u00f8ringsmappe
-file.report.unique.folder.identifier=Unik mappe-ID
-file.report.unique.record.identifier=Unik oppf\u00f8rings-ID
-file.report.hold.report=Holdrapport
-file.report.hold.name=Holdnavn
-file.report.hold.description=Holdbeskrivelse
-file.report.hold.reason=Grunn til holdet
-file.report.hold.held=Hold
-file.report.createdby=Opprettet av
+# File Report Template
+file.report.acession.report=Tilgangsrapport
+file.report.date.format=EEE MMM dd TT:mm:ss zzz \u00e5\u00e5\u00e5\u00e5
+file.report.declared.by=erkl\u00e6rt av
+file.report.declared.on=p\u00e5
+file.report.destroyed=Destruert
+file.report.destroyed.records=Destruerte oppf\u00f8ringer
+file.report.destruction.report=Destruksjonsrapport
+file.report.disposition.authority=Retensjonsrett
+file.report.disposition.instructions=Retensjonsinstruksjoner
+file.report.nara=NARA
+file.report.transfer.date=Overf\u00f8ringsdato
+file.report.transfer.location=Overf\u00f8ringssted
+file.report.transfer.report=Overf\u00f8ringsrapport
+file.report.transferred.items=Overf\u00f8rte elementer
+file.report.performed.by=Utf\u00f8rt av
+file.report.record=Oppf\u00f8ring
+file.report.record.folder=Oppf\u00f8ringsmappe
+file.report.unique.folder.identifier=Unik mappe-ID
+file.report.unique.record.identifier=Unik oppf\u00f8rings-ID
+file.report.hold.report=Holdrapport
+file.report.hold.name=Holdnavn
+file.report.hold.description=Holdbeskrivelse
+file.report.hold.reason=Grunn til holdet
+file.report.hold.held=Hold
+file.report.createdby=Opprettet av
file.report.createdon=Opprettet den
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_nl.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_nl.properties
index 1c8dcaf353..4fb5e8c011 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_nl.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_nl.properties
@@ -1,27 +1,27 @@
-# File Report Template
-file.report.acession.report=Overdrachtsrapport
-file.report.date.format=EEE MMM dd UU:mm:ss zzz jjjj
-file.report.declared.by=gedeclareerd door
-file.report.declared.on=op
-file.report.destroyed=Vernietigd
-file.report.destroyed.records=Vernietigde records
-file.report.destruction.report=Vernietigingsrapport
-file.report.disposition.authority=Retentieautoriteit
-file.report.disposition.instructions=Retentie-instructies
-file.report.nara=Nationaal Archief
-file.report.transfer.date=Overzetdatum
-file.report.transfer.location=Overzetlocatie
-file.report.transfer.report=Overzetrapport
-file.report.transferred.items=Overgezette objecten
-file.report.performed.by=Uitgevoerd door
-file.report.record=Record
-file.report.record.folder=Archiefmap
-file.report.unique.folder.identifier=Unieke id archiefmap
-file.report.unique.record.identifier=Unieke id record
-file.report.hold.report=Rapport wachtstand
-file.report.hold.name=Naam wachtstand
-file.report.hold.description=Beschrijving wachtstand
-file.report.hold.reason=Reden van wachtstand
-file.report.hold.held=In wachtstand
-file.report.createdby=Gemaakt door
+# File Report Template
+file.report.acession.report=Overdrachtsrapport
+file.report.date.format=EEE MMM dd UU:mm:ss zzz jjjj
+file.report.declared.by=gedeclareerd door
+file.report.declared.on=op
+file.report.destroyed=Vernietigd
+file.report.destroyed.records=Vernietigde records
+file.report.destruction.report=Vernietigingsrapport
+file.report.disposition.authority=Retentieautoriteit
+file.report.disposition.instructions=Retentie-instructies
+file.report.nara=Nationaal Archief
+file.report.transfer.date=Overzetdatum
+file.report.transfer.location=Overzetlocatie
+file.report.transfer.report=Overzetrapport
+file.report.transferred.items=Overgezette objecten
+file.report.performed.by=Uitgevoerd door
+file.report.record=Record
+file.report.record.folder=Archiefmap
+file.report.unique.folder.identifier=Unieke id archiefmap
+file.report.unique.record.identifier=Unieke id record
+file.report.hold.report=Rapport wachtstand
+file.report.hold.name=Naam wachtstand
+file.report.hold.description=Beschrijving wachtstand
+file.report.hold.reason=Reden van wachtstand
+file.report.hold.held=In wachtstand
+file.report.createdby=Gemaakt door
file.report.createdon=Gemaakt op
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_pt_BR.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_pt_BR.properties
index e3592ebe7d..915768e1dc 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_pt_BR.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_pt_BR.properties
@@ -1,27 +1,27 @@
-# File Report Template
-file.report.acession.report=Relat\u00f3rio de ades\u00e3o
-file.report.date.format=EEE MMM dd HH:mm:ss zzz aaaa
-file.report.declared.by=declarado por
-file.report.declared.on=em
-file.report.destroyed=Destru\u00eddos
-file.report.destroyed.records=Documentos arquiv\u00edsticos destru\u00eddos
-file.report.destruction.report=Relat\u00f3rio de destrui\u00e7\u00e3o
-file.report.disposition.authority=Autoridade de reten\u00e7\u00e3o
-file.report.disposition.instructions=Instru\u00e7\u00f5es de reten\u00e7\u00e3o
-file.report.nara=NARA
-file.report.transfer.date=Data de transfer\u00eancia
-file.report.transfer.location=Local de transfer\u00eancia
-file.report.transfer.report=Relat\u00f3rio de transfer\u00eancia
-file.report.transferred.items=Itens transferidos
-file.report.performed.by=Executado por
-file.report.record=Documento arquiv\u00edstico
-file.report.record.folder=Pasta de documento arquiv\u00edstico
-file.report.unique.folder.identifier=ID exclusivo da pasta
-file.report.unique.record.identifier=ID exclusivo do documento arquiv\u00edstico
-file.report.hold.report=Relat\u00f3rio de espera
-file.report.hold.name=Nome da espera
-file.report.hold.description=Descri\u00e7\u00e3o da espera
-file.report.hold.reason=Motivo para manter
-file.report.hold.held=Mantido
-file.report.createdby=Criado por
+# File Report Template
+file.report.acession.report=Relat\u00f3rio de ades\u00e3o
+file.report.date.format=EEE MMM dd HH:mm:ss zzz aaaa
+file.report.declared.by=declarado por
+file.report.declared.on=em
+file.report.destroyed=Destru\u00eddos
+file.report.destroyed.records=Documentos arquiv\u00edsticos destru\u00eddos
+file.report.destruction.report=Relat\u00f3rio de destrui\u00e7\u00e3o
+file.report.disposition.authority=Autoridade de reten\u00e7\u00e3o
+file.report.disposition.instructions=Instru\u00e7\u00f5es de reten\u00e7\u00e3o
+file.report.nara=NARA
+file.report.transfer.date=Data de transfer\u00eancia
+file.report.transfer.location=Local de transfer\u00eancia
+file.report.transfer.report=Relat\u00f3rio de transfer\u00eancia
+file.report.transferred.items=Itens transferidos
+file.report.performed.by=Executado por
+file.report.record=Documento arquiv\u00edstico
+file.report.record.folder=Pasta de documento arquiv\u00edstico
+file.report.unique.folder.identifier=ID exclusivo da pasta
+file.report.unique.record.identifier=ID exclusivo do documento arquiv\u00edstico
+file.report.hold.report=Relat\u00f3rio de espera
+file.report.hold.name=Nome da espera
+file.report.hold.description=Descri\u00e7\u00e3o da espera
+file.report.hold.reason=Motivo para manter
+file.report.hold.held=Mantido
+file.report.createdby=Criado por
file.report.createdon=Criado em
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_ru.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_ru.properties
index 70e225667f..075b08d85e 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_ru.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_ru.properties
@@ -1,27 +1,27 @@
-# File Report Template
-file.report.acession.report=\u041e\u0442\u0447\u0435\u0442 \u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0435
-file.report.date.format=EEE MMM dd HH:mm:ss zzz yyyy
-file.report.declared.by=\u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u043e
-file.report.declared.on=\u043d\u0430
-file.report.destroyed=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u043e
-file.report.destroyed.records=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
-file.report.destruction.report=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0438
-file.report.disposition.authority=\u041f\u043e\u043b\u043d\u043e\u043c\u043e\u0447\u0438\u044f \u043d\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435
-file.report.disposition.instructions=\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
-file.report.nara=NARA
-file.report.transfer.date=\u0414\u0430\u0442\u0430 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438
-file.report.transfer.location=\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438
-file.report.transfer.report=\u041e\u0442\u0447\u0435\u0442 \u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0435
-file.report.transferred.items=\u041f\u0435\u0440\u0435\u0434\u0430\u043d\u043d\u044b\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b
-file.report.performed.by=\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e
-file.report.record=\u0417\u0430\u043f\u0438\u0441\u044c
-file.report.record.folder=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
-file.report.unique.folder.identifier=\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0430\u043f\u043a\u0438
-file.report.unique.record.identifier=\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0437\u0430\u043f\u0438\u0441\u0438
-file.report.hold.report=\u041e\u0442\u0447\u0435\u0442 \u043e \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0435
-file.report.hold.name=\u0418\u043c\u044f \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
-file.report.hold.description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
-file.report.hold.reason=\u041f\u0440\u0438\u0447\u0438\u043d\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
-file.report.hold.held=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043e
-file.report.createdby=\u0421\u043e\u0437\u0434\u0430\u043b
+# File Report Template
+file.report.acession.report=\u041e\u0442\u0447\u0435\u0442 \u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0435
+file.report.date.format=EEE MMM dd HH:mm:ss zzz yyyy
+file.report.declared.by=\u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u043e
+file.report.declared.on=\u043d\u0430
+file.report.destroyed=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u043e
+file.report.destroyed.records=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
+file.report.destruction.report=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0438
+file.report.disposition.authority=\u041f\u043e\u043b\u043d\u043e\u043c\u043e\u0447\u0438\u044f \u043d\u0430 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435
+file.report.disposition.instructions=\u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
+file.report.nara=NARA
+file.report.transfer.date=\u0414\u0430\u0442\u0430 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438
+file.report.transfer.location=\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438
+file.report.transfer.report=\u041e\u0442\u0447\u0435\u0442 \u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0435
+file.report.transferred.items=\u041f\u0435\u0440\u0435\u0434\u0430\u043d\u043d\u044b\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b
+file.report.performed.by=\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e
+file.report.record=\u0417\u0430\u043f\u0438\u0441\u044c
+file.report.record.folder=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
+file.report.unique.folder.identifier=\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u043f\u0430\u043f\u043a\u0438
+file.report.unique.record.identifier=\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440 \u0437\u0430\u043f\u0438\u0441\u0438
+file.report.hold.report=\u041e\u0442\u0447\u0435\u0442 \u043e \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0435
+file.report.hold.name=\u0418\u043c\u044f \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
+file.report.hold.description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
+file.report.hold.reason=\u041f\u0440\u0438\u0447\u0438\u043d\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
+file.report.hold.held=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043e
+file.report.createdby=\u0421\u043e\u0437\u0434\u0430\u043b
file.report.createdon=\u0421\u043e\u0437\u0434\u0430\u043d\u043e
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_zh_CN.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_zh_CN.properties
index b394fe8d26..42526a169b 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_zh_CN.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template_zh_CN.properties
@@ -1,27 +1,27 @@
-# File Report Template
-file.report.acession.report=\u5165\u7ba1\u62a5\u544a
-file.report.date.format=EEE MMM dd HH:mm:ss zzz yyyy
-file.report.declared.by=\u58f0\u660e\u8005
-file.report.declared.on=\u5f00
-file.report.destroyed=\u5df2\u9500\u6bc1
-file.report.destroyed.records=\u5df2\u9500\u6bc1\u8bb0\u5f55
-file.report.destruction.report=\u9500\u6bc1\u62a5\u544a
-file.report.disposition.authority=\u4fdd\u7559\u6388\u6743
-file.report.disposition.instructions=\u4fdd\u7559\u8bf4\u660e
-file.report.nara=NARA
-file.report.transfer.date=\u79fb\u4ea4\u65e5\u671f
-file.report.transfer.location=\u79fb\u4ea4\u4f4d\u7f6e
-file.report.transfer.report=\u79fb\u4ea4\u62a5\u544a
-file.report.transferred.items=\u79fb\u4ea4\u7684\u9879
-file.report.performed.by=\u6267\u884c\u8005
-file.report.record=\u8bb0\u5f55
-file.report.record.folder=\u8bb0\u5f55\u6587\u4ef6\u5939
-file.report.unique.folder.identifier=\u552f\u4e00\u6587\u4ef6\u5939 ID
-file.report.unique.record.identifier=\u552f\u4e00\u8bb0\u5f55 ID
-file.report.hold.report=\u4fdd\u5b58\u62a5\u544a
-file.report.hold.name=\u4fdd\u5b58\u540d\u79f0
-file.report.hold.description=\u4fdd\u5b58\u8bf4\u660e
-file.report.hold.reason=\u4fdd\u5b58\u539f\u56e0
-file.report.hold.held=\u4fdd\u5b58
-file.report.createdby=\u521b\u5efa\u8005
+# File Report Template
+file.report.acession.report=\u5165\u7ba1\u62a5\u544a
+file.report.date.format=EEE MMM dd HH:mm:ss zzz yyyy
+file.report.declared.by=\u58f0\u660e\u8005
+file.report.declared.on=\u5f00
+file.report.destroyed=\u5df2\u9500\u6bc1
+file.report.destroyed.records=\u5df2\u9500\u6bc1\u8bb0\u5f55
+file.report.destruction.report=\u9500\u6bc1\u62a5\u544a
+file.report.disposition.authority=\u4fdd\u7559\u6388\u6743
+file.report.disposition.instructions=\u4fdd\u7559\u8bf4\u660e
+file.report.nara=NARA
+file.report.transfer.date=\u79fb\u4ea4\u65e5\u671f
+file.report.transfer.location=\u79fb\u4ea4\u4f4d\u7f6e
+file.report.transfer.report=\u79fb\u4ea4\u62a5\u544a
+file.report.transferred.items=\u79fb\u4ea4\u7684\u9879
+file.report.performed.by=\u6267\u884c\u8005
+file.report.record=\u8bb0\u5f55
+file.report.record.folder=\u8bb0\u5f55\u6587\u4ef6\u5939
+file.report.unique.folder.identifier=\u552f\u4e00\u6587\u4ef6\u5939 ID
+file.report.unique.record.identifier=\u552f\u4e00\u8bb0\u5f55 ID
+file.report.hold.report=\u4fdd\u5b58\u62a5\u544a
+file.report.hold.name=\u4fdd\u5b58\u540d\u79f0
+file.report.hold.description=\u4fdd\u5b58\u8bf4\u660e
+file.report.hold.reason=\u4fdd\u5b58\u539f\u56e0
+file.report.hold.held=\u4fdd\u5b58
+file.report.createdby=\u521b\u5efa\u8005
file.report.createdon=\u521b\u5efa\u65f6\u95f4
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/recordableVersionModel.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/recordableVersionModel.xml
index a4587c061f..d194cb8743 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/recordableVersionModel.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/recordableVersionModel.xml
@@ -1,129 +1,129 @@
-
-
-
-
-
-
-
-
-
-
- Recordable Version Model
- Roy Wetherall
- 1.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Recordable Version Policy List
-
-
- NONE
- MAJOR_ONLY
- ALL
-
-
- false
-
-
-
-
-
-
-
-
-
-
-
-
- File Plan
- d:noderef
-
-
-
-
- Recordable Version Policy
- d:text
- NONE
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Record Node Reference
- d:noderef
-
-
-
-
- Frozen Owner
- d:text
-
-
-
-
- Destroyed
- d:boolean
- false>
-
-
-
-
-
-
-
-
-
-
-
- d:noderef
-
-
-
-
- d:text
-
-
-
- d:text
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+ Recordable Version Model
+ Roy Wetherall
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Recordable Version Policy List
+
+
+ NONE
+ MAJOR_ONLY
+ ALL
+
+
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+ File Plan
+ d:noderef
+
+
+
+
+ Recordable Version Policy
+ d:text
+ NONE
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Record Node Reference
+ d:noderef
+
+
+
+
+ Frozen Owner
+ d:text
+
+
+
+
+ Destroyed
+ d:boolean
+ false>
+
+
+
+
+
+
+
+
+
+
+
+ d:noderef
+
+
+
+
+ d:text
+
+
+
+ d:text
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/recordsModel.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/recordsModel.xml
index 27ca16ccef..ff24431ddc 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/recordsModel.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/recordsModel.xml
@@ -1,1229 +1,1229 @@
-
-
-
-
-
-
-
-
- Records Management Model
- Roy Wetherall
- 1.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RM Site
- st:site
- false
-
-
-
-
- Caveat Config
- cm:content
- false
-
-
-
- Email Config
- cm:content
-
- rma:filePlanComponent
-
-
-
-
-
-
-
- Records Management Container
- cm:folder
- false
-
-
- cm:titled
- rma:recordComponentIdentifier
- rma:filePlanComponent
-
-
-
-
-
-
- Record Category
- rma:recordsManagementContainer
-
-
- rma:vitalRecordDefinition
-
-
-
-
-
-
- File Plan
- rma:recordsManagementContainer
-
-
- rma:recordsManagementRoot
-
-
-
-
-
- Unfiled Record Container
- rma:recordsManagementContainer
-
-
-
- Unfiled Record Folder
- rma:recordsManagementContainer
-
-
-
- Hold Container
- rma:recordsManagementContainer
-
- rma:countable
-
-
-
-
- Transfer Container
- rma:recordsManagementContainer
-
- rma:countable
-
-
-
-
-
-
- Disposition Schedule
- cm:cmobject
-
-
-
-
- Disposition Authority
- d:text
- true
-
- true
- false
- false
-
-
-
-
- Disposition Instructions
- d:text
- true
-
-
-
- Record Level Disposition
- d:boolean
- true
- false
-
-
-
-
-
-
-
- Disposition Actions
-
- false
- false
-
-
- rma:dispositionActionDefinition
- false
- true
-
-
-
-
-
-
- rma:filePlanComponent
-
-
-
-
-
- Disposition Action Definition
- cm:cmobject
-
-
-
-
- Disposition Action Name
- d:text
- true
-
-
-
- Disposition Description
- d:text
- false
-
-
-
- Disposition Location
- d:text
- false
-
- true
- false
- false
-
-
-
-
- Disposition Period
- d:period
- false
- none|0
-
-
-
- Disposition Period Property
- d:text
- false
-
- true
- false
- false
-
-
-
-
- Disposition Event
- d:text
- true
-
- true
- false
- false
-
-
-
-
- Disposition Event Combination
- d:text
- true
- or
-
- true
- false
- false
-
-
-
-
-
- rma:filePlanComponent
-
-
-
-
-
- Record Folder
- cm:folder
- false
-
-
-
-
-
-
-
- Record Folder Closed
- Indicates whether the folder is closed
- d:boolean
- true
- true
- false
-
-
-
-
-
- cm:titled
- rma:recordComponentIdentifier
- rma:commonRecordDetails
- rma:filePlanComponent
- rma:heldChildren
-
-
-
-
-
-
- Non-Electronic Document
- cm:content
- false
-
-
-
- Document Physical Size
- d:int
- false
-
- true
- false
- false
-
-
-
-
- Number Of Copies
- d:int
- false
- 1
-
- true
- false
- false
-
-
-
-
- Storage Location
- d:text
- false
-
- true
- false
- false
-
-
-
-
- Shelf
- d:text
- false
-
- true
- false
- false
-
-
-
-
- Box
- d:text
- false
-
- true
- false
- false
-
-
-
-
- File
- d:text
- false
-
- true
- false
- false
-
-
-
-
-
- rma:filePlanComponent
-
-
-
-
- Disposition Action
- cm:cmobject
-
-
- Disposition Action Id
- d:text
- true
-
- true
- false
- false
-
-
-
- Disposition Action
- d:text
- true
-
- true
- false
- false
-
-
-
- Disposition Action Date
- d:date
- false
-
-
- Disposition Events Eligible
- d:boolean
- false
-
-
- Disposition Action Started At
- d:date
- false
-
-
- Disposition Action Started By
- d:text
- false
-
- true
- false
- false
-
-
-
- Disposition Action Completed At
- d:date
- false
-
-
- Disposition Action Copmleted By
- d:text
- false
-
- true
- false
- false
-
-
-
-
-
-
-
-
- Event executions
-
- false
- false
-
-
- rma:eventExecution
- false
- true
-
-
-
-
-
-
- rma:filePlanComponent
-
-
-
-
-
-
- Event Execution
- Execution details of an event
- cm:cmobject
-
-
-
-
- Event Name
- d:text
- true
-
- true
- false
- false
-
-
-
- Event automatic
- d:boolean
- true
-
-
- Event complete
- d:boolean
- true
- false
-
-
- Event completed by
- d:text
- false
-
- true
- false
- false
-
-
-
- Event completed at
- d:date
- false
-
-
-
-
-
- rma:filePlanComponent
-
-
-
-
-
- Hold
- rma:recordsManagementContainer
- false
-
-
-
-
- Hold Reason
- d:text
- true
-
-
-
-
-
-
- Frozen Records
-
- false
- true
-
-
- rma:filePlanComponent
- false
- true
-
-
-
-
-
-
-
-
- Transfer
- cm:folder
- false
-
-
-
-
- Transfer Accession Indicator
- d:boolean
- true
- true
-
-
-
- Transfer PDF Indicator
- Indicates that transfer includes PDF
- d:boolean
- true
- false
-
-
-
- Transfer PDF Indicator
- Transfer Location
- d:text
-
-
-
-
-
-
-
- Transferred
-
- false
- false
-
-
- rma:dispositionLifecycle
- false
- true
-
-
-
-
-
-
- cm:titled
- rma:filePlanComponent
-
-
-
-
-
-
-
-
-
-
-
- File Plan Component
- false
-
-
- Root node reference
- d:noderef
- true
-
-
-
-
-
-
- Records Management Root
-
-
-
-
- Holds
-
- false
- false
-
-
- rma:hold
- false
- true
-
-
-
-
-
- Transfers
-
- false
- false
-
-
- rma:transfer
- false
- true
-
-
-
-
-
-
-
- Declared Record
-
-
- Date Declared
- d:date
-
-
- Declared By
- d:text
-
- true
- false
- false
-
-
-
-
- rma:filePlanComponent
-
-
-
-
- Record component identifier
-
-
- Record Component Identifier
- d:text
- true
-
- true
- false
- false
-
-
-
- Database uniqueness id
- d:text
- true
- false
-
-
-
- rma:filePlanComponent
-
-
-
-
- Vital Record Definition
-
-
- Review Period
- d:period
- none|0
-
-
- Vital Record Indicator
- d:boolean
- false
-
-
-
- rma:filePlanComponent
-
-
-
-
-
-
- Record
-
- false
-
-
-
-
-
-
-
- Date Filed
- d:date
-
-
-
- Original Name
- d:text
- true
-
-
-
-
-
-
-
- d:date
- false
-
-
- d:text
- false
-
- true
- false
- false
-
-
-
- d:text
- false
-
- true
- false
- false
-
-
-
- d:text
- false
-
- true
- false
- false
-
-
-
- d:text
- false
-
- true
- false
- false
-
-
-
- d:date
- false
-
-
- d:text
- false
-
- true
- false
- false
-
-
-
- d:text
- false
-
- true
- false
- false
-
-
-
-
-
-
- cm:titled
- rma:recordComponentIdentifier
- rma:commonRecordDetails
- rma:filePlanComponent
-
-
-
-
-
-
-
-
-
-
-
-
-
- Location
- d:text
- false
-
- true
- false
- false
-
-
-
-
-
- rma:filePlanComponent
-
-
-
-
-
-
-
-
- d:any
- true
-
-
- d:any
- true
-
-
-
-
-
-
-
- Vital Record
-
-
- Next Review Date
- d:date
- false
-
-
- Indicates whether a notification that this record is due for review has been issued
- d:boolean
- true
- false
- false
-
-
-
- rma:filePlanComponent
-
-
-
-
- Scheduled
-
-
-
- Disposition Schedule
-
- false
- false
-
-
- rma:dispositionSchedule
- false
- false
-
-
-
-
-
- rma:filePlanComponent
-
-
-
-
- Disposition Lifecycle
-
-
-
- Next disposition action
-
- false
- false
-
-
- rma:dispositionAction
- false
- false
-
-
-
-
-
- Disposition Action History
-
- false
- false
-
-
- rma:dispositionAction
- false
- true
-
-
-
-
-
- rma:filePlanComponent
-
-
-
-
-
- Cut Off
-
-
- Cut Off Date
- d:date
- true
-
-
-
-
-
- Uncut Off
-
-
-
-
- Transferring
-
-
-
-
- Transferred
-
-
-
-
- Ascended
-
-
-
- Frozen
-
-
- Frozen At Date
- d:date
- true
-
-
- Frozen By
- d:text
- true
-
- true
- false
- false
-
-
-
-
-
-
- Caveat Config Root
-
-
-
- true
- false
-
-
- rma:caveatConfig
- false
- false
-
- false
-
-
-
-
-
- Email Config Root
-
-
-
- true
- false
-
-
- rma:emailConfig
- false
- false
-
- false
-
-
-
-
-
-
-
- Record Search
-
-
- d:boolean
- true
-
-
- d:text
- true
-
- true
- false
- false
-
-
-
- d:date
- true
-
-
- d:text
- true
-
- true
- false
- false
-
-
-
- d:text
- true
-
- true
- false
- false
-
-
-
- d:boolean
- true
-
-
- d:text
- true
- true
-
- true
- false
- false
-
-
-
- d:text
- true
-
- true
- false
- false
-
-
-
- d:text
- true
-
-
-
- d:text
- true
-
-
- d:text
- true
-
- true
- false
- false
-
-
-
- d:text
- true
-
- true
- false
- false
-
-
-
-
-
-
- Versioned Record
-
-
-
- Unpublished Update
-
-
- d:boolean
- true
- true
-
-
- d:text
-
-
- d:any
-
-
- d:boolean
- true
- false
-
-
-
-
-
-
- Ghosted Record
- false
-
-
-
-
- Loaded Data Set Id
-
-
- List of the loaded Data Set Ids
- d:text
- true
-
-
-
-
-
-
- The originating details of a record
-
-
- d:text
- true
-
-
- d:date
- true
-
-
- d:noderef
- true
-
-
-
-
-
-
- The rejection details of a record
-
-
- d:text
- true
-
-
- d:date
- true
-
-
- d:text
- true
-
-
-
-
-
-
-
- Held children
-
-
- d:int
- true
- true
- 0
-
-
-
-
-
-
- Countable aspect
-
-
- d:int
- true
- true
- 0
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Records Management Model
+ Roy Wetherall
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RM Site
+ st:site
+ false
+
+
+
+
+ Caveat Config
+ cm:content
+ false
+
+
+
+ Email Config
+ cm:content
+
+ rma:filePlanComponent
+
+
+
+
+
+
+
+ Records Management Container
+ cm:folder
+ false
+
+
+ cm:titled
+ rma:recordComponentIdentifier
+ rma:filePlanComponent
+
+
+
+
+
+
+ Record Category
+ rma:recordsManagementContainer
+
+
+ rma:vitalRecordDefinition
+
+
+
+
+
+
+ File Plan
+ rma:recordsManagementContainer
+
+
+ rma:recordsManagementRoot
+
+
+
+
+
+ Unfiled Record Container
+ rma:recordsManagementContainer
+
+
+
+ Unfiled Record Folder
+ rma:recordsManagementContainer
+
+
+
+ Hold Container
+ rma:recordsManagementContainer
+
+ rma:countable
+
+
+
+
+ Transfer Container
+ rma:recordsManagementContainer
+
+ rma:countable
+
+
+
+
+
+
+ Disposition Schedule
+ cm:cmobject
+
+
+
+
+ Disposition Authority
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+
+ Disposition Instructions
+ d:text
+ true
+
+
+
+ Record Level Disposition
+ d:boolean
+ true
+ false
+
+
+
+
+
+
+
+ Disposition Actions
+
+ false
+ false
+
+
+ rma:dispositionActionDefinition
+ false
+ true
+
+
+
+
+
+
+ rma:filePlanComponent
+
+
+
+
+
+ Disposition Action Definition
+ cm:cmobject
+
+
+
+
+ Disposition Action Name
+ d:text
+ true
+
+
+
+ Disposition Description
+ d:text
+ false
+
+
+
+ Disposition Location
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+
+ Disposition Period
+ d:period
+ false
+ none|0
+
+
+
+ Disposition Period Property
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+
+ Disposition Event
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+
+ Disposition Event Combination
+ d:text
+ true
+ or
+
+ true
+ false
+ false
+
+
+
+
+
+ rma:filePlanComponent
+
+
+
+
+
+ Record Folder
+ cm:folder
+ false
+
+
+
+
+
+
+
+ Record Folder Closed
+ Indicates whether the folder is closed
+ d:boolean
+ true
+ true
+ false
+
+
+
+
+
+ cm:titled
+ rma:recordComponentIdentifier
+ rma:commonRecordDetails
+ rma:filePlanComponent
+ rma:heldChildren
+
+
+
+
+
+
+ Non-Electronic Document
+ cm:content
+ false
+
+
+
+ Document Physical Size
+ d:int
+ false
+
+ true
+ false
+ false
+
+
+
+
+ Number Of Copies
+ d:int
+ false
+ 1
+
+ true
+ false
+ false
+
+
+
+
+ Storage Location
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+
+ Shelf
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+
+ Box
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+
+ File
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+
+
+ rma:filePlanComponent
+
+
+
+
+ Disposition Action
+ cm:cmobject
+
+
+ Disposition Action Id
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+ Disposition Action
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+ Disposition Action Date
+ d:date
+ false
+
+
+ Disposition Events Eligible
+ d:boolean
+ false
+
+
+ Disposition Action Started At
+ d:date
+ false
+
+
+ Disposition Action Started By
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+ Disposition Action Completed At
+ d:date
+ false
+
+
+ Disposition Action Copmleted By
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+
+
+
+
+
+ Event executions
+
+ false
+ false
+
+
+ rma:eventExecution
+ false
+ true
+
+
+
+
+
+
+ rma:filePlanComponent
+
+
+
+
+
+
+ Event Execution
+ Execution details of an event
+ cm:cmobject
+
+
+
+
+ Event Name
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+ Event automatic
+ d:boolean
+ true
+
+
+ Event complete
+ d:boolean
+ true
+ false
+
+
+ Event completed by
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+ Event completed at
+ d:date
+ false
+
+
+
+
+
+ rma:filePlanComponent
+
+
+
+
+
+ Hold
+ rma:recordsManagementContainer
+ false
+
+
+
+
+ Hold Reason
+ d:text
+ true
+
+
+
+
+
+
+ Frozen Records
+
+ false
+ true
+
+
+ rma:filePlanComponent
+ false
+ true
+
+
+
+
+
+
+
+
+ Transfer
+ cm:folder
+ false
+
+
+
+
+ Transfer Accession Indicator
+ d:boolean
+ true
+ true
+
+
+
+ Transfer PDF Indicator
+ Indicates that transfer includes PDF
+ d:boolean
+ true
+ false
+
+
+
+ Transfer PDF Indicator
+ Transfer Location
+ d:text
+
+
+
+
+
+
+
+ Transferred
+
+ false
+ false
+
+
+ rma:dispositionLifecycle
+ false
+ true
+
+
+
+
+
+
+ cm:titled
+ rma:filePlanComponent
+
+
+
+
+
+
+
+
+
+
+
+ File Plan Component
+ false
+
+
+ Root node reference
+ d:noderef
+ true
+
+
+
+
+
+
+ Records Management Root
+
+
+
+
+ Holds
+
+ false
+ false
+
+
+ rma:hold
+ false
+ true
+
+
+
+
+
+ Transfers
+
+ false
+ false
+
+
+ rma:transfer
+ false
+ true
+
+
+
+
+
+
+
+ Declared Record
+
+
+ Date Declared
+ d:date
+
+
+ Declared By
+ d:text
+
+ true
+ false
+ false
+
+
+
+
+ rma:filePlanComponent
+
+
+
+
+ Record component identifier
+
+
+ Record Component Identifier
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+ Database uniqueness id
+ d:text
+ true
+ false
+
+
+
+ rma:filePlanComponent
+
+
+
+
+ Vital Record Definition
+
+
+ Review Period
+ d:period
+ none|0
+
+
+ Vital Record Indicator
+ d:boolean
+ false
+
+
+
+ rma:filePlanComponent
+
+
+
+
+
+
+ Record
+
+ false
+
+
+
+
+
+
+
+ Date Filed
+ d:date
+
+
+
+ Original Name
+ d:text
+ true
+
+
+
+
+
+
+
+ d:date
+ false
+
+
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+ d:date
+ false
+
+
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+
+
+
+ cm:titled
+ rma:recordComponentIdentifier
+ rma:commonRecordDetails
+ rma:filePlanComponent
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Location
+ d:text
+ false
+
+ true
+ false
+ false
+
+
+
+
+
+ rma:filePlanComponent
+
+
+
+
+
+
+
+
+ d:any
+ true
+
+
+ d:any
+ true
+
+
+
+
+
+
+
+ Vital Record
+
+
+ Next Review Date
+ d:date
+ false
+
+
+ Indicates whether a notification that this record is due for review has been issued
+ d:boolean
+ true
+ false
+ false
+
+
+
+ rma:filePlanComponent
+
+
+
+
+ Scheduled
+
+
+
+ Disposition Schedule
+
+ false
+ false
+
+
+ rma:dispositionSchedule
+ false
+ false
+
+
+
+
+
+ rma:filePlanComponent
+
+
+
+
+ Disposition Lifecycle
+
+
+
+ Next disposition action
+
+ false
+ false
+
+
+ rma:dispositionAction
+ false
+ false
+
+
+
+
+
+ Disposition Action History
+
+ false
+ false
+
+
+ rma:dispositionAction
+ false
+ true
+
+
+
+
+
+ rma:filePlanComponent
+
+
+
+
+
+ Cut Off
+
+
+ Cut Off Date
+ d:date
+ true
+
+
+
+
+
+ Uncut Off
+
+
+
+
+ Transferring
+
+
+
+
+ Transferred
+
+
+
+
+ Ascended
+
+
+
+ Frozen
+
+
+ Frozen At Date
+ d:date
+ true
+
+
+ Frozen By
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+
+
+
+ Caveat Config Root
+
+
+
+ true
+ false
+
+
+ rma:caveatConfig
+ false
+ false
+
+ false
+
+
+
+
+
+ Email Config Root
+
+
+
+ true
+ false
+
+
+ rma:emailConfig
+ false
+ false
+
+ false
+
+
+
+
+
+
+
+ Record Search
+
+
+ d:boolean
+ true
+
+
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+ d:date
+ true
+
+
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+ d:boolean
+ true
+
+
+ d:text
+ true
+ true
+
+ true
+ false
+ false
+
+
+
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+ d:text
+ true
+
+
+
+ d:text
+ true
+
+
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+ d:text
+ true
+
+ true
+ false
+ false
+
+
+
+
+
+
+ Versioned Record
+
+
+
+ Unpublished Update
+
+
+ d:boolean
+ true
+ true
+
+
+ d:text
+
+
+ d:any
+
+
+ d:boolean
+ true
+ false
+
+
+
+
+
+
+ Ghosted Record
+ false
+
+
+
+
+ Loaded Data Set Id
+
+
+ List of the loaded Data Set Ids
+ d:text
+ true
+
+
+
+
+
+
+ The originating details of a record
+
+
+ d:text
+ true
+
+
+ d:date
+ true
+
+
+ d:noderef
+ true
+
+
+
+
+
+
+ The rejection details of a record
+
+
+ d:text
+ true
+
+
+ d:date
+ true
+
+
+ d:text
+ true
+
+
+
+
+
+
+
+ Held children
+
+
+ d:int
+ true
+ true
+ 0
+
+
+
+
+
+
+ Countable aspect
+
+
+ d:int
+ true
+ true
+ 0
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/recordsPermissionModel.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/recordsPermissionModel.xml
index 59017fcf50..d545517f44 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/recordsPermissionModel.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/recordsPermissionModel.xml
@@ -1,497 +1,497 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/reportModel.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/reportModel.xml
index a69c725725..d2d67043a6 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/reportModel.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/reportModel.xml
@@ -1,51 +1,51 @@
-
-
-
-
-
-
-
-
- Records Management Report Model
- Roy Wetherall
- 1.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Report
- cm:content
-
-
- Destruction Report
- rmr:report
-
-
- Transfer Report
- rmr:report
-
-
- Hold Report
- rmr:report
-
-
-
+
+
+
+
+
+
+
+
+ Records Management Report Model
+ Roy Wetherall
+ 1.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Report
+ cm:content
+
+
+ Destruction Report
+ rmr:report
+
+
+ Transfer Report
+ rmr:report
+
+
+ Hold Report
+ rmr:report
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/rm-model-security-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/rm-model-security-context.xml
index 648d308704..d97f736648 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/rm-model-security-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/rm-model-security-context.xml
@@ -1,162 +1,162 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module-context.xml
index a5b3d722b5..0cd60808d3 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module-context.xml
@@ -1,261 +1,261 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /${spaces.company_home.childname}/${spaces.dictionary.childname}
- alfresco/module/org_alfresco_module_rm/bootstrap/RMDataDictionaryBootstrap.xml
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- alfresco.module.org_alfresco_module_rm.messages.notification-service
- alfresco.module.org_alfresco_module_rm.messages.admin-service
- alfresco.module.org_alfresco_module_rm.messages.records-management-service
- alfresco.module.org_alfresco_module_rm.messages.action-service
- alfresco.module.org_alfresco_module_rm.messages.audit-service
- alfresco.module.org_alfresco_module_rm.messages.rm-events
- alfresco.module.org_alfresco_module_rm.messages.capability-service
- alfresco.module.org_alfresco_module_rm.messages.dataset-service
- alfresco.module.org_alfresco_module_rm.messages.rm-system
- alfresco.module.org_alfresco_module_rm.messages.template
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- rmService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- caveatConfig
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- EEE, d MMM yyyy HH:mm:ss Z
- EEE, d MMM yy HH:mm:ss Z
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /${spaces.company_home.childname}/${spaces.dictionary.childname}
+ alfresco/module/org_alfresco_module_rm/bootstrap/RMDataDictionaryBootstrap.xml
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ alfresco.module.org_alfresco_module_rm.messages.notification-service
+ alfresco.module.org_alfresco_module_rm.messages.admin-service
+ alfresco.module.org_alfresco_module_rm.messages.records-management-service
+ alfresco.module.org_alfresco_module_rm.messages.action-service
+ alfresco.module.org_alfresco_module_rm.messages.audit-service
+ alfresco.module.org_alfresco_module_rm.messages.rm-events
+ alfresco.module.org_alfresco_module_rm.messages.capability-service
+ alfresco.module.org_alfresco_module_rm.messages.dataset-service
+ alfresco.module.org_alfresco_module_rm.messages.rm-system
+ alfresco.module.org_alfresco_module_rm.messages.template
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ rmService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ caveatConfig
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ EEE, d MMM yyyy HH:mm:ss Z
+ EEE, d MMM yy HH:mm:ss Z
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module.properties
index 0d8ed72b10..011b9d2820 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module.properties
@@ -1,11 +1,11 @@
-# Alfresco Records Management Module
-module.id=org_alfresco_module_rm
-
-# 23/02/2012 - Renamed
-module.aliases=org_alfresco_module_dod5015
-
-module.title=Records Management
-module.description=Alfresco Record Management Extension
-module.version=${rm.module.version}
-
+# Alfresco Records Management Module
+module.id=org_alfresco_module_rm
+
+# 23/02/2012 - Renamed
+module.aliases=org_alfresco_module_dod5015
+
+module.title=Records Management
+module.description=Alfresco Record Management Extension
+module.version=${rm.module.version}
+
module.repo.version.min=${rm.module.repo.version.min}
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-context.xml
index 684289caa3..7ca1fc7bab 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-context.xml
@@ -1,51 +1,51 @@
-
-
-
-
-
-
-
-
-
- classpath*:alfresco/module/org_alfresco_module_rm/version.properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+ classpath*:alfresco/module/org_alfresco_module_rm/version.properties
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml
index 863cc68bac..985a809082 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml
@@ -1,66 +1,66 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml
index 3652efbb00..aa0a740c59 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml
@@ -1,107 +1,107 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v22-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v22-context.xml
index ebe66b66e7..039ab39125 100755
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v22-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v22-context.xml
@@ -1,106 +1,106 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${rm.ghosting.enabled}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${rm.ghosting.enabled}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v23-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v23-context.xml
index ac52237135..1600a1b836 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v23-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v23-context.xml
@@ -1,37 +1,37 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v24-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v24-context.xml
index a67ec59f6b..e3e843041e 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v24-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v24-context.xml
@@ -1,18 +1,18 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMap.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMap.xml
index 3b050f6164..e3f1c1a89d 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMap.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMap.xml
@@ -1,23 +1,23 @@
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMapConfig.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMapConfig.xml
index bc08a1ec1b..8144e44bf6 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMapConfig.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMapConfig.xml
@@ -1,13 +1,13 @@
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-query-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-query-context.xml
index 69f8fb517c..59f1687234 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-query-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-query-context.xml
@@ -1,24 +1,24 @@
-
-
-
-
-
-
-
- classpath:alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMapConfig.xml
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ classpath:alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMapConfig.xml
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-action-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-action-context.xml
index 6042135cda..04257725c1 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-action-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-action-context.xml
@@ -1,1158 +1,1158 @@
-
-
-
-
-
-
-
-
-
- alfresco.module.org_alfresco_module_rm.messages.rm-actions
-
-
-
-
-
-
-
-
- RECORD_CATEGORY
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- js
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction
- org.alfresco.repo.action.executer.ActionExecuter
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_ALLOW
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.ApproveRecordsScheduledForCutoff
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.ApproveRecordsScheduledForCutoff
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.Destroy
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
- ${rm.ghosting.enabled}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.ReOpenFolders
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.CloseFolders
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.CycleVitalRecords
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM.Declare.0
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.UndeclareRecords
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.PlanningReviewCycles
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.ManuallyChangeDispositionDates
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_ALLOW
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_ALLOW
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.AddModifyEventDates
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.AddModifyEventDates
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.AuthorizeAllTransfers
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.AuthorizeNominatedTransfers
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.CreateModifyDestroyFileplanMetadata
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.RejectRecords
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.FileUnfiledRecords
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.rmCopy
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.rmMove
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.LinkToRecords
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.DeleteLinks
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${spaces.store}
-
-
- /${spaces.company_home.childname}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_ALLOW
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_ALLOW
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.DeleteHold
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.ExtendRetentionPeriodOrFreeze
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.Unfreeze
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.ViewUpdateReasonsForFreeze
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
- org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+ alfresco.module.org_alfresco_module_rm.messages.rm-actions
+
+
+
+
+
+
+
+
+ RECORD_CATEGORY
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ js
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction
+ org.alfresco.repo.action.executer.ActionExecuter
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_ALLOW
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.ApproveRecordsScheduledForCutoff
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.ApproveRecordsScheduledForCutoff
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.Destroy
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+ ${rm.ghosting.enabled}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.ReOpenFolders
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.CloseFolders
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.CycleVitalRecords
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM.Declare.0
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.UndeclareRecords
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.PlanningReviewCycles
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.ManuallyChangeDispositionDates
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_ALLOW
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_ALLOW
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.AddModifyEventDates
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.AddModifyEventDates
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.AuthorizeAllTransfers
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.AuthorizeNominatedTransfers
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.CreateModifyDestroyFileplanMetadata
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.RejectRecords
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.FileUnfiledRecords
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.rmCopy
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.rmMove
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.LinkToRecords
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.DeleteLinks
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${spaces.store}
+
+
+ /${spaces.company_home.childname}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_ALLOW
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_ALLOW
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.DeleteHold
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.ExtendRetentionPeriodOrFreeze
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.Unfreeze
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.execute=RM_CAP.0.rma:filePlanComponent.ViewUpdateReasonsForFreeze
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction.*=RM_ALLOW
+ org.alfresco.repo.action.executer.ActionExecuter.*=RM_ALLOW
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-audit-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-audit-context.xml
index 6f3d2bf7c9..61c53f3c6b 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-audit-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-audit-context.xml
@@ -1,95 +1,95 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-capabilities-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-capabilities-context.xml
index 97d7422e3a..b2491bc092 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-capabilities-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-capabilities-context.xml
@@ -1,156 +1,156 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-deprecated-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-deprecated-context.xml
index 7a855c5149..cc663d4f93 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-deprecated-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-deprecated-context.xml
@@ -1,136 +1,136 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.security.RecordsManagementSecurityService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.RecordsManagementService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.security.RecordsManagementSecurityService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.RecordsManagementService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-disposition-properties-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-disposition-properties-context.xml
index b83ba6243b..6577e35e1f 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-disposition-properties-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-disposition-properties-context.xml
@@ -1,40 +1,40 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- cutoff
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ cutoff
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-id-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-id-context.xml
index e31aa1708f..7db5343e41 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-id-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-id-context.xml
@@ -1,47 +1,47 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-job-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-job-context.xml
index fb5701337d..607fd1d9ec 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-job-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-job-context.xml
@@ -1,154 +1,154 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.job.RecordsManagementJob
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 0 0/15 * * * ?
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.job.RecordsManagementJob
-
-
-
-
-
-
-
-
-
-
-
- cutoff
- retain
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${rm.dispositionlifecycletrigger.cronexpression}
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.job.RecordsManagementJob
-
-
-
-
-
-
-
-
-
-
-
- 0/30 * * * * ?
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.job.RecordsManagementJob
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 0/15 * * * ?
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.job.RecordsManagementJob
+
+
+
+
+
+
+
+
+
+
+
+ cutoff
+ retain
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${rm.dispositionlifecycletrigger.cronexpression}
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.job.RecordsManagementJob
+
+
+
+
+
+
+
+
+
+
+
+ 0/30 * * * * ?
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-model-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-model-context.xml
index b0360da5ed..7eb9c17eda 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-model-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-model-context.xml
@@ -1,205 +1,205 @@
-
-
-
-
-
-
-
-
-
-
-
-
- alfresco/module/org_alfresco_module_rm/model/recordsModel.xml
-
-
-
-
- alfresco/module/org_alfresco_module_rm/messages/records-model
-
-
-
-
-
- /app:company_home/app:dictionary/cm:records_management
-
-
- path
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ alfresco/module/org_alfresco_module_rm/model/recordsModel.xml
+
+
+
+
+ alfresco/module/org_alfresco_module_rm/messages/records-model
+
+
+
+
+
+ /app:company_home/app:dictionary/cm:records_management
+
+
+ path
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-public-services-security-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-public-services-security-context.xml
index 13f2102dbe..8b773b3c9b 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-public-services-security-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-public-services-security-context.xml
@@ -1,176 +1,176 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- alfresco/model/permissionDefinitions.xml
-
-
- alfresco/model/permissionSchema.dtd
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {http://www.alfresco.org/model/recordsmanagement/1.0}filePlanComponent
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${system.acl.maxPermissionCheckTimeMillis}
-
-
- ${system.acl.maxPermissionChecks}
-
-
-
- {http://www.alfresco.org/model/recordsmanagement/1.0}filePlanComponent
-
-
-
-
-
-
- ${system.acl.maxPermissionCheckTimeMillis}
-
-
- ${system.acl.maxPermissionChecks}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ alfresco/model/permissionDefinitions.xml
+
+
+ alfresco/model/permissionSchema.dtd
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {http://www.alfresco.org/model/recordsmanagement/1.0}filePlanComponent
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${system.acl.maxPermissionCheckTimeMillis}
+
+
+ ${system.acl.maxPermissionChecks}
+
+
+
+ {http://www.alfresco.org/model/recordsmanagement/1.0}filePlanComponent
+
+
+
+
+
+
+ ${system.acl.maxPermissionCheckTimeMillis}
+
+
+ ${system.acl.maxPermissionChecks}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-report-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-report-context.xml
index 835c39182c..5df936757b 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-report-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-report-context.xml
@@ -1,106 +1,106 @@
-
-
-
-
-
-
-
-
-
-
- alfresco/module/org_alfresco_module_rm/model/reportModel.xml
-
-
-
-
- alfresco/module/org_alfresco_module_rm/messages/report-model
-
-
-
-
-
-
-
-
-
- alfresco.module.org_alfresco_module_rm.messages.report-service
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- rma:transfer
-
-
-
-
-
-
-
-
- rma:hold
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+ alfresco/module/org_alfresco_module_rm/model/reportModel.xml
+
+
+
+
+ alfresco/module/org_alfresco_module_rm/messages/report-model
+
+
+
+
+
+
+
+
+
+ alfresco.module.org_alfresco_module_rm.messages.report-service
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ rma:transfer
+
+
+
+
+
+
+
+
+ rma:hold
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-service-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-service-context.xml
index 5b25686727..0ed6c73149 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-service-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-service-context.xml
@@ -1,1649 +1,1649 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.vital.VitalRecordService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.disposition.DispositionService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.transfer.TransferService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.capability.CapabilityService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.search.RecordsManagementSearchService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.security.FilePlanPermissionService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.role.FilePlanRoleService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.security.ExtendedSecurityService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.model.security.ModelSecurityService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementActionService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.event.RecordsManagementEventService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- rma:recordCategory
- rma:recordFolder
- rma:record
- rma:nonElectronicDocument
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.admin.RecordsManagementAdminService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.freeze.FreezeService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- cm:lastThumbnailModification
- cm:autoVersion
- cm:autoVersionOnUpdateProps
- cm:initialVersion
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.audit.RecordsManagementAuditService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.recordfolder.RecordFolderService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.record.RecordService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.record.InplaceRecordService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.security.FilePlanAuthenticationService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Thread-Index
- messageFrom
- messageTo
- messageCc
- messageSubject
- messageSent
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.email.CustomEmailMappingService
-
-
-
- customEmailMappingService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.caveatConfigTransactionalCache
-
-
-
-
-
-
-
-
-
- {http://www.alfresco.org/model/recordsmanagement/1.0}recordComponentIdentifier
-
-
-
-
-
-
-
- {http://www.alfresco.org/model/rmcustom/1.0}rmcustom
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.caveat.RMCaveatConfigService
-
-
-
- caveatConfigService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.dataset.DataSetService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.hold.HoldService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.relationship.RelationshipService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- org.alfresco.module.org_alfresco_module_rm.recordableversion.RecordableVersionConfigService
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${server.transaction.mode.default}
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.vital.VitalRecordService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.disposition.DispositionService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.transfer.TransferService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.capability.CapabilityService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.search.RecordsManagementSearchService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.security.FilePlanPermissionService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.role.FilePlanRoleService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.security.ExtendedSecurityService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.model.security.ModelSecurityService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementActionService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.event.RecordsManagementEventService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ rma:recordCategory
+ rma:recordFolder
+ rma:record
+ rma:nonElectronicDocument
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.admin.RecordsManagementAdminService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.freeze.FreezeService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ cm:lastThumbnailModification
+ cm:autoVersion
+ cm:autoVersionOnUpdateProps
+ cm:initialVersion
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.audit.RecordsManagementAuditService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.recordfolder.RecordFolderService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.record.RecordService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.record.InplaceRecordService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.security.FilePlanAuthenticationService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Thread-Index
+ messageFrom
+ messageTo
+ messageCc
+ messageSubject
+ messageSent
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.email.CustomEmailMappingService
+
+
+
+ customEmailMappingService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.caveatConfigTransactionalCache
+
+
+
+
+
+
+
+
+
+ {http://www.alfresco.org/model/recordsmanagement/1.0}recordComponentIdentifier
+
+
+
+
+
+
+
+ {http://www.alfresco.org/model/rmcustom/1.0}rmcustom
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.caveat.RMCaveatConfigService
+
+
+
+ caveatConfigService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.dataset.DataSetService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.hold.HoldService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.relationship.RelationshipService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.alfresco.module.org_alfresco_module_rm.recordableversion.RecordableVersionConfigService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${server.transaction.mode.default}
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-ui-evaluators-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-ui-evaluators-context.xml
index a33e9d5673..3d8ea5c7e4 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-ui-evaluators-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-ui-evaluators-context.xml
@@ -1,927 +1,927 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
-
- RECORD_CATEGORY
- RECORD_FOLDER
- RECORD
- UNFILED_RECORD_FOLDER
- HOLD
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
- UNFILED_RECORD_CONTAINER
- UNFILED_RECORD_FOLDER
-
-
-
-
-
-
-
-
-
- RECORD_CATEGORY
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
- UNFILED_RECORD_CONTAINER
- UNFILED_RECORD_FOLDER
-
-
-
-
-
-
-
-
-
- RECORD_CATEGORY
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- UNFILED_RECORD_CONTAINER
- UNFILED_RECORD_FOLDER
-
-
-
-
-
-
-
-
-
- RECORD_CATEGORY
- RECORD_FOLDER
- RECORD
- UNFILED_RECORD_FOLDER
- HOLD
-
-
-
-
-
-
-
-
-
- FILE_PLAN
- RECORD
- RECORD_CATEGORY
- RECORD_FOLDER
- UNFILED_RECORD_CONTAINER
- UNFILED_RECORD_FOLDER
- HOLD_CONTAINER
- HOLD
- TRANSFER
- TRANSFER_CONTAINER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
- TRANSFER
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD_FOLDER
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
- FILE_PLAN
- RECORD_CATEGORY
-
-
-
-
-
-
-
-
-
- RECORD_CATEGORY
-
-
-
-
-
-
-
-
-
- UNFILED_RECORD_CONTAINER
- UNFILED_RECORD_FOLDER
-
-
-
-
-
-
-
-
-
- FILE_PLAN
- RECORD_CATEGORY
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
-
- FILE_PLAN
- RECORD_CATEGORY
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
-
-
-
- TRANSFER
-
-
-
-
-
-
-
-
-
- TRANSFER
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
-
- FILE_PLAN
- RECORD_CATEGORY
- RECORD_FOLDER
- UNFILED_RECORD_CONTAINER
- UNFILED_RECORD_FOLDER
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
-
-
-
-
-
- RECORD_CATEGORY
-
-
-
-
-
-
-
-
- RECORD
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
- HOLD_CONTAINER
-
-
-
-
-
-
-
-
-
- RECORD
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
- RECORD
- RECORD_FOLDER
-
-
-
-
-
-
-
-
-
- HOLD
-
-
-
-
-
-
-
-
-
- HOLD
-
-
-
-
-
-
-
-
-
- HOLD
-
-
-
-
-
-
-
-
-
- RECORD
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+
+ RECORD_CATEGORY
+ RECORD_FOLDER
+ RECORD
+ UNFILED_RECORD_FOLDER
+ HOLD
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+ UNFILED_RECORD_CONTAINER
+ UNFILED_RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+ RECORD_CATEGORY
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+ UNFILED_RECORD_CONTAINER
+ UNFILED_RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+ RECORD_CATEGORY
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ UNFILED_RECORD_CONTAINER
+ UNFILED_RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+ RECORD_CATEGORY
+ RECORD_FOLDER
+ RECORD
+ UNFILED_RECORD_FOLDER
+ HOLD
+
+
+
+
+
+
+
+
+
+ FILE_PLAN
+ RECORD
+ RECORD_CATEGORY
+ RECORD_FOLDER
+ UNFILED_RECORD_CONTAINER
+ UNFILED_RECORD_FOLDER
+ HOLD_CONTAINER
+ HOLD
+ TRANSFER
+ TRANSFER_CONTAINER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+ TRANSFER
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD_FOLDER
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+ FILE_PLAN
+ RECORD_CATEGORY
+
+
+
+
+
+
+
+
+
+ RECORD_CATEGORY
+
+
+
+
+
+
+
+
+
+ UNFILED_RECORD_CONTAINER
+ UNFILED_RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+ FILE_PLAN
+ RECORD_CATEGORY
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+
+ FILE_PLAN
+ RECORD_CATEGORY
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+
+
+
+ TRANSFER
+
+
+
+
+
+
+
+
+
+ TRANSFER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+
+ FILE_PLAN
+ RECORD_CATEGORY
+ RECORD_FOLDER
+ UNFILED_RECORD_CONTAINER
+ UNFILED_RECORD_FOLDER
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
+
+
+
+
+
+ RECORD_CATEGORY
+
+
+
+
+
+
+
+
+ RECORD
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+ HOLD_CONTAINER
+
+
+
+
+
+
+
+
+
+ RECORD
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+ RECORD
+ RECORD_FOLDER
+
+
+
+
+
+
+
+
+
+ HOLD
+
+
+
+
+
+
+
+
+
+ HOLD
+
+
+
+
+
+
+
+
+
+ HOLD
+
+
+
+
+
+
+
+
+
+ RECORD
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-version-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-version-context.xml
index d9de79a796..1f755ca57f 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-version-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-version-context.xml
@@ -1,92 +1,92 @@
-
-
-
-
-
-
-
-
-
- alfresco/module/org_alfresco_module_rm/model/recordableVersionModel.xml
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+ alfresco/module/org_alfresco_module_rm/model/recordableVersionModel.xml
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-webscript-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-webscript-context.xml
index 728ac66fc5..fedd555546 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-webscript-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-webscript-context.xml
@@ -1,666 +1,666 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ${rm.autocompletesuggestion.minfragmentsize}
-
-
- ${rm.autocompletesuggestion.maxsuggestions.path}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${rm.autocompletesuggestion.minfragmentsize}
+
+
+ ${rm.autocompletesuggestion.maxsuggestions.path}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-workflow-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-workflow-context.xml
index 6f843caa09..5b6dab5093 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-workflow-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-workflow-context.xml
@@ -1,27 +1,27 @@
-
-
-
-
-
-
-
-
- activiti
- alfresco/workflow/requestInfo.bpmn20.xml
- text/xml
- false
-
-
-
-
-
- alfresco/workflow/rmWorkflowModel.xml
-
-
-
-
- alfresco/workflow/rm-workflow-messages
-
-
-
+
+
+
+
+
+
+
+
+ activiti
+ alfresco/workflow/requestInfo.bpmn20.xml
+ text/xml
+ false
+
+
+
+
+
+ alfresco/workflow/rmWorkflowModel.xml
+
+
+
+
+ alfresco/workflow/rm-workflow-messages
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-default-roles-bootstrap.json b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-default-roles-bootstrap.json
index 6b8ebd547a..5771b8d991 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-default-roles-bootstrap.json
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-default-roles-bootstrap.json
@@ -1,225 +1,225 @@
-[
- {
- "name" : "ExtendedReaders",
- "displayLabel" : "rm.role.extendedReaders",
- "isAdmin" : false,
- "capabilities" :
- [
- "ViewRecords"
- ]
- },
- {
- "name" : "ExtendedWriters",
- "displayLabel" : "rm.role.extendedWriters",
- "isAdmin" : false,
- "capabilities" :
- [
- "ViewRecords",
- "EditNonRecordMetadata"
- ]
- },
- {
- "name" : "User",
- "displayLabel" : "rm.role.user",
- "isAdmin" : false,
- "capabilities" :
- [
- "DeclareRecords",
- "ViewRecords"
- ]
- },
- {
- "name" : "PowerUser",
- "displayLabel" : "rm.role.powerUser",
- "isAdmin" : false,
- "capabilities" :
- [
- "DeclareRecords",
- "ViewRecords",
- "CreateRecords",
- "CreateModifyDestroyFolders",
- "EditRecordMetadata",
- "EditNonRecordMetadata",
- "AddModifyEventDates",
- "CloseFolders",
- "DeclareRecordsInClosedFolders",
- "ReOpenFolders",
- "CycleVitalRecords",
- "PlanningReviewCycles",
- "RequestRecordInformation",
- "FileUnfiledRecords",
- "RejectRecords",
- "LinkToRecords"
- ]
- },
- {
- "name" : "SecurityOfficer",
- "displayLabel" : "rm.role.securityOfficer",
- "isAdmin" : false,
- "capabilities" :
- [
- "DeclareRecords",
- "ViewRecords",
- "CreateRecords",
- "CreateModifyDestroyFolders",
- "EditRecordMetadata",
- "EditNonRecordMetadata",
- "AddModifyEventDates",
- "CloseFolders",
- "DeclareRecordsInClosedFolders",
- "ReOpenFolders",
- "CycleVitalRecords",
- "PlanningReviewCycles",
- "RequestRecordInformation",
- "FileUnfiledRecords",
- "RejectRecords",
- "LinkToRecords",
- "ManageAccessControls"
- ]
- },
- {
- "name" : "RecordsManager",
- "displayLabel" : "rm.role.recordsManager",
- "isAdmin" : false,
- "capabilities" :
- [
- "DeclareRecords",
- "ViewRecords",
- "CreateRecords",
- "CreateModifyDestroyFolders",
- "EditRecordMetadata",
- "EditNonRecordMetadata",
- "AddModifyEventDates",
- "CloseFolders",
- "DeclareRecordsInClosedFolders",
- "ReOpenFolders",
- "CycleVitalRecords",
- "PlanningReviewCycles",
- "UpdateTriggerDates",
- "CreateModifyDestroyEvents",
- "ManageAccessRights",
- "MoveRecords",
- "ChangeOrDeleteReferences",
- "DeleteLinks",
- "EditDeclaredRecordMetadata",
- "ManuallyChangeDispositionDates",
- "ApproveRecordsScheduledForCutoff",
- "CreateModifyRecordsInCutoffFolders",
- "ExtendRetentionPeriodOrFreeze",
- "ViewUpdateReasonsForFreeze",
- "DestroyRecordsScheduledForDestruction",
- "UpdateVitalRecordCycleInformation",
- "UndeclareRecords",
- "DeclareAuditAsRecord",
- "DeleteAudit",
- "AuthorizeNominatedTransfers",
- "EditSelectionLists",
- "AuthorizeAllTransfers",
- "CreateModifyDestroyFileplanMetadata",
- "CreateAndAssociateSelectionLists",
- "AttachRulesToMetadataProperties",
- "CreateModifyDestroyFileplanTypes",
- "CreateModifyDestroyRecordTypes",
- "MakeOptionalParametersMandatory",
- "MapEmailMetadata",
- "DeleteRecords",
- "TriggerAnEvent",
- "CreateModifyDestroyRoles",
- "PasswordControl",
- "EnableDisableAuditByTypes",
- "SelectAuditMetadata",
- "DisplayRightsReport",
- "AccessAudit",
- "ExportAudit",
- "CreateModifyDestroyReferenceTypes",
- "RequestRecordInformation",
- "FileDestructionReport",
- "FileUnfiledRecords",
- "RejectRecords",
- "LinkToRecords",
- "FileTransferReport",
- "CreateHold",
- "AddToHold",
- "RemoveFromHold",
- "FileHoldReport",
- "DeleteHold",
- "EndRetention",
- "EditHold",
- "ManageAccessControls"
-
- ]
- },
- {
- "name" : "Administrator",
- "displayLabel" : "rm.role.administrator",
- "isAdmin" : true,
- "capabilities" :
- [
- "DeclareRecords",
- "ViewRecords",
- "CreateRecords",
- "CreateModifyDestroyFolders",
- "EditRecordMetadata",
- "EditNonRecordMetadata",
- "AddModifyEventDates",
- "CloseFolders",
- "DeclareRecordsInClosedFolders",
- "ReOpenFolders",
- "CycleVitalRecords",
- "PlanningReviewCycles",
- "UpdateTriggerDates",
- "CreateModifyDestroyEvents",
- "ManageAccessRights",
- "MoveRecords",
- "ChangeOrDeleteReferences",
- "DeleteLinks",
- "EditDeclaredRecordMetadata",
- "ManuallyChangeDispositionDates",
- "ApproveRecordsScheduledForCutoff",
- "CreateModifyRecordsInCutoffFolders",
- "ExtendRetentionPeriodOrFreeze",
- "ViewUpdateReasonsForFreeze",
- "DestroyRecordsScheduledForDestruction",
- "UpdateVitalRecordCycleInformation",
- "UndeclareRecords",
- "DeclareAuditAsRecord",
- "DeleteAudit",
- "AuthorizeNominatedTransfers",
- "EditSelectionLists",
- "AuthorizeAllTransfers",
- "CreateModifyDestroyFileplanMetadata",
- "CreateAndAssociateSelectionLists",
- "AttachRulesToMetadataProperties",
- "CreateModifyDestroyFileplanTypes",
- "CreateModifyDestroyRecordTypes",
- "MakeOptionalParametersMandatory",
- "MapEmailMetadata",
- "DeleteRecords",
- "TriggerAnEvent",
- "CreateModifyDestroyRoles",
- "CreateModifyDestroyUsersAndGroups",
- "PasswordControl",
- "EnableDisableAuditByTypes",
- "SelectAuditMetadata",
- "DisplayRightsReport",
- "AccessAudit",
- "ExportAudit",
- "CreateModifyDestroyReferenceTypes",
- "ManageAccessControls",
- "ManageRules",
- "RequestRecordInformation",
- "FileDestructionReport",
- "FileUnfiledRecords",
- "RejectRecords",
- "LinkToRecords",
- "FileTransferReport",
- "CreateHold",
- "AddToHold",
- "RemoveFromHold",
- "FileHoldReport",
- "DeleteHold",
- "EditHold",
- "EndRetention"
- ]
- }
+[
+ {
+ "name" : "ExtendedReaders",
+ "displayLabel" : "rm.role.extendedReaders",
+ "isAdmin" : false,
+ "capabilities" :
+ [
+ "ViewRecords"
+ ]
+ },
+ {
+ "name" : "ExtendedWriters",
+ "displayLabel" : "rm.role.extendedWriters",
+ "isAdmin" : false,
+ "capabilities" :
+ [
+ "ViewRecords",
+ "EditNonRecordMetadata"
+ ]
+ },
+ {
+ "name" : "User",
+ "displayLabel" : "rm.role.user",
+ "isAdmin" : false,
+ "capabilities" :
+ [
+ "DeclareRecords",
+ "ViewRecords"
+ ]
+ },
+ {
+ "name" : "PowerUser",
+ "displayLabel" : "rm.role.powerUser",
+ "isAdmin" : false,
+ "capabilities" :
+ [
+ "DeclareRecords",
+ "ViewRecords",
+ "CreateRecords",
+ "CreateModifyDestroyFolders",
+ "EditRecordMetadata",
+ "EditNonRecordMetadata",
+ "AddModifyEventDates",
+ "CloseFolders",
+ "DeclareRecordsInClosedFolders",
+ "ReOpenFolders",
+ "CycleVitalRecords",
+ "PlanningReviewCycles",
+ "RequestRecordInformation",
+ "FileUnfiledRecords",
+ "RejectRecords",
+ "LinkToRecords"
+ ]
+ },
+ {
+ "name" : "SecurityOfficer",
+ "displayLabel" : "rm.role.securityOfficer",
+ "isAdmin" : false,
+ "capabilities" :
+ [
+ "DeclareRecords",
+ "ViewRecords",
+ "CreateRecords",
+ "CreateModifyDestroyFolders",
+ "EditRecordMetadata",
+ "EditNonRecordMetadata",
+ "AddModifyEventDates",
+ "CloseFolders",
+ "DeclareRecordsInClosedFolders",
+ "ReOpenFolders",
+ "CycleVitalRecords",
+ "PlanningReviewCycles",
+ "RequestRecordInformation",
+ "FileUnfiledRecords",
+ "RejectRecords",
+ "LinkToRecords",
+ "ManageAccessControls"
+ ]
+ },
+ {
+ "name" : "RecordsManager",
+ "displayLabel" : "rm.role.recordsManager",
+ "isAdmin" : false,
+ "capabilities" :
+ [
+ "DeclareRecords",
+ "ViewRecords",
+ "CreateRecords",
+ "CreateModifyDestroyFolders",
+ "EditRecordMetadata",
+ "EditNonRecordMetadata",
+ "AddModifyEventDates",
+ "CloseFolders",
+ "DeclareRecordsInClosedFolders",
+ "ReOpenFolders",
+ "CycleVitalRecords",
+ "PlanningReviewCycles",
+ "UpdateTriggerDates",
+ "CreateModifyDestroyEvents",
+ "ManageAccessRights",
+ "MoveRecords",
+ "ChangeOrDeleteReferences",
+ "DeleteLinks",
+ "EditDeclaredRecordMetadata",
+ "ManuallyChangeDispositionDates",
+ "ApproveRecordsScheduledForCutoff",
+ "CreateModifyRecordsInCutoffFolders",
+ "ExtendRetentionPeriodOrFreeze",
+ "ViewUpdateReasonsForFreeze",
+ "DestroyRecordsScheduledForDestruction",
+ "UpdateVitalRecordCycleInformation",
+ "UndeclareRecords",
+ "DeclareAuditAsRecord",
+ "DeleteAudit",
+ "AuthorizeNominatedTransfers",
+ "EditSelectionLists",
+ "AuthorizeAllTransfers",
+ "CreateModifyDestroyFileplanMetadata",
+ "CreateAndAssociateSelectionLists",
+ "AttachRulesToMetadataProperties",
+ "CreateModifyDestroyFileplanTypes",
+ "CreateModifyDestroyRecordTypes",
+ "MakeOptionalParametersMandatory",
+ "MapEmailMetadata",
+ "DeleteRecords",
+ "TriggerAnEvent",
+ "CreateModifyDestroyRoles",
+ "PasswordControl",
+ "EnableDisableAuditByTypes",
+ "SelectAuditMetadata",
+ "DisplayRightsReport",
+ "AccessAudit",
+ "ExportAudit",
+ "CreateModifyDestroyReferenceTypes",
+ "RequestRecordInformation",
+ "FileDestructionReport",
+ "FileUnfiledRecords",
+ "RejectRecords",
+ "LinkToRecords",
+ "FileTransferReport",
+ "CreateHold",
+ "AddToHold",
+ "RemoveFromHold",
+ "FileHoldReport",
+ "DeleteHold",
+ "EndRetention",
+ "EditHold",
+ "ManageAccessControls"
+
+ ]
+ },
+ {
+ "name" : "Administrator",
+ "displayLabel" : "rm.role.administrator",
+ "isAdmin" : true,
+ "capabilities" :
+ [
+ "DeclareRecords",
+ "ViewRecords",
+ "CreateRecords",
+ "CreateModifyDestroyFolders",
+ "EditRecordMetadata",
+ "EditNonRecordMetadata",
+ "AddModifyEventDates",
+ "CloseFolders",
+ "DeclareRecordsInClosedFolders",
+ "ReOpenFolders",
+ "CycleVitalRecords",
+ "PlanningReviewCycles",
+ "UpdateTriggerDates",
+ "CreateModifyDestroyEvents",
+ "ManageAccessRights",
+ "MoveRecords",
+ "ChangeOrDeleteReferences",
+ "DeleteLinks",
+ "EditDeclaredRecordMetadata",
+ "ManuallyChangeDispositionDates",
+ "ApproveRecordsScheduledForCutoff",
+ "CreateModifyRecordsInCutoffFolders",
+ "ExtendRetentionPeriodOrFreeze",
+ "ViewUpdateReasonsForFreeze",
+ "DestroyRecordsScheduledForDestruction",
+ "UpdateVitalRecordCycleInformation",
+ "UndeclareRecords",
+ "DeclareAuditAsRecord",
+ "DeleteAudit",
+ "AuthorizeNominatedTransfers",
+ "EditSelectionLists",
+ "AuthorizeAllTransfers",
+ "CreateModifyDestroyFileplanMetadata",
+ "CreateAndAssociateSelectionLists",
+ "AttachRulesToMetadataProperties",
+ "CreateModifyDestroyFileplanTypes",
+ "CreateModifyDestroyRecordTypes",
+ "MakeOptionalParametersMandatory",
+ "MapEmailMetadata",
+ "DeleteRecords",
+ "TriggerAnEvent",
+ "CreateModifyDestroyRoles",
+ "CreateModifyDestroyUsersAndGroups",
+ "PasswordControl",
+ "EnableDisableAuditByTypes",
+ "SelectAuditMetadata",
+ "DisplayRightsReport",
+ "AccessAudit",
+ "ExportAudit",
+ "CreateModifyDestroyReferenceTypes",
+ "ManageAccessControls",
+ "ManageRules",
+ "RequestRecordInformation",
+ "FileDestructionReport",
+ "FileUnfiledRecords",
+ "RejectRecords",
+ "LinkToRecords",
+ "FileTransferReport",
+ "CreateHold",
+ "AddToHold",
+ "RemoveFromHold",
+ "FileHoldReport",
+ "DeleteHold",
+ "EditHold",
+ "EndRetention"
+ ]
+ }
]
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-method-security-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-method-security-context.xml
index 6931347171..1d500571ab 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-method-security-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-method-security-context.xml
@@ -1,20 +1,20 @@
-
-
-
-
-
-
-
-
- classpath*:alfresco/module/org_alfresco_module_rm/security/rm-method-security.properties
-
- classpath*:alfresco/extension/rm-method-security.properties
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ classpath*:alfresco/module/org_alfresco_module_rm/security/rm-method-security.properties
+
+ classpath*:alfresco/extension/rm-method-security.properties
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-method-security.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-method-security.properties
index 385b0d397e..350505fa84 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-method-security.properties
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-method-security.properties
@@ -1,228 +1,228 @@
-##
-# RM Method security for Alfresco code services
-#
-# Note: add alfresco/extension/rm-method-security.properties to extend
-##
-
-## Node Service
-
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getStores=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.createStore=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.exists=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getNodeStatus=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getAllRootNodes=RM.Read.0,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getRootNode=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.createNode=RM.Create.0.3
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.moveNode=RM.Move.0.1
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.setChildAssociationIndex=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getType=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.setType=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.addAspect=RM.Update.0.1.2
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.removeAspect=RM.Update.0.1
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.hasAspect=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getAspects=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.deleteNode=RM.Delete.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.addChild=RM.Create.0.1.2
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.removeChild=RM.Delete.0.1
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.removeChildAssociation=RM.Delete.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getProperties=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getProperty=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.setProperties=RM.UpdateProperties.0.1
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.addProperties=RM.UpdateProperties.0.1
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.setProperty=RM.UpdateProperties.0.1.2
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.removeProperty=RM.UpdateProperties.0.1
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getParentAssocs=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getParentAssocs=RM.Read.0.1.2
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getChildAssocs=RM.Read.0,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getChildByName=RM.Read.0,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getChildrenByName=RM.Read.0,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getPrimaryParent=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.createAssociation=RM.Assoc.0.1
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.removeAssociation=Assoc.0.1
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getTargetAssocs=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getSourceAssocs=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getAssoc=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getPath=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getPaths=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getStoreArchiveNode=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.restoreNode=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getChildAssocsWithoutParentAssocsOfType=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getNodeRef=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getChildAssocsByPropertyValue=RM.Read.0,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.countChildAssocs=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getNodeAclId=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.*=RM_DENY
-
-## File Folder Service
-
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.list=RM.Read.0,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.listFiles=RM.Read.0,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.listFolders=RM.Read.0,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.listDeepFolders=RM.Read.0,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.getLocalizedSibling=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.search=RM.Read.0,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.searchSimple=RM.Read.0,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.rename=RM.Update.0
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.move=RM.Move.0.1
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.moveFrom=RM.Move.0.2
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.copy=RM.Read.0,RM.Create.1.0
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.create=RM.Create.0
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.delete=RM.Delete.0
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.getNamePath=RM.Read.1
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.getNameOnlyPath=RM.Read.1
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.resolveNamePath=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.getFileInfo=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.getReader=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.getWriter=RM.WriteContent.0
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.exists=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.getType=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.isHidden=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.setHidden=RM.Update.0
-rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.*=RM_DENY
-
-## Content Service
-
-rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getStoreTotalSpace=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getStoreFreeSpace=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getRawReader=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getReader=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getWriter=RM.WriteContent.0
-rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.isTransformable=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getTransformer=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getMaxSourceSizeBytes=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getImageTransformer=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.transform=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getTempWriter=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.*=RM_DENY
-
-## Search Service
-
-rm.methodsecurity.org.alfresco.service.cmr.search.SearchService.query=RM_QUERY,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.search.SearchService.selectNodes=RM_QUERY,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.search.SearchService.selectProperties=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.search.SearchService.contains=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.search.SearchService.like=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.search.SearchService.*=RM_DENY
-
-## Category Service
-
-rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.getChildren=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.getCategories=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.getClassifications=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.getRootCategories=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.getClassificationAspects=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.createClassification=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.createRootCategory=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.createCategory=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.deleteClassification=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.deleteCategory=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.getTopCategories=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.*=RM_DENY
-
-## Lock Service
-
-rm.methodsecurity.org.alfresco.service.cmr.lock.LockService.lock=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.lock.LockService.unlock=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.lock.LockService.getLockStatus=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.lock.LockService.getLockType=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.lock.LockService.checkForLock=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.lock.LockService.getLocks=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.lock.LockService.*=RM_DENY
-
-## Multilingual Content Service
-
-rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.getTranslationContainer=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.getTranslations=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.getTranslationForLocale=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.getMissingTranslations=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.getPivotTranslation=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.isTranslation=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.makeTranslation=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.unmakeTranslation=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.addTranslation=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.addEmptyTranslation=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.copyTranslationContainer=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.moveTranslationContainer=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.deleteTranslationContainer=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.*=RM_DENY
-
-## Edition Service
-
-rm.methodsecurity.org.alfresco.service.cmr.ml.EditionService.createEdition=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.ml.EditionService.getEditions=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.ml.EditionService.getVersionedTranslations=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.ml.EditionService.getVersionedMetadatas=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.ml.EditionService.*=RM_DENY
-
-## Check Out Check In Service
-
-rm.methodsecurity.org.alfresco.service.cmr.coci.CheckOutCheckInService.checkout=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.coci.CheckOutCheckInService.checkin=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.coci.CheckOutCheckInService.cancelCheckout=RM_ABSTAIN
-rm.methodsecurity.org.alfresco.service.cmr.coci.CheckOutCheckInService.getWorkingCopy=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.coci.CheckOutCheckInService.getCheckedOut=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.coci.CheckOutCheckInService.isWorkingCopy=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.coci.CheckOutCheckInService.isCheckedOut=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.coci.CheckOutCheckInService.*=RM_DENY
-
-## Permission Service
-
-rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.getOwnerAuthority=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.getAllAuthorities=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.getAllPermission=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.getPermissions=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.getAllSetPermissions=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.getSettablePermissions=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.hasPermission=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.deletePermissions=RM_CAP.0.rma:filePlanComponent.ManageAccessRights
-rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.deletePermission=RM_CAP.0.rma:filePlanComponent.ManageAccessRights
-rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.setPermission=RM_CAP.0.rma:filePlanComponent.ManageAccessRights
-rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.setInheritParentPermissions=RM_CAP.0.rma:filePlanComponent.ManageAccessRights
-rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.getInheritParentPermissions=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.clearPermission=RM_CAP.0.rma:filePlanComponent.ManageAccessRights
-rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.*=RM_DENY
-
-## Site service
-
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.cleanSitePermissions=RM.Read.0
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.createContainer=RM_ALLOW,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.createSite=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.deleteSite=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.findSites=RM_ALLOW,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getContainer=RM_ALLOW,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getMembersRole=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getMembersRoleInfo=ACL_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getSite=RM_ALLOW,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getSiteGroup=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getSiteRoleGroup=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getSiteRoles=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getSiteRoot=RM_ALLOW,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.hasContainer=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.hasCreateSitePermissions=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.isMember=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.listMembers=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.listMembersInfo=ACL_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.listSites=RM_ALLOW,AFTER_RM.FilterNode
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.removeMembership=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.setMembership=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.updateSite=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.listMembersPaged=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.listContainers=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.countAuthoritiesWithRole=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.resolveSite=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.hasSite=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.listSitesPaged=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getSiteShortName=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.canAddMember=RM_ALLOW
-rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.*=RM_ALLOW
-
-## Form Service
-
-rm.methodsecurity.org.alfresco.repo.forms.FormService.getForm=RM_ALLOW
-rm.methodsecurity.org.alfresco.repo.forms.FormService.saveForm=RM_ALLOW
-rm.methodsecurity.org.alfresco.repo.forms.FormService.*=RM_DENY
-
-## Ownable Service
-
-rm.methodsecurity.org.alfresco.service.cmr.security.OwnableService.getOwner=RM.Read.0
+##
+# RM Method security for Alfresco code services
+#
+# Note: add alfresco/extension/rm-method-security.properties to extend
+##
+
+## Node Service
+
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getStores=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.createStore=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.exists=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getNodeStatus=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getAllRootNodes=RM.Read.0,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getRootNode=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.createNode=RM.Create.0.3
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.moveNode=RM.Move.0.1
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.setChildAssociationIndex=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getType=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.setType=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.addAspect=RM.Update.0.1.2
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.removeAspect=RM.Update.0.1
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.hasAspect=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getAspects=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.deleteNode=RM.Delete.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.addChild=RM.Create.0.1.2
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.removeChild=RM.Delete.0.1
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.removeChildAssociation=RM.Delete.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getProperties=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getProperty=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.setProperties=RM.UpdateProperties.0.1
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.addProperties=RM.UpdateProperties.0.1
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.setProperty=RM.UpdateProperties.0.1.2
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.removeProperty=RM.UpdateProperties.0.1
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getParentAssocs=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getParentAssocs=RM.Read.0.1.2
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getChildAssocs=RM.Read.0,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getChildByName=RM.Read.0,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getChildrenByName=RM.Read.0,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getPrimaryParent=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.createAssociation=RM.Assoc.0.1
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.removeAssociation=Assoc.0.1
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getTargetAssocs=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getSourceAssocs=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getAssoc=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getPath=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getPaths=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getStoreArchiveNode=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.restoreNode=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getChildAssocsWithoutParentAssocsOfType=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getNodeRef=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getChildAssocsByPropertyValue=RM.Read.0,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.countChildAssocs=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.getNodeAclId=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.NodeService.*=RM_DENY
+
+## File Folder Service
+
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.list=RM.Read.0,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.listFiles=RM.Read.0,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.listFolders=RM.Read.0,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.listDeepFolders=RM.Read.0,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.getLocalizedSibling=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.search=RM.Read.0,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.searchSimple=RM.Read.0,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.rename=RM.Update.0
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.move=RM.Move.0.1
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.moveFrom=RM.Move.0.2
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.copy=RM.Read.0,RM.Create.1.0
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.create=RM.Create.0
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.delete=RM.Delete.0
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.getNamePath=RM.Read.1
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.getNameOnlyPath=RM.Read.1
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.resolveNamePath=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.getFileInfo=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.getReader=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.getWriter=RM.WriteContent.0
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.exists=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.getType=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.isHidden=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.setHidden=RM.Update.0
+rm.methodsecurity.org.alfresco.service.cmr.model.FileFolderService.*=RM_DENY
+
+## Content Service
+
+rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getStoreTotalSpace=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getStoreFreeSpace=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getRawReader=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getReader=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getWriter=RM.WriteContent.0
+rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.isTransformable=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getTransformer=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getMaxSourceSizeBytes=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getImageTransformer=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.transform=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.getTempWriter=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.repository.ContentService.*=RM_DENY
+
+## Search Service
+
+rm.methodsecurity.org.alfresco.service.cmr.search.SearchService.query=RM_QUERY,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.search.SearchService.selectNodes=RM_QUERY,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.search.SearchService.selectProperties=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.search.SearchService.contains=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.search.SearchService.like=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.search.SearchService.*=RM_DENY
+
+## Category Service
+
+rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.getChildren=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.getCategories=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.getClassifications=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.getRootCategories=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.getClassificationAspects=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.createClassification=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.createRootCategory=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.createCategory=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.deleteClassification=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.deleteCategory=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.getTopCategories=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.search.CategoryService.*=RM_DENY
+
+## Lock Service
+
+rm.methodsecurity.org.alfresco.service.cmr.lock.LockService.lock=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.lock.LockService.unlock=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.lock.LockService.getLockStatus=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.lock.LockService.getLockType=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.lock.LockService.checkForLock=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.lock.LockService.getLocks=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.lock.LockService.*=RM_DENY
+
+## Multilingual Content Service
+
+rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.getTranslationContainer=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.getTranslations=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.getTranslationForLocale=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.getMissingTranslations=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.getPivotTranslation=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.isTranslation=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.makeTranslation=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.unmakeTranslation=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.addTranslation=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.addEmptyTranslation=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.copyTranslationContainer=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.moveTranslationContainer=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.deleteTranslationContainer=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.ml.MultilingualContentService.*=RM_DENY
+
+## Edition Service
+
+rm.methodsecurity.org.alfresco.service.cmr.ml.EditionService.createEdition=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.ml.EditionService.getEditions=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.ml.EditionService.getVersionedTranslations=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.ml.EditionService.getVersionedMetadatas=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.ml.EditionService.*=RM_DENY
+
+## Check Out Check In Service
+
+rm.methodsecurity.org.alfresco.service.cmr.coci.CheckOutCheckInService.checkout=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.coci.CheckOutCheckInService.checkin=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.coci.CheckOutCheckInService.cancelCheckout=RM_ABSTAIN
+rm.methodsecurity.org.alfresco.service.cmr.coci.CheckOutCheckInService.getWorkingCopy=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.coci.CheckOutCheckInService.getCheckedOut=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.coci.CheckOutCheckInService.isWorkingCopy=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.coci.CheckOutCheckInService.isCheckedOut=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.coci.CheckOutCheckInService.*=RM_DENY
+
+## Permission Service
+
+rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.getOwnerAuthority=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.getAllAuthorities=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.getAllPermission=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.getPermissions=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.getAllSetPermissions=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.getSettablePermissions=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.hasPermission=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.deletePermissions=RM_CAP.0.rma:filePlanComponent.ManageAccessRights
+rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.deletePermission=RM_CAP.0.rma:filePlanComponent.ManageAccessRights
+rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.setPermission=RM_CAP.0.rma:filePlanComponent.ManageAccessRights
+rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.setInheritParentPermissions=RM_CAP.0.rma:filePlanComponent.ManageAccessRights
+rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.getInheritParentPermissions=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.clearPermission=RM_CAP.0.rma:filePlanComponent.ManageAccessRights
+rm.methodsecurity.org.alfresco.service.cmr.security.PermissionService.*=RM_DENY
+
+## Site service
+
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.cleanSitePermissions=RM.Read.0
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.createContainer=RM_ALLOW,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.createSite=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.deleteSite=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.findSites=RM_ALLOW,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getContainer=RM_ALLOW,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getMembersRole=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getMembersRoleInfo=ACL_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getSite=RM_ALLOW,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getSiteGroup=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getSiteRoleGroup=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getSiteRoles=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getSiteRoot=RM_ALLOW,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.hasContainer=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.hasCreateSitePermissions=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.isMember=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.listMembers=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.listMembersInfo=ACL_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.listSites=RM_ALLOW,AFTER_RM.FilterNode
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.removeMembership=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.setMembership=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.updateSite=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.listMembersPaged=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.listContainers=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.countAuthoritiesWithRole=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.resolveSite=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.hasSite=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.listSitesPaged=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.getSiteShortName=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.canAddMember=RM_ALLOW
+rm.methodsecurity.org.alfresco.service.cmr.site.SiteService.*=RM_ALLOW
+
+## Form Service
+
+rm.methodsecurity.org.alfresco.repo.forms.FormService.getForm=RM_ALLOW
+rm.methodsecurity.org.alfresco.repo.forms.FormService.saveForm=RM_ALLOW
+rm.methodsecurity.org.alfresco.repo.forms.FormService.*=RM_DENY
+
+## Ownable Service
+
+rm.methodsecurity.org.alfresco.service.cmr.security.OwnableService.getOwner=RM.Read.0
rm.methodsecurity.org.alfresco.service.cmr.security.OwnableService.*=RM_DENY
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-policy-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-policy-context.xml
index 83cc7a7417..5c7f4551ed 100644
--- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-policy-context.xml
+++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-policy-context.xml
@@ -1,47 +1,47 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-classes.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-classes.get.desc.xml
index 7de7c37fd8..fbcd9b30e8 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-classes.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-classes.get.desc.xml
@@ -1,8 +1,8 @@
-
- Get RM/DM related class definitions
- Gets the RM/DM related collection of class definitions - parameters classfilter, namespaceprefix and name.
- /api/rm/classes?cf={classFilter?}&nsp={namespacePrefix?}&n={name?}
- argument
- user
- required
+
+ Get RM/DM related class definitions
+ Gets the RM/DM related collection of class definitions - parameters classfilter, namespaceprefix and name.
+ /api/rm/classes?cf={classFilter?}&nsp={namespacePrefix?}&n={name?}
+ argument
+ user
+ required
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-classes.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-classes.get.json.ftl
index 52ee498c52..e65d984017 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-classes.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-classes.get.json.ftl
@@ -1,27 +1,27 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#include "classes.get.json.ftl">
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#include "classes.get.json.ftl">
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-properties.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-properties.get.desc.xml
index bc8ade2096..83fa618a06 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-properties.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-properties.get.desc.xml
@@ -1,9 +1,9 @@
-
- Get RM/DM property definitions
- Gets the collection of RM/DM property definitions.
- /api/rm/classes/{classname}/properties?nsp={namespacePrefix?}&n={name?}
- /api/rm/properties?nsp={namespacePrefix?}&n={name?}
- argument
- user
- required
+
+ Get RM/DM property definitions
+ Gets the collection of RM/DM property definitions.
+ /api/rm/classes/{classname}/properties?nsp={namespacePrefix?}&n={name?}
+ /api/rm/properties?nsp={namespacePrefix?}&n={name?}
+ argument
+ user
+ required
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-properties.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-properties.get.json.ftl
index 2429ed6e3e..f3c05bf870 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-properties.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-properties.get.json.ftl
@@ -1,27 +1,27 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#include "properties.get.json.ftl">
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#include "properties.get.json.ftl">
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.delete.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.delete.desc.xml
index 6bd7f8162d..14851a41bc 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.delete.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.delete.desc.xml
@@ -1,12 +1,12 @@
-
- Remove a group or a user from a role
-
-
- /api/rm/roles/{roleId}/authorities/{authorityName}
- /api/rm/{store_type}/{store_id}/{id}/roles/{roleId}/authorities/{authorityName}
- argument
- user
- required
+
+ Remove a group or a user from a role
+
+
+ /api/rm/roles/{roleId}/authorities/{authorityName}
+ /api/rm/{store_type}/{store_id}/{id}/roles/{roleId}/authorities/{authorityName}
+ argument
+ user
+ required
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.delete.json.ftl
index 05d341e16b..b7ba61347e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.delete.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.delete.json.ftl
@@ -1,27 +1,27 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.post.desc.xml
index 75ee4da9dc..d5a0810210 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.post.desc.xml
@@ -1,12 +1,12 @@
-
- Add a group or a user to a role
-
-
- /api/rm/roles/{roleId}/authorities/{authorityName}
- /api/rm/{store_type}/{store_id}/{id}/roles/{roleId}/authorities/{authorityName}
- argument
- user
- required
+
+ Add a group or a user to a role
+
+
+ /api/rm/roles/{roleId}/authorities/{authorityName}
+ /api/rm/{store_type}/{store_id}/{id}/roles/{roleId}/authorities/{authorityName}
+ argument
+ user
+ required
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.post.json.ftl
index 05d341e16b..b7ba61347e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.post.json.ftl
@@ -1,27 +1,27 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actionconditiondefinitions.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actionconditiondefinitions.get.desc.xml
index 8627529e25..64948ba800 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actionconditiondefinitions.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actionconditiondefinitions.get.desc.xml
@@ -1,8 +1,8 @@
-
- Get action condition definition collection for RM
- Gets a collection of the available action condition definitions in RM.
- /api/rm/rm-actionconditiondefinitions
- argument
- user
- required
+
+ Get action condition definition collection for RM
+ Gets a collection of the available action condition definitions in RM.
+ /api/rm/rm-actionconditiondefinitions
+ argument
+ user
+ required
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actionconditiondefinitions.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actionconditiondefinitions.get.json.ftl
index e057813650..55832747b4 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actionconditiondefinitions.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actionconditiondefinitions.get.json.ftl
@@ -1,27 +1,27 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#include "actionconditiondefinitions.get.json.ftl">
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#include "actionconditiondefinitions.get.json.ftl">
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actiondefinitions.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actiondefinitions.get.desc.xml
index f55b3246e8..b51593347e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actiondefinitions.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actiondefinitions.get.desc.xml
@@ -1,8 +1,8 @@
-
- Get action definition collection for RM
- Gets a collection of the available action definitions in RM.
- /api/rm/rm-actiondefinitions
- argument
- user
- required
+
+ Get action definition collection for RM
+ Gets a collection of the available action definitions in RM.
+ /api/rm/rm-actiondefinitions
+ argument
+ user
+ required
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actiondefinitions.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actiondefinitions.get.json.ftl
index 3a2df7db16..9a92112fb7 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actiondefinitions.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actiondefinitions.get.json.ftl
@@ -1,27 +1,27 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#include "actiondefinitions.get.json.ftl">
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#include "actiondefinitions.get.json.ftl">
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/substitutionsuggestions/rm-substitutionsuggestions.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/substitutionsuggestions/rm-substitutionsuggestions.get.desc.xml
index b77167b3c0..8665f19ad7 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/substitutionsuggestions/rm-substitutionsuggestions.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/substitutionsuggestions/rm-substitutionsuggestions.get.desc.xml
@@ -1,8 +1,8 @@
-
- Get substitution suggestions for RM
- Gets a collection of substitution suggestions for a text fragment for RM.
- /api/rm/rm-substitutionsuggestions?fragment={fragment}&path={path?}
- argument
- user
- required
+
+ Get substitution suggestions for RM
+ Gets a collection of substitution suggestions for a text fragment for RM.
+ /api/rm/rm-substitutionsuggestions?fragment={fragment}&path={path?}
+ argument
+ user
+ required
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/substitutionsuggestions/rm-substitutionsuggestions.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/substitutionsuggestions/rm-substitutionsuggestions.get.json.ftl
index be41e5ed12..a655c6cb05 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/substitutionsuggestions/rm-substitutionsuggestions.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/substitutionsuggestions/rm-substitutionsuggestions.get.json.ftl
@@ -1,34 +1,34 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{
- "substitutions":
- [
- <#list substitutions as substitution>
- "${substitution}"<#if substitution_has_next>,#if>
- #list>
- ]
-}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{
+ "substitutions":
+ [
+ <#list substitutions as substitution>
+ "${substitution}"<#if substitution_has_next>,#if>
+ #list>
+ ]
+}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.desc.xml
index 2c7c93f48d..54d1a8bf5d 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.desc.xml
@@ -1,8 +1,8 @@
-
- Node Version Info
- Node Version Info including some RM related information
- /api/rm/rm-version
-
- user
- required
-
+
+ Node Version Info
+ Node Version Info including some RM related information
+ /api/rm/rm-version
+
+ user
+ required
+
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.js
index 3fd03ced0f..2db4735270 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.js
@@ -1,151 +1,151 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-var PeopleCache = {};
-
-/**
- * Gets / caches a person object
- * @method getPerson
- * @param username {string} User name
- */
-function getPerson(username)
-{
- if (typeof PeopleCache[username] == "undefined")
- {
- var person = people.getPerson(username);
- if (person == null)
- {
- if (username == "System" || username.match("^System@") == "System@")
- {
- // special case for the System users
- person =
- {
- properties:
- {
- userName: "System",
- firstName: "System",
- lastName: "User"
- },
- assocs: {}
- };
- }
- else
- {
- // missing person - may have been deleted from the database
- person =
- {
- properties:
- {
- userName: username,
- firstName: "",
- lastName: ""
- },
- assocs: {}
- };
- }
- }
- PeopleCache[username] =
- {
- userName: person.properties.userName,
- firstName: person.properties.firstName,
- lastName: person.properties.lastName,
- displayName: (person.properties.firstName + " " + person.properties.lastName).replace(/^\s+|\s+$/g, "")
- };
- }
- return PeopleCache[username];
-}
-
-function main()
-{
- var json = "",
- versions = [];
-
- // allow for content to be loaded from id
- if (args["nodeRef"] != null)
- {
- var nodeRef = args["nodeRef"],
- node = search.findNode(nodeRef),
- versionHistory, version, p, recordNodeRef, isRecordedVersionDestroyed;
-
- if (node != null)
- {
- var versionHistory = node.versionHistory;
- if (versionHistory != null)
- {
- for (i = 0; i < versionHistory.length; i++)
- {
- version = versionHistory[i];
- p = getPerson(version.creator);
-
- recordNodeRef = version.getVersionProperty("recordNodeRef");
- isRecordedVersionDestroyed = version.getVersionProperty("RecordedVersionDestroyed");
-
- versions[versions.length] =
- {
- nodeRef: version.node.nodeRef.toString(),
- name: (isRecordedVersionDestroyed == true) ? "" : version.node.name,
- label: version.label,
- description: version.description,
- createdDate: version.createdDate,
- creator:
- {
- userName: p.userName,
- firstName: p.firstName,
- lastName: p.lastName
- },
- recordNodeRef: recordNodeRef ? recordNodeRef.toString() : "",
- isRecordedVersionDestroyed: isRecordedVersionDestroyed
- };
- }
- }
- else
- {
- p = getPerson(node.properties.creator);
- versions[0] =
- {
- nodeRef: node.nodeRef.toString(),
- name: node.name,
- label: "1.0",
- description: "",
- createdDate: node.properties.created,
- creator:
- {
- userName: p.userName,
- firstName: p.firstName,
- lastName: p.lastName
- },
- recordNodeRef: "",
- isRecordedVersionDestroyed: false
- };
- }
- }
- }
-
- // store node onto model
- model.versions = versions;
-}
-
-main();
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+var PeopleCache = {};
+
+/**
+ * Gets / caches a person object
+ * @method getPerson
+ * @param username {string} User name
+ */
+function getPerson(username)
+{
+ if (typeof PeopleCache[username] == "undefined")
+ {
+ var person = people.getPerson(username);
+ if (person == null)
+ {
+ if (username == "System" || username.match("^System@") == "System@")
+ {
+ // special case for the System users
+ person =
+ {
+ properties:
+ {
+ userName: "System",
+ firstName: "System",
+ lastName: "User"
+ },
+ assocs: {}
+ };
+ }
+ else
+ {
+ // missing person - may have been deleted from the database
+ person =
+ {
+ properties:
+ {
+ userName: username,
+ firstName: "",
+ lastName: ""
+ },
+ assocs: {}
+ };
+ }
+ }
+ PeopleCache[username] =
+ {
+ userName: person.properties.userName,
+ firstName: person.properties.firstName,
+ lastName: person.properties.lastName,
+ displayName: (person.properties.firstName + " " + person.properties.lastName).replace(/^\s+|\s+$/g, "")
+ };
+ }
+ return PeopleCache[username];
+}
+
+function main()
+{
+ var json = "",
+ versions = [];
+
+ // allow for content to be loaded from id
+ if (args["nodeRef"] != null)
+ {
+ var nodeRef = args["nodeRef"],
+ node = search.findNode(nodeRef),
+ versionHistory, version, p, recordNodeRef, isRecordedVersionDestroyed;
+
+ if (node != null)
+ {
+ var versionHistory = node.versionHistory;
+ if (versionHistory != null)
+ {
+ for (i = 0; i < versionHistory.length; i++)
+ {
+ version = versionHistory[i];
+ p = getPerson(version.creator);
+
+ recordNodeRef = version.getVersionProperty("recordNodeRef");
+ isRecordedVersionDestroyed = version.getVersionProperty("RecordedVersionDestroyed");
+
+ versions[versions.length] =
+ {
+ nodeRef: version.node.nodeRef.toString(),
+ name: (isRecordedVersionDestroyed == true) ? "" : version.node.name,
+ label: version.label,
+ description: version.description,
+ createdDate: version.createdDate,
+ creator:
+ {
+ userName: p.userName,
+ firstName: p.firstName,
+ lastName: p.lastName
+ },
+ recordNodeRef: recordNodeRef ? recordNodeRef.toString() : "",
+ isRecordedVersionDestroyed: isRecordedVersionDestroyed
+ };
+ }
+ }
+ else
+ {
+ p = getPerson(node.properties.creator);
+ versions[0] =
+ {
+ nodeRef: node.nodeRef.toString(),
+ name: node.name,
+ label: "1.0",
+ description: "",
+ createdDate: node.properties.created,
+ creator:
+ {
+ userName: p.userName,
+ firstName: p.firstName,
+ lastName: p.lastName
+ },
+ recordNodeRef: "",
+ isRecordedVersionDestroyed: false
+ };
+ }
+ }
+ }
+
+ // store node onto model
+ model.versions = versions;
+}
+
+main();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.json.ftl
index 838218470c..d9ce4759c7 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.json.ftl
@@ -1,48 +1,48 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-[
-<#list versions as v>
- {
- "nodeRef": "${v.nodeRef}",
- "name": "${v.name}",
- "label": "${v.label}",
- "description": "${v.description}",
- "createdDate": "${v.createdDate?string("dd MMM yyyy HH:mm:ss 'GMT'Z '('zzz')'")}",
- "createdDateISO": "${xmldate(v.createdDate)}",
- "creator":
- {
- "userName": "${v.creator.userName}",
- "firstName": "${v.creator.firstName!""}",
- "lastName": "${v.creator.lastName!""}"
- },
- "recordNodeRef": "${v.recordNodeRef}",
- "isRecordedVersionDestroyed": ${v.isRecordedVersionDestroyed?c}
- }<#if (v_has_next)>,#if>
-#list>
-]
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+[
+<#list versions as v>
+ {
+ "nodeRef": "${v.nodeRef}",
+ "name": "${v.name}",
+ "label": "${v.label}",
+ "description": "${v.description}",
+ "createdDate": "${v.createdDate?string("dd MMM yyyy HH:mm:ss 'GMT'Z '('zzz')'")}",
+ "createdDateISO": "${xmldate(v.createdDate)}",
+ "creator":
+ {
+ "userName": "${v.creator.userName}",
+ "firstName": "${v.creator.firstName!""}",
+ "lastName": "${v.creator.lastName!""}"
+ },
+ "recordNodeRef": "${v.recordNodeRef}",
+ "isRecordedVersionDestroyed": ${v.isRecordedVersionDestroyed?c}
+ }<#if (v_has_next)>,#if>
+#list>
+]
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.delete.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.delete.desc.xml
index 40af72f2cb..50fd1191b0 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.delete.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.delete.desc.xml
@@ -1,15 +1,15 @@
-
- Delete email property map
-
- DELETE /api/rma/admin/emailmap/{from}/{to} deletes the specified mapping
- Returns data in the same format as the get method
- ]]>
-
- /api/rma/admin/emailmap/{from}/{to}
- argument
- user
- required
- internal
+
+ Delete email property map
+
+ DELETE /api/rma/admin/emailmap/{from}/{to} deletes the specified mapping
+ Returns data in the same format as the get method
+ ]]>
+
+ /api/rma/admin/emailmap/{from}/{to}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.delete.json.ftl
index 4bb3c2e86d..a1e3105863 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.delete.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.delete.json.ftl
@@ -1,33 +1,33 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "emailmap.lib.ftl" as emailmapLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data": <@emailmapLib.emailmapJSON emailmap=emailmap />
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "emailmap.lib.ftl" as emailmapLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data": <@emailmapLib.emailmapJSON emailmap=emailmap />
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.get.desc.xml
index 1a8bd1a92e..1aeeb1fdc6 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.get.desc.xml
@@ -1,29 +1,29 @@
-
- Get the custom email property map
-
- fields are specified with "from" and "to".
-
- Example data.
-
- ]]>
-
- /api/rma/admin/emailmap
- argument
- user
- required
- internal
+
+ Get the custom email property map
+
+ fields are specified with "from" and "to".
+
+ Example data.
+
+ ]]>
+
+ /api/rma/admin/emailmap
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.get.json.ftl
index 4bb3c2e86d..a1e3105863 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.get.json.ftl
@@ -1,33 +1,33 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "emailmap.lib.ftl" as emailmapLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data": <@emailmapLib.emailmapJSON emailmap=emailmap />
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "emailmap.lib.ftl" as emailmapLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data": <@emailmapLib.emailmapJSON emailmap=emailmap />
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.lib.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.lib.ftl
index de23cb993a..78cdd7bf0d 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.lib.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.lib.ftl
@@ -1,40 +1,40 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#-- renders an email map object -->
-
-<#macro emailmapJSON emailmap>
-<#escape x as jsonUtils.encodeJSONString(x)>
- {
- "mappings":
- [
- <#list emailmap as mapping>
- {"from": "${mapping.from}", "to": "${mapping.to}" }<#if mapping_has_next>,#if>
- #list>
- ]
- }
-#escape>
-#macro>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#-- renders an email map object -->
+
+<#macro emailmapJSON emailmap>
+<#escape x as jsonUtils.encodeJSONString(x)>
+ {
+ "mappings":
+ [
+ <#list emailmap as mapping>
+ {"from": "${mapping.from}", "to": "${mapping.to}" }<#if mapping_has_next>,#if>
+ #list>
+ ]
+ }
+#escape>
+#macro>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.post.desc.xml
index cb9073d997..1b4ade6fb7 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.post.desc.xml
@@ -1,20 +1,20 @@
-
- Add email property map
-
- Data is specified in JSON format as a JSONObject
-
- {"to":"rmc:Wibble", "from":"whatever"}
-
-
- POST /api/rma/admin/emailmap adds the specified mapping
- Returns data in the same format as the get method
- ]]>
-
- /api/rma/admin/emailmap
- argument
- user
- required
- internal
+
+ Add email property map
+
+ Data is specified in JSON format as a JSONObject
+
+ {"to":"rmc:Wibble", "from":"whatever"}
+
+
+ POST /api/rma/admin/emailmap adds the specified mapping
+ Returns data in the same format as the get method
+ ]]>
+
+ /api/rma/admin/emailmap
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.post.json.ftl
index 4bb3c2e86d..a1e3105863 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.post.json.ftl
@@ -1,33 +1,33 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "emailmap.lib.ftl" as emailmapLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data": <@emailmapLib.emailmapJSON emailmap=emailmap />
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "emailmap.lib.ftl" as emailmapLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data": <@emailmapLib.emailmapJSON emailmap=emailmap />
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmapkeys.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmapkeys.get.desc.xml
index 888c5f5fb7..84a2019ff9 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmapkeys.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmapkeys.get.desc.xml
@@ -1,9 +1,9 @@
-
- RM Email Mapping Keys
- Gets the list of email mapping keys
- /api/rma/admin/emailmapkeys
- argument
- user
- required
- internal
+
+ RM Email Mapping Keys
+ Gets the list of email mapping keys
+ /api/rma/admin/emailmapkeys
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmapkeys.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmapkeys.get.json.ftl
index 490d7bf449..5408f69ce6 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmapkeys.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmapkeys.get.json.ftl
@@ -1,39 +1,39 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data" :
- {
- "emailmapkeys":
- [
- <#list emailmapkeys as emailmapkey>
- '${emailmapkey}'<#if emailmapkey_has_next>,#if>
- #list>
- ]
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data" :
+ {
+ "emailmapkeys":
+ [
+ <#list emailmapkeys as emailmapkey>
+ '${emailmapkey}'<#if emailmapkey_has_next>,#if>
+ #list>
+ ]
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint-utils.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint-utils.js
index 7361637485..99041736c0 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint-utils.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint-utils.js
@@ -1,44 +1,44 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-function existsTitle(caveatConfig, title)
-{
- var constraints = caveatConfig.allConstraints;
-
- // Check for existing constraint...
- var alreadyExists = false;
- for (var i = 0; i < constraints.length; i++)
- {
- var currTitle = constraints[i].title;
- if (currTitle + "" == title)
- {
- alreadyExists = true;
- break;
- }
- }
-
- return alreadyExists;
-}
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+function existsTitle(caveatConfig, title)
+{
+ var constraints = caveatConfig.allConstraints;
+
+ // Check for existing constraint...
+ var alreadyExists = false;
+ for (var i = 0; i < constraints.length; i++)
+ {
+ var currTitle = constraints[i].title;
+ if (currTitle + "" == title)
+ {
+ alreadyExists = true;
+ break;
+ }
+ }
+
+ return alreadyExists;
+}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.desc.xml
index 0dd4d5018f..0cbf8f2f2d 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.desc.xml
@@ -1,13 +1,13 @@
-
- Delete an RM Constraint list
-
-
-
- /api/rma/admin/rmconstraints/{listName}
- argument
- user
- required
- internal
+
+ Delete an RM Constraint list
+
+
+
+ /api/rma/admin/rmconstraints/{listName}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.js
index 2c35d1d80b..df072636d2 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.js
@@ -1,53 +1,53 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-/**
- * Delete the rm constraint list
- */
-function main()
-{
- // Get the shortname
- var shortName = url.extension;
-
- // Get the constraint
- var constraint = caveatConfig.getConstraint(shortName);
-
- if (constraint != null)
- {
- caveatConfig.deleteConstraintList(shortName);
-
- // Pass the constraint name to the template
- model.constraintName = shortName;
- }
- else
- {
- // Return 404
- status.setCode(404, "Constraint List " + shortName + " does not exist");
- return;
- }
-}
-
-main();
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+/**
+ * Delete the rm constraint list
+ */
+function main()
+{
+ // Get the shortname
+ var shortName = url.extension;
+
+ // Get the constraint
+ var constraint = caveatConfig.getConstraint(shortName);
+
+ if (constraint != null)
+ {
+ caveatConfig.deleteConstraintList(shortName);
+
+ // Pass the constraint name to the template
+ model.constraintName = shortName;
+ }
+ else
+ {
+ // Return 404
+ status.setCode(404, "Constraint List " + shortName + " does not exist");
+ return;
+ }
+}
+
+main();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.json.ftl
index a4cf6bf36b..5344f2efb7 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.json.ftl
@@ -1,31 +1,31 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data": { }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data": { }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.desc.xml
index db15d75311..6caa0bdcae 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.desc.xml
@@ -1,22 +1,22 @@
-
- Get a RM Constraint method
-
-
- Constraint object
-
-
constraintName
the name of the constraint. The underscore character is used instead of the colon
-
constraintTitle
the title of the constraint (human readable)
-
caseSensitive
Are the values case sensitive
-
allowedValues
array of allowed values, this is the complete unrestricted list of all values
-
- ]]>
-
- /api/rma/admin/rmconstraints/{listName}
- argument
- user
- required
- internal
+
+ Get a RM Constraint method
+
+
+ Constraint object
+
+
constraintName
the name of the constraint. The underscore character is used instead of the colon
+
constraintTitle
the title of the constraint (human readable)
+
caseSensitive
Are the values case sensitive
+
allowedValues
array of allowed values, this is the complete unrestricted list of all values
+
+ ]]>
+
+ /api/rma/admin/rmconstraints/{listName}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.js
index a2965611e0..7bd7150a2d 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.js
@@ -1,51 +1,51 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-/**
- * Get the detail of the rm constraint
- */
-function main()
-{
- // Get the shortname
- var shortName = url.extension;
-
- // Get the constraint
- var constraint = caveatConfig.getConstraint(shortName);
-
- if (constraint != null)
- {
- // Pass the constraint detail to the template
- model.constraint = constraint;
- }
- else
- {
- // Return 404
- status.setCode(404, "Constraint List " + shortName + " does not exist");
- return;
- }
-}
-
-main();
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+/**
+ * Get the detail of the rm constraint
+ */
+function main()
+{
+ // Get the shortname
+ var shortName = url.extension;
+
+ // Get the constraint
+ var constraint = caveatConfig.getConstraint(shortName);
+
+ if (constraint != null)
+ {
+ // Pass the constraint detail to the template
+ model.constraint = constraint;
+ }
+ else
+ {
+ // Return 404
+ status.setCode(404, "Constraint List " + shortName + " does not exist");
+ return;
+ }
+}
+
+main();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.json.ftl
index f4e0e0a005..033d37e259 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.json.ftl
@@ -1,34 +1,34 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "rmconstraint.lib.ftl" as rmconstraintLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data": <@rmconstraintLib.constraintJSON constraint=constraint />
-
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "rmconstraint.lib.ftl" as rmconstraintLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data": <@rmconstraintLib.constraintJSON constraint=constraint />
+
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.lib.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.lib.ftl
index 08e8af0c72..72156113fc 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.lib.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.lib.ftl
@@ -1,87 +1,87 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#-- renders an rm constraint object -->
-
-<#macro constraintSummaryJSON constraint>
-<#escape x as jsonUtils.encodeJSONString(x)>
- {
- "url" : "${url.serviceContext + "/api/rma/admin/rmconstraints/" + constraint.name}",
- "constraintName" : "${constraint.name}",
- "constraintTitle" : "${msg(constraint.title)}"
- }
-#escape>
-#macro>
-
-<#macro constraintJSON constraint>
-<#escape x as jsonUtils.encodeJSONString(x)>
- {
- "url" : "${url.serviceContext + "/api/rma/admin/rmconstraints/" + constraint.name}",
- "constraintName" : "${constraint.name}",
- "caseSensitive" : "${constraint.caseSensitive?string("true", "false")}",
- "constraintTitle" : "${constraint.title}",
- "allowedValues" : [ <#list constraint.allowedValues as allowedValue> "${allowedValue}" <#if allowedValue_has_next>,#if> #list> ]
- }
-#escape>
-#macro>
-
-<#macro constraintWithValuesJSON constraint>
-<#escape x as jsonUtils.encodeJSONString(x)>
- {
- "url" : "${url.serviceContext + "/api/rma/admin/rmconstraints/" + constraint.name}",
- "constraintName" : "${constraint.name}",
- "caseSensitive" : "${constraint.caseSensitive?string("true", "false")}",
- "constraintTitle" : "${msg(constraint.title)}",
- "values" : [
- <#list constraint.values as value>
- {
- "url" : "${url.serviceContext + "/api/rma/admin/rmconstraints/" + constraint.name + "/values/" + value.valueName}",
- "valueName":"${value.valueName}",
- "valueTitle":"${value.valueTitle}",
- "authorities" : [ <#list value.authorities as authority> { "authorityName" : "${authority.authorityName}", "authorityTitle" : "${authority.authorityTitle}"} <#if authority_has_next>,#if>#list>]
- }<#if value_has_next>,#if>
- #list>
- ]
- }
-#escape>
-#macro>
-
-<#macro constraintWithValueJSON constraint value>
-<#escape x as jsonUtils.encodeJSONString(x)>
- {
- "url" : "${url.serviceContext + "/api/rma/admin/rmconstraints/" + constraint.name + "/values/" + value.valueName}",
- "constraintName" : "${constraint.name}",
- "constraintTitle" : "${constraint.title}",
- "value" :
- {
- "url" : "${url.serviceContext + "/api/rma/admin/rmconstraints/" + constraint.name + "/values/" + value.valueName}",
- "valueName":"${value.valueName}",
- "valueTitle":"${value.valueTitle}",
- "authorities" : [ <#list value.authorities as authority> { "authorityName" : "${authority.authorityName}", "authorityTitle" : "${authority.authorityTitle}"} <#if authority_has_next>,#if>#list>]
- }
- }
-#escape>
-#macro>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#-- renders an rm constraint object -->
+
+<#macro constraintSummaryJSON constraint>
+<#escape x as jsonUtils.encodeJSONString(x)>
+ {
+ "url" : "${url.serviceContext + "/api/rma/admin/rmconstraints/" + constraint.name}",
+ "constraintName" : "${constraint.name}",
+ "constraintTitle" : "${msg(constraint.title)}"
+ }
+#escape>
+#macro>
+
+<#macro constraintJSON constraint>
+<#escape x as jsonUtils.encodeJSONString(x)>
+ {
+ "url" : "${url.serviceContext + "/api/rma/admin/rmconstraints/" + constraint.name}",
+ "constraintName" : "${constraint.name}",
+ "caseSensitive" : "${constraint.caseSensitive?string("true", "false")}",
+ "constraintTitle" : "${constraint.title}",
+ "allowedValues" : [ <#list constraint.allowedValues as allowedValue> "${allowedValue}" <#if allowedValue_has_next>,#if> #list> ]
+ }
+#escape>
+#macro>
+
+<#macro constraintWithValuesJSON constraint>
+<#escape x as jsonUtils.encodeJSONString(x)>
+ {
+ "url" : "${url.serviceContext + "/api/rma/admin/rmconstraints/" + constraint.name}",
+ "constraintName" : "${constraint.name}",
+ "caseSensitive" : "${constraint.caseSensitive?string("true", "false")}",
+ "constraintTitle" : "${msg(constraint.title)}",
+ "values" : [
+ <#list constraint.values as value>
+ {
+ "url" : "${url.serviceContext + "/api/rma/admin/rmconstraints/" + constraint.name + "/values/" + value.valueName}",
+ "valueName":"${value.valueName}",
+ "valueTitle":"${value.valueTitle}",
+ "authorities" : [ <#list value.authorities as authority> { "authorityName" : "${authority.authorityName}", "authorityTitle" : "${authority.authorityTitle}"} <#if authority_has_next>,#if>#list>]
+ }<#if value_has_next>,#if>
+ #list>
+ ]
+ }
+#escape>
+#macro>
+
+<#macro constraintWithValueJSON constraint value>
+<#escape x as jsonUtils.encodeJSONString(x)>
+ {
+ "url" : "${url.serviceContext + "/api/rma/admin/rmconstraints/" + constraint.name + "/values/" + value.valueName}",
+ "constraintName" : "${constraint.name}",
+ "constraintTitle" : "${constraint.title}",
+ "value" :
+ {
+ "url" : "${url.serviceContext + "/api/rma/admin/rmconstraints/" + constraint.name + "/values/" + value.valueName}",
+ "valueName":"${value.valueName}",
+ "valueTitle":"${value.valueTitle}",
+ "authorities" : [ <#list value.authorities as authority> { "authorityName" : "${authority.authorityName}", "authorityTitle" : "${authority.authorityTitle}"} <#if authority_has_next>,#if>#list>]
+ }
+ }
+#escape>
+#macro>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.desc.xml
index b7e4533b8f..fef70b6ff0 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.desc.xml
@@ -1,19 +1,19 @@
-
- Update an RM Constraint List
-
- The following properties may be updatedConstraint object
-
-
-
constraintTitle
Optional, the title of the constraint (human readable)
-
allowedValues
Optional, array of allowed values, the complete list must be specified
-
- ]]>
-
- /api/rma/admin/rmconstraints/{listName}
- argument
- user
- required
- internal
+
+ Update an RM Constraint List
+
+ The following properties may be updatedConstraint object
+
+
+
constraintTitle
Optional, the title of the constraint (human readable)
+
allowedValues
Optional, array of allowed values, the complete list must be specified
+
+ ]]>
+
+ /api/rma/admin/rmconstraints/{listName}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.json.ftl
index 6cf659f470..6035b94167 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.json.ftl
@@ -1,37 +1,37 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "rmconstraint.lib.ftl" as rmconstraintLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- <#if !errorMessage??>
- "data": <@rmconstraintLib.constraintJSON constraint=constraint />
- <#else>
- "message" : "${msg(errorMessage, title)}"
- #if>
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "rmconstraint.lib.ftl" as rmconstraintLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ <#if !errorMessage??>
+ "data": <@rmconstraintLib.constraintJSON constraint=constraint />
+ <#else>
+ "message" : "${msg(errorMessage, title)}"
+ #if>
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.json.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.json.js
index 4a36474f9d..ada28a5d0c 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.json.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.json.js
@@ -1,87 +1,87 @@
-
-
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-/**
- * Update an rm constraint
- */
-function main()
-{
- // Get the shortname
- var shortName = url.extension;
-
- // Get the constraint
- var constraint = caveatConfig.getConstraint(shortName);
-
- if (constraint != null)
- {
- var allowedValues,
- title = null;
-
- if (json.has("constraintTitle"))
- {
- title = json.get("constraintTitle");
- if (existsTitle(caveatConfig, title))
- {
- status.code = 400;
- model.errorMessage = "rm.admin.list-already-exists";
- model.title = title;
- return;
- }
- constraint.updateTitle(title);
- }
-
- if (json.has("allowedValues"))
- {
- values = json.getJSONArray("allowedValues");
-
- var i = 0;
- allowedValues = new Array();
-
- if (values != null)
- {
- for (var x = 0; x < values.length(); x++)
- {
- allowedValues[i++] = values.get(x);
- }
- }
- constraint.updateAllowedValues(allowedValues);
- }
-
- // Pass the constraint detail to the template
- model.constraint = constraint;
- }
- else
- {
- // Return 404
- status.setCode(404, "Constraint List " + shortName + " does not exist");
- return;
- }
-}
-
-main();
+
+
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+/**
+ * Update an rm constraint
+ */
+function main()
+{
+ // Get the shortname
+ var shortName = url.extension;
+
+ // Get the constraint
+ var constraint = caveatConfig.getConstraint(shortName);
+
+ if (constraint != null)
+ {
+ var allowedValues,
+ title = null;
+
+ if (json.has("constraintTitle"))
+ {
+ title = json.get("constraintTitle");
+ if (existsTitle(caveatConfig, title))
+ {
+ status.code = 400;
+ model.errorMessage = "rm.admin.list-already-exists";
+ model.title = title;
+ return;
+ }
+ constraint.updateTitle(title);
+ }
+
+ if (json.has("allowedValues"))
+ {
+ values = json.getJSONArray("allowedValues");
+
+ var i = 0;
+ allowedValues = new Array();
+
+ if (values != null)
+ {
+ for (var x = 0; x < values.length(); x++)
+ {
+ allowedValues[i++] = values.get(x);
+ }
+ }
+ constraint.updateAllowedValues(allowedValues);
+ }
+
+ // Pass the constraint detail to the template
+ model.constraint = constraint;
+ }
+ else
+ {
+ // Return 404
+ status.setCode(404, "Constraint List " + shortName + " does not exist");
+ return;
+ }
+}
+
+main();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.desc.xml
index e8dff744df..edc8be638e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.desc.xml
@@ -1,18 +1,18 @@
-
- Get the names of all RM Constraint Lists
-
-
-
constraintTitle
Human readable title for the custom constraint list
-
constraintName
the name of the constraint list, prefixed
-
url
-
- ]]>
-
- /api/rma/admin/rmconstraints?withEmptyLists={withEmptyLists?}
- argument
- user
- required
- internal
+
+ Get the names of all RM Constraint Lists
+
+
+
constraintTitle
Human readable title for the custom constraint list
+
constraintName
the name of the constraint list, prefixed
+
url
+
+ ]]>
+
+ /api/rma/admin/rmconstraints?withEmptyLists={withEmptyLists?}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.js
index 3ec6c9acd9..c85eeedce1 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.js
@@ -1,45 +1,45 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-/**
- * List the names of the rm constraints
- */
-function main()
-{
- var wel = true;
- var withEmptyLists = args["withEmptyLists"];
- // Pass the information to the template
- if (withEmptyLists != null && withEmptyLists === 'false')
- {
- model.constraints = caveatConfig.constraintsWithoutEmptyList;
- }
- else
- {
- model.constraints = caveatConfig.allConstraints;
- }
-}
-
-main();
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+/**
+ * List the names of the rm constraints
+ */
+function main()
+{
+ var wel = true;
+ var withEmptyLists = args["withEmptyLists"];
+ // Pass the information to the template
+ if (withEmptyLists != null && withEmptyLists === 'false')
+ {
+ model.constraints = caveatConfig.constraintsWithoutEmptyList;
+ }
+ else
+ {
+ model.constraints = caveatConfig.allConstraints;
+ }
+}
+
+main();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.json.ftl
index d8b09a12dd..2796ff6860 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.json.ftl
@@ -1,39 +1,39 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "rmconstraint.lib.ftl" as rmconstraintLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- [
- <#list constraints as constraint>
- <@rmconstraintLib.constraintSummaryJSON constraint=constraint />
- <#if constraint_has_next>,#if>
- #list>
- ]
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "rmconstraint.lib.ftl" as rmconstraintLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ [
+ <#list constraints as constraint>
+ <@rmconstraintLib.constraintSummaryJSON constraint=constraint />
+ <#if constraint_has_next>,#if>
+ #list>
+ ]
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.desc.xml
index 3d0036b1d4..8e6dec15b4 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.desc.xml
@@ -1,20 +1,20 @@
-
- Create a new RM Constraint List
-
- The following properties may be specified
-
-
-
constraintName
Optional the name of the constraint. If not specified then one will be generated.
-
constraintTitle
The title of the constraint (human readable)
-
allowedValues
array of allowed values, the complete list must be specified
-
- ]]>
-
- /api/rma/admin/rmconstraints
- argument
- user
- required
- internal
+
+ Create a new RM Constraint List
+
+ The following properties may be specified
+
+
+
constraintName
Optional the name of the constraint. If not specified then one will be generated.
+
constraintTitle
The title of the constraint (human readable)
+
allowedValues
array of allowed values, the complete list must be specified
+
+ ]]>
+
+ /api/rma/admin/rmconstraints
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.json.ftl
index cacdf777ef..d485fdac5d 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.json.ftl
@@ -1,37 +1,37 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "rmconstraint.lib.ftl" as rmconstraintLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- <#if !errorMessage??>
- "data": <@rmconstraintLib.constraintJSON constraint=constraint />
- <#else>
- "message" : "${msg(errorMessage, title)}"
- #if>
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "rmconstraint.lib.ftl" as rmconstraintLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ <#if !errorMessage??>
+ "data": <@rmconstraintLib.constraintJSON constraint=constraint />
+ <#else>
+ "message" : "${msg(errorMessage, title)}"
+ #if>
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.json.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.json.js
index 8d719a1549..a3de186202 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.json.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.json.js
@@ -1,81 +1,81 @@
-
-
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-/**
- * Create a new RM Constraint List
- */
-function main()
-{
- // Parse the passed in details
- var title = null,
- name = null,
- allowedValues = {};
-
- if (json.has("constraintName"))
- {
- name = json.get("constraintName");
- }
-
- if (json.has("constraintTitle"))
- {
- title = json.get("constraintTitle");
- }
- else
- {
- title = name;
- }
-
- if (existsTitle(caveatConfig, title))
- {
- status.code = 400;
- model.errorMessage = "rm.admin.list-already-exists";
- model.title = title;
- return;
- }
-
- if (json.has("allowedValues"))
- {
- values = json.getJSONArray("allowedValues");
-
- var i = 0;
- allowedValues = new Array();
-
- if (values != null)
- {
- for (var x = 0; x < values.length(); x++)
- {
- allowedValues[i++] = values.get(x);
- }
- }
- }
-
- model.constraint = caveatConfig.createConstraint(name, title, allowedValues);
-}
-
-main();
+
+
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+/**
+ * Create a new RM Constraint List
+ */
+function main()
+{
+ // Parse the passed in details
+ var title = null,
+ name = null,
+ allowedValues = {};
+
+ if (json.has("constraintName"))
+ {
+ name = json.get("constraintName");
+ }
+
+ if (json.has("constraintTitle"))
+ {
+ title = json.get("constraintTitle");
+ }
+ else
+ {
+ title = name;
+ }
+
+ if (existsTitle(caveatConfig, title))
+ {
+ status.code = 400;
+ model.errorMessage = "rm.admin.list-already-exists";
+ model.title = title;
+ return;
+ }
+
+ if (json.has("allowedValues"))
+ {
+ values = json.getJSONArray("allowedValues");
+
+ var i = 0;
+ allowedValues = new Array();
+
+ if (values != null)
+ {
+ for (var x = 0; x < values.length(); x++)
+ {
+ allowedValues[i++] = values.get(x);
+ }
+ }
+ }
+
+ model.constraint = caveatConfig.createConstraint(name, title, allowedValues);
+}
+
+main();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.desc.xml
index e9f2517b1c..fc447a85d1 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.desc.xml
@@ -1,63 +1,63 @@
-
- Get an RM Constraint
-
-
- The list name is qualified with an underscore between prefix and name to be compatible with Java Script and URLs
-
- e.g. rma_listName rather than rma:listName
-
- Constraint object
-
-
constraintName
the name of the constraint. The underscore character is used instead of the colon
-
caseSensitive
is the constraint case sensitive
-
constraintTitle
the display name of the constraint
-
allowedValues
array of the allowed values, this is the complete unrestricted list of all values
- ]]>
-
- /api/rma/admin/rmconstraints/{listName}/values
- argument
- user
- required
- internal
+
+ Get an RM Constraint
+
+
+ The list name is qualified with an underscore between prefix and name to be compatible with Java Script and URLs
+
+ e.g. rma_listName rather than rma:listName
+
+ Constraint object
+
+
constraintName
the name of the constraint. The underscore character is used instead of the colon
+
caseSensitive
is the constraint case sensitive
+
constraintTitle
the display name of the constraint
+
allowedValues
array of the allowed values, this is the complete unrestricted list of all values
+ ]]>
+
+ /api/rma/admin/rmconstraints/{listName}/values
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.js
index 8136c7095f..1a70c002eb 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.js
@@ -1,51 +1,51 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-/**
- * Get the detail of the rm constraint
- */
-function main()
-{
- var urlElements = url.extension.split("/");
- var shortName = urlElements[0];
-
- // Get the constraint
- var constraint = caveatConfig.getConstraint(shortName);
-
- if (constraint != null)
- {
- // Pass the constraint detail to the template
- model.constraint = constraint;
- }
- else
- {
- // Return 404
- status.setCode(404, "Constraint List " + shortName + " does not exist");
- return;
- }
-}
-
-main();
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+/**
+ * Get the detail of the rm constraint
+ */
+function main()
+{
+ var urlElements = url.extension.split("/");
+ var shortName = urlElements[0];
+
+ // Get the constraint
+ var constraint = caveatConfig.getConstraint(shortName);
+
+ if (constraint != null)
+ {
+ // Pass the constraint detail to the template
+ model.constraint = constraint;
+ }
+ else
+ {
+ // Return 404
+ status.setCode(404, "Constraint List " + shortName + " does not exist");
+ return;
+ }
+}
+
+main();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.json.ftl
index 62679683db..195602da55 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.json.ftl
@@ -1,33 +1,33 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "../rmconstraint.lib.ftl" as rmconstraintLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data": <@rmconstraintLib.constraintWithValuesJSON constraint=constraint />
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "../rmconstraint.lib.ftl" as rmconstraintLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data": <@rmconstraintLib.constraintWithValuesJSON constraint=constraint />
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.desc.xml
index d6c4af865f..86b6d17ed6 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.desc.xml
@@ -1,28 +1,28 @@
-
- Updates values in an an RM Constraint List
-
- If the authority is missing from the list then the value is deleted.
-
- If an authority does not exist in a list then the authority is added.
-
- Only the authorities for the specified values are updated.
-
- If a value is missing it will not be affected.
-
- JSON Parameter format:
-
- "values" : [ ValueName, [ authorityName1, authorityName2 ]]
-
- The input format for values is different to the output format.
-
- Data Return format.
- ]]>
-
- /api/rma/admin/rmconstraints/{listName}/values
- argument
- user
- required
- internal
+
+ Updates values in an an RM Constraint List
+
+ If the authority is missing from the list then the value is deleted.
+
+ If an authority does not exist in a list then the authority is added.
+
+ Only the authorities for the specified values are updated.
+
+ If a value is missing it will not be affected.
+
+ JSON Parameter format:
+
+ "values" : [ ValueName, [ authorityName1, authorityName2 ]]
+
+ The input format for values is different to the output format.
+
+ Data Return format.
+ ]]>
+
+ /api/rma/admin/rmconstraints/{listName}/values
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.json.ftl
index 70064bc5e7..b5fc4f5eb0 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.json.ftl
@@ -1,33 +1,33 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "../rmconstraint.lib.ftl" as rmconstraintLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data": <@rmconstraintLib.constraintWithValuesJSON constraint=constraint />
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "../rmconstraint.lib.ftl" as rmconstraintLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data": <@rmconstraintLib.constraintWithValuesJSON constraint=constraint />
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.json.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.json.js
index 6b105b1317..956270f842 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.json.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.json.js
@@ -1,65 +1,65 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-/**
- * Update the details of a value in an rm constraint
- */
-function main()
-{
- var urlElements = url.extension.split("/");
- var shortName = urlElements[0];
-
- var values = null;
-
- if (json.has("values"))
- {
- values = json.getJSONArray("values");
- }
-
- if (values == null)
- {
- status.setCode(status.STATUS_BAD_REQUEST, "Values missing");
- return;
- }
-
- // Get the constraint
- var constraint = caveatConfig.getConstraint(shortName);
-
- if (constraint != null)
- {
- constraint.updateValues(values);
- model.constraint = caveatConfig.getConstraint(shortName);
- model.constraintName = shortName;
- }
- else
- {
- // Return 404
- status.setCode(404, "Constraint List " + shortName + " does not exist");
- return;
- }
-}
-
-main();
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+/**
+ * Update the details of a value in an rm constraint
+ */
+function main()
+{
+ var urlElements = url.extension.split("/");
+ var shortName = urlElements[0];
+
+ var values = null;
+
+ if (json.has("values"))
+ {
+ values = json.getJSONArray("values");
+ }
+
+ if (values == null)
+ {
+ status.setCode(status.STATUS_BAD_REQUEST, "Values missing");
+ return;
+ }
+
+ // Get the constraint
+ var constraint = caveatConfig.getConstraint(shortName);
+
+ if (constraint != null)
+ {
+ constraint.updateValues(values);
+ model.constraint = caveatConfig.getConstraint(shortName);
+ model.constraintName = shortName;
+ }
+ else
+ {
+ // Return 404
+ status.setCode(404, "Constraint List " + shortName + " does not exist");
+ return;
+ }
+}
+
+main();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.desc.xml
index 74b3f1330e..dfbe501e22 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.desc.xml
@@ -1,11 +1,11 @@
-
- Delete a value from an RM Constraint List
-
-
- /api/rma/admin/rmconstraints/{listName}/{valueName}
- argument
- user
- required
- internal
+
+ Delete a value from an RM Constraint List
+
+
+ /api/rma/admin/rmconstraints/{listName}/{valueName}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.js
index a1b928af4e..96d662b695 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.js
@@ -1,67 +1,67 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-/**
- * Delete the rm constraint list
- */
-function main()
-{
- var urlElements = url.extension.split("/");
- var shortName = urlElements[0];
- var authorityName = urlElements[1];
-
- if (shortName == null)
- {
- status.setCode(status.STATUS_BAD_REQUEST, "shortName missing");
- return;
- }
- if (valueName == null)
- {
- status.setCode(status.STATUS_BAD_REQUEST, "value missing");
- return;
- }
-
- // Get the constraint
- var constraint = caveatConfig.getConstraint(shortName);
-
- if (constraint != null)
- {
- caveatConfig.deleteRMConstraintListValue(shortName, valueName);
-
- var constraint = caveatConfig.getConstraint(shortName);
-
- // Pass the constraint name to the template
- model.constraint = constraint;
- }
- else
- {
- // Return 404
- status.setCode(404, "Constraint List " + shortName + " does not exist");
- return;
- }
-}
-
-main();
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+/**
+ * Delete the rm constraint list
+ */
+function main()
+{
+ var urlElements = url.extension.split("/");
+ var shortName = urlElements[0];
+ var authorityName = urlElements[1];
+
+ if (shortName == null)
+ {
+ status.setCode(status.STATUS_BAD_REQUEST, "shortName missing");
+ return;
+ }
+ if (valueName == null)
+ {
+ status.setCode(status.STATUS_BAD_REQUEST, "value missing");
+ return;
+ }
+
+ // Get the constraint
+ var constraint = caveatConfig.getConstraint(shortName);
+
+ if (constraint != null)
+ {
+ caveatConfig.deleteRMConstraintListValue(shortName, valueName);
+
+ var constraint = caveatConfig.getConstraint(shortName);
+
+ // Pass the constraint name to the template
+ model.constraint = constraint;
+ }
+ else
+ {
+ // Return 404
+ status.setCode(404, "Constraint List " + shortName + " does not exist");
+ return;
+ }
+}
+
+main();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.json.ftl
index 70064bc5e7..b5fc4f5eb0 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.json.ftl
@@ -1,33 +1,33 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "../rmconstraint.lib.ftl" as rmconstraintLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data": <@rmconstraintLib.constraintWithValuesJSON constraint=constraint />
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "../rmconstraint.lib.ftl" as rmconstraintLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data": <@rmconstraintLib.constraintWithValuesJSON constraint=constraint />
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.desc.xml
index 482c2ebf21..c53b819e90 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.desc.xml
@@ -1,47 +1,47 @@
-
- Get an RM Constraint Value
-
-
- The list name is qualified with an underscore between prefix and name to be compatible with Java Script and URLs
-
- e.g. rma_listName rather than rma:listName
-
- Constraint object
-
-
constraintName
the name of the constraint. The underscore character is used instead of the colon
- ]]>
-
- /api/rma/admin/rmconstraints/{listName}/values/{valueName}
- argument
- user
- required
- internal
+
+ Get an RM Constraint Value
+
+
+ The list name is qualified with an underscore between prefix and name to be compatible with Java Script and URLs
+
+ e.g. rma_listName rather than rma:listName
+
+ Constraint object
+
+
constraintName
the name of the constraint. The underscore character is used instead of the colon
+ ]]>
+
+ /api/rma/admin/rmconstraints/{listName}/values/{valueName}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.js
index 5ca3c936f7..c689d7f971 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.js
@@ -1,62 +1,62 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-/**
- * Get the detail of the rm constraint
- */
-function main()
-{
- var urlElements = url.extension.split("/");
- var shortName = decodeURIComponent(urlElements[0]);
- var valueName = decodeURIComponent(urlElements[2])
-
- // Get the constraint
- var constraint = caveatConfig.getConstraint(shortName);
-
- if (constraint != null)
- {
- // Pass the constraint detail to the template
- var value = constraint.getValue(valueName);
-
- if(value == null)
- {
- // Return 404
- status.setCode(404, "Constraint List: " + shortName + " value: " + valueName + "does not exist");
- return;
- }
-
- model.value = value;
- model.constraint = constraint;
- }
- else
- {
- // Return 404
- status.setCode(404, "Constraint List " + shortName + " does not exist");
- return;
- }
-}
-
-main();
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+/**
+ * Get the detail of the rm constraint
+ */
+function main()
+{
+ var urlElements = url.extension.split("/");
+ var shortName = decodeURIComponent(urlElements[0]);
+ var valueName = decodeURIComponent(urlElements[2])
+
+ // Get the constraint
+ var constraint = caveatConfig.getConstraint(shortName);
+
+ if (constraint != null)
+ {
+ // Pass the constraint detail to the template
+ var value = constraint.getValue(valueName);
+
+ if(value == null)
+ {
+ // Return 404
+ status.setCode(404, "Constraint List: " + shortName + " value: " + valueName + "does not exist");
+ return;
+ }
+
+ model.value = value;
+ model.constraint = constraint;
+ }
+ else
+ {
+ // Return 404
+ status.setCode(404, "Constraint List " + shortName + " does not exist");
+ return;
+ }
+}
+
+main();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.json.ftl
index 240cf716ac..2ef038113c 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.json.ftl
@@ -1,33 +1,33 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "../rmconstraint.lib.ftl" as rmconstraintLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data": <@rmconstraintLib.constraintWithValueJSON constraint=constraint value=value/>
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "../rmconstraint.lib.ftl" as rmconstraintLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data": <@rmconstraintLib.constraintWithValueJSON constraint=constraint value=value/>
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.delete.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.delete.desc.xml
index 0c4801c54a..f0f74a4e42 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.delete.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.delete.desc.xml
@@ -1,14 +1,14 @@
-
- Deletes a records management event
-
-
-
- /api/rma/admin/rmevents/{eventname}
- argument
- user
- required
- internal
+
+ Deletes a records management event
+
+
+
+ /api/rma/admin/rmevents/{eventname}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.delete.json.ftl
index 05d341e16b..b7ba61347e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.delete.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.delete.json.ftl
@@ -1,27 +1,27 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.get.desc.xml
index e7e1294a75..4667b1a3ef 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.get.desc.xml
@@ -1,14 +1,14 @@
-
- Get an records management event
-
-
-
- /api/rma/admin/rmevents/{eventname}
- argument
- user
- required
- internal
+
+ Get an records management event
+
+
+
+ /api/rma/admin/rmevents/{eventname}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.get.json.ftl
index 09f6464217..b8dde07c41 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.get.json.ftl
@@ -1,34 +1,34 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "rmevent.lib.ftl" as rmEventLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- <@rmEventLib.eventJSON event=event />
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "rmevent.lib.ftl" as rmEventLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ <@rmEventLib.eventJSON event=event />
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.lib.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.lib.ftl
index 94a052ad41..7bf3c7f59f 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.lib.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.lib.ftl
@@ -1,38 +1,38 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#-- renders an rm event object -->
-
-<#macro eventJSON event>
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "eventName": "${event.name}",
- "eventDisplayLabel": "${event.displayLabel}",
- "eventType":"${event.type}"
-}
-#escape>
-#macro>
-
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#-- renders an rm event object -->
+
+<#macro eventJSON event>
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "eventName": "${event.name}",
+ "eventDisplayLabel": "${event.displayLabel}",
+ "eventType":"${event.type}"
+}
+#escape>
+#macro>
+
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.put.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.put.desc.xml
index 3457e2ee65..20fa57cfea 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.put.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.put.desc.xml
@@ -1,14 +1,14 @@
-
- Update a records management event
-
-
-
- /api/rma/admin/rmevents/{eventname}
- argument
- user
- required
- internal
+
+ Update a records management event
+
+
+
+ /api/rma/admin/rmevents/{eventname}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.put.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.put.json.ftl
index 09f6464217..b8dde07c41 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.put.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.put.json.ftl
@@ -1,34 +1,34 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "rmevent.lib.ftl" as rmEventLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- <@rmEventLib.eventJSON event=event />
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "rmevent.lib.ftl" as rmEventLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ <@rmEventLib.eventJSON event=event />
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.get.desc.xml
index ca2c548783..b80139a92d 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.get.desc.xml
@@ -1,14 +1,14 @@
-
- Get list of records management events
-
-
-
- /api/rma/admin/rmevents
- argument
- user
- required
- internal
+
+ Get list of records management events
+
+
+
+ /api/rma/admin/rmevents
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.get.json.ftl
index d1021af97a..ae670f664b 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.get.json.ftl
@@ -1,39 +1,39 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "rmevent.lib.ftl" as rmEventLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- <#list events as event>
- "${event.name}":
- <@rmEventLib.eventJSON event=event /><#if event_has_next>,#if>
- #list>
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "rmevent.lib.ftl" as rmEventLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ <#list events as event>
+ "${event.name}":
+ <@rmEventLib.eventJSON event=event /><#if event_has_next>,#if>
+ #list>
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.post.desc.xml
index ed0a8207d5..c7970590a4 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.post.desc.xml
@@ -1,14 +1,14 @@
-
- Create a new records managment event
-
-
-
- /api/rma/admin/rmevents
- argument
- user
- required
- internal
+
+ Create a new records managment event
+
+
+
+ /api/rma/admin/rmevents
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.post.json.ftl
index 481c7144e0..e37c59aa45 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.post.json.ftl
@@ -1,35 +1,35 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "rmevent.lib.ftl" as rmEventLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- <@rmEventLib.eventJSON event=event />
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "rmevent.lib.ftl" as rmEventLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ <@rmEventLib.eventJSON event=event />
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmeventtypes.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmeventtypes.get.desc.xml
index d14aecb466..6d28dd8489 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmeventtypes.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmeventtypes.get.desc.xml
@@ -1,14 +1,14 @@
-
- Gets the records management event types
-
-
-
- /api/rma/admin/rmeventtypes
- argument
- user
- required
- internal
+
+ Gets the records management event types
+
+
+
+ /api/rma/admin/rmeventtypes
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmeventtypes.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmeventtypes.get.json.ftl
index 6ce382924e..f4983a0f39 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmeventtypes.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmeventtypes.get.json.ftl
@@ -1,42 +1,42 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "rmevent.lib.ftl" as rmEventLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- <#list eventtypes as eventtype>
- "${eventtype.name}":
- {
- "eventTypeName" : "${eventtype.name}",
- "eventTypeDisplayLabel" : "<#if eventtype.displayLabel??>${eventtype.displayLabel}<#else>#if>"
- }<#if eventtype_has_next>,#if>
- #list>
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "rmevent.lib.ftl" as rmEventLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ <#list eventtypes as eventtype>
+ "${eventtype.name}":
+ {
+ "eventTypeName" : "${eventtype.name}",
+ "eventTypeDisplayLabel" : "<#if eventtype.displayLabel??>${eventtype.displayLabel}<#else>#if>"
+ }<#if eventtype_has_next>,#if>
+ #list>
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.delete.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.delete.desc.xml
index 1cd7262836..2977395daa 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.delete.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.delete.desc.xml
@@ -1,16 +1,16 @@
-
- Deletes a records management role
-
-
-
- /api/rma/admin/rmroles/{rolename}
- /api/rma/admin/{siteid}/rmroles/{rolename}
- /api/rma/admin/{store_type}/{store_id}/{id}/rmroles/{rolename}
- argument
- user
- required
- internal
+
+ Deletes a records management role
+
+
+
+ /api/rma/admin/rmroles/{rolename}
+ /api/rma/admin/{siteid}/rmroles/{rolename}
+ /api/rma/admin/{store_type}/{store_id}/{id}/rmroles/{rolename}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.delete.json.ftl
index 05d341e16b..b7ba61347e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.delete.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.delete.json.ftl
@@ -1,27 +1,27 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.get.desc.xml
index 75a9fa715c..5035c87ac1 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.get.desc.xml
@@ -1,16 +1,16 @@
-
- Get an records management role
-
-
-
- /api/rma/admin/rmroles/{rolename}
- /api/rma/admin/{siteid}/rmroles/{rolename}
- /api/rma/admin/{store_type}/{store_id}/{id}/rmroles/{rolename}
- argument
- user
- required
- internal
+
+ Get an records management role
+
+
+
+ /api/rma/admin/rmroles/{rolename}
+ /api/rma/admin/{siteid}/rmroles/{rolename}
+ /api/rma/admin/{store_type}/{store_id}/{id}/rmroles/{rolename}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.get.json.ftl
index c17b7dcb17..51a9a9ad55 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.get.json.ftl
@@ -1,34 +1,34 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "rmrole.lib.ftl" as rmRoleLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- <@rmRoleLib.roleJSON role=role />
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "rmrole.lib.ftl" as rmRoleLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ <@rmRoleLib.roleJSON role=role />
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.lib.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.lib.ftl
index b375da09f2..ce1ac5397b 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.lib.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.lib.ftl
@@ -1,65 +1,65 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#-- renders an rm role object -->
-<#macro roleJSON role>
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "name": "${role.name}",
- "displayLabel": "${role.displayLabel}",
- "capabilities":
- {
- <#list role.capabilities as capability>
- "${capability.name}": "${capability.title}" <#if capability_has_next>,#if>
- #list>
- }
- <#if role.showAuths>
- ,
- "assignedUsers" :
- [
- <#list role.assignedUsers as user>
- {
- "name" : "${user.name}",
- "displayLabel" : "${user.displayLabel}"
- }<#if user_has_next>,#if>
- #list>
- ],
- "assignedGroups" :
- [
- <#list role.assignedGroups as group>
- {
- "name" : "${group.name}",
- "displayLabel" : "${group.displayLabel}"
- }<#if group_has_next>,#if>
- #list>
- ]
- <#if role.groupShortName??>
- ,"groupShortName": "${role.groupShortName}"
- #if>
- #if>
-}
-#escape>
-#macro>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#-- renders an rm role object -->
+<#macro roleJSON role>
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "name": "${role.name}",
+ "displayLabel": "${role.displayLabel}",
+ "capabilities":
+ {
+ <#list role.capabilities as capability>
+ "${capability.name}": "${capability.title}" <#if capability_has_next>,#if>
+ #list>
+ }
+ <#if role.showAuths>
+ ,
+ "assignedUsers" :
+ [
+ <#list role.assignedUsers as user>
+ {
+ "name" : "${user.name}",
+ "displayLabel" : "${user.displayLabel}"
+ }<#if user_has_next>,#if>
+ #list>
+ ],
+ "assignedGroups" :
+ [
+ <#list role.assignedGroups as group>
+ {
+ "name" : "${group.name}",
+ "displayLabel" : "${group.displayLabel}"
+ }<#if group_has_next>,#if>
+ #list>
+ ]
+ <#if role.groupShortName??>
+ ,"groupShortName": "${role.groupShortName}"
+ #if>
+ #if>
+}
+#escape>
+#macro>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.put.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.put.desc.xml
index 093b5e49c9..c939ad16a0 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.put.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.put.desc.xml
@@ -1,16 +1,16 @@
-
- Update a records management role
-
-
-
- /api/rma/admin/rmroles/{rolename}
- /api/rma/admin/{siteid}/rmroles/{rolename}
- /api/rma/admin/{store_type}/{store_id}/{id}/rmroles/{rolename}
- argument
- user
- required
- internal
+
+ Update a records management role
+
+
+
+ /api/rma/admin/rmroles/{rolename}
+ /api/rma/admin/{siteid}/rmroles/{rolename}
+ /api/rma/admin/{store_type}/{store_id}/{id}/rmroles/{rolename}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.put.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.put.json.ftl
index c17b7dcb17..51a9a9ad55 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.put.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.put.json.ftl
@@ -1,34 +1,34 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "rmrole.lib.ftl" as rmRoleLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- <@rmRoleLib.roleJSON role=role />
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "rmrole.lib.ftl" as rmRoleLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ <@rmRoleLib.roleJSON role=role />
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.get.desc.xml
index aa9c48a015..d2a382d9aa 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.get.desc.xml
@@ -1,22 +1,22 @@
-
- Get list of records management roles and their details, for a file plan.
-
-
-
- /api/rma/admin/rmroles?user={user?}&auths={auths?}&is={is?}
- /api/rma/admin/{store_type}/{store_id}/{id}/rmroles?user={user?}&auths={auths?}&is={is?}
- /api/rma/admin/{siteid}/rmroles?user={user?}&auths={auths?}&is={is?}
- argument
- user
- required
- internal
+
+ Get list of records management roles and their details, for a file plan.
+
+
+
+ /api/rma/admin/rmroles?user={user?}&auths={auths?}&is={is?}
+ /api/rma/admin/{store_type}/{store_id}/{id}/rmroles?user={user?}&auths={auths?}&is={is?}
+ /api/rma/admin/{siteid}/rmroles?user={user?}&auths={auths?}&is={is?}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.get.json.ftl
index 445bf8a8fa..8f5fe6dc83 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.get.json.ftl
@@ -1,39 +1,39 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "rmrole.lib.ftl" as rmRoleLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- <#list roles as role>
- "${role.name}":
- <@rmRoleLib.roleJSON role=role /><#if role_has_next>,#if>
- #list>
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "rmrole.lib.ftl" as rmRoleLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ <#list roles as role>
+ "${role.name}":
+ <@rmRoleLib.roleJSON role=role /><#if role_has_next>,#if>
+ #list>
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.post.desc.xml
index 9486b8337b..8b472e934e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.post.desc.xml
@@ -1,16 +1,16 @@
-
- Create a new records managment role
-
-
-
- /api/rma/admin/rmroles
- /api/rma/admin/{siteid}/rmroles
- /api/rma/admin/{store_type}/{store_id}/{id}/rmroles
- argument
- user
- required
- internal
+
+ Create a new records managment role
+
+
+
+ /api/rma/admin/rmroles
+ /api/rma/admin/{siteid}/rmroles
+ /api/rma/admin/{store_type}/{store_id}/{id}/rmroles
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.post.json.ftl
index c17b7dcb17..51a9a9ad55 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.post.json.ftl
@@ -1,34 +1,34 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "rmrole.lib.ftl" as rmRoleLib/>
-
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- <@rmRoleLib.roleJSON role=role />
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "rmrole.lib.ftl" as rmRoleLib/>
+
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ <@rmRoleLib.roleJSON role=role />
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applydodcertmodelfixes.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applydodcertmodelfixes.get.desc.xml
index bcc2921b4e..d1ca358cdd 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applydodcertmodelfixes.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applydodcertmodelfixes.get.desc.xml
@@ -1,15 +1,15 @@
-
- Applies fixes to the content model for DoD certification.
-
- Please note that this script will be removed after the certification process is complete.
- ]]>
- /api/rma/applydodcertmodelfixes
- argument
- admin
- required
- internal
+
+ Applies fixes to the content model for DoD certification.
+
+ Please note that this script will be removed after the certification process is complete.
+ ]]>
+ /api/rma/applydodcertmodelfixes
+ argument
+ admin
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applydodcertmodelfixes.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applydodcertmodelfixes.get.json.ftl
index 26931a21fe..fb4137fbd1 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applydodcertmodelfixes.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applydodcertmodelfixes.get.json.ftl
@@ -1,31 +1,31 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "success": ${success?string}
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "success": ${success?string}
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applyfixmob1573.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applyfixmob1573.get.desc.xml
index 9dada0f840..b468a7889e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applyfixmob1573.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applyfixmob1573.get.desc.xml
@@ -1,9 +1,9 @@
-
- Applies fix for MOB-1573.
- Fixes the RM custom model by changing the multiplicity on custom references to many-to-many.
- /api/rma/applyfixmob1573
- argument
- admin
- required
- internal
+
+ Applies fix for MOB-1573.
+ Fixes the RM custom model by changing the multiplicity on custom references to many-to-many.
+ /api/rma/applyfixmob1573
+ argument
+ admin
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applyfixmob1573.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applyfixmob1573.get.json.ftl
index 26931a21fe..fb4137fbd1 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applyfixmob1573.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applyfixmob1573.get.json.ftl
@@ -1,31 +1,31 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "success": ${success?string}
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "success": ${success?string}
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/bootstraptestdata.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/bootstraptestdata.get.desc.xml
index 14c6f8d6c6..fb55a391ee 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/bootstraptestdata.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/bootstraptestdata.get.desc.xml
@@ -1,9 +1,9 @@
-
- Load the RM DOD bootstrap data.
- WebScript to import and fix up the RM DOD bootstrap data.
- /api/rma/bootstraptestdata?site={site?}&import={import?}
- argument
- admin
- required
- deprecated
+
+ Load the RM DOD bootstrap data.
+ WebScript to import and fix up the RM DOD bootstrap data.
+ /api/rma/bootstraptestdata?site={site?}&import={import?}
+ argument
+ admin
+ required
+ deprecated
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/bootstraptestdata.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/bootstraptestdata.get.json.ftl
index 26931a21fe..fb4137fbd1 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/bootstraptestdata.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/bootstraptestdata.get.json.ftl
@@ -1,31 +1,31 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "success": ${success?string}
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "success": ${success?string}
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/capability/capabilities.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/capability/capabilities.get.desc.xml
index 51cb5a1f98..e8b2400d4d 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/capability/capabilities.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/capability/capabilities.get.desc.xml
@@ -1,10 +1,10 @@
-
- Records Management Capabilities
- Get the list of capabilities available to the current user on the given node.
- /api/node/{store_type}/{store_id}/{id}/capabilities?includeAll={includeAll?}
- /api/capabilities?includeAll={includeAll?}&grouped={grouped?}
- argument
- user
- required
- internal
+
+ Records Management Capabilities
+ Get the list of capabilities available to the current user on the given node.
+ /api/node/{store_type}/{store_id}/{id}/capabilities?includeAll={includeAll?}
+ /api/capabilities?includeAll={includeAll?}&grouped={grouped?}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/capability/capabilities.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/capability/capabilities.get.json.ftl
index 3630f78333..8a20fcc994 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/capability/capabilities.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/capability/capabilities.get.json.ftl
@@ -1,59 +1,59 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{
- "data":
- {
- <#if groupedCapabilities??>
- "groupedCapabilities":
- [
- <#list groupedCapabilities?keys?sort as groupedCapabilityKey>
- {
- "${groupedCapabilityKey}":
- {
- <#assign groupedCapability = groupedCapabilities[groupedCapabilityKey]>
- groupTitle: "${groupedCapability.groupTitle}",
- capabilities:
- {
- <#assign capabilities = groupedCapability.capabilities>
- <#list capabilities?keys?sort as capabilityKey>
- "${capabilityKey}": "${capabilities[capabilityKey]}"<#if capabilityKey_has_next>,#if>
- #list>
- }
- }
- }<#if groupedCapabilityKey_has_next>,#if>
- #list>
- ]
- <#else>
- "capabilities":
- [
- <#list capabilities as capability>
- "${capability}"<#if capability_has_next>,#if>
- #list>
- ]
- #if>
- }
-}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{
+ "data":
+ {
+ <#if groupedCapabilities??>
+ "groupedCapabilities":
+ [
+ <#list groupedCapabilities?keys?sort as groupedCapabilityKey>
+ {
+ "${groupedCapabilityKey}":
+ {
+ <#assign groupedCapability = groupedCapabilities[groupedCapabilityKey]>
+ groupTitle: "${groupedCapability.groupTitle}",
+ capabilities:
+ {
+ <#assign capabilities = groupedCapability.capabilities>
+ <#list capabilities?keys?sort as capabilityKey>
+ "${capabilityKey}": "${capabilities[capabilityKey]}"<#if capabilityKey_has_next>,#if>
+ #list>
+ }
+ }
+ }<#if groupedCapabilityKey_has_next>,#if>
+ #list>
+ ]
+ <#else>
+ "capabilities":
+ [
+ <#list capabilities as capability>
+ "${capability}"<#if capability_has_next>,#if>
+ #list>
+ ]
+ #if>
+ }
+}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customisable.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customisable.get.desc.xml
index 3c51ebf518..384249493f 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customisable.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customisable.get.desc.xml
@@ -1,12 +1,12 @@
-
- Records Management Customisable Types and Aspects
-
-
- /api/rma/admin/customisable
-
- user
- required
- internal
+
+ Records Management Customisable Types and Aspects
+
+
+ /api/rma/admin/customisable
+
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customisable.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customisable.get.json.ftl
index 41eb6aceb2..641a3b01f0 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customisable.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customisable.get.json.ftl
@@ -1,40 +1,40 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- [
- <#list items as item>
- {
- "name" : "${item.name}",
- "isAspect" : ${item.isAspect?string},
- "title" : "${item.title}"
- }<#if item_has_next>,#if>
- #list>
- ]
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ [
+ <#list items as item>
+ {
+ "name" : "${item.name}",
+ "isAspect" : ${item.isAspect?string},
+ "title" : "${item.title}"
+ }<#if item_has_next>,#if>
+ #list>
+ ]
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.delete.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.delete.desc.xml
index 90aa0b9af9..24e24f2c0e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.delete.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.delete.desc.xml
@@ -1,18 +1,18 @@
-
- Attempts to remove specified Custom Property Definitions from the custom model
-
- It should be noted that it may not be possible to honour this request in all cases.
- In cases where instances of the specified property are already present in the system,
- the request will not succeed. In cases where there are no instances of the specified
- property in the system, the request will attempted.
-
- The propId is that returned by custompropertydefinitions.get.
- ]]>
-
- /api/rma/admin/custompropertydefinitions/{propId}
- argument
- user
- required
- internal
-
+
+ Attempts to remove specified Custom Property Definitions from the custom model
+
+ It should be noted that it may not be possible to honour this request in all cases.
+ In cases where instances of the specified property are already present in the system,
+ the request will not succeed. In cases where there are no instances of the specified
+ property in the system, the request will attempted.
+
+ The propId is that returned by custompropertydefinitions.get.
+ ]]>
+
+ /api/rma/admin/custompropertydefinitions/{propId}
+ argument
+ user
+ required
+ internal
+
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.delete.json.ftl
index 488dc580e9..000bc7088c 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.delete.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.delete.json.ftl
@@ -1,34 +1,34 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- "customProperty": "${propertyqname}"
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ "customProperty": "${propertyqname}"
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.post.desc.xml
index 19935f62e5..9d5af56a68 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.post.desc.xml
@@ -1,29 +1,29 @@
-
- Add a Custom Property Definition to the custom model
-
-
- The URL query parameter 'element' defines which RM type will be able to have the property added.
- It should be a the customisable types short qname type (eg rma:recordCategory)
-
- The JSON parameter 'propId' is optional. If a value is provided it must only contain characters
- which are legal within URLs and within QNames.
- It is also the responsibility of the calling code to ensure the propId is unique across all custom properties.
- If a value is not provided, one will be generated.
-
- The body of the post should be in the form, e.g.
- {
- "label": "sample Custom Property",
- "dataType": "d:boolean",
- "mandatory": false ,
- "constraintRef": "rmc:constraintName",
- "propId": "myPropId"
- }
- ]]>
-
- /api/rma/admin/custompropertydefinitions?element={element}
- argument
- user
- required
- internal
-
+
+ Add a Custom Property Definition to the custom model
+
+
+ The URL query parameter 'element' defines which RM type will be able to have the property added.
+ It should be a the customisable types short qname type (eg rma:recordCategory)
+
+ The JSON parameter 'propId' is optional. If a value is provided it must only contain characters
+ which are legal within URLs and within QNames.
+ It is also the responsibility of the calling code to ensure the propId is unique across all custom properties.
+ If a value is not provided, one will be generated.
+
+ The body of the post should be in the form, e.g.
+ {
+ "label": "sample Custom Property",
+ "dataType": "d:boolean",
+ "mandatory": false ,
+ "constraintRef": "rmc:constraintName",
+ "propId": "myPropId"
+ }
+ ]]>
+
+ /api/rma/admin/custompropertydefinitions?element={element}
+ argument
+ user
+ required
+ internal
+
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.post.json.ftl
index f5d2b89832..04a6284055 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.post.json.ftl
@@ -1,33 +1,33 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "propId": "${propId!""}",
- "url": "${url!""}",
- "message": "${errorMessage!""}"
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "propId": "${propId!""}",
+ "url": "${url!""}",
+ "message": "${errorMessage!""}"
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.put.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.put.desc.xml
index e5485bb79b..f4dcf82e60 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.put.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.put.desc.xml
@@ -1,25 +1,25 @@
-
- Updates a Custom Property Definition.
-
-
- There is currently support only for updating the label and/or for updating the constraint.
- The body of the PUT should be in the form, e.g.
- {
- "label": "updated label value",
- "constraintRef": "rmc:constraintName",
- }
- In the above example JSON, a constraintRef with QName "rmc:constraintName" will be added to the
- property definition if one does not exist. If there already is a constraint, it will be replaced.
- It is also possible to remove all constraints from the property definition by passing null:
- {
- "constraintRef": null,
- }
- ]]>
-
- /api/rma/admin/custompropertydefinitions/{propId}
- argument
- user
- required
- internal
-
+
+ Updates a Custom Property Definition.
+
+
+ There is currently support only for updating the label and/or for updating the constraint.
+ The body of the PUT should be in the form, e.g.
+ {
+ "label": "updated label value",
+ "constraintRef": "rmc:constraintName",
+ }
+ In the above example JSON, a constraintRef with QName "rmc:constraintName" will be added to the
+ property definition if one does not exist. If there already is a constraint, it will be replaced.
+ It is also possible to remove all constraints from the property definition by passing null:
+ {
+ "constraintRef": null,
+ }
+ ]]>
+
+ /api/rma/admin/custompropertydefinitions/{propId}
+ argument
+ user
+ required
+ internal
+
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.put.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.put.json.ftl
index 8aea698225..9289822c14 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.put.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.put.json.ftl
@@ -1,33 +1,33 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "propId": "${propId!""}",
- "url": "${url!""}",
- "message": "${errorMessage!""}"
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "propId": "${propId!""}",
+ "url": "${url!""}",
+ "message": "${errorMessage!""}"
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinitions.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinitions.get.desc.xml
index 157a5631f8..bd6b7b218c 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinitions.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinitions.get.desc.xml
@@ -1,14 +1,14 @@
-
- Records Management Custom Model Property Definitions
-
- If a propId is specified within the URL, only that specific property definition is returned.
- ]]>
-
- /api/rma/admin/custompropertydefinitions?element={element}
- /api/rma/admin/custompropertydefinitions/{propId}
-
- user
- required
- internal
+
+ Records Management Custom Model Property Definitions
+
+ If a propId is specified within the URL, only that specific property definition is returned.
+ ]]>
+
+ /api/rma/admin/custompropertydefinitions?element={element}
+ /api/rma/admin/custompropertydefinitions/{propId}
+
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinitions.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinitions.get.json.ftl
index 74c51c9855..01712b698e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinitions.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinitions.get.json.ftl
@@ -1,69 +1,69 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- "customProperties":
- {
- <#list customProps as prop>
- "${prop.name.toPrefixString()}":
- {
- "dataType": "<#if prop.dataType??>${prop.dataType.name.toPrefixString()}#if>",
- "label": "${prop.title!""}",
- "description": "${prop.description!""}",
- "mandatory": ${prop.mandatory?string},
- "multiValued": ${prop.multiValued?string},
- "defaultValue": "${prop.defaultValue!""}",
- "protected": ${prop.protected?string},
- "propId": "${prop.name.localName}",
- "constraintRefs":
- [
- <#list prop.constraints as con>
- {
- "name": "${con.constraint.shortName!""}",
- "title": "${msg(con.constraint.title)!""}",
- "type": "${con.constraint.type!""}",
- "parameters":
- {
- <#-- Basic implementation. Only providing 2 hardcoded parameters. -->
- <#assign lov = con.constraint.parameters["allowedValues"]>
- "caseSensitive": ${con.constraint.parameters["caseSensitive"]?string},
- "listOfValues" :
- [
- <#list lov as val>"${val}"<#if val_has_next>,#if>#list>
- ]
- }
- }<#if con_has_next>,#if>
- #list>
- ]
- }<#if prop_has_next>,#if>
- #list>
- }
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ "customProperties":
+ {
+ <#list customProps as prop>
+ "${prop.name.toPrefixString()}":
+ {
+ "dataType": "<#if prop.dataType??>${prop.dataType.name.toPrefixString()}#if>",
+ "label": "${prop.title!""}",
+ "description": "${prop.description!""}",
+ "mandatory": ${prop.mandatory?string},
+ "multiValued": ${prop.multiValued?string},
+ "defaultValue": "${prop.defaultValue!""}",
+ "protected": ${prop.protected?string},
+ "propId": "${prop.name.localName}",
+ "constraintRefs":
+ [
+ <#list prop.constraints as con>
+ {
+ "name": "${con.constraint.shortName!""}",
+ "title": "${msg(con.constraint.title)!""}",
+ "type": "${con.constraint.type!""}",
+ "parameters":
+ {
+ <#-- Basic implementation. Only providing 2 hardcoded parameters. -->
+ <#assign lov = con.constraint.parameters["allowedValues"]>
+ "caseSensitive": ${con.constraint.parameters["caseSensitive"]?string},
+ "listOfValues" :
+ [
+ <#list lov as val>"${val}"<#if val_has_next>,#if>#list>
+ ]
+ }
+ }<#if con_has_next>,#if>
+ #list>
+ ]
+ }<#if prop_has_next>,#if>
+ #list>
+ }
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.delete.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.delete.desc.xml
index 464533568d..62916a0b4f 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.delete.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.delete.desc.xml
@@ -1,14 +1,14 @@
-
- Removes specified Custom Reference Instance from between the specified nodes
-
- The nodeRef encoded within the URL path is the 'fromNode' in the relationship.
- The nodeRef encoded within the query string is the 'toNode' in the relationship.
- ]]>
-
- /api/node/{store_type}/{store_id}/{id}/customreferences/{refId}?st={toStoreType}&si={toStoreId}&id={toId}
- argument
- user
- required
- internal
-
+
+ Removes specified Custom Reference Instance from between the specified nodes
+
+ The nodeRef encoded within the URL path is the 'fromNode' in the relationship.
+ The nodeRef encoded within the query string is the 'toNode' in the relationship.
+ ]]>
+
+ /api/node/{store_type}/{store_id}/{id}/customreferences/{refId}?st={toStoreType}&si={toStoreId}&id={toId}
+ argument
+ user
+ required
+ internal
+
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.delete.json.ftl
index 94adbdc381..78abb7f172 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.delete.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.delete.json.ftl
@@ -1,29 +1,29 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{
- "success": ${success?string}
-}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{
+ "success": ${success?string}
+}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.post.desc.xml
index ed54822d03..660c6f63c7 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.post.desc.xml
@@ -1,18 +1,18 @@
-
- Add a Custom Reference instance to the specified record node
-
-
- The body of the post should be in the form, e.g.
- {
- "toNode" : "workspace://SpacesStore/12345678-abcd-1234-abcd-1234567890ab",
- "refId" : the refId as returned by customrefdefinitions.get
- }
- ]]>
-
- /api/node/{store_type}/{store_id}/{id}/customreferences
- argument
- user
- required
- internal
+
+ Add a Custom Reference instance to the specified record node
+
+
+ The body of the post should be in the form, e.g.
+ {
+ "toNode" : "workspace://SpacesStore/12345678-abcd-1234-abcd-1234567890ab",
+ "refId" : the refId as returned by customrefdefinitions.get
+ }
+ ]]>
+
+ /api/node/{store_type}/{store_id}/{id}/customreferences
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.post.json.ftl
index 84b7403b56..7e84ce88d7 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.post.json.ftl
@@ -1,31 +1,31 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "success": ${success?string}
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "success": ${success?string}
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.post.desc.xml
index 776e645b72..d5a793f9ef 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.post.desc.xml
@@ -1,22 +1,22 @@
-
- Add a Custom Reference Definition to the custom model
-
-
- The body of the post should be in the form, e.g.
- {
- "referenceType" : ""parentchild" OR "bidirectional",
- "label" : "bar"
- "source" : "foo",
- "target" : "bar"
- }
- For parentchild references, source and target must be provided. For bidirectional references,
- a label is required.
- ]]>
-
- /api/rma/admin/customreferencedefinitions
- argument
- user
- required
- internal
-
+
+ Add a Custom Reference Definition to the custom model
+
+
+ The body of the post should be in the form, e.g.
+ {
+ "referenceType" : ""parentchild" OR "bidirectional",
+ "label" : "bar"
+ "source" : "foo",
+ "target" : "bar"
+ }
+ For parentchild references, source and target must be provided. For bidirectional references,
+ a label is required.
+ ]]>
+
+ /api/rma/admin/customreferencedefinitions
+ argument
+ user
+ required
+ internal
+
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.post.json.ftl
index 196006c47c..ba17ef4769 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.post.json.ftl
@@ -1,36 +1,36 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "success": ${success?string},
- "data" : {
- "referenceType": "${referenceType?string}",
- "refId": "${refId?string}",
- "url": "${url?string}"
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "success": ${success?string},
+ "data" : {
+ "referenceType": "${referenceType?string}",
+ "refId": "${refId?string}",
+ "url": "${url?string}"
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.put.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.put.desc.xml
index 6137f8229c..45cf4a2301 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.put.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.put.desc.xml
@@ -1,25 +1,25 @@
-
- Updates a Custom Reference Definition.
-
-
- There is currently support only for updating the label, source or target fields.
-
- The body of the PUT should be in the form, e.g.
- {
- "label": "updated label value",
- }
- OR
- {
- "source": "updated source value",
- "target": "updated target value",
- }
- for bidirectional and parentchild references respectively.
- ]]>
-
- /api/rma/admin/customreferencedefinitions/{refId}
- argument
- user
- required
- internal
-
+
+ Updates a Custom Reference Definition.
+
+
+ There is currently support only for updating the label, source or target fields.
+
+ The body of the PUT should be in the form, e.g.
+ {
+ "label": "updated label value",
+ }
+ OR
+ {
+ "source": "updated source value",
+ "target": "updated target value",
+ }
+ for bidirectional and parentchild references respectively.
+ ]]>
+
+ /api/rma/admin/customreferencedefinitions/{refId}
+ argument
+ user
+ required
+ internal
+
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.put.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.put.json.ftl
index dc6d1154c9..0921e0d440 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.put.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.put.json.ftl
@@ -1,32 +1,32 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "refId": "${refId}",
- "url": "${url}"
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "refId": "${refId}",
+ "url": "${url}"
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinitions.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinitions.get.desc.xml
index ffb6fc256d..b474afd1ee 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinitions.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinitions.get.desc.xml
@@ -1,15 +1,15 @@
-
- Records Management Custom Model Reference Definitions
-
- If a refId is specified, then only the reference definition corresponding to that
- id will be returned.
- ]]>
-
- /api/rma/admin/customreferencedefinitions
- /api/rma/admin/customreferencedefinitions/{refId}
-
- user
- required
- internal
+
+ Records Management Custom Model Reference Definitions
+
+ If a refId is specified, then only the reference definition corresponding to that
+ id will be returned.
+ ]]>
+
+ /api/rma/admin/customreferencedefinitions
+ /api/rma/admin/customreferencedefinitions/{refId}
+
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinitions.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinitions.get.json.ftl
index 9d72e4553f..8ff6e2df70 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinitions.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinitions.get.json.ftl
@@ -1,42 +1,42 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- "customReferences":
- [
- <#list customRefs as ref>
- {
- <#assign keys = ref?keys>
- <#list keys as key>"${key}": "${ref[key]}"<#if key_has_next>,#if>#list>
- }<#if ref_has_next>,#if>
- #list>
- ]
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ "customReferences":
+ [
+ <#list customRefs as ref>
+ {
+ <#assign keys = ref?keys>
+ <#list keys as key>"${key}": "${ref[key]}"<#if key_has_next>,#if>#list>
+ }<#if ref_has_next>,#if>
+ #list>
+ ]
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefs.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefs.get.desc.xml
index 45ae35c570..ff5c9a054b 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefs.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefs.get.desc.xml
@@ -1,45 +1,45 @@
-
- Records Management Custom Reference Instances
-
- The response will have the form:
- {
- "data":
- {
- "nodeName": "samplename",
- "nodeTitle": "sample title",
- "customReferencesFrom":
- [
- {
- "refId": "09876543-wxyz-0987-wxyz-098765432109",
- "referenceType": "bidirectional",
- "label": "BiDi",
- "targetRef": "workspace://SpacesStore/zyxwvuts-4321-zyxw-4321-zyxwvutsrqpo",
- "sourceRef": "workspace://SpacesStore/a1a1a1a1-a1a1-a1a1-a1a1-a1a1a1a1a1a1"
- }
- ]
- "customReferencesTo":
- [
- {
- "childRef": "workspace://SpacesStore/12345678-abcd-1234-abcd-123456789012",
- "refId": "versions",
- "source": "VersionedBy",
- "referenceType": "parentchild",
- "target": "Versions",
- "parentRef": "workspace://SpacesStore/abcdefgh-1234-abcd-1234-abcdefghijkl"
- }
- ]
- }
- }
- The "customReferencesFrom" field gives the references that are from this node i.e. from the node
- to which the GET was issued. Conversely, the "customReferencesTo" field gives the references that
- are to this node.
- For parent/child reference types, the reference goes from the parent to the child.
- ]]>
-
- /api/node/{store_type}/{store_id}/{id}/customreferences
-
- user
- required
- internal
+
+ Records Management Custom Reference Instances
+
+ The response will have the form:
+ {
+ "data":
+ {
+ "nodeName": "samplename",
+ "nodeTitle": "sample title",
+ "customReferencesFrom":
+ [
+ {
+ "refId": "09876543-wxyz-0987-wxyz-098765432109",
+ "referenceType": "bidirectional",
+ "label": "BiDi",
+ "targetRef": "workspace://SpacesStore/zyxwvuts-4321-zyxw-4321-zyxwvutsrqpo",
+ "sourceRef": "workspace://SpacesStore/a1a1a1a1-a1a1-a1a1-a1a1-a1a1a1a1a1a1"
+ }
+ ]
+ "customReferencesTo":
+ [
+ {
+ "childRef": "workspace://SpacesStore/12345678-abcd-1234-abcd-123456789012",
+ "refId": "versions",
+ "source": "VersionedBy",
+ "referenceType": "parentchild",
+ "target": "Versions",
+ "parentRef": "workspace://SpacesStore/abcdefgh-1234-abcd-1234-abcdefghijkl"
+ }
+ ]
+ }
+ }
+ The "customReferencesFrom" field gives the references that are from this node i.e. from the node
+ to which the GET was issued. Conversely, the "customReferencesTo" field gives the references that
+ are to this node.
+ For parent/child reference types, the reference goes from the parent to the child.
+ ]]>
+
+ /api/node/{store_type}/{store_id}/{id}/customreferences
+
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefs.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefs.get.json.ftl
index 03e81ec527..8bc8a877db 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefs.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefs.get.json.ftl
@@ -1,53 +1,53 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- "nodeName": "${nodeName!""}",
- "nodeTitle": "${nodeTitle!""}",
- "customReferencesFrom":
- [
- <#list customRefsFrom as ref>
- {
- <#assign keys = ref?keys>
- <#list keys as key>"${key}": "${ref[key]}"<#if key_has_next>,#if>#list>
- }<#if ref_has_next>,#if>
- #list>
- ],
- "customReferencesTo":
- [
- <#list customRefsTo as ref>
- {
- <#assign keys = ref?keys>
- <#list keys as key>"${key}": "${ref[key]}"<#if key_has_next>,#if>#list>
- }<#if ref_has_next>,#if>
- #list>
- ]
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ "nodeName": "${nodeName!""}",
+ "nodeTitle": "${nodeTitle!""}",
+ "customReferencesFrom":
+ [
+ <#list customRefsFrom as ref>
+ {
+ <#assign keys = ref?keys>
+ <#list keys as key>"${key}": "${ref[key]}"<#if key_has_next>,#if>#list>
+ }<#if ref_has_next>,#if>
+ #list>
+ ],
+ "customReferencesTo":
+ [
+ <#list customRefsTo as ref>
+ {
+ <#assign keys = ref?keys>
+ <#list keys as key>"${key}": "${ref[key]}"<#if key_has_next>,#if>#list>
+ }<#if ref_has_next>,#if>
+ #list>
+ ]
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dataset.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dataset.post.desc.xml
index ea9d1afe00..a3ec79d5b2 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dataset.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dataset.post.desc.xml
@@ -1,9 +1,9 @@
-
- Import data set into a file plan
- WebScript to import a given data set into a given file plan
- /api/rma/datasets/{dataSetId}?site={site}
- argument
- user
- required
- internal
+
+ Import data set into a file plan
+ WebScript to import a given data set into a given file plan
+ /api/rma/datasets/{dataSetId}?site={site}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dataset.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dataset.post.json.ftl
index 209ebf530c..d79030218f 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dataset.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dataset.post.json.ftl
@@ -1,32 +1,32 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "success": ${success?string},
- "message": "${message}"
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "success": ${success?string},
+ "message": "${message}"
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/datasets.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/datasets.get.desc.xml
index abe2ffaa1f..e82285d044 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/datasets.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/datasets.get.desc.xml
@@ -1,9 +1,9 @@
-
- Get data sets
- WebScript to get the list of available RM test data
- /api/rma/datasets?site={site?}&unloadedonly={unloadedonly?}
- argument
- user
- required
- internal
+
+ Get data sets
+ WebScript to get the list of available RM test data
+ /api/rma/datasets?site={site?}&unloadedonly={unloadedonly?}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/datasets.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/datasets.get.json.ftl
index feacfdee29..9c48b48ac1 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/datasets.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/datasets.get.json.ftl
@@ -1,41 +1,41 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{
- "data":
- {
- "datasets":
- [
- <#list datasets as item>
- {
- "label": "${item.label}",
- "id": "${item.id}",
- "isLoaded": "${item.isLoaded}"
- }<#if item_has_next>,#if>
- #list>
- ]
- }
-}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{
+ "data":
+ {
+ "datasets":
+ [
+ <#list datasets as item>
+ {
+ "label": "${item.label}",
+ "id": "${item.id}",
+ "isLoaded": "${item.isLoaded}"
+ }<#if item_has_next>,#if>
+ #list>
+ ]
+ }
+}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.delete.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.delete.desc.xml
index cd9df1aa22..eb7d36286d 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.delete.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.delete.desc.xml
@@ -1,9 +1,9 @@
-
- Delete Disposition Action Definition
- Deletes a disposition action definition from the collection.
- /api/node/{store_type}/{store_id}/{id}/dispositionschedule/dispositionactiondefinitions/{action_def_id}
- argument
- user
- required
- internal
+
+ Delete Disposition Action Definition
+ Deletes a disposition action definition from the collection.
+ /api/node/{store_type}/{store_id}/{id}/dispositionschedule/dispositionactiondefinitions/{action_def_id}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.delete.json.ftl
index 1c26cf6894..670a74f164 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.delete.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.delete.json.ftl
@@ -1,27 +1,27 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#include "dispositionschedule.get.json.ftl">
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#include "dispositionschedule.get.json.ftl">
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.lib.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.lib.ftl
index a402f03ac7..b81c1ee8f3 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.lib.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.lib.ftl
@@ -1,44 +1,44 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#macro actionJSON action>
-<#escape x as jsonUtils.encodeJSONString(x)>
- {
- "id": "${action.id}",
- "url": "${action.url}",
- "index": ${action.index},
- "name": "${action.name}",
- "label": "${action.label}",
- <#if (action.name == "destroy") && action.ghostOnDestroy??>"ghostOnDestroy": "${action.ghostOnDestroy}",#if>
- <#if action.description??>"description": "${action.description}",#if>
- <#if action.period??>"period": "${action.period}",#if>
- <#if action.periodProperty??>"periodProperty": "${action.periodProperty}",#if>
- <#if action.location??>"location": "${action.location}",#if>
- <#if action.events??>"events": [<#list action.events as event>"${event}"<#if event_has_next>,#if>#list>],#if>
- "eligibleOnFirstCompleteEvent": ${action.eligibleOnFirstCompleteEvent?string}
- }
-#escape>
-#macro>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#macro actionJSON action>
+<#escape x as jsonUtils.encodeJSONString(x)>
+ {
+ "id": "${action.id}",
+ "url": "${action.url}",
+ "index": ${action.index},
+ "name": "${action.name}",
+ "label": "${action.label}",
+ <#if (action.name == "destroy") && action.ghostOnDestroy??>"ghostOnDestroy": "${action.ghostOnDestroy}",#if>
+ <#if action.description??>"description": "${action.description}",#if>
+ <#if action.period??>"period": "${action.period}",#if>
+ <#if action.periodProperty??>"periodProperty": "${action.periodProperty}",#if>
+ <#if action.location??>"location": "${action.location}",#if>
+ <#if action.events??>"events": [<#list action.events as event>"${event}"<#if event_has_next>,#if>#list>],#if>
+ "eligibleOnFirstCompleteEvent": ${action.eligibleOnFirstCompleteEvent?string}
+ }
+#escape>
+#macro>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.put.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.put.desc.xml
index 66692a049a..7801f86edc 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.put.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.put.desc.xml
@@ -1,21 +1,21 @@
-
- Update Disposition Action Definition
-
- {
- "name" : Name of action,
- "description" : Description of the action definition,
- "period" : The period of time,
- "periodProperty" : Model property the period is relative to,
- "eligibleOnFirstCompleteEvent" : Whether all events have to occur,
- "events" : [List of event names]
- }
- ]]>
-
- /api/node/{store_type}/{store_id}/{id}/dispositionschedule/dispositionactiondefinitions/{action_def_id}
- argument
- user
- required
- internal
+
+ Update Disposition Action Definition
+
+ {
+ "name" : Name of action,
+ "description" : Description of the action definition,
+ "period" : The period of time,
+ "periodProperty" : Model property the period is relative to,
+ "eligibleOnFirstCompleteEvent" : Whether all events have to occur,
+ "events" : [List of event names]
+ }
+ ]]>
+
+ /api/node/{store_type}/{store_id}/{id}/dispositionschedule/dispositionactiondefinitions/{action_def_id}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.put.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.put.json.ftl
index 935d2e471f..eee92d6b48 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.put.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.put.json.ftl
@@ -1,31 +1,31 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "dispositionactiondefinition.lib.ftl" as actionDefLib/>
-{
- "data":
- <@actionDefLib.actionJSON action=action/>
-}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "dispositionactiondefinition.lib.ftl" as actionDefLib/>
+{
+ "data":
+ <@actionDefLib.actionJSON action=action/>
+}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinitions.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinitions.post.desc.xml
index a2e5880649..11d132b4c0 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinitions.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinitions.post.desc.xml
@@ -1,21 +1,21 @@
-
- Add Disposition Action Definition
-
- {
- "name" : Name of action,
- "description" : Description of the action definition,
- "period" : The period of time,
- "periodProperty" : Model property the period is relative to,
- "eligibleOnFirstCompleteEvent" : Whether all events have to occur,
- "events" : [List of event names]
- }
- ]]>
-
- /api/node/{store_type}/{store_id}/{id}/dispositionschedule/dispositionactiondefinitions
- argument
- user
- required
- internal
+
+ Add Disposition Action Definition
+
+ {
+ "name" : Name of action,
+ "description" : Description of the action definition,
+ "period" : The period of time,
+ "periodProperty" : Model property the period is relative to,
+ "eligibleOnFirstCompleteEvent" : Whether all events have to occur,
+ "events" : [List of event names]
+ }
+ ]]>
+
+ /api/node/{store_type}/{store_id}/{id}/dispositionschedule/dispositionactiondefinitions
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinitions.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinitions.post.json.ftl
index 935d2e471f..eee92d6b48 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinitions.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinitions.post.json.ftl
@@ -1,31 +1,31 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "dispositionactiondefinition.lib.ftl" as actionDefLib/>
-{
- "data":
- <@actionDefLib.actionJSON action=action/>
-}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "dispositionactiondefinition.lib.ftl" as actionDefLib/>
+{
+ "data":
+ <@actionDefLib.actionJSON action=action/>
+}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionlifecycle.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionlifecycle.get.desc.xml
index f80ee5b24b..2736331dae 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionlifecycle.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionlifecycle.get.desc.xml
@@ -1,9 +1,9 @@
-
- Get Dispositon Lifecycle
- Returns Disposition Lifecycle data
- /api/node/{store_type}/{store_id}/{id}/nextdispositionaction
- argument
- user
- required
- internal
+
+ Get Dispositon Lifecycle
+ Returns Disposition Lifecycle data
+ /api/node/{store_type}/{store_id}/{id}/nextdispositionaction
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionlifecycle.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionlifecycle.get.json.ftl
index 9c291a33d6..01365adcd8 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionlifecycle.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionlifecycle.get.json.ftl
@@ -1,66 +1,66 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- <#if nextaction.notFound?? && nextaction.notFound>
- "notFound": ${nextaction.notFound?string},
- "message": "${nextaction.message}"
- <#else>
- "url": "${nextaction.url}",
- "name": "${nextaction.name}",
- "label": "${nextaction.label}",
- "eventsEligible": ${nextaction.eventsEligible?string},
- <#if nextaction.asOf??>"asOf": "${nextaction.asOf}",#if>
- <#if nextaction.startedAt??>"startedAt": "${nextaction.startedAt}",#if>
- <#if nextaction.startedBy??>"startedBy": "${nextaction.startedBy}",#if>
- <#if nextaction.startedByFirstName??>"startedByFirstName": "${nextaction.startedByFirstName}",#if>
- <#if nextaction.startedByLastName??>"startedByLastName": "${nextaction.startedByLastName}",#if>
- <#if nextaction.completedAt??>"completedAt": "${nextaction.completedAt}",#if>
- <#if nextaction.completedBy??>"completedBy": "${nextaction.completedBy}",#if>
- <#if nextaction.completedByFirstName??>"completedByFirstName": "${nextaction.completedByFirstName}",#if>
- <#if nextaction.completedByLastName??>"completedByLastName": "${nextaction.completedByLastName}",#if>
- "events":
- [
- <#list nextaction.events as event>
- {
- "name": "${event.name}",
- "label": "${event.label}",
- "complete": ${event.complete?string},
- <#if event.completedAt??>"completedAt": "${event.completedAt}",#if>
- <#if event.completedBy??>"completedBy": "${event.completedBy}",#if>
- <#if event.completedByFirstName??>"completedByFirstName": "${event.completedByFirstName}",#if>
- <#if event.completedByLastName??>"completedByLastName": "${event.completedByLastName}",#if>
- "automatic": ${event.automatic?string}
- }<#if event_has_next>,#if>
- #list>
- ]
- #if>
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ <#if nextaction.notFound?? && nextaction.notFound>
+ "notFound": ${nextaction.notFound?string},
+ "message": "${nextaction.message}"
+ <#else>
+ "url": "${nextaction.url}",
+ "name": "${nextaction.name}",
+ "label": "${nextaction.label}",
+ "eventsEligible": ${nextaction.eventsEligible?string},
+ <#if nextaction.asOf??>"asOf": "${nextaction.asOf}",#if>
+ <#if nextaction.startedAt??>"startedAt": "${nextaction.startedAt}",#if>
+ <#if nextaction.startedBy??>"startedBy": "${nextaction.startedBy}",#if>
+ <#if nextaction.startedByFirstName??>"startedByFirstName": "${nextaction.startedByFirstName}",#if>
+ <#if nextaction.startedByLastName??>"startedByLastName": "${nextaction.startedByLastName}",#if>
+ <#if nextaction.completedAt??>"completedAt": "${nextaction.completedAt}",#if>
+ <#if nextaction.completedBy??>"completedBy": "${nextaction.completedBy}",#if>
+ <#if nextaction.completedByFirstName??>"completedByFirstName": "${nextaction.completedByFirstName}",#if>
+ <#if nextaction.completedByLastName??>"completedByLastName": "${nextaction.completedByLastName}",#if>
+ "events":
+ [
+ <#list nextaction.events as event>
+ {
+ "name": "${event.name}",
+ "label": "${event.label}",
+ "complete": ${event.complete?string},
+ <#if event.completedAt??>"completedAt": "${event.completedAt}",#if>
+ <#if event.completedBy??>"completedBy": "${event.completedBy}",#if>
+ <#if event.completedByFirstName??>"completedByFirstName": "${event.completedByFirstName}",#if>
+ <#if event.completedByLastName??>"completedByLastName": "${event.completedByLastName}",#if>
+ "automatic": ${event.automatic?string}
+ }<#if event_has_next>,#if>
+ #list>
+ ]
+ #if>
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionproperties.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionproperties.get.desc.xml
index c1c99e8dce..f268f3d88f 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionproperties.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionproperties.get.desc.xml
@@ -1,9 +1,9 @@
-
- Disposition Properties
- Returns a list of the disposition properties based on the context provided.
- /api/rma/dispositionproperties?recordlevel={recordlevel}&dispositionaction={dispositionaction}
- argument
- user
- required
- internal
+
+ Disposition Properties
+ Returns a list of the disposition properties based on the context provided.
+ /api/rma/dispositionproperties?recordlevel={recordlevel}&dispositionaction={dispositionaction}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionproperties.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionproperties.get.json.ftl
index ad48c925ed..962d4157c4 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionproperties.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionproperties.get.json.ftl
@@ -1,40 +1,40 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{
- "data" :
- {
- "properties":
- [
- <#list properties as item>
- {
- "label": "${item.label}",
- "value": "${item.value}"
- }<#if item_has_next>,#if>
- #list>
- ]
- }
-}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{
+ "data" :
+ {
+ "properties":
+ [
+ <#list properties as item>
+ {
+ "label": "${item.label}",
+ "value": "${item.value}"
+ }<#if item_has_next>,#if>
+ #list>
+ ]
+ }
+}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionschedule.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionschedule.get.desc.xml
index cc21bc2ec4..3ea48069e5 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionschedule.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionschedule.get.desc.xml
@@ -1,9 +1,9 @@
-
- Get Dispositon Schedule
- Returns Disposition Schedule
- /api/node/{store_type}/{store_id}/{id}/dispositionschedule?inherited={inherited?}
- argument
- user
- required
- internal
+
+ Get Dispositon Schedule
+ Returns Disposition Schedule
+ /api/node/{store_type}/{store_id}/{id}/dispositionschedule?inherited={inherited?}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionschedule.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionschedule.get.json.ftl
index c73f5dd294..d23638de3a 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionschedule.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionschedule.get.json.ftl
@@ -1,55 +1,55 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "dispositionactiondefinition.lib.ftl" as actionDefLib/>
-
-<@scheduleJSON schedule=schedule/>
-
-<#macro scheduleJSON schedule>
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- "url": "${schedule.url}",
- "nodeRef": "${schedule.nodeRef}",
- <#if schedule.authority??>"authority": "${schedule.authority}",#if>
- <#if schedule.instructions??>"instructions": "${schedule.instructions}",#if>
- "unpublishedUpdates" : ${schedule.unpublishedUpdates?string},
- "publishInProgress" : ${schedule.publishInProgress?string},
- "recordLevelDisposition": ${schedule.recordLevelDisposition?string},
- "canStepsBeRemoved": ${schedule.canStepsBeRemoved?string},
- "actionsUrl": "${schedule.actionsUrl}",
- "actions":
- [
- <#list schedule.actions as action>
- <@actionDefLib.actionJSON action=action/>
- <#if action_has_next>,#if>
- #list>
- ]
- }
-}
-#escape>
-#macro>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "dispositionactiondefinition.lib.ftl" as actionDefLib/>
+
+<@scheduleJSON schedule=schedule/>
+
+<#macro scheduleJSON schedule>
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ "url": "${schedule.url}",
+ "nodeRef": "${schedule.nodeRef}",
+ <#if schedule.authority??>"authority": "${schedule.authority}",#if>
+ <#if schedule.instructions??>"instructions": "${schedule.instructions}",#if>
+ "unpublishedUpdates" : ${schedule.unpublishedUpdates?string},
+ "publishInProgress" : ${schedule.publishInProgress?string},
+ "recordLevelDisposition": ${schedule.recordLevelDisposition?string},
+ "canStepsBeRemoved": ${schedule.canStepsBeRemoved?string},
+ "actionsUrl": "${schedule.actionsUrl}",
+ "actions":
+ [
+ <#list schedule.actions as action>
+ <@actionDefLib.actionJSON action=action/>
+ <#if action_has_next>,#if>
+ #list>
+ ]
+ }
+}
+#escape>
+#macro>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dodcustomtypes.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dodcustomtypes.get.desc.xml
index 44aab054dc..bb5f689ba8 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dodcustomtypes.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dodcustomtypes.get.desc.xml
@@ -1,12 +1,12 @@
-
- Records Management DOD 5015 Custom Types
-
- ]]>
-
- /api/rma/admin/dodcustomtypes
-
- user
- required
- internal
+
+ Records Management DOD 5015 Custom Types
+
+ ]]>
+
+ /api/rma/admin/dodcustomtypes
+
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dodcustomtypes.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dodcustomtypes.get.json.ftl
index 721d092cf2..bea8499e38 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dodcustomtypes.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dodcustomtypes.get.json.ftl
@@ -1,42 +1,42 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- "dodCustomTypes":
- [
- <#list dodCustomTypes as aspDef>
- {
- "name": "${aspDef.name.prefixString}",
- "title": "${aspDef.title!""}"
- }<#if aspDef_has_next>,#if>
- #list>
- ]
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ "dodCustomTypes":
+ [
+ <#list dodCustomTypes as aspDef>
+ {
+ "name": "${aspDef.name.prefixString}",
+ "title": "${aspDef.title!""}"
+ }<#if aspDef_has_next>,#if>
+ #list>
+ ]
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/export.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/export.post.desc.xml
index a9f50f435c..4599afcb45 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/export.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/export.post.desc.xml
@@ -1,16 +1,16 @@
-
- Records Management Export
-
- The body of the post should be in the form
- {
- "nodeRefs" : array of nodeRefs to export
- }
- ]]>
-
- /api/rma/admin/export
- argument
- user
- required
- internal
+
+ Records Management Export
+
+ The body of the post should be in the form
+ {
+ "nodeRefs" : array of nodeRefs to export
+ }
+ ]]>
+
+ /api/rma/admin/export
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/export.post.html.status.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/export.post.html.status.ftl
index e38cd96fbf..37ea3fd216 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/export.post.html.status.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/export.post.html.status.ftl
@@ -1,45 +1,45 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-
-
- Export failure
-
-
-<#if (args.failureCallbackFunction?exists)>
-
-#if>
-
-
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+
+
+ Export failure
+
+
+<#if (args.failureCallbackFunction?exists)>
+
+#if>
+
+
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.desc.xml
index f4ad55aeda..4f99e04187 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.desc.xml
@@ -1,13 +1,13 @@
-
- Get Fileplan Report
- Returns STATUS_OK (200)
- ]]>
-
- /api/node/{store_type}/{store_id}/{id}/fileplanreport
-
- user
- required
- draft_public_api
+
+ Get Fileplan Report
+ Returns STATUS_OK (200)
+ ]]>
+
+ /api/node/{store_type}/{store_id}/{id}/fileplanreport
+
+ user
+ required
+ draft_public_api
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.js
index 0f30240c8d..eca8a8ef33 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.js
@@ -1,222 +1,222 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-/**
- * Main entry point for this webscript.
- * Builds a nodeRef from the url and creates a records series, category and/or folder
- * template model depending on what nodeRef that has been given.
- *
- * @method main
- */
-function main()
-{
- // Get the node from the URL
- var pathSegments = url.match.split("/");
- var reference = [ url.templateArgs.store_type, url.templateArgs.store_id ].concat(url.templateArgs.id.split("/"));
- var node = search.findNode(pathSegments[2], reference);
-
- // 404 if the node is not found
- if (node == null)
- {
- status.setCode(status.STATUS_NOT_FOUND, "The node could not be found");
- return;
- }
-
- // Get rid of the model URL to enable support for both older DOD5015 and new recordsmanagement model namespaces
- var nodeType = node.type.split("}")[1];
-
- // Get the record series, categories and/or folders
- if(nodeType == "filePlan")
- {
- var recordSeries = [],
- seriesNodes = node.children,
- seriesNode;
- for (var rsi = 0, rsl = seriesNodes.length; rsi < rsl; rsi++)
- {
- var seriesNode = seriesNodes[rsi];
- if(seriesNode.type.split("}")[1] == "recordSeries")
- {
- recordSeries.push(getRecordSeries(seriesNode));
- }
- }
- recordSeries.sort(sortByName);
- model.recordSeries = recordSeries;
- }
- else if(nodeType == "recordSeries")
- {
- var recordSeries = [];
- recordSeries.push(getRecordSeries(node));
- model.recordSeries = recordSeries;
- }
- else if(nodeType == "recordCategory")
- {
- var recordCategories = [];
- recordCategories.push(getRecordCategory(node, "/" + node.parent.name + "/"));
- model.recordCategories = recordCategories;
- }
- else if(nodeType == "recordFolder")
- {
- var recordFolders = [];
- var recordCategory = node.parent;
- recordFolders.push(getRecordFolder(node, "" + recordCategory.parent.name + "/" + recordCategory.name + "/"));
- model.recordFolders = recordFolders;
- } else
- {
- // Throw an error if we don't recognise the node type
- status.setCode(status.STATUS_INTERNAL_SERVER_ERROR, "Unrecognised node type: " + node.type)
- return;
- }
-}
-
-/**
- * Sort helper function for objects with names
- *
- * @method sortByName
- * @param obj1
- * @param obj2
- */
-function sortByName(obj1, obj2)
-{
- return (obj1.name > obj2.name) ? 1 : (obj1.name < obj2.name) ? -1 : 0;
-}
-
-/**
- * Takes a ScriptNode and builds a Record Series template model from it
- *
- * @method getRecordSeries
- * @param seriesNode {ScriptNode} A ScriptNode of type "rma:recordSeries"
- */
-function getRecordSeries(seriesNode)
-{
- // Create Record Series object
- var recordSerie = {
- parentPath: "/",
- name: seriesNode.name,
- identifier: seriesNode.properties["rma:identifier"],
- description: seriesNode.properties["description"]
- };
-
- // Find all Record Categories
- var recordCategories = [],
- categoryNodes = seriesNode.children,
- categoryNode;
- for (var rci = 0, rcl = categoryNodes.length; rci < rcl; rci++)
- {
- categoryNode = categoryNodes[rci];
- if(categoryNode.type == "{http://www.alfresco.org/model/dod5015/1.0}recordCategory")
- {
- // Create and add Record Category object
- recordCategories.push(getRecordCategory(categoryNode, "/" + seriesNode.name + "/"));
- }
- }
- recordCategories.sort(sortByName);
- recordSerie.recordCategories = recordCategories;
-
- // Return Record Series
- return recordSerie;
-}
-
-/**
- * Takes a ScriptNode and builds a Record Category template model from it
- *
- * @method getRecordCategory
- * @param categoryNode {ScriptNode} A ScriptNode of type "rma:recordCategory"
- * @param parentPath {string} The file path starting from the top of the fileplan
- */
-function getRecordCategory(categoryNode, parentPath)
-{
- // Create Record Category object
- var recordCategory = {
- parentPath: parentPath,
- name: categoryNode.name,
- identifier: categoryNode.properties["rma:identifier"],
- vitalRecordIndicator: categoryNode.properties["vitalRecordIndicator"],
- dispositionAuthority: categoryNode.properties["dispositionAuthority"],
- recordFolders: [],
- dispositionActions: []
- };
-
- // Find all Record Folders & Disposition information
- var recordFolders = [],
- dispositionActions = [],
- categoryChildren = categoryNode.children,
- categoryChild,
- dispScheduleChildren,
- dispScheduleChild;
- for (var cci = 0, ccil = categoryChildren.length; cci < ccil; cci++)
- {
- categoryChild = categoryChildren[cci]
- if (categoryChild.type == "{http://www.alfresco.org/model/recordsmanagement/1.0}recordFolder")
- {
- // Create and add Record Folder object
- recordFolders.push(getRecordFolder(categoryChild, parentPath + categoryNode.name + "/"));
- }
- else if (categoryChild.type == "{http://www.alfresco.org/model/recordsmanagement/1.0}dispositionSchedule")
- {
- // Get Disposition authority
- recordCategory.dispositionAuthority = categoryChild.properties["rma:dispositionAuthority"];
- dispScheduleChildren = categoryChild.children;
- for (var dsi = 0, dsil = dispScheduleChildren.length; dsi < dsil; dsi++)
- {
- dispScheduleChild = dispScheduleChildren[dsi];
- if (dispScheduleChild.type == "{http://www.alfresco.org/model/recordsmanagement/1.0}dispositionActionDefinition")
- {
- // Add Disposition Action description
- dispositionActions.push({
- dispositionDescription: dispScheduleChild.properties["rma:dispositionDescription"]
- });
- }
- }
- }
- }
-
- // Add Record Category to the list
- recordFolders.sort(sortByName);
- recordCategory.recordFolders = recordFolders;
- recordCategory.dispositionActions = dispositionActions;
- return recordCategory;
-}
-
-/**
- * Takes a ScriptNode and builds a Record Category template model from it
- *
- * @method getRecordFolder
- * @param recordFolder {ScriptNode} A ScriptNode of type "rma:recordrecordFolder"
- * @param parentPath {string} The file path starting from the top of the fileplan
- */
-function getRecordFolder(recordFolder, parentPath)
-{
- return {
- parentPath: parentPath,
- name: recordFolder.name,
- identifier: recordFolder.properties["rma:identifier"],
- vitalRecordIndicator: recordFolder.properties["vitalRecordIndicator"]
- };
-}
-
-// Start webscript
-main();
-
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+/**
+ * Main entry point for this webscript.
+ * Builds a nodeRef from the url and creates a records series, category and/or folder
+ * template model depending on what nodeRef that has been given.
+ *
+ * @method main
+ */
+function main()
+{
+ // Get the node from the URL
+ var pathSegments = url.match.split("/");
+ var reference = [ url.templateArgs.store_type, url.templateArgs.store_id ].concat(url.templateArgs.id.split("/"));
+ var node = search.findNode(pathSegments[2], reference);
+
+ // 404 if the node is not found
+ if (node == null)
+ {
+ status.setCode(status.STATUS_NOT_FOUND, "The node could not be found");
+ return;
+ }
+
+ // Get rid of the model URL to enable support for both older DOD5015 and new recordsmanagement model namespaces
+ var nodeType = node.type.split("}")[1];
+
+ // Get the record series, categories and/or folders
+ if(nodeType == "filePlan")
+ {
+ var recordSeries = [],
+ seriesNodes = node.children,
+ seriesNode;
+ for (var rsi = 0, rsl = seriesNodes.length; rsi < rsl; rsi++)
+ {
+ var seriesNode = seriesNodes[rsi];
+ if(seriesNode.type.split("}")[1] == "recordSeries")
+ {
+ recordSeries.push(getRecordSeries(seriesNode));
+ }
+ }
+ recordSeries.sort(sortByName);
+ model.recordSeries = recordSeries;
+ }
+ else if(nodeType == "recordSeries")
+ {
+ var recordSeries = [];
+ recordSeries.push(getRecordSeries(node));
+ model.recordSeries = recordSeries;
+ }
+ else if(nodeType == "recordCategory")
+ {
+ var recordCategories = [];
+ recordCategories.push(getRecordCategory(node, "/" + node.parent.name + "/"));
+ model.recordCategories = recordCategories;
+ }
+ else if(nodeType == "recordFolder")
+ {
+ var recordFolders = [];
+ var recordCategory = node.parent;
+ recordFolders.push(getRecordFolder(node, "" + recordCategory.parent.name + "/" + recordCategory.name + "/"));
+ model.recordFolders = recordFolders;
+ } else
+ {
+ // Throw an error if we don't recognise the node type
+ status.setCode(status.STATUS_INTERNAL_SERVER_ERROR, "Unrecognised node type: " + node.type)
+ return;
+ }
+}
+
+/**
+ * Sort helper function for objects with names
+ *
+ * @method sortByName
+ * @param obj1
+ * @param obj2
+ */
+function sortByName(obj1, obj2)
+{
+ return (obj1.name > obj2.name) ? 1 : (obj1.name < obj2.name) ? -1 : 0;
+}
+
+/**
+ * Takes a ScriptNode and builds a Record Series template model from it
+ *
+ * @method getRecordSeries
+ * @param seriesNode {ScriptNode} A ScriptNode of type "rma:recordSeries"
+ */
+function getRecordSeries(seriesNode)
+{
+ // Create Record Series object
+ var recordSerie = {
+ parentPath: "/",
+ name: seriesNode.name,
+ identifier: seriesNode.properties["rma:identifier"],
+ description: seriesNode.properties["description"]
+ };
+
+ // Find all Record Categories
+ var recordCategories = [],
+ categoryNodes = seriesNode.children,
+ categoryNode;
+ for (var rci = 0, rcl = categoryNodes.length; rci < rcl; rci++)
+ {
+ categoryNode = categoryNodes[rci];
+ if(categoryNode.type == "{http://www.alfresco.org/model/dod5015/1.0}recordCategory")
+ {
+ // Create and add Record Category object
+ recordCategories.push(getRecordCategory(categoryNode, "/" + seriesNode.name + "/"));
+ }
+ }
+ recordCategories.sort(sortByName);
+ recordSerie.recordCategories = recordCategories;
+
+ // Return Record Series
+ return recordSerie;
+}
+
+/**
+ * Takes a ScriptNode and builds a Record Category template model from it
+ *
+ * @method getRecordCategory
+ * @param categoryNode {ScriptNode} A ScriptNode of type "rma:recordCategory"
+ * @param parentPath {string} The file path starting from the top of the fileplan
+ */
+function getRecordCategory(categoryNode, parentPath)
+{
+ // Create Record Category object
+ var recordCategory = {
+ parentPath: parentPath,
+ name: categoryNode.name,
+ identifier: categoryNode.properties["rma:identifier"],
+ vitalRecordIndicator: categoryNode.properties["vitalRecordIndicator"],
+ dispositionAuthority: categoryNode.properties["dispositionAuthority"],
+ recordFolders: [],
+ dispositionActions: []
+ };
+
+ // Find all Record Folders & Disposition information
+ var recordFolders = [],
+ dispositionActions = [],
+ categoryChildren = categoryNode.children,
+ categoryChild,
+ dispScheduleChildren,
+ dispScheduleChild;
+ for (var cci = 0, ccil = categoryChildren.length; cci < ccil; cci++)
+ {
+ categoryChild = categoryChildren[cci]
+ if (categoryChild.type == "{http://www.alfresco.org/model/recordsmanagement/1.0}recordFolder")
+ {
+ // Create and add Record Folder object
+ recordFolders.push(getRecordFolder(categoryChild, parentPath + categoryNode.name + "/"));
+ }
+ else if (categoryChild.type == "{http://www.alfresco.org/model/recordsmanagement/1.0}dispositionSchedule")
+ {
+ // Get Disposition authority
+ recordCategory.dispositionAuthority = categoryChild.properties["rma:dispositionAuthority"];
+ dispScheduleChildren = categoryChild.children;
+ for (var dsi = 0, dsil = dispScheduleChildren.length; dsi < dsil; dsi++)
+ {
+ dispScheduleChild = dispScheduleChildren[dsi];
+ if (dispScheduleChild.type == "{http://www.alfresco.org/model/recordsmanagement/1.0}dispositionActionDefinition")
+ {
+ // Add Disposition Action description
+ dispositionActions.push({
+ dispositionDescription: dispScheduleChild.properties["rma:dispositionDescription"]
+ });
+ }
+ }
+ }
+ }
+
+ // Add Record Category to the list
+ recordFolders.sort(sortByName);
+ recordCategory.recordFolders = recordFolders;
+ recordCategory.dispositionActions = dispositionActions;
+ return recordCategory;
+}
+
+/**
+ * Takes a ScriptNode and builds a Record Category template model from it
+ *
+ * @method getRecordFolder
+ * @param recordFolder {ScriptNode} A ScriptNode of type "rma:recordrecordFolder"
+ * @param parentPath {string} The file path starting from the top of the fileplan
+ */
+function getRecordFolder(recordFolder, parentPath)
+{
+ return {
+ parentPath: parentPath,
+ name: recordFolder.name,
+ identifier: recordFolder.properties["rma:identifier"],
+ vitalRecordIndicator: recordFolder.properties["vitalRecordIndicator"]
+ };
+}
+
+// Start webscript
+main();
+
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.json.ftl
index 12de067cc2..8a9c610664 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.json.ftl
@@ -1,45 +1,45 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "fileplanreport.lib.ftl" as reportLib/>
-<#macro dateFormat date>${date?string("dd MMM yyyy HH:mm:ss 'GMT'Z '('zzz')'")}#macro>
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- data:
- {
- "firstName": <#if person.properties.firstName??>"${person.properties.firstName}"<#else>null#if>,
- "lastName": <#if person.properties.lastName??>"${person.properties.lastName}"<#else>null#if>,
- <#if (recordSeries??)>
- "recordSeries": <@reportLib.recordSeriesJSON recordSeries=recordSeries/>,
- <#elseif (recordCategories??)>
- "recordCategories": <@reportLib.recordCategoriesJSON recordCategories=recordCategories/>,
- <#elseif (recordFolders??)>
- "recordFolders": <@reportLib.recordFoldersJSON recordFolders=recordFolders/>,
- #if>
- "printDate": "<@dateFormat date=date/>"
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "fileplanreport.lib.ftl" as reportLib/>
+<#macro dateFormat date>${date?string("dd MMM yyyy HH:mm:ss 'GMT'Z '('zzz')'")}#macro>
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ data:
+ {
+ "firstName": <#if person.properties.firstName??>"${person.properties.firstName}"<#else>null#if>,
+ "lastName": <#if person.properties.lastName??>"${person.properties.lastName}"<#else>null#if>,
+ <#if (recordSeries??)>
+ "recordSeries": <@reportLib.recordSeriesJSON recordSeries=recordSeries/>,
+ <#elseif (recordCategories??)>
+ "recordCategories": <@reportLib.recordCategoriesJSON recordCategories=recordCategories/>,
+ <#elseif (recordFolders??)>
+ "recordFolders": <@reportLib.recordFoldersJSON recordFolders=recordFolders/>,
+ #if>
+ "printDate": "<@dateFormat date=date/>"
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.lib.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.lib.ftl
index 1345f068cf..f5d8a4976f 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.lib.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.lib.ftl
@@ -1,72 +1,72 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#macro recordSeriesJSON recordSeries>
-<#escape x as jsonUtils.encodeJSONString(x)>
- [<#list recordSeries as recordSerie>
- {
- "parentPath": "${recordSerie.parentPath}",
- "name": "${recordSerie.name}",
- "identifier": "${recordSerie.identifier}",
- "description": "${recordSerie.description}",
- "recordCategories": <@recordCategoriesJSON recordCategories=recordSerie.recordCategories/>
- }<#if (recordSerie_has_next)>,#if>
- #list>]
-#escape>
-#macro>
-
-<#macro recordCategoriesJSON recordCategories>
-<#escape x as jsonUtils.encodeJSONString(x)>
- [<#list recordCategories as recordCategory>
- {
- "parentPath": "${recordCategory.parentPath}",
- "name": "${recordCategory.name}",
- "identifier": "${recordCategory.identifier}",
- <#if (recordCategory.vitalRecordIndicator??)>"vitalRecordIndicator": ${recordCategory.vitalRecordIndicator?string},#if>
- <#if (recordCategory.dispositionAuthority??)>"dispositionAuthority": "${recordCategory.dispositionAuthority}",#if>
- "recordFolders": <@recordFoldersJSON recordFolders=recordCategory.recordFolders/>,
- "dispositionActions": [<#list recordCategory.dispositionActions as dispositionAction>
- {
- "dispositionDescription": "${dispositionAction.dispositionDescription!""}"
- }<#if (dispositionAction_has_next)>,#if>
- #list>]
- }<#if (recordCategory_has_next)>,#if>
- #list>]
-#escape>
-#macro>
-
-<#macro recordFoldersJSON recordFolders>
-<#escape x as jsonUtils.encodeJSONString(x)>
- [<#list recordFolders as recordFolder>
- {
- "parentPath": "${recordFolder.parentPath}",
- "name": "${recordFolder.name}",
- "identifier": "${recordFolder.identifier}",
- <#if (recordFolder.vitalRecordIndicator??)>"vitalRecordIndicator": "${recordFolder.vitalRecordIndicator?string}"#if>
- }<#if (recordFolder_has_next)>,#if>
- #list>]
-#escape>
-#macro>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#macro recordSeriesJSON recordSeries>
+<#escape x as jsonUtils.encodeJSONString(x)>
+ [<#list recordSeries as recordSerie>
+ {
+ "parentPath": "${recordSerie.parentPath}",
+ "name": "${recordSerie.name}",
+ "identifier": "${recordSerie.identifier}",
+ "description": "${recordSerie.description}",
+ "recordCategories": <@recordCategoriesJSON recordCategories=recordSerie.recordCategories/>
+ }<#if (recordSerie_has_next)>,#if>
+ #list>]
+#escape>
+#macro>
+
+<#macro recordCategoriesJSON recordCategories>
+<#escape x as jsonUtils.encodeJSONString(x)>
+ [<#list recordCategories as recordCategory>
+ {
+ "parentPath": "${recordCategory.parentPath}",
+ "name": "${recordCategory.name}",
+ "identifier": "${recordCategory.identifier}",
+ <#if (recordCategory.vitalRecordIndicator??)>"vitalRecordIndicator": ${recordCategory.vitalRecordIndicator?string},#if>
+ <#if (recordCategory.dispositionAuthority??)>"dispositionAuthority": "${recordCategory.dispositionAuthority}",#if>
+ "recordFolders": <@recordFoldersJSON recordFolders=recordCategory.recordFolders/>,
+ "dispositionActions": [<#list recordCategory.dispositionActions as dispositionAction>
+ {
+ "dispositionDescription": "${dispositionAction.dispositionDescription!""}"
+ }<#if (dispositionAction_has_next)>,#if>
+ #list>]
+ }<#if (recordCategory_has_next)>,#if>
+ #list>]
+#escape>
+#macro>
+
+<#macro recordFoldersJSON recordFolders>
+<#escape x as jsonUtils.encodeJSONString(x)>
+ [<#list recordFolders as recordFolder>
+ {
+ "parentPath": "${recordFolder.parentPath}",
+ "name": "${recordFolder.name}",
+ "identifier": "${recordFolder.identifier}",
+ <#if (recordFolder.vitalRecordIndicator??)>"vitalRecordIndicator": "${recordFolder.vitalRecordIndicator?string}"#if>
+ }<#if (recordFolder_has_next)>,#if>
+ #list>]
+#escape>
+#macro>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.post.desc.xml
index 10b936385b..c58f296207 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.post.desc.xml
@@ -1,17 +1,17 @@
-
- Adds item(s) to the hold(s)
-
- The body of the post should be in the form
- {
- "nodeRefs" : array of nodeRefs for item(s) (record(s) / record folder(s)),
- "holds" : array of nodeRefs for the hold(s)
- }
- ]]>
-
- /api/rma/holds
- argument
- user
- required
- internal
+
+ Adds item(s) to the hold(s)
+
+ The body of the post should be in the form
+ {
+ "nodeRefs" : array of nodeRefs for item(s) (record(s) / record folder(s)),
+ "holds" : array of nodeRefs for the hold(s)
+ }
+ ]]>
+
+ /api/rma/holds
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.post.json.ftl
index 05d341e16b..b7ba61347e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.post.json.ftl
@@ -1,27 +1,27 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.put.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.put.desc.xml
index 6f18a336fc..13edad40eb 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.put.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.put.desc.xml
@@ -1,17 +1,17 @@
-
- Removes item(s) from the hold(s)
-
- The body of the put should be in the form
- {
- "nodeRefs" : array of nodeRefs for the item(s) (record(s) / record folder(s)),
- "holds" : array of nodeRefs for the hold(s)
- }
- ]]>
-
- /api/rma/holds
- argument
- user
- required
- internal
+
+ Removes item(s) from the hold(s)
+
+ The body of the put should be in the form
+ {
+ "nodeRefs" : array of nodeRefs for the item(s) (record(s) / record folder(s)),
+ "holds" : array of nodeRefs for the hold(s)
+ }
+ ]]>
+
+ /api/rma/holds
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.put.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.put.json.ftl
index 05d341e16b..b7ba61347e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.put.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.put.json.ftl
@@ -1,27 +1,27 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/holds.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/holds.get.desc.xml
index 4f3dcbf566..5a20fceff7 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/holds.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/holds.get.desc.xml
@@ -1,20 +1,20 @@
-
- Gets the list of the hold(s)
-
-
- /api/rma/{store_type}/{store_id}/{id}/holds?itemNodeRef={itemNodeRef?}&includedInHold={includedInHold?}&fileOnly={fileOnly?}
- /api/rma/holds?itemNodeRef={itemNodeRef?}
- argument
- user
- required
- internal
+
+ Gets the list of the hold(s)
+
+
+ /api/rma/{store_type}/{store_id}/{id}/holds?itemNodeRef={itemNodeRef?}&includedInHold={includedInHold?}&fileOnly={fileOnly?}
+ /api/rma/holds?itemNodeRef={itemNodeRef?}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/holds.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/holds.get.json.ftl
index 5249a4c798..79992ccfaf 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/holds.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/holds.get.json.ftl
@@ -1,42 +1,42 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- "holds":
- [
- <#list holds as hold>
- {
- "name": "${hold.name}",
- "nodeRef": "${hold.nodeRef}"
- }<#if hold_has_next>,#if>
- #list>
- ]
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ "holds":
+ [
+ <#list holds as hold>
+ {
+ "name": "${hold.name}",
+ "nodeRef": "${hold.nodeRef}"
+ }<#if hold_has_next>,#if>
+ #list>
+ ]
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.desc.xml
index bb2c537379..6930926ff7 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.desc.xml
@@ -1,17 +1,17 @@
-
- Records Management Import
-
- The body of the post should be multipart/form-data and contain the following fields.
-
-
destination: array of nodeRefs to export
-
archive: array of nodeRefs to export
-
- ]]>
-
- /api/rma/admin/import
-
- user
- required
- internal
+
+ Records Management Import
+
+ The body of the post should be multipart/form-data and contain the following fields.
+
+
destination: array of nodeRefs to export
+
archive: array of nodeRefs to export
+
+ ]]>
+
+ /api/rma/admin/import
+
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.html.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.html.ftl
index c44c1127f0..11c898ff7e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.html.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.html.ftl
@@ -1,40 +1,40 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-
-
- Upload success
-
-
-<#if (args.successCallback?exists)>
-
-#if>
-
-
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+
+
+ Upload success
+
+
+<#if (args.successCallback?exists)>
+
+#if>
+
+
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.json.ftl
index 84b7403b56..7e84ce88d7 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.json.ftl
@@ -1,31 +1,31 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "success": ${success?string}
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "success": ${success?string}
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.get.desc.xml
index 9b216d0058..16eb309e1f 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.get.desc.xml
@@ -1,9 +1,9 @@
-
- List Of Values
- Returns lists of items used by the Records Management service
- /api/rma/admin/listofvalues
- argument
- user
- required
- internal
+
+ List Of Values
+ Returns lists of items used by the Records Management service
+ /api/rma/admin/listofvalues
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.get.json.ftl
index b5dc00d2b2..6b6afc1dc6 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.get.json.ftl
@@ -1,28 +1,28 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "listofvalues.lib.ftl" as listsLib/>
-<@listsLib.listsJSON lists=lists/>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "listofvalues.lib.ftl" as listsLib/>
+<@listsLib.listsJSON lists=lists/>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.lib.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.lib.ftl
index 7cc90b64de..7612298345 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.lib.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.lib.ftl
@@ -1,101 +1,101 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#macro listsJSON lists>
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- "dispositionActions":
- {
- "url": "${lists.dispositionActions.url}",
- "items":
- [
- <#list lists.dispositionActions.items as item>
- {
- "label": "${item.label}",
- "value": "${item.value}"
- }<#if item_has_next>,#if>
- #list>
- ]
- },
- "events":
- {
- "url": "${lists.events.url}",
- "items":
- [
- <#list lists.events.items as item>
- {
- "label": "${item.label}",
- "value": "${item.value}",
- "automatic": ${item.automatic?string}
- }<#if item_has_next>,#if>
- #list>
- ]
- },
- "periodTypes":
- {
- "url": "${lists.periodTypes.url}",
- "items":
- [
- <#list lists.periodTypes.items as item>
- {
- "label": "${item.label}",
- "value": "${item.value}"
- }<#if item_has_next>,#if>
- #list>
- ]
- },
- "periodProperties":
- {
- "url": "${lists.periodProperties.url}",
- "items":
- [
- <#list lists.periodProperties.items as item>
- {
- "label": "${item.label}",
- "value": "${item.value}"
- }<#if item_has_next>,#if>
- #list>
- ]
- },
- "auditEvents":
- {
- "url": "${lists.auditEvents.url}",
- "items":
- [
- <#list lists.auditEvents.items as item>
- {
- "label": "${item.label}",
- "value": "${item.value}"
- }<#if item_has_next>,#if>
- #list>
- ]
- }
- }
-}
-#escape>
-#macro>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#macro listsJSON lists>
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ "dispositionActions":
+ {
+ "url": "${lists.dispositionActions.url}",
+ "items":
+ [
+ <#list lists.dispositionActions.items as item>
+ {
+ "label": "${item.label}",
+ "value": "${item.value}"
+ }<#if item_has_next>,#if>
+ #list>
+ ]
+ },
+ "events":
+ {
+ "url": "${lists.events.url}",
+ "items":
+ [
+ <#list lists.events.items as item>
+ {
+ "label": "${item.label}",
+ "value": "${item.value}",
+ "automatic": ${item.automatic?string}
+ }<#if item_has_next>,#if>
+ #list>
+ ]
+ },
+ "periodTypes":
+ {
+ "url": "${lists.periodTypes.url}",
+ "items":
+ [
+ <#list lists.periodTypes.items as item>
+ {
+ "label": "${item.label}",
+ "value": "${item.value}"
+ }<#if item_has_next>,#if>
+ #list>
+ ]
+ },
+ "periodProperties":
+ {
+ "url": "${lists.periodProperties.url}",
+ "items":
+ [
+ <#list lists.periodProperties.items as item>
+ {
+ "label": "${item.label}",
+ "value": "${item.value}"
+ }<#if item_has_next>,#if>
+ #list>
+ ]
+ },
+ "auditEvents":
+ {
+ "url": "${lists.auditEvents.url}",
+ "items":
+ [
+ <#list lists.auditEvents.items as item>
+ {
+ "label": "${item.label}",
+ "value": "${item.value}"
+ }<#if item_has_next>,#if>
+ #list>
+ ]
+ }
+ }
+}
+#escape>
+#macro>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/recordmetadataaspects.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/recordmetadataaspects.get.desc.xml
index e505fbc91a..ca9f61b006 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/recordmetadataaspects.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/recordmetadataaspects.get.desc.xml
@@ -1,12 +1,12 @@
-
- Record Metadata Aspects
-
-
- /api/rma/recordmetadataaspects?noderef={?nodeRef}
-
- user
- required
- internal
+
+ Record Metadata Aspects
+
+
+ /api/rma/recordmetadataaspects?noderef={?nodeRef}
+
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/recordmetadataaspects.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/recordmetadataaspects.get.json.ftl
index 3130d20dbf..9bab288bbd 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/recordmetadataaspects.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/recordmetadataaspects.get.json.ftl
@@ -1,43 +1,43 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- "recordMetaDataAspects":
- [
- <#list aspects as aspect>
- {
- "id" : "${aspect.id}",
- "value" : "${aspect.value}"
- }
- <#if aspect_has_next>,#if>
- #list>
- ]
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ "recordMetaDataAspects":
+ [
+ <#list aspects as aspect>
+ {
+ "id" : "${aspect.id}",
+ "value" : "${aspect.value}"
+ }
+ <#if aspect_has_next>,#if>
+ #list>
+ ]
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationship.delete.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationship.delete.desc.xml
index 40b778c42e..2b16d435ac 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationship.delete.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationship.delete.desc.xml
@@ -1,8 +1,8 @@
-
- Delete records management relationship
- Deletes the specified relationship.
- /api/node/{store_type}/{store_id}/{id}/targetnode/{target_store_type}/{target_store_id}/{target_id}/uniqueName/{uniqueName}
-
- user
- required
+
+ Delete records management relationship
+ Deletes the specified relationship.
+ /api/node/{store_type}/{store_id}/{id}/targetnode/{target_store_type}/{target_store_id}/{target_id}/uniqueName/{uniqueName}
+
+ user
+ required
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationship.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationship.delete.json.ftl
index 516215782b..37caf4c02d 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationship.delete.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationship.delete.json.ftl
@@ -1,29 +1,29 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{
- "success": ${success?string}
-}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{
+ "success": ${success?string}
+}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationshiplabels.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationshiplabels.get.desc.xml
index 6147dfe711..4d34693449 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationshiplabels.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationshiplabels.get.desc.xml
@@ -1,8 +1,8 @@
-
- Records Management Relationship Labels
- Gets the list of existing relationship labels.
- /api/rma/admin/relationshiplabels
-
- user
- required
+
+ Records Management Relationship Labels
+ Gets the list of existing relationship labels.
+ /api/rma/admin/relationshiplabels
+
+ user
+ required
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationshiplabels.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationshiplabels.get.json.ftl
index ef96d85d3e..c2f0797e4c 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationshiplabels.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationshiplabels.get.json.ftl
@@ -1,42 +1,42 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- "relationshipLabels":
- [
- <#list relationshipLabels as relationshipLabel>
- {
- "label": "${relationshipLabel.label}",
- "uniqueName": "${relationshipLabel.uniqueName}"
- }<#if relationshipLabel_has_next>,#if>
- #list>
- ]
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ "relationshipLabels":
+ [
+ <#list relationshipLabels as relationshipLabel>
+ {
+ "label": "${relationshipLabel.label}",
+ "uniqueName": "${relationshipLabel.uniqueName}"
+ }<#if relationshipLabel_has_next>,#if>
+ #list>
+ ]
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationships.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationships.get.desc.xml
index a31c20131d..ea306912b1 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationships.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationships.get.desc.xml
@@ -1,8 +1,8 @@
-
- Records Management Relationships
- Gets the list of existing relationships on the specified node.
- /api/node/{store_type}/{store_id}/{id}/relationships
-
- user
- required
+
+ Records Management Relationships
+ Gets the list of existing relationships on the specified node.
+ /api/node/{store_type}/{store_id}/{id}/relationships
+
+ user
+ required
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationships.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationships.get.json.ftl
index 3b8dea0098..ae7db1e0cb 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationships.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationships.get.json.ftl
@@ -1,41 +1,41 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- "items":
- [
- <#list relationships as relationship>
- {
- "node": <#noescape>${relationship}#noescape>
- }<#if relationship_has_next>,#if>
- #list>
- ]
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ "items":
+ [
+ <#list relationships as relationship>
+ {
+ "node": <#noescape>${relationship}#noescape>
+ }<#if relationship_has_next>,#if>
+ #list>
+ ]
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmaction.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmaction.post.desc.xml
index f09d5691cc..7f4a7f1dd6 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmaction.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmaction.post.desc.xml
@@ -1,19 +1,19 @@
-
- Records Management Action Execution
-
- The body of the post should be in the form
- {
- "nodeRef" : nodeRef for target Record,
- "nodeRefs" : array of nodeRef for target Records (either this or "nodeRef" should be present),
- "name" : actionName,
- "params" : {actionParameters}
- }
- ]]>
-
- /api/rma/actions/ExecutionQueue
-
- user
- required
- internal
+
+ Records Management Action Execution
+
+ The body of the post should be in the form
+ {
+ "nodeRef" : nodeRef for target Record,
+ "nodeRefs" : array of nodeRef for target Records (either this or "nodeRef" should be present),
+ "name" : actionName,
+ "params" : {actionParameters}
+ }
+ ]]>
+
+ /api/rma/actions/ExecutionQueue
+
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmaction.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmaction.post.json.ftl
index 6a2f1238a5..5fc74ae802 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmaction.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmaction.post.json.ftl
@@ -1,40 +1,40 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{
- "message" : "${message}"
-<#if result?exists>
- ,"result" : "${result?string}"
-#if>
-<#if results?exists>
- ,"results" :
- {
- <#list results?keys as prop>
- "${prop}" : "${results[prop]}"<#if prop_has_next>,#if>
- #list>
- }
-#if>
-}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{
+ "message" : "${message}"
+<#if result?exists>
+ ,"result" : "${result?string}"
+#if>
+<#if results?exists>
+ ,"results" :
+ {
+ <#list results?keys as prop>
+ "${prop}" : "${results[prop]}"<#if prop_has_next>,#if>
+ #list>
+ }
+#if>
+}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.delete.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.delete.desc.xml
index 8cf91b17a0..699de3dcde 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.delete.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.delete.desc.xml
@@ -1,9 +1,9 @@
-
- Clears Records Management Audit Log
- Clears the Records Management audit log
- /api/rma/admin/rmauditlog
- argument
- user
- required
- internal
+
+ Clears Records Management Audit Log
+ Clears the Records Management audit log
+ /api/rma/admin/rmauditlog
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.delete.json.ftl
index 88cf9b85d8..819b192128 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.delete.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.delete.json.ftl
@@ -1,28 +1,28 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "rmauditlog.lib.ftl" as auditLib/>
-<@auditLib.auditStatusJSON auditstatus=auditstatus/>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "rmauditlog.lib.ftl" as auditLib/>
+<@auditLib.auditStatusJSON auditstatus=auditstatus/>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.get.desc.xml
index 0f76ff2953..3553d5b79f 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.get.desc.xml
@@ -1,22 +1,22 @@
-
- Records Management Audit Log
- The following parameters can also be passed:
-
-
size: Maximum number of log entries to return
-
user: Only return log entries by the specified user
-
event: Only return log entries matching this event
-
from: Only return log entries after the specified date, date should be in yyyy-MM-dd format
-
to: Only return log entries before the specified date, date should be in yyyy-MM-dd format
-
export: Set this to 'true' to force the browser to display the Save As dialog
-
- ]]>
-
- /api/rma/admin/rmauditlog
- /api/node/{store_type}/{store_id}/{id}/rmauditlog
- argument
- user
- required
- internal
+
+ Records Management Audit Log
+ The following parameters can also be passed:
+
+
size: Maximum number of log entries to return
+
user: Only return log entries by the specified user
+
event: Only return log entries matching this event
+
from: Only return log entries after the specified date, date should be in yyyy-MM-dd format
+
to: Only return log entries before the specified date, date should be in yyyy-MM-dd format
+
export: Set this to 'true' to force the browser to display the Save As dialog
+
+ ]]>
+
+ /api/rma/admin/rmauditlog
+ /api/node/{store_type}/{store_id}/{id}/rmauditlog
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.lib.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.lib.ftl
index 14cdb81c60..b8fd0e9b78 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.lib.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.lib.ftl
@@ -1,38 +1,38 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#macro auditStatusJSON auditstatus>
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- "enabled": ${auditstatus.enabled?string},
- "started": "${auditstatus.started}",
- "stopped": "${auditstatus.stopped}"
- }
-}
-#escape>
-#macro>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#macro auditStatusJSON auditstatus>
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ "enabled": ${auditstatus.enabled?string},
+ "started": "${auditstatus.started}",
+ "stopped": "${auditstatus.stopped}"
+ }
+}
+#escape>
+#macro>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.post.desc.xml
index d0ddd80ac3..0e70b5a335 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.post.desc.xml
@@ -1,23 +1,23 @@
-
- Files a Records Management audit log as a record
-
- A JSON structure is expected as follows:
- {
- "destination" : NodeRef of record folder to file the audit log in
- "size" : Maximum number of log entries to return
- "user" : Only return log entries by the specified user
- "event" : Only return log entries matching this event
- "from" : Only return log entries after the specified date, date should be in yyyy-MM-dd format
- "to" : Only return log entries before the specified date, date should be in yyyy-MM-dd format
- }
- ]]>
-
- /api/rma/admin/rmauditlog
- /api/node/{store_type}/{store_id}/{id}/rmauditlog
- argument
- user
- required
- internal
+
+ Files a Records Management audit log as a record
+
+ A JSON structure is expected as follows:
+ {
+ "destination" : NodeRef of record folder to file the audit log in
+ "size" : Maximum number of log entries to return
+ "user" : Only return log entries by the specified user
+ "event" : Only return log entries matching this event
+ "from" : Only return log entries after the specified date, date should be in yyyy-MM-dd format
+ "to" : Only return log entries before the specified date, date should be in yyyy-MM-dd format
+ }
+ ]]>
+
+ /api/rma/admin/rmauditlog
+ /api/node/{store_type}/{store_id}/{id}/rmauditlog
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.put.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.put.desc.xml
index e13de43b34..de86e27b70 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.put.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.put.desc.xml
@@ -1,16 +1,16 @@
-
- Start or Stop Records Management Audit Log
- The body of the put should be in the form
- {
- "enabled" : true|false
- }
- ]]>
-
- /api/rma/admin/rmauditlog
- argument
- user
- required
- internal
+
+ Start or Stop Records Management Audit Log
+ The body of the put should be in the form
+ {
+ "enabled" : true|false
+ }
+ ]]>
+
+ /api/rma/admin/rmauditlog
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.put.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.put.json.ftl
index 88cf9b85d8..819b192128 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.put.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.put.json.ftl
@@ -1,28 +1,28 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "rmauditlog.lib.ftl" as auditLib/>
-<@auditLib.auditStatusJSON auditstatus=auditstatus/>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "rmauditlog.lib.ftl" as auditLib/>
+<@auditLib.auditStatusJSON auditstatus=auditstatus/>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlogstatus.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlogstatus.get.desc.xml
index 3d32335110..f3d37989ce 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlogstatus.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlogstatus.get.desc.xml
@@ -1,12 +1,12 @@
-
- Records Management Audit Log Status
-
-
- /api/rma/admin/rmauditlog/status
- argument
- user
- required
- internal
+
+ Records Management Audit Log Status
+
+
+ /api/rma/admin/rmauditlog/status
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlogstatus.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlogstatus.get.json.ftl
index 7f0e0baf2f..52d1370641 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlogstatus.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlogstatus.get.json.ftl
@@ -1,32 +1,32 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{
- "data" :
- {
- "enabled" : ${enabled?string}
- }
-}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{
+ "data" :
+ {
+ "enabled" : ${enabled?string}
+ }
+}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmconstraints.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmconstraints.get.desc.xml
index 445dc99bf0..5e2e094870 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmconstraints.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmconstraints.get.desc.xml
@@ -1,14 +1,14 @@
-
- Get the allowed values for the authenticated user for an rm list constraint.
-
- listName is the qualified name of the list with the ":" replaced by "_" eg rmc_smList
- ]]>
-
- /api/rma/rmconstraints/{listName}
- argument
- user
- required
- internal
+
+ Get the allowed values for the authenticated user for an rm list constraint.
+
+ listName is the qualified name of the list with the ":" replaced by "_" eg rmc_smList
+ ]]>
+
+ /api/rma/rmconstraints/{listName}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmconstraints.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmconstraints.get.json.ftl
index b7ebf6383c..17806b8e08 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmconstraints.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmconstraints.get.json.ftl
@@ -1,41 +1,41 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data": {
- "constraintName": "${constraintName}",
- "allowedValuesForCurrentUser" : [
- <#list allowedValuesForCurrentUser as item>
- {
- "label": "${item}",
- "value": "${item}"
- }<#if item_has_next>,#if>
- #list>
- ]
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data": {
+ "constraintName": "${constraintName}",
+ "allowedValuesForCurrentUser" : [
+ <#list allowedValuesForCurrentUser as item>
+ {
+ "label": "${item}",
+ "value": "${item}"
+ }<#if item_has_next>,#if>
+ #list>
+ ]
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.desc.xml
index e96bac280c..cfd7423f82 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.desc.xml
@@ -1,36 +1,36 @@
-
- Apply Records Management Permissions to a node
-
-
- The body of the post json should be of the form:
-
- Existing permissions will be updated by the supplied permission set,
- where 'id' and 'authority' are mandatory values.
- If the optional 'remove' flag is set then the permission will be removed.
- Note that it is only valid to set the following RM related permissions:
- 'Filing', 'ReadRecords' and 'FileRecords'.
- ]]>
-
- /api/node/{store_type}/{store_id}/{id}/rmpermissions
- argument
- user
- required
- internal
+
+ Apply Records Management Permissions to a node
+
+
+ The body of the post json should be of the form:
+
+ Existing permissions will be updated by the supplied permission set,
+ where 'id' and 'authority' are mandatory values.
+ If the optional 'remove' flag is set then the permission will be removed.
+ Note that it is only valid to set the following RM related permissions:
+ 'Filing', 'ReadRecords' and 'FileRecords'.
+ ]]>
+
+ /api/node/{store_type}/{store_id}/{id}/rmpermissions
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.json.ftl
index 05d341e16b..b7ba61347e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.json.ftl
@@ -1,27 +1,27 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.json.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.json.js
index 83e4a80396..d345fb13b8 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.json.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.json.js
@@ -1,83 +1,83 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-/**
- * Entry point for rmpermissions POST data webscript.
- * Applies supplied RM permissions to an RM node.
- *
- * @method main
- */
-function main()
-{
- // Get the node from the URL
- var pathSegments = url.match.split("/");
- var reference = [ url.templateArgs.store_type, url.templateArgs.store_id ].concat(url.templateArgs.id.split("/"));
- var node = search.findNode(pathSegments[2], reference);
-
- // 404 if the node is not found
- if (node == null)
- {
- status.setCode(status.STATUS_NOT_FOUND, "The node could not be found");
- return;
- }
-
- if (json.has("permissions") == false)
- {
- status.setCode(status.STATUS_BAD_REQUEST, "Permissions value missing from request.");
- }
-
- if (json.has("isInherited"))
- {
- node.setInheritsPermissions(json.getBoolean("isInherited"));
- }
-
- var permissions = json.getJSONArray("permissions");
- for (var i=0; i.
+ * #L%
+ */
+/**
+ * Entry point for rmpermissions POST data webscript.
+ * Applies supplied RM permissions to an RM node.
+ *
+ * @method main
+ */
+function main()
+{
+ // Get the node from the URL
+ var pathSegments = url.match.split("/");
+ var reference = [ url.templateArgs.store_type, url.templateArgs.store_id ].concat(url.templateArgs.id.split("/"));
+ var node = search.findNode(pathSegments[2], reference);
+
+ // 404 if the node is not found
+ if (node == null)
+ {
+ status.setCode(status.STATUS_NOT_FOUND, "The node could not be found");
+ return;
+ }
+
+ if (json.has("permissions") == false)
+ {
+ status.setCode(status.STATUS_BAD_REQUEST, "Permissions value missing from request.");
+ }
+
+ if (json.has("isInherited"))
+ {
+ node.setInheritsPermissions(json.getBoolean("isInherited"));
+ }
+
+ var permissions = json.getJSONArray("permissions");
+ for (var i=0; i
- Records Management Transfer
- Streams an Alfresco Content Pacakge (ACP) file containing the contents of a transfer
- /api/node/{store_type}/{store_id}/{id}/transfers/{transfer_id}
- argument
- user
- required
- deprecated
+
+ Records Management Transfer
+ Streams an Alfresco Content Pacakge (ACP) file containing the contents of a transfer
+ /api/node/{store_type}/{store_id}/{id}/transfers/{transfer_id}
+ argument
+ user
+ required
+ deprecated
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/transferreport.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/transferreport.get.desc.xml
index 8a82f9637b..a450507a86 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/transferreport.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/transferreport.get.desc.xml
@@ -1,9 +1,9 @@
-
- Records Management Transfer Report
- Returns a transfer report to the caller in JSON format
- /api/node/{store_type}/{store_id}/{id}/transfers/{transfer_id}/report
- argument
- user
- required
- deprecated
+
+ Records Management Transfer Report
+ Returns a transfer report to the caller in JSON format
+ /api/node/{store_type}/{store_id}/{id}/transfers/{transfer_id}/report
+ argument
+ user
+ required
+ deprecated
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/transferreport.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/transferreport.post.desc.xml
index 882842220a..26a514a0aa 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/transferreport.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/transferreport.post.desc.xml
@@ -1,16 +1,16 @@
-
- Files a Records Management Transfer Report
- A JSON structure is expected as follows:
- {
- "destination" : NodeRef of record folder to file the transfer report in
- }
- ]]>
-
- /api/node/{store_type}/{store_id}/{id}/transfers/{transfer_id}/report
- argument
- user
- required
- deprecated
+
+ Files a Records Management Transfer Report
+ A JSON structure is expected as follows:
+ {
+ "destination" : NodeRef of record folder to file the transfer report in
+ }
+ ]]>
+
+ /api/node/{store_type}/{store_id}/{id}/transfers/{transfer_id}/report
+ argument
+ user
+ required
+ deprecated
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/userrightsreport.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/userrightsreport.get.desc.xml
index d0151a4915..5026a37097 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/userrightsreport.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/userrightsreport.get.desc.xml
@@ -1,9 +1,9 @@
-
- Records Management User Rights Report
- Returns a user rights report showing users, roles and groups to the caller in JSON format
- /api/rma/admin/userrightsreport
- argument
- user
- required
- internal
+
+ Records Management User Rights Report
+ Returns a user rights report showing users, roles and groups to the caller in JSON format
+ /api/rma/admin/userrightsreport
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/userrightsreport.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/userrightsreport.get.json.ftl
index af8467f50e..5925ebed3d 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/userrightsreport.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/userrightsreport.get.json.ftl
@@ -1,72 +1,72 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- "users":
- {
- <#list report.users?keys as user>
- "${user}":
- {
- "userName": "${report.users[user].userName!""}",
- "firstName": "${report.users[user].firstName!""}",
- "lastName": "${report.users[user].lastName!""}",
- "roles": [<#list report.users[user].roles as role>"${role}"<#if role_has_next>,#if>#list>],
- "groups": [<#list report.users[user].groups as group>"${group}"<#if group_has_next>,#if>#list>]
- }
- <#if user_has_next>,#if>
- #list>
- },
- "roles":
- {
- <#list report.roles?keys as role>
- "${role}":
- {
- "name": "${report.roles[role].name!""}",
- "label": "${report.roles[role].displayLabel!""}",
- "users": [<#list report.roles[role].users as user>"${user}"<#if user_has_next>,#if>#list>],
- "capabilities": [<#list report.roles[role].capabilities as capability>"${capability}"<#if capability_has_next>,#if>#list>]
- }
- <#if role_has_next>,#if>
- #list>
- },
- "groups":
- {
- <#list report.groups?keys as group>
- "${group}":
- {
- "name": "${report.groups[group].name!""}",
- "label": "${report.groups[group].displayLabel!""}",
- "users": [<#list report.groups[group].users as user>"${user}"<#if user_has_next>,#if>#list>]
- }
- <#if group_has_next>,#if>
- #list>
- }
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ "users":
+ {
+ <#list report.users?keys as user>
+ "${user}":
+ {
+ "userName": "${report.users[user].userName!""}",
+ "firstName": "${report.users[user].firstName!""}",
+ "lastName": "${report.users[user].lastName!""}",
+ "roles": [<#list report.users[user].roles as role>"${role}"<#if role_has_next>,#if>#list>],
+ "groups": [<#list report.users[user].groups as group>"${group}"<#if group_has_next>,#if>#list>]
+ }
+ <#if user_has_next>,#if>
+ #list>
+ },
+ "roles":
+ {
+ <#list report.roles?keys as role>
+ "${role}":
+ {
+ "name": "${report.roles[role].name!""}",
+ "label": "${report.roles[role].displayLabel!""}",
+ "users": [<#list report.roles[role].users as user>"${user}"<#if user_has_next>,#if>#list>],
+ "capabilities": [<#list report.roles[role].capabilities as capability>"${capability}"<#if capability_has_next>,#if>#list>]
+ }
+ <#if role_has_next>,#if>
+ #list>
+ },
+ "groups":
+ {
+ <#list report.groups?keys as group>
+ "${group}":
+ {
+ "name": "${report.groups[group].name!""}",
+ "label": "${report.groups[group].displayLabel!""}",
+ "users": [<#list report.groups[group].users as user>"${user}"<#if user_has_next>,#if>#list>]
+ }
+ <#if group_has_next>,#if>
+ #list>
+ }
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.desc.xml
index 499a98d38b..8b8441f74d 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.desc.xml
@@ -1,12 +1,12 @@
-
- doclist-v2
- Document List v2 Component - records management doclist data webscript
- /slingshot/doclib2/rm/doclist/{type}/site/{site}/{container}/{path}
- /slingshot/doclib2/rm/doclist/{type}/site/{site}/{container}
- /slingshot/doclib2/rm/doclist/{type}/node/{store_type}/{store_id}/{id}/{path}
- /slingshot/doclib2/rm/doclist/{type}/node/{store_type}/{store_id}/{id}
- argument
- user
- required
- internal
+
+ doclist-v2
+ Document List v2 Component - records management doclist data webscript
+ /slingshot/doclib2/rm/doclist/{type}/site/{site}/{container}/{path}
+ /slingshot/doclib2/rm/doclist/{type}/site/{site}/{container}
+ /slingshot/doclib2/rm/doclist/{type}/node/{store_type}/{store_id}/{id}/{path}
+ /slingshot/doclib2/rm/doclist/{type}/node/{store_type}/{store_id}/{id}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.js
index caa95bf320..4c9bb08a4a 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.js
@@ -1,38 +1,38 @@
-
-
-
-
-
-
-
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-/**
- * Document List Component: doclist
- */
-model.doclist = rm_doclist_main();
+
+
+
+
+
+
+
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+/**
+ * Document List Component: doclist
+ */
+model.doclist = rm_doclist_main();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.json.ftl
index eed4256465..1ce01f8773 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.json.ftl
@@ -1,27 +1,27 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#include "doclist.get.json.ftl">
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#include "doclist.get.json.ftl">
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.lib.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.lib.js
index bfee9735a1..a6ef5dee4b 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.lib.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.lib.js
@@ -1,374 +1,374 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-const REQUEST_MAX = 1000;
-
-/**
- * Method that performs the actual loading of the nodes.
- *
- * Note!
- * Will optimize performance by using ScriptNode.childFileFolders for directory listings
- * In other words when the "path" filter is used.
- *
- * @method doclist_getAllNodes
- * @param parsedArgs {Object}
- * @param filterParams {Object}
- * @param query {String}
- * @param totalItemCount {int}
- * @return {object} Returns the node and corresponding pagination metadata
- * {
- * allNodes: {Array}
- * totalRecords: {int}
- * requestTotalCountMax: {int}
- * paged: {boolean}
- * query: {String}
- * }
- */
-function doclist_getAllNodes(parsedArgs, filterParams, query, totalItemCount)
-{
- var filter = args.filter,
- totalRecords = 0,
- requestTotalCountMax = 0,
- paged = false,
- allNodes = [];
- if ((filter || "path") == "path" ||
- query == "" &&
- ((filter || "unfiledRecords") == "unfiledRecords" ||
- (filter || "holds") == "holds" ||
- (filter || "transfers") == "transfers"))
- {
- // TODO also add DB filter by "node" (in addition to "path")
- var parentNode = parsedArgs.pathNode;
- if (parentNode !== null)
- {
- var skip = -1,
- max = -1;
-
- if (args.size != null)
- {
- max = args.size;
-
- if (args.pos > 0)
- {
- skip = (args.pos - 1) * max;
- }
- }
-
- var sortField = (args.sortField == null ? "cm:name" : args.sortField),
- sortAsc = (((args.sortAsc == null) || (args.sortAsc == "true")) ? true : false);
-
- // Get paged set
- requestTotalCountMax = skip + REQUEST_MAX;
- var pagedResult = parentNode.childFileFolders(
- true, true, filterParams.ignoreTypes.concat(filterParams.ignoreAspects),
- skip, max, requestTotalCountMax, sortField, sortAsc, "");
-
- allNodes = pagedResult.page;
- totalRecords = pagedResult.totalResultCountUpper;
- paged = true;
- }
- }
- else
- {
- // Query the nodes - passing in sort and result limit parameters
- if (query !== "")
- {
- allNodes = search.query(
- {
- query: query,
- language: filterParams.language,
- page:
- {
- maxItems: totalItemCount
- },
- sort: filterParams.sort,
- templates: filterParams.templates,
- namespace: (filterParams.namespace ? filterParams.namespace : null),
- onerror: "no-results"
- });
-
- totalRecords = allNodes.length;
- }
- }
- return {
- allNodes: allNodes,
- totalRecords: totalRecords,
- requestTotalCountMax: requestTotalCountMax,
- paged: paged,
- query: query
- };
-}
-
-/**
- * Main entry point: Create collection of documents and folders in the given space
- *
- * @method rm_doclist_main
- */
-function rm_doclist_main()
-{
- // Use helper function to get the arguments
- var parsedArgs = ParseArgs.getParsedArgs();
- if (parsedArgs === null)
- {
- return;
- }
-
- var filter = args.filter,
- items = [];
-
- // Try to find a filter query based on the passed-in arguments
- var allNodes = [],
- totalRecords = 0,
- requestTotalCountMax = 0,
- paged = false,
- favourites = Common.getFavourites(),
- filterParams = Filters.getFilterParams(filter, parsedArgs,
- {
- favourites: favourites
- }),
- query = filterParams.query,
- allSites = (parsedArgs.nodeRef == "alfresco://sites/home");
-
- if (logger.isLoggingEnabled())
- logger.log("rm-doclist.lib.js - NodeRef: " + parsedArgs.nodeRef + " Query: " + query);
-
- var totalItemCount = filterParams.limitResults ? parseInt(filterParams.limitResults, 10) : -1;
- // For all sites documentLibrary query we pull in all available results and post filter
- if (totalItemCount === 0) totalItemCount = -1;
- else if (allSites) totalItemCount = (totalItemCount > 0 ? totalItemCount * 10 : 500);
-
-
- var allNodesResult = doclist_getAllNodes(parsedArgs, filterParams, query, totalItemCount);
- allNodes = allNodesResult.allNodes;
- totalRecords = allNodesResult.totalRecords;
- requestTotalCountMax = allNodesResult.requestTotalCountMax;
- paged = allNodesResult.paged;
- query = allNodesResult.query;
-
-
- if (logger.isLoggingEnabled())
- logger.log("rm-doclist.lib.js - query results: " + allNodes.length);
- // Generate the qname path match regex required for all sites 'documentLibrary' results match
- var pathRegex;
- if (allSites)
- {
- // escape the forward slash characters in the qname path
- // TODO: replace with java.lang.String regex match for performance
- var pathMatch = new String(parsedArgs.rootNode.qnamePath).replace(/\//g, '\\/') + "\\/.*\\/cm:documentLibrary\\/.*";
- pathRegex = new RegExp(pathMatch, "gi");
- if (logger.isLoggingEnabled())
- logger.log("rm-doclist.lib.js - will match results using regex: " + pathMatch);
- }
-
- // Ensure folders and folderlinks appear at the top of the list
- var folderNodes = [],
- documentNodes = [];
-
- for each (node in allNodes)
- {
- if (totalItemCount !== 0)
- {
- try
- {
- if (!allSites || node.qnamePath.match(pathRegex))
- {
- totalItemCount--;
- if (node.isContainer || node.isLinkToContainer)
- {
- folderNodes.push(node);
- }
- else
- {
- documentNodes.push(node);
- }
- }
- }
- catch (e)
- {
- // Possibly an old indexed node - ignore it
- }
- } else break;
- }
-
- // Node type counts
- var folderNodesCount = folderNodes.length,
- documentNodesCount = documentNodes.length,
- nodes;
-
- if (parsedArgs.type === "documents")
- {
- nodes = documentNodes;
- totalRecords -= folderNodesCount;
- }
- else
- {
- // TODO: Sorting with folders at end -- swap order of concat()
- nodes = folderNodes.concat(documentNodes);
- }
-
- if (logger.isLoggingEnabled())
- logger.log("rm-doclist.lib.js - totalRecords: " + totalRecords);
-
- // Pagination
- var pageSize = args.size || nodes.length,
- pagePos = args.pos || "1",
- startIndex = (pagePos - 1) * pageSize;
-
- if (!paged)
- {
- // Trim the nodes array down to the page size
- nodes = nodes.slice(startIndex, pagePos * pageSize);
- }
-
- // Common or variable parent container?
- var parent = null;
-
- if (!filterParams.variablePath)
- {
- var node = parsedArgs.pathNode;
- // Display the toolbar actions for the child containers within unfiled records container and holds correctly
- if (filterParams.filter === "containerFilter" && args.filterData !== null)
- {
- node = search.findNode(args.filterData);
- }
- // Parent node permissions (and Site role if applicable)
- parent = Evaluator.run(node, true);
- }
-
- var thumbnail = null,
- locationNode,
- item;
-
- // Loop through and evaluate each node in this result set
- for each (node in nodes)
- {
- // we have to check if we have read permission on the node parent as an error will be thrown if we try to
- // get the evaluated properties for a linked record whose parent we do not have read permissions for
- var parentReadable = (node.parent != null && node.parent.isContainer && node.parent.hasPermission("ReadRecords"));
- if (!parentReadable) continue;
-
- // Get evaluated properties.
- item = Evaluator.run(node);
- if (item !== null)
- {
- item.isFavourite = (favourites[item.node.nodeRef] === true);
- item.likes = Common.getLikes(node);
-
- // Does this collection of nodes have potentially differering paths?
- if (filterParams.variablePath || item.isLink || filterParams.filter === "containerFilter")
- {
- locationNode = item.isLink ? item.linkedNode : item.node;
- // Ensure we have Read permissions on the destination on the link object
- if (!locationNode.hasPermission("ReadRecords")) continue;
- location = Common.getLocation(locationNode, parsedArgs.libraryRoot);
- // Parent node
- if (parentReadable)
- {
- item.parent = Evaluator.run(node.parent, true);
- }
- }
- else
- {
- location =
- {
- site: parsedArgs.location.site,
- siteTitle: parsedArgs.location.siteTitle,
- sitePreset: parsedArgs.location.sitePreset,
- container: parsedArgs.location.container,
- containerType: parsedArgs.location.containerType,
- path: parsedArgs.location.path,
- file: node.name
- };
- }
-
- // Resolved location
- item.location = location;
-
- items.push(item);
- }
- else
- {
- --totalRecords;
- }
- }
-
- // Array Remove - By John Resig (MIT Licensed)
- var fnArrayRemove = function fnArrayRemove(array, from, to)
- {
- var rest = array.slice((to || from) + 1 || array.length);
- array.length = from < 0 ? array.length + from : from;
- return array.push.apply(array, rest);
- };
-
- /**
- * De-duplicate orignals for any existing working copies.
- * This can't be done in evaluator.lib.js as it has no knowledge of the current filter or UI operation.
- * Note: This may result in pages containing less than the configured amount of items (50 by default).
- */
- for each (item in items)
- {
- if (item.workingCopy && item.workingCopy.isWorkingCopy)
- {
- var workingCopySource = String(item.workingCopy.sourceNodeRef);
- for (var i = 0, ii = items.length; i < ii; i++)
- {
- if (String(items[i].node.nodeRef) == workingCopySource)
- {
- fnArrayRemove(items, i);
- --totalRecords;
- break;
- }
- }
- }
- }
-
- var paging =
- {
- totalRecords: totalRecords,
- startIndex: startIndex
- };
-
- if (paged && (totalRecords == requestTotalCountMax))
- {
- paging.totalRecordsUpper = requestTotalCountMax;
- }
-
- return (
- {
- luceneQuery: query,
- paging: paging,
- container: parsedArgs.rootNode,
- parent: parent,
- onlineEditing: utils.moduleInstalled("org.alfresco.module.vti"),
- itemCount:
- {
- folders: folderNodesCount,
- documents: documentNodesCount
- },
- items: items,
- customJSON: slingshotDocLib.getJSON()
- });
-}
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+const REQUEST_MAX = 1000;
+
+/**
+ * Method that performs the actual loading of the nodes.
+ *
+ * Note!
+ * Will optimize performance by using ScriptNode.childFileFolders for directory listings
+ * In other words when the "path" filter is used.
+ *
+ * @method doclist_getAllNodes
+ * @param parsedArgs {Object}
+ * @param filterParams {Object}
+ * @param query {String}
+ * @param totalItemCount {int}
+ * @return {object} Returns the node and corresponding pagination metadata
+ * {
+ * allNodes: {Array}
+ * totalRecords: {int}
+ * requestTotalCountMax: {int}
+ * paged: {boolean}
+ * query: {String}
+ * }
+ */
+function doclist_getAllNodes(parsedArgs, filterParams, query, totalItemCount)
+{
+ var filter = args.filter,
+ totalRecords = 0,
+ requestTotalCountMax = 0,
+ paged = false,
+ allNodes = [];
+ if ((filter || "path") == "path" ||
+ query == "" &&
+ ((filter || "unfiledRecords") == "unfiledRecords" ||
+ (filter || "holds") == "holds" ||
+ (filter || "transfers") == "transfers"))
+ {
+ // TODO also add DB filter by "node" (in addition to "path")
+ var parentNode = parsedArgs.pathNode;
+ if (parentNode !== null)
+ {
+ var skip = -1,
+ max = -1;
+
+ if (args.size != null)
+ {
+ max = args.size;
+
+ if (args.pos > 0)
+ {
+ skip = (args.pos - 1) * max;
+ }
+ }
+
+ var sortField = (args.sortField == null ? "cm:name" : args.sortField),
+ sortAsc = (((args.sortAsc == null) || (args.sortAsc == "true")) ? true : false);
+
+ // Get paged set
+ requestTotalCountMax = skip + REQUEST_MAX;
+ var pagedResult = parentNode.childFileFolders(
+ true, true, filterParams.ignoreTypes.concat(filterParams.ignoreAspects),
+ skip, max, requestTotalCountMax, sortField, sortAsc, "");
+
+ allNodes = pagedResult.page;
+ totalRecords = pagedResult.totalResultCountUpper;
+ paged = true;
+ }
+ }
+ else
+ {
+ // Query the nodes - passing in sort and result limit parameters
+ if (query !== "")
+ {
+ allNodes = search.query(
+ {
+ query: query,
+ language: filterParams.language,
+ page:
+ {
+ maxItems: totalItemCount
+ },
+ sort: filterParams.sort,
+ templates: filterParams.templates,
+ namespace: (filterParams.namespace ? filterParams.namespace : null),
+ onerror: "no-results"
+ });
+
+ totalRecords = allNodes.length;
+ }
+ }
+ return {
+ allNodes: allNodes,
+ totalRecords: totalRecords,
+ requestTotalCountMax: requestTotalCountMax,
+ paged: paged,
+ query: query
+ };
+}
+
+/**
+ * Main entry point: Create collection of documents and folders in the given space
+ *
+ * @method rm_doclist_main
+ */
+function rm_doclist_main()
+{
+ // Use helper function to get the arguments
+ var parsedArgs = ParseArgs.getParsedArgs();
+ if (parsedArgs === null)
+ {
+ return;
+ }
+
+ var filter = args.filter,
+ items = [];
+
+ // Try to find a filter query based on the passed-in arguments
+ var allNodes = [],
+ totalRecords = 0,
+ requestTotalCountMax = 0,
+ paged = false,
+ favourites = Common.getFavourites(),
+ filterParams = Filters.getFilterParams(filter, parsedArgs,
+ {
+ favourites: favourites
+ }),
+ query = filterParams.query,
+ allSites = (parsedArgs.nodeRef == "alfresco://sites/home");
+
+ if (logger.isLoggingEnabled())
+ logger.log("rm-doclist.lib.js - NodeRef: " + parsedArgs.nodeRef + " Query: " + query);
+
+ var totalItemCount = filterParams.limitResults ? parseInt(filterParams.limitResults, 10) : -1;
+ // For all sites documentLibrary query we pull in all available results and post filter
+ if (totalItemCount === 0) totalItemCount = -1;
+ else if (allSites) totalItemCount = (totalItemCount > 0 ? totalItemCount * 10 : 500);
+
+
+ var allNodesResult = doclist_getAllNodes(parsedArgs, filterParams, query, totalItemCount);
+ allNodes = allNodesResult.allNodes;
+ totalRecords = allNodesResult.totalRecords;
+ requestTotalCountMax = allNodesResult.requestTotalCountMax;
+ paged = allNodesResult.paged;
+ query = allNodesResult.query;
+
+
+ if (logger.isLoggingEnabled())
+ logger.log("rm-doclist.lib.js - query results: " + allNodes.length);
+ // Generate the qname path match regex required for all sites 'documentLibrary' results match
+ var pathRegex;
+ if (allSites)
+ {
+ // escape the forward slash characters in the qname path
+ // TODO: replace with java.lang.String regex match for performance
+ var pathMatch = new String(parsedArgs.rootNode.qnamePath).replace(/\//g, '\\/') + "\\/.*\\/cm:documentLibrary\\/.*";
+ pathRegex = new RegExp(pathMatch, "gi");
+ if (logger.isLoggingEnabled())
+ logger.log("rm-doclist.lib.js - will match results using regex: " + pathMatch);
+ }
+
+ // Ensure folders and folderlinks appear at the top of the list
+ var folderNodes = [],
+ documentNodes = [];
+
+ for each (node in allNodes)
+ {
+ if (totalItemCount !== 0)
+ {
+ try
+ {
+ if (!allSites || node.qnamePath.match(pathRegex))
+ {
+ totalItemCount--;
+ if (node.isContainer || node.isLinkToContainer)
+ {
+ folderNodes.push(node);
+ }
+ else
+ {
+ documentNodes.push(node);
+ }
+ }
+ }
+ catch (e)
+ {
+ // Possibly an old indexed node - ignore it
+ }
+ } else break;
+ }
+
+ // Node type counts
+ var folderNodesCount = folderNodes.length,
+ documentNodesCount = documentNodes.length,
+ nodes;
+
+ if (parsedArgs.type === "documents")
+ {
+ nodes = documentNodes;
+ totalRecords -= folderNodesCount;
+ }
+ else
+ {
+ // TODO: Sorting with folders at end -- swap order of concat()
+ nodes = folderNodes.concat(documentNodes);
+ }
+
+ if (logger.isLoggingEnabled())
+ logger.log("rm-doclist.lib.js - totalRecords: " + totalRecords);
+
+ // Pagination
+ var pageSize = args.size || nodes.length,
+ pagePos = args.pos || "1",
+ startIndex = (pagePos - 1) * pageSize;
+
+ if (!paged)
+ {
+ // Trim the nodes array down to the page size
+ nodes = nodes.slice(startIndex, pagePos * pageSize);
+ }
+
+ // Common or variable parent container?
+ var parent = null;
+
+ if (!filterParams.variablePath)
+ {
+ var node = parsedArgs.pathNode;
+ // Display the toolbar actions for the child containers within unfiled records container and holds correctly
+ if (filterParams.filter === "containerFilter" && args.filterData !== null)
+ {
+ node = search.findNode(args.filterData);
+ }
+ // Parent node permissions (and Site role if applicable)
+ parent = Evaluator.run(node, true);
+ }
+
+ var thumbnail = null,
+ locationNode,
+ item;
+
+ // Loop through and evaluate each node in this result set
+ for each (node in nodes)
+ {
+ // we have to check if we have read permission on the node parent as an error will be thrown if we try to
+ // get the evaluated properties for a linked record whose parent we do not have read permissions for
+ var parentReadable = (node.parent != null && node.parent.isContainer && node.parent.hasPermission("ReadRecords"));
+ if (!parentReadable) continue;
+
+ // Get evaluated properties.
+ item = Evaluator.run(node);
+ if (item !== null)
+ {
+ item.isFavourite = (favourites[item.node.nodeRef] === true);
+ item.likes = Common.getLikes(node);
+
+ // Does this collection of nodes have potentially differering paths?
+ if (filterParams.variablePath || item.isLink || filterParams.filter === "containerFilter")
+ {
+ locationNode = item.isLink ? item.linkedNode : item.node;
+ // Ensure we have Read permissions on the destination on the link object
+ if (!locationNode.hasPermission("ReadRecords")) continue;
+ location = Common.getLocation(locationNode, parsedArgs.libraryRoot);
+ // Parent node
+ if (parentReadable)
+ {
+ item.parent = Evaluator.run(node.parent, true);
+ }
+ }
+ else
+ {
+ location =
+ {
+ site: parsedArgs.location.site,
+ siteTitle: parsedArgs.location.siteTitle,
+ sitePreset: parsedArgs.location.sitePreset,
+ container: parsedArgs.location.container,
+ containerType: parsedArgs.location.containerType,
+ path: parsedArgs.location.path,
+ file: node.name
+ };
+ }
+
+ // Resolved location
+ item.location = location;
+
+ items.push(item);
+ }
+ else
+ {
+ --totalRecords;
+ }
+ }
+
+ // Array Remove - By John Resig (MIT Licensed)
+ var fnArrayRemove = function fnArrayRemove(array, from, to)
+ {
+ var rest = array.slice((to || from) + 1 || array.length);
+ array.length = from < 0 ? array.length + from : from;
+ return array.push.apply(array, rest);
+ };
+
+ /**
+ * De-duplicate orignals for any existing working copies.
+ * This can't be done in evaluator.lib.js as it has no knowledge of the current filter or UI operation.
+ * Note: This may result in pages containing less than the configured amount of items (50 by default).
+ */
+ for each (item in items)
+ {
+ if (item.workingCopy && item.workingCopy.isWorkingCopy)
+ {
+ var workingCopySource = String(item.workingCopy.sourceNodeRef);
+ for (var i = 0, ii = items.length; i < ii; i++)
+ {
+ if (String(items[i].node.nodeRef) == workingCopySource)
+ {
+ fnArrayRemove(items, i);
+ --totalRecords;
+ break;
+ }
+ }
+ }
+ }
+
+ var paging =
+ {
+ totalRecords: totalRecords,
+ startIndex: startIndex
+ };
+
+ if (paged && (totalRecords == requestTotalCountMax))
+ {
+ paging.totalRecordsUpper = requestTotalCountMax;
+ }
+
+ return (
+ {
+ luceneQuery: query,
+ paging: paging,
+ container: parsedArgs.rootNode,
+ parent: parent,
+ onlineEditing: utils.moduleInstalled("org.alfresco.module.vti"),
+ itemCount:
+ {
+ folders: folderNodesCount,
+ documents: documentNodesCount
+ },
+ items: items,
+ customJSON: slingshotDocLib.getJSON()
+ });
+}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-filters.lib.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-filters.lib.js
index c855ce4517..87ecc1b9e0 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-filters.lib.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-filters.lib.js
@@ -1,222 +1,222 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-/**
-* Query templates for custom search
-*/
-Filters.QUERY_TEMPLATES =
-[
- { field: "keywords", template: "%(cm:name cm:title cm:description TEXT)" },
- { field: "name", template: "%(cm:name)" },
- { field: "title", template: "%(cm:title)" },
- { field: "description", template: "%(cm:description)" },
- { field: "creator", template: "%(cm:creator)" },
- { field: "created", template: "%(cm:created)" },
- { field: "modifier", template: "%(cm:modifier)" },
- { field: "modified", template: "%(cm:modified)" },
- { field: "author", template: "%(cm:author)" },
- { field: "markings", template: "%(rmc:supplementalMarkingList)" },
- { field: "dispositionEvents", template: "%(rma:recordSearchDispositionEvents)" },
- { field: "dispositionActionName", template: "%(rma:recordSearchDispositionActionName)" },
- { field: "dispositionActionAsOf", template: "%(rma:recordSearchDispositionActionAsOf)" },
- { field: "dispositionEventsEligible", template: "%(rma:recordSearchDispositionEventsEligible)" },
- { field: "dispositionPeriod", template: "%(rma:recordSearchDispositionPeriod)" },
- { field: "hasDispositionSchedule", template: "%(rma:recordSearchHasDispositionSchedule)" },
- { field: "dispositionInstructions", template: "%(rma:recordSearchDispositionInstructions)" },
- { field: "dispositionAuthority", template: "%(rma:recordSearchDispositionAuthority)" },
- { field: "vitalRecordReviewPeriod", template: "%(rma:recordSearchVitalRecordReviewPeriod)" }
-];
-
-Filters.IGNORED_TYPES =
-[
- /* Defaults */
- "cm:systemfolder",
- "fm:forums",
- "fm:forum",
- "fm:topic",
- "fm:post",
- /* Records Management */
- "rma:dispositionSchedule",
- "rma:dispositionActionDefinition",
- "rma:dispositionAction",
- "rma:holdContainer",
- "rma:transferContainer",
- "rma:unfiledRecordContainer"
-];
-
-/**
- * Create filter parameters based on input parameters
- *
- * @method getFilterParams
- * @param filter {string} Required filter
- * @param parsedArgs {object} Parsed arguments object literal
- * @param optional {object} Optional arguments depending on filter type
- * @return {object} Object literal containing parameters to be used in Lucene search
- */
-Filters.getFilterParams = function RecordsManagementFilter_getFilterParams(filter, parsedArgs, optional)
-{
- var filterParams =
- {
- query: "+PATH:\"" + parsedArgs.pathNode.qnamePath + "/*\"",
- limitResults: null,
- sort: [
- {
- column: "@cm:name",
- ascending: true
- }],
- language: "lucene",
- templates: null,
- variablePath: true,
- ignoreTypes: Filters.IGNORED_TYPES
- };
-
- optional = optional || {};
-
- // Sorting parameters specified?
- var sortAscending = args.sortAsc,
- sortField = args.sortField;
-
- if (sortAscending == "false")
- {
- filterParams.sort[0].ascending = false;
- }
- if (sortField !== null)
- {
- filterParams.sort[0].column = (sortField.indexOf(":") != -1 ? "@" : "") + sortField;
- }
-
- // Max returned results specified?
- var argMax = args.max;
- if ((argMax !== null) && !isNaN(argMax))
- {
- filterParams.limitResults = argMax;
- }
-
- // Create query based on passed-in arguments
- var filterData = args.filterData,
- filterQuery = "";
-
- // Common types and aspects to filter from the UI
- var filterQueryDefaults = ' -TYPE:"' + Filters.IGNORED_TYPES.join('" -TYPE:"') + '"';
-
- // Create query based on passed-in arguments
- switch (String(filter))
- {
- case "all":
- filterQuery = "+PATH:\"" + parsedArgs.rootNode.qnamePath + "//*\"";
- filterQuery += " -TYPE:\"{http://www.alfresco.org/model/content/1.0}folder\"";
- filterParams.query = filterQuery + filterQueryDefaults;
- break;
-
- case "node":
- parsedArgs.pathNode = parsedArgs.rootNode.parent;
- filterParams.variablePath = false;
- filterParams.query = "+ID:\"" + parsedArgs.rootNode.nodeRef + "\"";
- break;
-
- case "savedsearch":
- var searchNode = parsedArgs.location.siteNode.getContainer("Saved Searches");
- if (searchNode != null)
- {
- var ssNode = searchNode.childByNamePath(String(filterData));
-
- if (ssNode != null)
- {
- var ssJson = eval('try{(' + ssNode.content + ')}catch(e){}');
- filterQuery = ssJson.query;
- // Wrap the query so that only valid items within the filePlan are returned
- filterParams.query = 'PATH:"' + parsedArgs.rootNode.qnamePath + '//*" AND (' + filterQuery + ')';
- filterParams.templates = Filters.QUERY_TEMPLATES;
- filterParams.language = "fts-alfresco";
- filterParams.namespace = "http://www.alfresco.org/model/recordsmanagement/1.0";
- // gather up the sort by fields
- // they are encoded as "property/dir" i.e. "cm:name/asc"
- if (ssJson.sort && ssJson.sort.length !== 0)
- {
- var sortPairs = ssJson.sort.split(",");
- var sort = [];
- for (var i=0, j; i.
+ * #L%
+ */
+/**
+* Query templates for custom search
+*/
+Filters.QUERY_TEMPLATES =
+[
+ { field: "keywords", template: "%(cm:name cm:title cm:description TEXT)" },
+ { field: "name", template: "%(cm:name)" },
+ { field: "title", template: "%(cm:title)" },
+ { field: "description", template: "%(cm:description)" },
+ { field: "creator", template: "%(cm:creator)" },
+ { field: "created", template: "%(cm:created)" },
+ { field: "modifier", template: "%(cm:modifier)" },
+ { field: "modified", template: "%(cm:modified)" },
+ { field: "author", template: "%(cm:author)" },
+ { field: "markings", template: "%(rmc:supplementalMarkingList)" },
+ { field: "dispositionEvents", template: "%(rma:recordSearchDispositionEvents)" },
+ { field: "dispositionActionName", template: "%(rma:recordSearchDispositionActionName)" },
+ { field: "dispositionActionAsOf", template: "%(rma:recordSearchDispositionActionAsOf)" },
+ { field: "dispositionEventsEligible", template: "%(rma:recordSearchDispositionEventsEligible)" },
+ { field: "dispositionPeriod", template: "%(rma:recordSearchDispositionPeriod)" },
+ { field: "hasDispositionSchedule", template: "%(rma:recordSearchHasDispositionSchedule)" },
+ { field: "dispositionInstructions", template: "%(rma:recordSearchDispositionInstructions)" },
+ { field: "dispositionAuthority", template: "%(rma:recordSearchDispositionAuthority)" },
+ { field: "vitalRecordReviewPeriod", template: "%(rma:recordSearchVitalRecordReviewPeriod)" }
+];
+
+Filters.IGNORED_TYPES =
+[
+ /* Defaults */
+ "cm:systemfolder",
+ "fm:forums",
+ "fm:forum",
+ "fm:topic",
+ "fm:post",
+ /* Records Management */
+ "rma:dispositionSchedule",
+ "rma:dispositionActionDefinition",
+ "rma:dispositionAction",
+ "rma:holdContainer",
+ "rma:transferContainer",
+ "rma:unfiledRecordContainer"
+];
+
+/**
+ * Create filter parameters based on input parameters
+ *
+ * @method getFilterParams
+ * @param filter {string} Required filter
+ * @param parsedArgs {object} Parsed arguments object literal
+ * @param optional {object} Optional arguments depending on filter type
+ * @return {object} Object literal containing parameters to be used in Lucene search
+ */
+Filters.getFilterParams = function RecordsManagementFilter_getFilterParams(filter, parsedArgs, optional)
+{
+ var filterParams =
+ {
+ query: "+PATH:\"" + parsedArgs.pathNode.qnamePath + "/*\"",
+ limitResults: null,
+ sort: [
+ {
+ column: "@cm:name",
+ ascending: true
+ }],
+ language: "lucene",
+ templates: null,
+ variablePath: true,
+ ignoreTypes: Filters.IGNORED_TYPES
+ };
+
+ optional = optional || {};
+
+ // Sorting parameters specified?
+ var sortAscending = args.sortAsc,
+ sortField = args.sortField;
+
+ if (sortAscending == "false")
+ {
+ filterParams.sort[0].ascending = false;
+ }
+ if (sortField !== null)
+ {
+ filterParams.sort[0].column = (sortField.indexOf(":") != -1 ? "@" : "") + sortField;
+ }
+
+ // Max returned results specified?
+ var argMax = args.max;
+ if ((argMax !== null) && !isNaN(argMax))
+ {
+ filterParams.limitResults = argMax;
+ }
+
+ // Create query based on passed-in arguments
+ var filterData = args.filterData,
+ filterQuery = "";
+
+ // Common types and aspects to filter from the UI
+ var filterQueryDefaults = ' -TYPE:"' + Filters.IGNORED_TYPES.join('" -TYPE:"') + '"';
+
+ // Create query based on passed-in arguments
+ switch (String(filter))
+ {
+ case "all":
+ filterQuery = "+PATH:\"" + parsedArgs.rootNode.qnamePath + "//*\"";
+ filterQuery += " -TYPE:\"{http://www.alfresco.org/model/content/1.0}folder\"";
+ filterParams.query = filterQuery + filterQueryDefaults;
+ break;
+
+ case "node":
+ parsedArgs.pathNode = parsedArgs.rootNode.parent;
+ filterParams.variablePath = false;
+ filterParams.query = "+ID:\"" + parsedArgs.rootNode.nodeRef + "\"";
+ break;
+
+ case "savedsearch":
+ var searchNode = parsedArgs.location.siteNode.getContainer("Saved Searches");
+ if (searchNode != null)
+ {
+ var ssNode = searchNode.childByNamePath(String(filterData));
+
+ if (ssNode != null)
+ {
+ var ssJson = eval('try{(' + ssNode.content + ')}catch(e){}');
+ filterQuery = ssJson.query;
+ // Wrap the query so that only valid items within the filePlan are returned
+ filterParams.query = 'PATH:"' + parsedArgs.rootNode.qnamePath + '//*" AND (' + filterQuery + ')';
+ filterParams.templates = Filters.QUERY_TEMPLATES;
+ filterParams.language = "fts-alfresco";
+ filterParams.namespace = "http://www.alfresco.org/model/recordsmanagement/1.0";
+ // gather up the sort by fields
+ // they are encoded as "property/dir" i.e. "cm:name/asc"
+ if (ssJson.sort && ssJson.sort.length !== 0)
+ {
+ var sortPairs = ssJson.sort.split(",");
+ var sort = [];
+ for (var i=0, j; i
- node-v2
- Document List v2 Component - node data webscript
- /slingshot/doclib2/rm/node/{store_type}/{store_id}/{id}
- argument
- user
- required
- internal
+
+ node-v2
+ Document List v2 Component - node data webscript
+ /slingshot/doclib2/rm/node/{store_type}/{store_id}/{id}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-node.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-node.get.js
index 22e582225e..fe088af14f 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-node.get.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-node.get.js
@@ -1,28 +1,28 @@
-
-
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
+
+
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-node.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-node.get.json.ftl
index 7c6f00f583..70ba586a02 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-node.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-node.get.json.ftl
@@ -1,27 +1,27 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#include "node.get.json.ftl">
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#include "node.get.json.ftl">
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-parse-args.lib.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-parse-args.lib.js
index da741cdae1..e8b87f6d46 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-parse-args.lib.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-parse-args.lib.js
@@ -1,187 +1,187 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-/**
- * Get and parse arguments
- *
- * @method getParsedArgs
- * @return {array|null} Array containing the validated input parameters
- */
-ParseArgs.getParsedArgs = function RecordsManagementFilter_getParsedArgs(containerType)
-{
- var type = url.templateArgs.type,
- libraryRoot = args.libraryRoot,
- rootNode = null,
- pathNode = null,
- nodeRef = null,
- path = "",
- location = null;
-
- // Is this library rooted from a non-site nodeRef?
- if (libraryRoot !== null)
- {
- libraryRoot = ParseArgs.resolveNode(libraryRoot);
- }
-
-
- if (url.templateArgs.store_type !== null)
- {
- /**
- * nodeRef input: store_type, store_id and id
- */
- var storeType = url.templateArgs.store_type,
- storeId = url.templateArgs.store_id,
- id = url.templateArgs.id;
-
- nodeRef = storeType + "://" + storeId + "/" + id;
- rootNode = libraryRoot || ParseArgs.resolveNode(nodeRef);
- if (rootNode == null)
- {
- status.setCode(status.STATUS_NOT_FOUND, "Not a valid nodeRef: '" + nodeRef + "'");
- return null;
- }
-
- // Special case: make sure filter picks up correct mode
- if (type == null && args.filter == null)
- {
- args.filter = "node";
- }
- }
- else
- {
- /**
- * Site and container input
- */
- var siteId = url.templateArgs.site,
- containerId = url.templateArgs.container,
- siteNode = siteService.getSite(siteId);
-
- if (siteNode === null)
- {
- status.setCode(status.STATUS_GONE, "Site not found: '" + siteId + "'");
- return null;
- }
-
- rootNode = siteNode.getContainer(containerId);
- if (rootNode === null)
- {
- rootNode = siteNode.createContainer(containerId, containerType || "cm:folder");
- if (rootNode === null)
- {
- status.setCode(status.STATUS_GONE, "Document Library container '" + containerId + "' not found in '" + siteId + "'. (No permission?)");
- return null;
- }
-
- rootNode.properties["cm:description"] = "Document Library";
-
- /**
- * MOB-593: Add email alias on documentLibrary container creation
- *
- rootNode.addAspect("emailserver:aliasable");
- var emailAlias = siteId;
- if (containerId != "documentLibrary")
- {
- emailAlias += "-" + containerId;
- }
- rootNode.properties["emailserver:alias"] = emailAlias;
- */
- rootNode.save();
- }
- }
-
- if (args.filter == "unfiledRecords")
- {
- var container = rootNode.childrenByXPath("rma:Unfiled_x0020_Records");
- if (container.length > 0)
- {
- pathNode = container[0];
- }
- }
- else if (args.filter == "holds")
- {
- var container = rootNode.childrenByXPath("rma:Holds");
- if (container.length > 0)
- {
- pathNode = container[0];
- }
- }
- else if (args.filter == "transfers")
- {
- var container = rootNode.childrenByXPath("rma:Transfers");
- if (container.length > 0)
- {
- pathNode = container[0];
- }
- }
- else
- {
- // Path input?
- path = url.templateArgs.path || "";
- pathNode = path.length > 0 ? rootNode.childByNamePath(path) : (pathNode || rootNode);
- }
-
- if (pathNode === null)
- {
- status.setCode(status.STATUS_NOT_FOUND, "Path not found: '" + path + "'");
- return null;
- }
-
- // Parent location parameter adjustment
- location = Common.getLocation(pathNode, libraryRoot);
- if (location === null)
- {
- status.setCode(status.STATUS_GONE, "Location is 'null'. (No permission?)");
- return null;
- }
- if (path !== "")
- {
- location.path = ParseArgs.combinePaths(location.path, location.file);
- }
- if (args.filter !== "node" && !pathNode.isContainer)
- {
- location.file = "";
- }
-
- var objRet =
- {
- rootNode: rootNode,
- pathNode: pathNode,
- libraryRoot: libraryRoot,
- location: location,
- path: path,
- nodeRef: nodeRef,
- type: type
- };
-
- // Multiple input files in the JSON body?
- var files = ParseArgs.getMultipleInputValues("nodeRefs");
- if (typeof files != "string")
- {
- objRet.files = files;
- }
-
- return objRet;
-};
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+/**
+ * Get and parse arguments
+ *
+ * @method getParsedArgs
+ * @return {array|null} Array containing the validated input parameters
+ */
+ParseArgs.getParsedArgs = function RecordsManagementFilter_getParsedArgs(containerType)
+{
+ var type = url.templateArgs.type,
+ libraryRoot = args.libraryRoot,
+ rootNode = null,
+ pathNode = null,
+ nodeRef = null,
+ path = "",
+ location = null;
+
+ // Is this library rooted from a non-site nodeRef?
+ if (libraryRoot !== null)
+ {
+ libraryRoot = ParseArgs.resolveNode(libraryRoot);
+ }
+
+
+ if (url.templateArgs.store_type !== null)
+ {
+ /**
+ * nodeRef input: store_type, store_id and id
+ */
+ var storeType = url.templateArgs.store_type,
+ storeId = url.templateArgs.store_id,
+ id = url.templateArgs.id;
+
+ nodeRef = storeType + "://" + storeId + "/" + id;
+ rootNode = libraryRoot || ParseArgs.resolveNode(nodeRef);
+ if (rootNode == null)
+ {
+ status.setCode(status.STATUS_NOT_FOUND, "Not a valid nodeRef: '" + nodeRef + "'");
+ return null;
+ }
+
+ // Special case: make sure filter picks up correct mode
+ if (type == null && args.filter == null)
+ {
+ args.filter = "node";
+ }
+ }
+ else
+ {
+ /**
+ * Site and container input
+ */
+ var siteId = url.templateArgs.site,
+ containerId = url.templateArgs.container,
+ siteNode = siteService.getSite(siteId);
+
+ if (siteNode === null)
+ {
+ status.setCode(status.STATUS_GONE, "Site not found: '" + siteId + "'");
+ return null;
+ }
+
+ rootNode = siteNode.getContainer(containerId);
+ if (rootNode === null)
+ {
+ rootNode = siteNode.createContainer(containerId, containerType || "cm:folder");
+ if (rootNode === null)
+ {
+ status.setCode(status.STATUS_GONE, "Document Library container '" + containerId + "' not found in '" + siteId + "'. (No permission?)");
+ return null;
+ }
+
+ rootNode.properties["cm:description"] = "Document Library";
+
+ /**
+ * MOB-593: Add email alias on documentLibrary container creation
+ *
+ rootNode.addAspect("emailserver:aliasable");
+ var emailAlias = siteId;
+ if (containerId != "documentLibrary")
+ {
+ emailAlias += "-" + containerId;
+ }
+ rootNode.properties["emailserver:alias"] = emailAlias;
+ */
+ rootNode.save();
+ }
+ }
+
+ if (args.filter == "unfiledRecords")
+ {
+ var container = rootNode.childrenByXPath("rma:Unfiled_x0020_Records");
+ if (container.length > 0)
+ {
+ pathNode = container[0];
+ }
+ }
+ else if (args.filter == "holds")
+ {
+ var container = rootNode.childrenByXPath("rma:Holds");
+ if (container.length > 0)
+ {
+ pathNode = container[0];
+ }
+ }
+ else if (args.filter == "transfers")
+ {
+ var container = rootNode.childrenByXPath("rma:Transfers");
+ if (container.length > 0)
+ {
+ pathNode = container[0];
+ }
+ }
+ else
+ {
+ // Path input?
+ path = url.templateArgs.path || "";
+ pathNode = path.length > 0 ? rootNode.childByNamePath(path) : (pathNode || rootNode);
+ }
+
+ if (pathNode === null)
+ {
+ status.setCode(status.STATUS_NOT_FOUND, "Path not found: '" + path + "'");
+ return null;
+ }
+
+ // Parent location parameter adjustment
+ location = Common.getLocation(pathNode, libraryRoot);
+ if (location === null)
+ {
+ status.setCode(status.STATUS_GONE, "Location is 'null'. (No permission?)");
+ return null;
+ }
+ if (path !== "")
+ {
+ location.path = ParseArgs.combinePaths(location.path, location.file);
+ }
+ if (args.filter !== "node" && !pathNode.isContainer)
+ {
+ location.file = "";
+ }
+
+ var objRet =
+ {
+ rootNode: rootNode,
+ pathNode: pathNode,
+ libraryRoot: libraryRoot,
+ location: location,
+ path: path,
+ nodeRef: nodeRef,
+ type: type
+ };
+
+ // Multiple input files in the JSON body?
+ var files = ParseArgs.getMultipleInputValues("nodeRefs");
+ if (typeof files != "string")
+ {
+ objRet.files = files;
+ }
+
+ return objRet;
+};
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.get.desc.xml
index e61684260a..b6004fb1e4 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.get.desc.xml
@@ -1,9 +1,9 @@
-
- Gets Recorded Version Config
- Gets Recorded Version Config Data
- /slingshot/doclib/action/recorded-version-config/node/{store_type}/{store_id}/{id}
- argument
- user
- required
- internal
+
+ Gets Recorded Version Config
+ Gets Recorded Version Config Data
+ /slingshot/doclib/action/recorded-version-config/node/{store_type}/{store_id}/{id}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.get.json.ftl
index 560b531e33..1ddfc475df 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.get.json.ftl
@@ -1,42 +1,42 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data":
- {
- "recordableVersions":
- [
- <#list recordableVersions as recordableVersion>
- {
- "policy": "${recordableVersion.policy}",
- "selected": "${recordableVersion.selected?string("true", "false")}"
- }<#if recordableVersion_has_next>,#if>
- #list>
- ]
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data":
+ {
+ "recordableVersions":
+ [
+ <#list recordableVersions as recordableVersion>
+ {
+ "policy": "${recordableVersion.policy}",
+ "selected": "${recordableVersion.selected?string("true", "false")}"
+ }<#if recordableVersion_has_next>,#if>
+ #list>
+ ]
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.post.desc.xml
index d40c295377..3d9e11e440 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.post.desc.xml
@@ -1,9 +1,9 @@
-
- Sets Recorded Version Config
- Sets Recorded Version Config Data
- /slingshot/doclib/action/recorded-version-config/node/{store_type}/{store_id}/{id}
- argument
- user
- required
- internal
+
+ Sets Recorded Version Config
+ Sets Recorded Version Config Data
+ /slingshot/doclib/action/recorded-version-config/node/{store_type}/{store_id}/{id}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.post.json.ftl
index 05d341e16b..b7ba61347e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.post.json.ftl
@@ -1,27 +1,27 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.desc.xml
index 6d5244aadb..4e7e14fb4e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.desc.xml
@@ -1,13 +1,13 @@
-
- rm-copy-to
- Document List Action - Copy multiple files
- /slingshot/doclib/action/rm-copy-to/site/{site}/{container}/{path}
- /slingshot/doclib/action/rm-copy-to/site/{site}/{container}
- /slingshot/doclib/action/rm-copy-to/node/{store_type}/{store_id}/{id}/{path}
- /slingshot/doclib/action/rm-copy-to/node/{store_type}/{store_id}/{id}
- /slingshot/doclib/action/rm-copy-to/node/{store_type}/{store_id}
- argument
- user
- required
- internal
-
+
+ rm-copy-to
+ Document List Action - Copy multiple files
+ /slingshot/doclib/action/rm-copy-to/site/{site}/{container}/{path}
+ /slingshot/doclib/action/rm-copy-to/site/{site}/{container}
+ /slingshot/doclib/action/rm-copy-to/node/{store_type}/{store_id}/{id}/{path}
+ /slingshot/doclib/action/rm-copy-to/node/{store_type}/{store_id}/{id}
+ /slingshot/doclib/action/rm-copy-to/node/{store_type}/{store_id}
+ argument
+ user
+ required
+ internal
+
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.json.ftl
index 96ae629f53..b8a237f1a7 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.json.ftl
@@ -1,28 +1,28 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "action.lib.ftl" as actionLib />
-<@actionLib.resultsJSON results=results />
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "action.lib.ftl" as actionLib />
+<@actionLib.resultsJSON results=results />
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.json.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.json.js
index 6ec268eb92..b83d20f915 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.json.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.json.js
@@ -1,134 +1,134 @@
-
-
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-/**
- * Copy multiple files action
- * @method POST
- */
-
-/**
- * Entrypoint required by action.lib.js
- *
- * @method runAction
- * @param p_params {object} Object literal containing files array
- * @return {object|null} object representation of action results
- */
-function runAction(p_params)
-{
- var results = [],
- destNode = p_params.destNode,
- files = p_params.files,
- file, fileNode, result, nodeRef,
- fromSite, copiedNode;
-
- // Must have array of files
- if (!files || files.length == 0)
- {
- status.setCode(status.STATUS_BAD_REQUEST, "No files.");
- return;
- }
-
- for (file in files)
- {
- nodeRef = files[file];
- result =
- {
- nodeRef: nodeRef,
- action: "copyFile",
- success: false
- };
-
- try
- {
- fileNode = search.findNode(nodeRef);
- if (fileNode == null)
- {
- result.id = file;
- result.nodeRef = nodeRef;
- result.success = false;
- result.error = "Can't find source node.";
- }
- if (!rmService.getRecordsManagementNode(destNode).hasCapability("FillingPermissionOnly"))
- {
- result.name = fileNode.name;
- result.error = "You don't have filing permission on the destination or the destination is either frozen, closed or cut off!";
- results.push(result);
- continue;
- }
- else
- {
- result.id = fileNode.name;
- result.name = fileNode.name;
- result.type = fileNode.isContainer ? "folder" : "document"
-
- // Retain the name of the site the node is currently in. Null if it's not in a site.
- fromSite = String(fileNode.siteShortName);
-
- // copy the node (deep copy for containers)
- if (fileNode.isContainer)
- {
- copiedNode = fileNode.copy(destNode, true);
- }
- else
- {
- copiedNode = fileNode.copy(destNode);
- }
-
- result.nodeRef = copiedNode.nodeRef.toString();
- result.success = (result.nodeRef != null);
-
- if (result.success)
- {
- // If this was an inter-site copy, we'll need to clean up the permissions on the node
- if (fromSite != String(copiedNode.siteShortName))
- {
- siteService.cleanSitePermissions(copiedNode);
- }
- }
- }
- }
- catch (e)
- {
- result.id = file;
- result.nodeRef = nodeRef;
- result.success = false;
- result.error = e.message;
-
- // log the error
- logger.error(e.message);
- }
-
- results.push(result);
- }
-
- return results;
-}
-
-/* Bootstrap action script */
-main();
+
+
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+/**
+ * Copy multiple files action
+ * @method POST
+ */
+
+/**
+ * Entrypoint required by action.lib.js
+ *
+ * @method runAction
+ * @param p_params {object} Object literal containing files array
+ * @return {object|null} object representation of action results
+ */
+function runAction(p_params)
+{
+ var results = [],
+ destNode = p_params.destNode,
+ files = p_params.files,
+ file, fileNode, result, nodeRef,
+ fromSite, copiedNode;
+
+ // Must have array of files
+ if (!files || files.length == 0)
+ {
+ status.setCode(status.STATUS_BAD_REQUEST, "No files.");
+ return;
+ }
+
+ for (file in files)
+ {
+ nodeRef = files[file];
+ result =
+ {
+ nodeRef: nodeRef,
+ action: "copyFile",
+ success: false
+ };
+
+ try
+ {
+ fileNode = search.findNode(nodeRef);
+ if (fileNode == null)
+ {
+ result.id = file;
+ result.nodeRef = nodeRef;
+ result.success = false;
+ result.error = "Can't find source node.";
+ }
+ if (!rmService.getRecordsManagementNode(destNode).hasCapability("FillingPermissionOnly"))
+ {
+ result.name = fileNode.name;
+ result.error = "You don't have filing permission on the destination or the destination is either frozen, closed or cut off!";
+ results.push(result);
+ continue;
+ }
+ else
+ {
+ result.id = fileNode.name;
+ result.name = fileNode.name;
+ result.type = fileNode.isContainer ? "folder" : "document"
+
+ // Retain the name of the site the node is currently in. Null if it's not in a site.
+ fromSite = String(fileNode.siteShortName);
+
+ // copy the node (deep copy for containers)
+ if (fileNode.isContainer)
+ {
+ copiedNode = fileNode.copy(destNode, true);
+ }
+ else
+ {
+ copiedNode = fileNode.copy(destNode);
+ }
+
+ result.nodeRef = copiedNode.nodeRef.toString();
+ result.success = (result.nodeRef != null);
+
+ if (result.success)
+ {
+ // If this was an inter-site copy, we'll need to clean up the permissions on the node
+ if (fromSite != String(copiedNode.siteShortName))
+ {
+ siteService.cleanSitePermissions(copiedNode);
+ }
+ }
+ }
+ }
+ catch (e)
+ {
+ result.id = file;
+ result.nodeRef = nodeRef;
+ result.success = false;
+ result.error = e.message;
+
+ // log the error
+ logger.error(e.message);
+ }
+
+ results.push(result);
+ }
+
+ return results;
+}
+
+/* Bootstrap action script */
+main();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.desc.xml
index c5652b7dfd..06fa861c15 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.desc.xml
@@ -1,12 +1,12 @@
-
- rm-link
- Document List Action - Link records
- /slingshot/doclib/action/rm-link/site/{site}/{container}/{path}
- /slingshot/doclib/action/rm-link/site/{site}/{container}
- /slingshot/doclib/action/rm-link/node/{store_type}/{store_id}/{id}/{path}
- /slingshot/doclib/action/rm-link/node/{store_type}/{store_id}/{id}
- argument
- user
- required
- internal
-
+
+ rm-link
+ Document List Action - Link records
+ /slingshot/doclib/action/rm-link/site/{site}/{container}/{path}
+ /slingshot/doclib/action/rm-link/site/{site}/{container}
+ /slingshot/doclib/action/rm-link/node/{store_type}/{store_id}/{id}/{path}
+ /slingshot/doclib/action/rm-link/node/{store_type}/{store_id}/{id}
+ argument
+ user
+ required
+ internal
+
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.json.ftl
index 96ae629f53..b8a237f1a7 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.json.ftl
@@ -1,28 +1,28 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "action.lib.ftl" as actionLib />
-<@actionLib.resultsJSON results=results />
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "action.lib.ftl" as actionLib />
+<@actionLib.resultsJSON results=results />
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.json.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.json.js
index a077246e1a..a52e075a96 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.json.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.json.js
@@ -1,109 +1,109 @@
-
-
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-/**
- * Add multiple files as children action
- * @method POST
- */
-
-/**
- * Entrypoint required by action.lib.js
- *
- * @method runAction
- * @param p_params {object} Object literal containing files array
- * @return {object|null} object representation of action results
- */
-function runAction(p_params)
-{
- var results = [],
- destNode = p_params.destNode,
- files = p_params.files,
- file, fileNode, result, nodeRef;
-
- // Must have array of files
- if (!files || files.length == 0)
- {
- status.setCode(status.STATUS_BAD_REQUEST, "No files.");
- return;
- }
-
- for (file in files)
- {
- nodeRef = files[file];
- result =
- {
- nodeRef: nodeRef,
- action: "addChild",
- success: false
- }
-
- try
- {
- fileNode = search.findNode(nodeRef);
- if (fileNode === null)
- {
- result.id = file;
- result.nodeRef = nodeRef;
- result.success = false;
- }
- if (!rmService.getRecordsManagementNode(destNode).hasCapability("FillingPermissionOnly"))
- {
- result.name = fileNode.name;
- result.error = "You don't have filing permission on the destination or the destination is either frozen, closed or cut off!";
- results.push(result);
- continue;
- }
- else
- {
- result.id = fileNode.name;
- result.name = fileNode.name;
- result.type = fileNode.isContainer ? "folder" : "document";
- destNode.addNode(fileNode);
- result.success = true;
- }
- }
- catch (e)
- {
- result.id = file;
- result.nodeRef = nodeRef;
- result.success = false;
- result.error = e.message;
-
- // log the error
- logger.error(e.message);
- }
-
- results.push(result);
- }
-
- return results;
-}
-
-/* Bootstrap action script */
-main();
+
+
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+/**
+ * Add multiple files as children action
+ * @method POST
+ */
+
+/**
+ * Entrypoint required by action.lib.js
+ *
+ * @method runAction
+ * @param p_params {object} Object literal containing files array
+ * @return {object|null} object representation of action results
+ */
+function runAction(p_params)
+{
+ var results = [],
+ destNode = p_params.destNode,
+ files = p_params.files,
+ file, fileNode, result, nodeRef;
+
+ // Must have array of files
+ if (!files || files.length == 0)
+ {
+ status.setCode(status.STATUS_BAD_REQUEST, "No files.");
+ return;
+ }
+
+ for (file in files)
+ {
+ nodeRef = files[file];
+ result =
+ {
+ nodeRef: nodeRef,
+ action: "addChild",
+ success: false
+ }
+
+ try
+ {
+ fileNode = search.findNode(nodeRef);
+ if (fileNode === null)
+ {
+ result.id = file;
+ result.nodeRef = nodeRef;
+ result.success = false;
+ }
+ if (!rmService.getRecordsManagementNode(destNode).hasCapability("FillingPermissionOnly"))
+ {
+ result.name = fileNode.name;
+ result.error = "You don't have filing permission on the destination or the destination is either frozen, closed or cut off!";
+ results.push(result);
+ continue;
+ }
+ else
+ {
+ result.id = fileNode.name;
+ result.name = fileNode.name;
+ result.type = fileNode.isContainer ? "folder" : "document";
+ destNode.addNode(fileNode);
+ result.success = true;
+ }
+ }
+ catch (e)
+ {
+ result.id = file;
+ result.nodeRef = nodeRef;
+ result.success = false;
+ result.error = e.message;
+
+ // log the error
+ logger.error(e.message);
+ }
+
+ results.push(result);
+ }
+
+ return results;
+}
+
+/* Bootstrap action script */
+main();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.desc.xml
index 29db2bca5b..07390aa024 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.desc.xml
@@ -1,12 +1,12 @@
-
- rm-move-to
- Document List Action - Move multiple files
- /slingshot/doclib/action/rm-move-to/site/{site}/{container}/{path}
- /slingshot/doclib/action/rm-move-to/site/{site}/{container}
- /slingshot/doclib/action/rm-move-to/node/{store_type}/{store_id}/{id}/{path}
- /slingshot/doclib/action/rm-move-to/node/{store_type}/{store_id}/{id}
- argument
- user
- required
- internal
-
+
+ rm-move-to
+ Document List Action - Move multiple files
+ /slingshot/doclib/action/rm-move-to/site/{site}/{container}/{path}
+ /slingshot/doclib/action/rm-move-to/site/{site}/{container}
+ /slingshot/doclib/action/rm-move-to/node/{store_type}/{store_id}/{id}/{path}
+ /slingshot/doclib/action/rm-move-to/node/{store_type}/{store_id}/{id}
+ argument
+ user
+ required
+ internal
+
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.json.ftl
index 96ae629f53..b8a237f1a7 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.json.ftl
@@ -1,28 +1,28 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#import "action.lib.ftl" as actionLib />
-<@actionLib.resultsJSON results=results />
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#import "action.lib.ftl" as actionLib />
+<@actionLib.resultsJSON results=results />
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.json.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.json.js
index 8cb978f5a8..ab829967a1 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.json.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.json.js
@@ -1,128 +1,128 @@
-
-
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-/**
- * Move multiple files action
- * @method POST
- */
-
-/**
- * Entrypoint required by action.lib.js
- *
- * @method runAction
- * @param p_params {object} Object literal containing files array
- * @return {object|null} object representation of action results
- */
-function runAction(p_params)
-{
- var results = [],
- destNode = p_params.destNode,
- files = p_params.files,
- parent = null,
- file, fileNode, result, nodeRef,
- fromSite;
-
- // Must have array of files
- if (!files || files.length == 0)
- {
- status.setCode(status.STATUS_BAD_REQUEST, "No files.");
- return;
- }
-
- for (file in files)
- {
- nodeRef = files[file];
- result =
- {
- nodeRef: nodeRef,
- action: "moveFile",
- success: false
- }
-
- try
- {
- fileNode = search.findNode(nodeRef);
- if (fileNode == null)
- {
- result.id = file;
- result.nodeRef = nodeRef;
- result.success = false;
- }
- if (!rmService.getRecordsManagementNode(destNode).hasCapability("FillingPermissionOnly"))
- {
- result.name = fileNode.name;
- result.error = "You don't have filing permission on the destination or the destination is either frozen, closed or cut off!";
- results.push(result);
- continue;
- }
- else
- {
- if (p_params.parent && p_params.parent != null)
- {
- parent = search.findNode(p_params.parent);
- }
- result.id = fileNode.name;
- result.name = fileNode.name;
- result.type = fileNode.isContainer ? "folder" : "document";
-
- // Retain the name of the site the node is currently in. Null if it's not in a site.
- fromSite = fileNode.siteShortName;
-
- // move the node
- result.success = fileNode.move(parent, destNode);
-
- if (result.success)
- {
- // If this was an inter-site move, we'll need to clean up the permissions on the node
- if (String(fromSite) !== String(fileNode.siteShortName))
- {
- siteService.cleanSitePermissions(fileNode);
- }
- }
- }
- }
- catch (e)
- {
- result.id = file;
- result.nodeRef = nodeRef;
- result.success = false;
- result.error = e.message;
-
- // log the error
- logger.error(e.message);
- }
-
- results.push(result);
- }
-
- return results;
-}
-
-/* Bootstrap action script */
-main();
+
+
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+/**
+ * Move multiple files action
+ * @method POST
+ */
+
+/**
+ * Entrypoint required by action.lib.js
+ *
+ * @method runAction
+ * @param p_params {object} Object literal containing files array
+ * @return {object|null} object representation of action results
+ */
+function runAction(p_params)
+{
+ var results = [],
+ destNode = p_params.destNode,
+ files = p_params.files,
+ parent = null,
+ file, fileNode, result, nodeRef,
+ fromSite;
+
+ // Must have array of files
+ if (!files || files.length == 0)
+ {
+ status.setCode(status.STATUS_BAD_REQUEST, "No files.");
+ return;
+ }
+
+ for (file in files)
+ {
+ nodeRef = files[file];
+ result =
+ {
+ nodeRef: nodeRef,
+ action: "moveFile",
+ success: false
+ }
+
+ try
+ {
+ fileNode = search.findNode(nodeRef);
+ if (fileNode == null)
+ {
+ result.id = file;
+ result.nodeRef = nodeRef;
+ result.success = false;
+ }
+ if (!rmService.getRecordsManagementNode(destNode).hasCapability("FillingPermissionOnly"))
+ {
+ result.name = fileNode.name;
+ result.error = "You don't have filing permission on the destination or the destination is either frozen, closed or cut off!";
+ results.push(result);
+ continue;
+ }
+ else
+ {
+ if (p_params.parent && p_params.parent != null)
+ {
+ parent = search.findNode(p_params.parent);
+ }
+ result.id = fileNode.name;
+ result.name = fileNode.name;
+ result.type = fileNode.isContainer ? "folder" : "document";
+
+ // Retain the name of the site the node is currently in. Null if it's not in a site.
+ fromSite = fileNode.siteShortName;
+
+ // move the node
+ result.success = fileNode.move(parent, destNode);
+
+ if (result.success)
+ {
+ // If this was an inter-site move, we'll need to clean up the permissions on the node
+ if (String(fromSite) !== String(fileNode.siteShortName))
+ {
+ siteService.cleanSitePermissions(fileNode);
+ }
+ }
+ }
+ }
+ catch (e)
+ {
+ result.id = file;
+ result.nodeRef = nodeRef;
+ result.success = false;
+ result.error = e.message;
+
+ // log the error
+ logger.error(e.message);
+ }
+
+ results.push(result);
+ }
+
+ return results;
+}
+
+/* Bootstrap action script */
+main();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.desc.xml
index 09fe2a5cff..c7d8a558de 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.desc.xml
@@ -1,9 +1,9 @@
-
- permissions
- Document List Component - permissions data webscript
- /slingshot/doclib/rm/permissions/{store_type}/{store_id}/{id}
- argument
- user
- required
- internal
+
+ permissions
+ Document List Component - permissions data webscript
+ /slingshot/doclib/rm/permissions/{store_type}/{store_id}/{id}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.js
index b6c592c2c0..adf2bc080e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.js
@@ -1,69 +1,69 @@
-
-
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-function getRmPermissions()
-{
- /**
- * nodeRef input: store_type, store_id and id
- */
- var storeType = url.templateArgs.store_type,
- storeId = url.templateArgs.store_id,
- id = url.templateArgs.id,
- nodeRef = storeType + "://" + storeId + "/" + id,
- node = ParseArgs.resolveNode(nodeRef);
-
- if (node == null)
- {
- node = search.findNode(nodeRef);
- if (node === null)
- {
- status.setCode(status.STATUS_NOT_FOUND, "Not a valid nodeRef: '" + nodeRef + "'");
- return null;
- }
- }
-
- var permissionData = model.data,
- settable = node.getSettablePermissions(),
- canReadInherited = true;
-
- if (node.parent.hasPermission("ReadRecords"))
- {
- permissionData["inherited"] = parsePermissions(node.parent.getPermissions(), settable);
- }
- else
- {
- canReadInherited = false;
- }
-
- permissionData["canReadInherited"] = canReadInherited;
-
- model.data = permissionData;
-}
-
-getRmPermissions();
+
+
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+function getRmPermissions()
+{
+ /**
+ * nodeRef input: store_type, store_id and id
+ */
+ var storeType = url.templateArgs.store_type,
+ storeId = url.templateArgs.store_id,
+ id = url.templateArgs.id,
+ nodeRef = storeType + "://" + storeId + "/" + id,
+ node = ParseArgs.resolveNode(nodeRef);
+
+ if (node == null)
+ {
+ node = search.findNode(nodeRef);
+ if (node === null)
+ {
+ status.setCode(status.STATUS_NOT_FOUND, "Not a valid nodeRef: '" + nodeRef + "'");
+ return null;
+ }
+ }
+
+ var permissionData = model.data,
+ settable = node.getSettablePermissions(),
+ canReadInherited = true;
+
+ if (node.parent.hasPermission("ReadRecords"))
+ {
+ permissionData["inherited"] = parsePermissions(node.parent.getPermissions(), settable);
+ }
+ else
+ {
+ canReadInherited = false;
+ }
+
+ permissionData["canReadInherited"] = canReadInherited;
+
+ model.data = permissionData;
+}
+
+getRmPermissions();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.json.ftl
index bb3da1522a..fa0d7335f5 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.json.ftl
@@ -1,27 +1,27 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#include "permissions.get.json.ftl">
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#include "permissions.get.json.ftl">
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.desc.xml
index 3098b18027..3b23c5431b 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.desc.xml
@@ -1,9 +1,9 @@
-
- doclist
- Document List Component - rm saved searches data webscript
- /slingshot/doclib/rm/savedsearches/site/{site}?p={public?}
- argument
- user
- required
- internal
+
+ doclist
+ Document List Component - rm saved searches data webscript
+ /slingshot/doclib/rm/savedsearches/site/{site}?p={public?}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.js
index 482f443300..1cf12545f7 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.js
@@ -1,80 +1,80 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-function main()
-{
- var savedSearches = [],
- siteId = url.templateArgs.site,
- siteNode = siteService.getSite(siteId),
- bPublic = args.p;
-
- if (siteNode === null)
- {
- status.setCode(status.STATUS_NOT_FOUND, "Site not found: '" + siteId + "'");
- return null;
- }
-
- var searchNode = siteNode.getContainer("Saved Searches");
- if (searchNode != null)
- {
- var kids, ssNode;
-
- if (bPublic == null || bPublic == "true")
- {
- // public searches are in the root of the folder
- kids = searchNode.children;
- }
- else
- {
- // user specific searches are in a sub-folder of username
- var userNode = searchNode.childByNamePath(person.properties.userName);
- if (userNode != null)
- {
- kids = userNode.children;
- }
- }
-
- if (kids)
- {
- for (var i = 0, ii = kids.length; i < ii; i++)
- {
- ssNode = kids[i];
- if (ssNode.isDocument)
- {
- savedSearches.push(
- {
- name: ssNode.name,
- description: ssNode.properties.description
- });
- }
- }
- }
- }
-
- model.savedSearches = savedSearches;
-}
-
-main();
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+function main()
+{
+ var savedSearches = [],
+ siteId = url.templateArgs.site,
+ siteNode = siteService.getSite(siteId),
+ bPublic = args.p;
+
+ if (siteNode === null)
+ {
+ status.setCode(status.STATUS_NOT_FOUND, "Site not found: '" + siteId + "'");
+ return null;
+ }
+
+ var searchNode = siteNode.getContainer("Saved Searches");
+ if (searchNode != null)
+ {
+ var kids, ssNode;
+
+ if (bPublic == null || bPublic == "true")
+ {
+ // public searches are in the root of the folder
+ kids = searchNode.children;
+ }
+ else
+ {
+ // user specific searches are in a sub-folder of username
+ var userNode = searchNode.childByNamePath(person.properties.userName);
+ if (userNode != null)
+ {
+ kids = userNode.children;
+ }
+ }
+
+ if (kids)
+ {
+ for (var i = 0, ii = kids.length; i < ii; i++)
+ {
+ ssNode = kids[i];
+ if (ssNode.isDocument)
+ {
+ savedSearches.push(
+ {
+ name: ssNode.name,
+ description: ssNode.properties.description
+ });
+ }
+ }
+ }
+ }
+
+ model.savedSearches = savedSearches;
+}
+
+main();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.json.ftl
index 5197ac35ea..127b284004 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.json.ftl
@@ -1,39 +1,39 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "items":
- [
- <#list savedSearches as s>
- {
- "name": "${s.name}",
- "description": "${s.description!""}"
- }<#if s_has_next>,#if>
- #list>
- ]
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "items":
+ [
+ <#list savedSearches as s>
+ {
+ "name": "${s.name}",
+ "description": "${s.description!""}"
+ }<#if s_has_next>,#if>
+ #list>
+ ]
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.desc.xml
index a6a6adcdd0..03c9efc138 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.desc.xml
@@ -1,9 +1,9 @@
-
- doclist-transfer
- Document List Component - rm transfer query data webscript
- /slingshot/doclib/rm/transfer/node/{store_type}/{store_id}/{id}
- argument
- user
- required
- internal
+
+ doclist-transfer
+ Document List Component - rm transfer query data webscript
+ /slingshot/doclib/rm/transfer/node/{store_type}/{store_id}/{id}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.js
index 3ab085b91c..85430b2bf8 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.js
@@ -1,47 +1,47 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-function main()
-{
- var nodeRef = url.templateArgs.store_type + "://" + url.templateArgs.store_id + "/" + url.templateArgs.id,
- transfer = search.findNode(nodeRef);
-
- if (transfer === null)
- {
- status.setCode(status.STATUS_NOT_FOUND, "Not a valid nodeRef: '" + nodeRef + "'");
- return null;
- }
-
- if (String(transfer.typeShort) != "rma:transfer")
- {
- status.setCode(status.STATUS_BAD_REQUEST, "nodeRef: '" + nodeRef + "' is not of type 'rma:transfer'");
- return null;
- }
-
- model.transfer = transfer;
-}
-
-main();
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+function main()
+{
+ var nodeRef = url.templateArgs.store_type + "://" + url.templateArgs.store_id + "/" + url.templateArgs.id,
+ transfer = search.findNode(nodeRef);
+
+ if (transfer === null)
+ {
+ status.setCode(status.STATUS_NOT_FOUND, "Not a valid nodeRef: '" + nodeRef + "'");
+ return null;
+ }
+
+ if (String(transfer.typeShort) != "rma:transfer")
+ {
+ status.setCode(status.STATUS_BAD_REQUEST, "nodeRef: '" + nodeRef + "' is not of type 'rma:transfer'");
+ return null;
+ }
+
+ model.transfer = transfer;
+}
+
+main();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.json.ftl
index c75c0f2c24..661d4b0701 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.json.ftl
@@ -1,39 +1,39 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- <#if transfer??>
- "transfer":
- {
- "nodeRef": "${transfer.nodeRef}",
- "name": "${transfer.name}",
- "rma:transferAccessionIndicator": ${(transfer.properties["rma:transferAccessionIndicator"]!false)?string},
- "rma:transferPDFIndicator": ${(transfer.properties["rma:transferPDFIndicator"]!false)?string}
- }
- #if>
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ <#if transfer??>
+ "transfer":
+ {
+ "nodeRef": "${transfer.nodeRef}",
+ "name": "${transfer.name}",
+ "rma:transferAccessionIndicator": ${(transfer.properties["rma:transferAccessionIndicator"]!false)?string},
+ "rma:transferPDFIndicator": ${(transfer.properties["rma:transferPDFIndicator"]!false)?string}
+ }
+ #if>
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.desc.xml
index b31e995e28..e7345e5692 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.desc.xml
@@ -1,12 +1,12 @@
-
- treenode
- Document List Component - rm treenode data webscript
- /slingshot/doclib/rm/treenode/site/{site}/{container}/{path}
- /slingshot/doclib/rm/treenode/site/{site}/{container}
- /slingshot/doclib/rm/treenode/node/{store_type}/{store_id}/{id}/{path}
- /slingshot/doclib/rm/treenode/node/{store_type}/{store_id}/{id}
- argument
- user
- required
- internal
+
+ treenode
+ Document List Component - rm treenode data webscript
+ /slingshot/doclib/rm/treenode/site/{site}/{container}/{path}
+ /slingshot/doclib/rm/treenode/site/{site}/{container}
+ /slingshot/doclib/rm/treenode/node/{store_type}/{store_id}/{id}/{path}
+ /slingshot/doclib/rm/treenode/node/{store_type}/{store_id}/{id}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.js
index c5ba78efc3..bb5e4a32d2 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.js
@@ -1,163 +1,163 @@
-
-
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-/**
- * Document List Component: treenode
- */
-model.treenode = getTreenode();
-
-/* Create collection of folders in the given space */
-function getTreenode()
-{
- try
- {
- var items = new Array(),
- hasSubfolders = true,
- ignoredTypes =
- {
- "{http://www.alfresco.org/model/forum/1.0}forum": true,
- "{http://www.alfresco.org/model/forum/1.0}topic": true,
- "{http://www.alfresco.org/model/content/1.0}systemfolder": true,
- "{http://www.alfresco.org/model/recordsmanagement/1.0}unfiledRecordContainer":true
- },
- skipPermissionCheck = args["perms"] == "false",
- evalChildFolders = false,
- item, rmNode, capabilities, cap;
-
- // Use helper function to get the arguments
- var parsedArgs = ParseArgs.getParsedArgs();
- if (parsedArgs === null)
- {
- return;
- }
-
- // Quick version if "skipPermissionCheck" flag set
- if (skipPermissionCheck)
- {
- for each (item in parsedArgs.pathNode.children)
- {
- if (itemIsAllowed(item) && !(item.type in ignoredTypes))
- {
- if (evalChildFolders)
- {
- hasSubfolders = item.childFileFolders(false, true, "fm:forum").length > 0;
- }
-
- items.push(
- {
- node: item,
- hasSubfolders: hasSubfolders
- });
- }
- }
- }
- else
- {
- for each (item in parsedArgs.pathNode.children)
- {
- if (itemIsAllowed(item) && !(item.type in ignoredTypes))
- {
- //capabilities = {};
- rmNode = rmService.getRecordsManagementNode(item);
-
- //for each (cap in rmNode.capabilitiesSet("Create"))
- //{
- // capabilities[cap.name] = true;
- //}
-
- //
-
- hasCreateCapability = rmNode.hasCapability("Create");
-
- if (evalChildFolders)
- {
- hasSubfolders = item.childFileFolders(false, true, "fm:forum").length > 0;
- }
-
- items.push(
- {
- node: item,
- hasSubfolders: hasSubfolders,
- permissions:
- {
- create: hasCreateCapability
- }
- });
- }
- }
- }
-
- items.sort(sortByName);
-
- return (
- {
- parent: parsedArgs.pathNode,
- resultsTrimmed: false,
- items: items
- });
- }
- catch(e)
- {
- status.setCode(status.STATUS_INTERNAL_SERVER_ERROR, e.toString());
- return;
- }
-}
-
-
-/* Sort the results by case-insensitive name */
-function sortByName(a, b)
-{
- return (b.node.name.toLowerCase() > a.node.name.toLowerCase() ? -1 : 1);
-}
-
-/* Filter allowed types, etc. */
-function itemIsAllowed(item)
-{
- // Must be a subtype of cm:folder
- if (!item.isSubType("cm:folder"))
- {
- return false;
- }
-
- var typeShort = String(item.typeShort);
-
- // Don't show Hold and Transfer top-level containers
- if (typeShort == "rma:holdContainer" || typeShort == "rma:transferContainer" || typeShort == "rma:unfiledRecordContainer")
- {
- return false;
- }
-
- // Must be a "dod:" or "rma:" namespaced type
- if (typeShort.indexOf("dod:") !== 0 && typeShort.indexOf("rma") !== 0)
- {
- return false;
- }
-
- return true;
-}
+
+
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+/**
+ * Document List Component: treenode
+ */
+model.treenode = getTreenode();
+
+/* Create collection of folders in the given space */
+function getTreenode()
+{
+ try
+ {
+ var items = new Array(),
+ hasSubfolders = true,
+ ignoredTypes =
+ {
+ "{http://www.alfresco.org/model/forum/1.0}forum": true,
+ "{http://www.alfresco.org/model/forum/1.0}topic": true,
+ "{http://www.alfresco.org/model/content/1.0}systemfolder": true,
+ "{http://www.alfresco.org/model/recordsmanagement/1.0}unfiledRecordContainer":true
+ },
+ skipPermissionCheck = args["perms"] == "false",
+ evalChildFolders = false,
+ item, rmNode, capabilities, cap;
+
+ // Use helper function to get the arguments
+ var parsedArgs = ParseArgs.getParsedArgs();
+ if (parsedArgs === null)
+ {
+ return;
+ }
+
+ // Quick version if "skipPermissionCheck" flag set
+ if (skipPermissionCheck)
+ {
+ for each (item in parsedArgs.pathNode.children)
+ {
+ if (itemIsAllowed(item) && !(item.type in ignoredTypes))
+ {
+ if (evalChildFolders)
+ {
+ hasSubfolders = item.childFileFolders(false, true, "fm:forum").length > 0;
+ }
+
+ items.push(
+ {
+ node: item,
+ hasSubfolders: hasSubfolders
+ });
+ }
+ }
+ }
+ else
+ {
+ for each (item in parsedArgs.pathNode.children)
+ {
+ if (itemIsAllowed(item) && !(item.type in ignoredTypes))
+ {
+ //capabilities = {};
+ rmNode = rmService.getRecordsManagementNode(item);
+
+ //for each (cap in rmNode.capabilitiesSet("Create"))
+ //{
+ // capabilities[cap.name] = true;
+ //}
+
+ //
+
+ hasCreateCapability = rmNode.hasCapability("Create");
+
+ if (evalChildFolders)
+ {
+ hasSubfolders = item.childFileFolders(false, true, "fm:forum").length > 0;
+ }
+
+ items.push(
+ {
+ node: item,
+ hasSubfolders: hasSubfolders,
+ permissions:
+ {
+ create: hasCreateCapability
+ }
+ });
+ }
+ }
+ }
+
+ items.sort(sortByName);
+
+ return (
+ {
+ parent: parsedArgs.pathNode,
+ resultsTrimmed: false,
+ items: items
+ });
+ }
+ catch(e)
+ {
+ status.setCode(status.STATUS_INTERNAL_SERVER_ERROR, e.toString());
+ return;
+ }
+}
+
+
+/* Sort the results by case-insensitive name */
+function sortByName(a, b)
+{
+ return (b.node.name.toLowerCase() > a.node.name.toLowerCase() ? -1 : 1);
+}
+
+/* Filter allowed types, etc. */
+function itemIsAllowed(item)
+{
+ // Must be a subtype of cm:folder
+ if (!item.isSubType("cm:folder"))
+ {
+ return false;
+ }
+
+ var typeShort = String(item.typeShort);
+
+ // Don't show Hold and Transfer top-level containers
+ if (typeShort == "rma:holdContainer" || typeShort == "rma:transferContainer" || typeShort == "rma:unfiledRecordContainer")
+ {
+ return false;
+ }
+
+ // Must be a "dod:" or "rma:" namespaced type
+ if (typeShort.indexOf("dod:") !== 0 && typeShort.indexOf("rma") !== 0)
+ {
+ return false;
+ }
+
+ return true;
+}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.json.ftl
index ccefa6d75d..073818addf 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.json.ftl
@@ -1,65 +1,65 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#assign p = treenode.parent>
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "totalResults": ${treenode.items?size?c},
- "resultsTrimmed": ${treenode.resultsTrimmed?string},
- "parent":
- {
- "nodeRef": "${p.nodeRef}",
- "userAccess":
- {
- "create": ${p.hasPermission("CreateChildren")?string},
- "edit": ${p.hasPermission("Write")?string},
- "delete": ${p.hasPermission("Delete")?string}
- }
- },
- "items":
- [
- <#list treenode.items as item>
- <#assign t = item.node>
- {
- <#if item.permissions??>
- "userAccess":
- {
- <#list item.permissions?keys as perm>
- <#if item.permissions[perm]?is_boolean>
- "${perm?string}": ${item.permissions[perm]?string}<#if perm_has_next>,#if>
- #if>
- #list>
- },
- #if>
- "nodeRef": "${t.nodeRef}",
- "name": "${t.name}",
- "description": "${(t.properties.description!"")}",
- "hasChildren": ${item.hasSubfolders?string}
- }<#if item_has_next>,#if>
- #list>
- ]
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#assign p = treenode.parent>
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "totalResults": ${treenode.items?size?c},
+ "resultsTrimmed": ${treenode.resultsTrimmed?string},
+ "parent":
+ {
+ "nodeRef": "${p.nodeRef}",
+ "userAccess":
+ {
+ "create": ${p.hasPermission("CreateChildren")?string},
+ "edit": ${p.hasPermission("Write")?string},
+ "delete": ${p.hasPermission("Delete")?string}
+ }
+ },
+ "items":
+ [
+ <#list treenode.items as item>
+ <#assign t = item.node>
+ {
+ <#if item.permissions??>
+ "userAccess":
+ {
+ <#list item.permissions?keys as perm>
+ <#if item.permissions[perm]?is_boolean>
+ "${perm?string}": ${item.permissions[perm]?string}<#if perm_has_next>,#if>
+ #if>
+ #list>
+ },
+ #if>
+ "nodeRef": "${t.nodeRef}",
+ "name": "${t.name}",
+ "description": "${(t.properties.description!"")}",
+ "hasChildren": ${item.hasSubfolders?string}
+ }<#if item_has_next>,#if>
+ #list>
+ ]
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/forms/metadata.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/forms/metadata.get.desc.xml
index 6a453de08a..878c391608 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/forms/metadata.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/forms/metadata.get.desc.xml
@@ -1,8 +1,8 @@
-
- RM node metadata retrieval service
- Used by the extended RM forms service to retrieve RM node metadata.
- /api/rmmetadata?noderef={noderef?}&type={type?}&extended={extended?}
-
- user
- required
+
+ RM node metadata retrieval service
+ Used by the extended RM forms service to retrieve RM node metadata.
+ /api/rmmetadata?noderef={noderef?}&type={type?}&extended={extended?}
+
+ user
+ required
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/forms/metadata.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/forms/metadata.get.json.ftl
index ef1e088dc0..ce56bb5731 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/forms/metadata.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/forms/metadata.get.json.ftl
@@ -1,42 +1,42 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{
- "kind" : "${kind}"
- <#if extended>
- ,
- "aspects":
- [
- <#list aspects as aspect>
- {
- "name": "${aspect.name}",
- "prefixedName": "${aspect.prefixedName}"
- }
- <#if aspect_has_next>,#if>
- #list>
- ]
- #if>
-}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{
+ "kind" : "${kind}"
+ <#if extended>
+ ,
+ "aspects":
+ [
+ <#list aspects as aspect>
+ {
+ "name": "${aspect.name}",
+ "prefixedName": "${aspect.prefixedName}"
+ }
+ <#if aspect_has_next>,#if>
+ #list>
+ ]
+ #if>
+}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.desc.xml
index 624373ee3b..7cec801193 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.desc.xml
@@ -1,9 +1,9 @@
-
- RM Faceted Search
- RM Faceted Search Component Data Webscript
- /slingshot/rmsearch/faceted/rmsearch?term={term?}&tag={tag?}&site={site?}&container={container?}&sort={sort?}&query={query?}&repo={repo?}
- argument
- user
- required
- internal
+
+ RM Faceted Search
+ RM Faceted Search Component Data Webscript
+ /slingshot/rmsearch/faceted/rmsearch?term={term?}&tag={tag?}&site={site?}&container={container?}&sort={sort?}&query={query?}&repo={repo?}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.js
index 620e89fd89..cf0b1edde8 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.js
@@ -1,53 +1,53 @@
-
-
-
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-function main() {
- var params =
- {
- siteId: args.site,
- containerId: args.container,
- repo: (args.repo !== null) ? (args.repo == "true") : false,
- term: args.term,
- tag: args.tag,
- query: args.query,
- rootNode: args.rootNode,
- sort: args.sort,
- maxResults: (args.maxResults !== null) ? parseInt(args.maxResults, 10) : DEFAULT_MAX_RESULTS,
- pageSize: (args.pageSize !== null) ? parseInt(args.pageSize, 10) : DEFAULT_PAGE_SIZE,
- startIndex: (args.startIndex !== null) ? parseInt(args.startIndex, 10) : 0,
- facetFields: args.facetFields,
- filters: args.filters,
- spell: (args.spellcheck !== null) ? (args.spellcheck == "true") : false
- };
-
- model.data = getSearchResults(params);
-};
-
-main();
+
+
+
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+function main() {
+ var params =
+ {
+ siteId: args.site,
+ containerId: args.container,
+ repo: (args.repo !== null) ? (args.repo == "true") : false,
+ term: args.term,
+ tag: args.tag,
+ query: args.query,
+ rootNode: args.rootNode,
+ sort: args.sort,
+ maxResults: (args.maxResults !== null) ? parseInt(args.maxResults, 10) : DEFAULT_MAX_RESULTS,
+ pageSize: (args.pageSize !== null) ? parseInt(args.pageSize, 10) : DEFAULT_PAGE_SIZE,
+ startIndex: (args.startIndex !== null) ? parseInt(args.startIndex, 10) : 0,
+ facetFields: args.facetFields,
+ filters: args.filters,
+ spell: (args.spellcheck !== null) ? (args.spellcheck == "true") : false
+ };
+
+ model.data = getSearchResults(params);
+};
+
+main();
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.json.ftl
index 15ea60621e..54bf33f655 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.json.ftl
@@ -1,115 +1,115 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#--Copied from Share's search.get.json.ftl with RM specific additions noted below:-->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
-"totalRecords": ${data.paging.totalRecords?c},
-"totalRecordsUpper": ${data.paging.totalRecordsUpper?c},
-"startIndex": ${data.paging.startIndex?c},
-"numberFound": ${(data.paging.numberFound!-1)?c},
-"facets":
-{
- <#if data.facets??><#list data.facets?keys as field>
- "${field}":
- [
- <#assign facets=data.facets[field]><#list facets as f>
- {
- "label": "${f.facetLabel}",
- "value": "${f.facetValue}",
- "hits": ${f.hits?c},
- "index": ${f.facetLabelIndex?c}
- }<#if f_has_next>,#if>
- #list>
- ]<#if field_has_next>,#if>
- #list>#if>
-},
-"items":
-[
- <#list data.items as item>
- {
- "nodeRef": "${item.nodeRef}",
- "type": "${item.type}",
- "name": "${item.name!''}",
- "displayName": "${item.displayName!''}",
- <#if item.title??>
- "title": "${item.title}",
- #if>
- "description": "${item.description!''}",
- "modifiedOn": "${xmldate(item.modifiedOn)}",
- "modifiedByUser": "${item.modifiedByUser}",
- "modifiedBy": "${item.modifiedBy}",
- "fromDate": "${xmldate(item.fromDate)}",
- "size": ${item.size?c},
- "mimetype": "${item.mimetype!''}",
- <#if item.site??>
- "site":
- {
- "shortName": "${item.site.shortName}",
- "title": "${item.site.title}"
- },
- "container": "${item.container}",
- #if>
- <#if item.path??>
- "path": "${item.path}",
- #if>
- "lastThumbnailModification":
- [
- <#if item.lastThumbnailModification??>
- <#list item.lastThumbnailModification as lastThumbnailMod>
- "${lastThumbnailMod}"
- <#if lastThumbnailMod_has_next>,#if>
- #list>
- #if>
- ],
- "tags": [<#list item.tags as tag>"${tag}"<#if tag_has_next>,#if>#list>]
- <#--Add in full node details, if they exist-->
- <#if item.nodeJSON??>
- ,"node": <#noescape>${item.nodeJSON}#noescape>
- #if>
- }<#if item_has_next>,#if>
- #list>
-],
-"spellcheck":
-{
- <#if data.spellcheck?? && data.spellcheck.spellCheckExist>
- "searchRequest": "${data.spellcheck.originalSearchTerm}",
- <#if data.spellcheck.searchedFor>
- <#list data.spellcheck.results as collationQueryStr>
- "searchedFor": "${collationQueryStr?string}"
- <#break>
- #list>
- <#else>
- "searchSuggestions": [
- <#list data.spellcheck.results as suggestion>
- "${suggestion?string}"<#if suggestion_has_next>,#if>
- #list>
- ]
- #if>
- #if>
-}
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#--Copied from Share's search.get.json.ftl with RM specific additions noted below:-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+"totalRecords": ${data.paging.totalRecords?c},
+"totalRecordsUpper": ${data.paging.totalRecordsUpper?c},
+"startIndex": ${data.paging.startIndex?c},
+"numberFound": ${(data.paging.numberFound!-1)?c},
+"facets":
+{
+ <#if data.facets??><#list data.facets?keys as field>
+ "${field}":
+ [
+ <#assign facets=data.facets[field]><#list facets as f>
+ {
+ "label": "${f.facetLabel}",
+ "value": "${f.facetValue}",
+ "hits": ${f.hits?c},
+ "index": ${f.facetLabelIndex?c}
+ }<#if f_has_next>,#if>
+ #list>
+ ]<#if field_has_next>,#if>
+ #list>#if>
+},
+"items":
+[
+ <#list data.items as item>
+ {
+ "nodeRef": "${item.nodeRef}",
+ "type": "${item.type}",
+ "name": "${item.name!''}",
+ "displayName": "${item.displayName!''}",
+ <#if item.title??>
+ "title": "${item.title}",
+ #if>
+ "description": "${item.description!''}",
+ "modifiedOn": "${xmldate(item.modifiedOn)}",
+ "modifiedByUser": "${item.modifiedByUser}",
+ "modifiedBy": "${item.modifiedBy}",
+ "fromDate": "${xmldate(item.fromDate)}",
+ "size": ${item.size?c},
+ "mimetype": "${item.mimetype!''}",
+ <#if item.site??>
+ "site":
+ {
+ "shortName": "${item.site.shortName}",
+ "title": "${item.site.title}"
+ },
+ "container": "${item.container}",
+ #if>
+ <#if item.path??>
+ "path": "${item.path}",
+ #if>
+ "lastThumbnailModification":
+ [
+ <#if item.lastThumbnailModification??>
+ <#list item.lastThumbnailModification as lastThumbnailMod>
+ "${lastThumbnailMod}"
+ <#if lastThumbnailMod_has_next>,#if>
+ #list>
+ #if>
+ ],
+ "tags": [<#list item.tags as tag>"${tag}"<#if tag_has_next>,#if>#list>]
+ <#--Add in full node details, if they exist-->
+ <#if item.nodeJSON??>
+ ,"node": <#noescape>${item.nodeJSON}#noescape>
+ #if>
+ }<#if item_has_next>,#if>
+ #list>
+],
+"spellcheck":
+{
+ <#if data.spellcheck?? && data.spellcheck.spellCheckExist>
+ "searchRequest": "${data.spellcheck.originalSearchTerm}",
+ <#if data.spellcheck.searchedFor>
+ <#list data.spellcheck.results as collationQueryStr>
+ "searchedFor": "${collationQueryStr?string}"
+ <#break>
+ #list>
+ <#else>
+ "searchSuggestions": [
+ <#list data.spellcheck.results as suggestion>
+ "${suggestion?string}"<#if suggestion_has_next>,#if>
+ #list>
+ ]
+ #if>
+ #if>
+}
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.lib.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.lib.js
index 35ffb2bb0f..9cb01a588e 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.lib.js
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.lib.js
@@ -1,51 +1,51 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-// RM Search Lib.
-
-// Wrap the original document item method with our own one that appends RM specific properties.
-// Additional properties will also need rendering in rmsearch.get.json.ftl.
-var getOriginalDocumentItem = getDocumentItem,
- getOriginalRepositoryItem = getRepositoryItem;
-getDocumentItem = function(siteId, containerId, pathParts, node, populate){
- // Get original Document item.
- var item = getOriginalDocumentItem(siteId, containerId, pathParts, node, populate);
-
- item.nodeJSON = appUtils.toJSON(node, true);
-
- return item;
-};
-
-getRepositoryItem = function(folderPath, node, populate){
- // Get Original Repo item
- var item = getOriginalRepositoryItem(folderPath, node, populate);
-
- if (item.type === "document") {
- item.nodeJSON = appUtils.toJSON(node, true);
- }
-
- return item;
-};
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+// RM Search Lib.
+
+// Wrap the original document item method with our own one that appends RM specific properties.
+// Additional properties will also need rendering in rmsearch.get.json.ftl.
+var getOriginalDocumentItem = getDocumentItem,
+ getOriginalRepositoryItem = getRepositoryItem;
+getDocumentItem = function(siteId, containerId, pathParts, node, populate){
+ // Get original Document item.
+ var item = getOriginalDocumentItem(siteId, containerId, pathParts, node, populate);
+
+ item.nodeJSON = appUtils.toJSON(node, true);
+
+ return item;
+};
+
+getRepositoryItem = function(folderPath, node, populate){
+ // Get Original Repo item
+ var item = getOriginalRepositoryItem(folderPath, node, populate);
+
+ if (item.type === "document") {
+ item.nodeJSON = appUtils.toJSON(node, true);
+ }
+
+ return item;
+};
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.delete.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.delete.desc.xml
index ea338656dc..d5cb481437 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.delete.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.delete.desc.xml
@@ -1,9 +1,9 @@
-
- rmsavedsearches
- RM Saved Searches
- /slingshot/rmsavedsearches/site/{site}/{name}
- argument
- user
- required
- internal
+
+ rmsavedsearches
+ RM Saved Searches
+ /slingshot/rmsavedsearches/site/{site}/{name}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.delete.json.ftl
index 9006378dcc..fbde0663f8 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.delete.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.delete.json.ftl
@@ -1,29 +1,29 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{
- "success": ${success?string}
-}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{
+ "success": ${success?string}
+}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.get.desc.xml
index f7824c206b..7a030401e0 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.get.desc.xml
@@ -1,9 +1,9 @@
-
- rmsavedsearches
- RM Saved Searches
- /slingshot/rmsavedsearches/site/{site}?p={public?}
- argument
- user
- required
- internal
+
+ rmsavedsearches
+ RM Saved Searches
+ /slingshot/rmsavedsearches/site/{site}?p={public?}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.get.json.ftl
index 7d07332a36..7de94c4da3 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.get.json.ftl
@@ -1,42 +1,42 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "items":
- [
- <#list savedSearches as s>
- {
- "name": "${s.name}",
- "description": "${s.description!""}",
- "query": "${s.query}",
- "params": "${s.params}",
- "sort": "${s.sort}"
- }<#if s_has_next>,#if>
- #list>
- ]
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "items":
+ [
+ <#list savedSearches as s>
+ {
+ "name": "${s.name}",
+ "description": "${s.description!""}",
+ "query": "${s.query}",
+ "params": "${s.params}",
+ "sort": "${s.sort}"
+ }<#if s_has_next>,#if>
+ #list>
+ ]
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.post.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.post.desc.xml
index dd07b5143c..f48520e4cd 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.post.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.post.desc.xml
@@ -1,9 +1,9 @@
-
- rmsavedsearches
- RM Saved Searches
- /slingshot/rmsavedsearches/site/{site}
- argument
- user
- required
- internal
+
+ rmsavedsearches
+ RM Saved Searches
+ /slingshot/rmsavedsearches/site/{site}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.post.json.ftl
index 9006378dcc..fbde0663f8 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.post.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.post.json.ftl
@@ -1,29 +1,29 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-{
- "success": ${success?string}
-}
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+{
+ "success": ${success?string}
+}
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearch.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearch.get.desc.xml
index c97310a712..e001ab570b 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearch.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearch.get.desc.xml
@@ -1,9 +1,9 @@
-
- rmsearch
- Record Search Component Data Webscript
- /slingshot/rmsearch/{site}?query={query?}&sortby={sortby?}&filters={filters?}&maxitems={maxitems?}
- argument
- user
- required
- internal
+
+ rmsearch
+ Record Search Component Data Webscript
+ /slingshot/rmsearch/{site}?query={query?}&sortby={sortby?}&filters={filters?}&maxitems={maxitems?}
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearch.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearch.get.json.ftl
index d00288ca63..c8ad869415 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearch.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearch.get.json.ftl
@@ -1,74 +1,74 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- <#if !errorMessage??>
- "items":
- [
- <#list items as item>
- {
- "nodeRef": "${item.nodeRef}",
- "type": "${item.type}",
- "name": "${item.name}",
- "title": "${item.title!''}",
- "description": "${item.description!''}",
- "modifiedOn": "${xmldate(item.modifiedOn)}",
- "modifiedByUser": "${item.modifiedByUser}",
- "modifiedBy": "${item.modifiedBy}",
- "createdOn": "${xmldate(item.createdOn)}",
- "createdByUser": "${item.createdByUser}",
- "createdBy": "${item.createdBy}",
- "author": "${item.author!''}",
- "size": ${item.size?c},
- <#if item.browseUrl??>"browseUrl": "${item.browseUrl}",#if>
- "parentFolder": "${item.parentFolder!""}",
- "properties":
- {
- <#assign first=true>
- <#list item.properties?keys as k>
- <#if item.properties[k]??>
- <#if !first>,<#else><#assign first=false>#if>"${k}":
- <#assign prop = item.properties[k]>
- <#if prop?is_date>"${xmldate(prop)}"
- <#elseif prop?is_boolean>${prop?string("true", "false")}
- <#elseif prop?is_enumerable>[<#list prop as p>"${p}"<#if p_has_next>, #if>#list>]
- <#elseif prop?is_number>${prop?c}
- <#elseif prop?is_string>"${prop}"
- <#elseif prop?is_hash_ex>[<#list prop?values as p>"${p}"<#if p_has_next>, #if>#list>]
- <#else>"${prop}"
- #if>
- #if>
- #list>
- }
- }<#if item_has_next>,#if>
- #list>
- ]
- <#else>
- "errorMessage": "${errorMessage}"
- #if>
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ <#if !errorMessage??>
+ "items":
+ [
+ <#list items as item>
+ {
+ "nodeRef": "${item.nodeRef}",
+ "type": "${item.type}",
+ "name": "${item.name}",
+ "title": "${item.title!''}",
+ "description": "${item.description!''}",
+ "modifiedOn": "${xmldate(item.modifiedOn)}",
+ "modifiedByUser": "${item.modifiedByUser}",
+ "modifiedBy": "${item.modifiedBy}",
+ "createdOn": "${xmldate(item.createdOn)}",
+ "createdByUser": "${item.createdByUser}",
+ "createdBy": "${item.createdBy}",
+ "author": "${item.author!''}",
+ "size": ${item.size?c},
+ <#if item.browseUrl??>"browseUrl": "${item.browseUrl}",#if>
+ "parentFolder": "${item.parentFolder!""}",
+ "properties":
+ {
+ <#assign first=true>
+ <#list item.properties?keys as k>
+ <#if item.properties[k]??>
+ <#if !first>,<#else><#assign first=false>#if>"${k}":
+ <#assign prop = item.properties[k]>
+ <#if prop?is_date>"${xmldate(prop)}"
+ <#elseif prop?is_boolean>${prop?string("true", "false")}
+ <#elseif prop?is_enumerable>[<#list prop as p>"${p}"<#if p_has_next>, #if>#list>]
+ <#elseif prop?is_number>${prop?c}
+ <#elseif prop?is_string>"${prop}"
+ <#elseif prop?is_hash_ex>[<#list prop?values as p>"${p}"<#if p_has_next>, #if>#list>]
+ <#else>"${prop}"
+ #if>
+ #if>
+ #list>
+ }
+ }<#if item_has_next>,#if>
+ #list>
+ ]
+ <#else>
+ "errorMessage": "${errorMessage}"
+ #if>
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearchproperties.get.desc.xml b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearchproperties.get.desc.xml
index 18105dc400..27f2ff01ac 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearchproperties.get.desc.xml
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearchproperties.get.desc.xml
@@ -1,9 +1,9 @@
-
- rmsearchproperties
- RM Search Properties
- /slingshot/rmsearchproperties
- argument
- user
- required
- internal
+
+ rmsearchproperties
+ RM Search Properties
+ /slingshot/rmsearchproperties
+ argument
+ user
+ required
+ internal
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearchproperties.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearchproperties.get.json.ftl
index ce44357b93..7c7ff4e1b0 100644
--- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearchproperties.get.json.ftl
+++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearchproperties.get.json.ftl
@@ -1,53 +1,53 @@
-<#--
- #%L
- Alfresco Records Management Module
- %%
- Copyright (C) 2005 - 2016 Alfresco Software Limited
- %%
- This file is part of the Alfresco software.
- -
- If the software was purchased under a paid Alfresco license, the terms of
- the paid license agreement will prevail. Otherwise, the software is
- provided under the following open source license terms:
- -
- Alfresco is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- -
- Alfresco is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- -
- You should have received a copy of the GNU Lesser General Public License
- along with Alfresco. If not, see .
- #L%
--->
-<#escape x as jsonUtils.encodeJSONString(x)>
-{
- "data" :
- {
- "groups" :
- [
- <#list groups as group>
- {
- "id" : "${group.id}",
- "label" : "${group.label}",
- "properties" :
- [
- <#list group.properties as property>
- {
- "prefix" : "${property.prefix}",
- "name" : "${property.shortName}",
- "label" : "${property.label}",
- "type" : "${property.type}"
- }<#if property_has_next>,#if>
- #list>
- ]
- }<#if group_has_next>,#if>
- #list>
- ]
- }
-}
-#escape>
+<#--
+ #%L
+ Alfresco Records Management Module
+ %%
+ Copyright (C) 2005 - 2016 Alfresco Software Limited
+ %%
+ This file is part of the Alfresco software.
+ -
+ If the software was purchased under a paid Alfresco license, the terms of
+ the paid license agreement will prevail. Otherwise, the software is
+ provided under the following open source license terms:
+ -
+ Alfresco is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ -
+ Alfresco is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ -
+ You should have received a copy of the GNU Lesser General Public License
+ along with Alfresco. If not, see .
+ #L%
+-->
+<#escape x as jsonUtils.encodeJSONString(x)>
+{
+ "data" :
+ {
+ "groups" :
+ [
+ <#list groups as group>
+ {
+ "id" : "${group.id}",
+ "label" : "${group.label}",
+ "properties" :
+ [
+ <#list group.properties as property>
+ {
+ "prefix" : "${property.prefix}",
+ "name" : "${property.shortName}",
+ "label" : "${property.label}",
+ "type" : "${property.type}"
+ }<#if property_has_next>,#if>
+ #list>
+ ]
+ }<#if group_has_next>,#if>
+ #list>
+ ]
+ }
+}
+#escape>
diff --git a/rm-community/rm-community-repo/config/alfresco/workflow/requestInfo.bpmn20.xml b/rm-community/rm-community-repo/config/alfresco/workflow/requestInfo.bpmn20.xml
index 9731a15c90..3959a8f7ae 100644
--- a/rm-community/rm-community-repo/config/alfresco/workflow/requestInfo.bpmn20.xml
+++ b/rm-community/rm-community-repo/config/alfresco/workflow/requestInfo.bpmn20.xml
@@ -1,102 +1,102 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages.properties b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages.properties
index 4f8a890799..84187d7633 100644
--- a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages.properties
+++ b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages.properties
@@ -1,23 +1,23 @@
-activitiReviewPooled.workflow.info.requested=Information requested for the record
-activitiReviewPooled.workflow.info.provided=Information provided for the record
-activitiReviewPooled.workflow.email.subject=Information provided for the record
-activitiReviewPooled.workflow.email.body1=The user
-activitiReviewPooled.workflow.email.body2=has provided the information required for the record.
-
-rmwf_workflowmodel.type.rmwf_workflowTask.title=Workflow Task
-rmwf_workflowmodel.type.rmwf_workflowTask.decription=Workflow Task
-rmwf_workflowmodel.property.rmwf_requestedInformation.title=Requested Information
-rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Requested Information
-rmwf_workflowmodel.property.rmwf_message.title=Message
-rmwf_workflowmodel.property.rmwf_message.decription=Message
-
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=Request Information Task
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=Request Information Task
-rmwf_workflowmodel.association.rmwf_mixedAssignees.title=Assignees
-rmwf_workflowmodel.association.rmwf_mixedAssignees.description=Assignees
-
-rmwf_workflowmodel.type.rmwf_requestInfoTask.title=Request Information Task
-rmwf_workflowmodel.type.rmwf_requestInfoTask.description=Request Information Task
-
-rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=Request Information Task
+activitiReviewPooled.workflow.info.requested=Information requested for the record
+activitiReviewPooled.workflow.info.provided=Information provided for the record
+activitiReviewPooled.workflow.email.subject=Information provided for the record
+activitiReviewPooled.workflow.email.body1=The user
+activitiReviewPooled.workflow.email.body2=has provided the information required for the record.
+
+rmwf_workflowmodel.type.rmwf_workflowTask.title=Workflow Task
+rmwf_workflowmodel.type.rmwf_workflowTask.decription=Workflow Task
+rmwf_workflowmodel.property.rmwf_requestedInformation.title=Requested Information
+rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Requested Information
+rmwf_workflowmodel.property.rmwf_message.title=Message
+rmwf_workflowmodel.property.rmwf_message.decription=Message
+
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=Request Information Task
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=Request Information Task
+rmwf_workflowmodel.association.rmwf_mixedAssignees.title=Assignees
+rmwf_workflowmodel.association.rmwf_mixedAssignees.description=Assignees
+
+rmwf_workflowmodel.type.rmwf_requestInfoTask.title=Request Information Task
+rmwf_workflowmodel.type.rmwf_requestInfoTask.description=Request Information Task
+
+rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=Request Information Task
rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.description=Request Information Task
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_de.properties b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_de.properties
index ef75f7bc82..432bdd708c 100644
--- a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_de.properties
+++ b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_de.properties
@@ -1,23 +1,23 @@
-activitiReviewPooled.workflow.info.requested=Informationen f\u00fcr Record angefordert
-activitiReviewPooled.workflow.info.provided=Informationen f\u00fcr Record bereitgestellt
-activitiReviewPooled.workflow.email.subject=Informationen f\u00fcr Record bereitgestellt
-activitiReviewPooled.workflow.email.body1=Der Benutzer
-activitiReviewPooled.workflow.email.body2=hat die f\u00fcr den Record erforderlichen Informationen bereitgestellt.
-
-rmwf_workflowmodel.type.rmwf_workflowTask.title=Aufgabe im Workflow
-rmwf_workflowmodel.type.rmwf_workflowTask.decription=Aufgabe im Workflow
-rmwf_workflowmodel.property.rmwf_requestedInformation.title=Angeforderte Informationen
-rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Angeforderte Informationen
-rmwf_workflowmodel.property.rmwf_message.title=Nachricht
-rmwf_workflowmodel.property.rmwf_message.decription=Nachricht
-
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=Aufgabe 'Informationen anfordern'
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=Aufgabe 'Informationen anfordern'
-rmwf_workflowmodel.association.rmwf_mixedAssignees.title=Bevollm\u00e4chtigte
-rmwf_workflowmodel.association.rmwf_mixedAssignees.description=Bevollm\u00e4chtigte
-
-rmwf_workflowmodel.type.rmwf_requestInfoTask.title=Aufgabe 'Informationen anfordern'
-rmwf_workflowmodel.type.rmwf_requestInfoTask.description=Aufgabe 'Informationen anfordern'
-
-rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=Aufgabe 'Informationen anfordern'
+activitiReviewPooled.workflow.info.requested=Informationen f\u00fcr Record angefordert
+activitiReviewPooled.workflow.info.provided=Informationen f\u00fcr Record bereitgestellt
+activitiReviewPooled.workflow.email.subject=Informationen f\u00fcr Record bereitgestellt
+activitiReviewPooled.workflow.email.body1=Der Benutzer
+activitiReviewPooled.workflow.email.body2=hat die f\u00fcr den Record erforderlichen Informationen bereitgestellt.
+
+rmwf_workflowmodel.type.rmwf_workflowTask.title=Aufgabe im Workflow
+rmwf_workflowmodel.type.rmwf_workflowTask.decription=Aufgabe im Workflow
+rmwf_workflowmodel.property.rmwf_requestedInformation.title=Angeforderte Informationen
+rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Angeforderte Informationen
+rmwf_workflowmodel.property.rmwf_message.title=Nachricht
+rmwf_workflowmodel.property.rmwf_message.decription=Nachricht
+
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=Aufgabe 'Informationen anfordern'
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=Aufgabe 'Informationen anfordern'
+rmwf_workflowmodel.association.rmwf_mixedAssignees.title=Bevollm\u00e4chtigte
+rmwf_workflowmodel.association.rmwf_mixedAssignees.description=Bevollm\u00e4chtigte
+
+rmwf_workflowmodel.type.rmwf_requestInfoTask.title=Aufgabe 'Informationen anfordern'
+rmwf_workflowmodel.type.rmwf_requestInfoTask.description=Aufgabe 'Informationen anfordern'
+
+rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=Aufgabe 'Informationen anfordern'
rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.description=Aufgabe 'Informationen anfordern'
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_es.properties b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_es.properties
index 9be2617ad4..e6c63ef0f0 100644
--- a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_es.properties
+++ b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_es.properties
@@ -1,23 +1,23 @@
-activitiReviewPooled.workflow.info.requested=Informaci\u00f3n solicitada para el documento de archivo
-activitiReviewPooled.workflow.info.provided=Informaci\u00f3n proporcionada para el documento de archivo
-activitiReviewPooled.workflow.email.subject=Informaci\u00f3n proporcionada para el documento de archivo
-activitiReviewPooled.workflow.email.body1=El usuario
-activitiReviewPooled.workflow.email.body2=ha proporcionado la informaci\u00f3n requerida para el documento de archivo.
-
-rmwf_workflowmodel.type.rmwf_workflowTask.title=Tarea de flujo de trabajo
-rmwf_workflowmodel.type.rmwf_workflowTask.decription=Tarea de flujo de trabajo
-rmwf_workflowmodel.property.rmwf_requestedInformation.title=Informaci\u00f3n solicitada
-rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Informaci\u00f3n solicitada
-rmwf_workflowmodel.property.rmwf_message.title=Mensaje
-rmwf_workflowmodel.property.rmwf_message.decription=Mensaje
-
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=Tarea de solicitud de informaci\u00f3n
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=Tarea de solicitud de informaci\u00f3n
-rmwf_workflowmodel.association.rmwf_mixedAssignees.title=Usuarios a asignar la tarea
-rmwf_workflowmodel.association.rmwf_mixedAssignees.description=Usuarios a asignar la tarea
-
-rmwf_workflowmodel.type.rmwf_requestInfoTask.title=Tarea de solicitud de informaci\u00f3n
-rmwf_workflowmodel.type.rmwf_requestInfoTask.description=Tarea de solicitud de informaci\u00f3n
-
-rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=Tarea de solicitud de informaci\u00f3n
+activitiReviewPooled.workflow.info.requested=Informaci\u00f3n solicitada para el documento de archivo
+activitiReviewPooled.workflow.info.provided=Informaci\u00f3n proporcionada para el documento de archivo
+activitiReviewPooled.workflow.email.subject=Informaci\u00f3n proporcionada para el documento de archivo
+activitiReviewPooled.workflow.email.body1=El usuario
+activitiReviewPooled.workflow.email.body2=ha proporcionado la informaci\u00f3n requerida para el documento de archivo.
+
+rmwf_workflowmodel.type.rmwf_workflowTask.title=Tarea de flujo de trabajo
+rmwf_workflowmodel.type.rmwf_workflowTask.decription=Tarea de flujo de trabajo
+rmwf_workflowmodel.property.rmwf_requestedInformation.title=Informaci\u00f3n solicitada
+rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Informaci\u00f3n solicitada
+rmwf_workflowmodel.property.rmwf_message.title=Mensaje
+rmwf_workflowmodel.property.rmwf_message.decription=Mensaje
+
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=Tarea de solicitud de informaci\u00f3n
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=Tarea de solicitud de informaci\u00f3n
+rmwf_workflowmodel.association.rmwf_mixedAssignees.title=Usuarios a asignar la tarea
+rmwf_workflowmodel.association.rmwf_mixedAssignees.description=Usuarios a asignar la tarea
+
+rmwf_workflowmodel.type.rmwf_requestInfoTask.title=Tarea de solicitud de informaci\u00f3n
+rmwf_workflowmodel.type.rmwf_requestInfoTask.description=Tarea de solicitud de informaci\u00f3n
+
+rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=Tarea de solicitud de informaci\u00f3n
rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.description=Tarea de solicitud de informaci\u00f3n
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_fr.properties b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_fr.properties
index c6e505982b..af53402c90 100644
--- a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_fr.properties
+++ b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_fr.properties
@@ -1,23 +1,23 @@
-activitiReviewPooled.workflow.info.requested=Demande d'informations pour le document d'archives
-activitiReviewPooled.workflow.info.provided=Informations fournies pour le document d'archives
-activitiReviewPooled.workflow.email.subject=Informations fournies pour le document d'archives
-activitiReviewPooled.workflow.email.body1=L'utilisateur
-activitiReviewPooled.workflow.email.body2=a fourni les informations requises pour le document d'archives.
-
-rmwf_workflowmodel.type.rmwf_workflowTask.title=T\u00e2che du workflow
-rmwf_workflowmodel.type.rmwf_workflowTask.decription=T\u00e2che du workflow
-rmwf_workflowmodel.property.rmwf_requestedInformation.title=Informations demand\u00e9es
-rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Informations demand\u00e9es
-rmwf_workflowmodel.property.rmwf_message.title=Message
-rmwf_workflowmodel.property.rmwf_message.decription=Message
-
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=T\u00e2che de demande d'informations
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=T\u00e2che de demande d'informations
-rmwf_workflowmodel.association.rmwf_mixedAssignees.title=Acteurs
-rmwf_workflowmodel.association.rmwf_mixedAssignees.description=Acteurs
-
-rmwf_workflowmodel.type.rmwf_requestInfoTask.title=T\u00e2che de demande d'informations
-rmwf_workflowmodel.type.rmwf_requestInfoTask.description=T\u00e2che de demande d'informations
-
-rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=T\u00e2che de demande d'informations
+activitiReviewPooled.workflow.info.requested=Demande d'informations pour le document d'archives
+activitiReviewPooled.workflow.info.provided=Informations fournies pour le document d'archives
+activitiReviewPooled.workflow.email.subject=Informations fournies pour le document d'archives
+activitiReviewPooled.workflow.email.body1=L'utilisateur
+activitiReviewPooled.workflow.email.body2=a fourni les informations requises pour le document d'archives.
+
+rmwf_workflowmodel.type.rmwf_workflowTask.title=T\u00e2che du workflow
+rmwf_workflowmodel.type.rmwf_workflowTask.decription=T\u00e2che du workflow
+rmwf_workflowmodel.property.rmwf_requestedInformation.title=Informations demand\u00e9es
+rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Informations demand\u00e9es
+rmwf_workflowmodel.property.rmwf_message.title=Message
+rmwf_workflowmodel.property.rmwf_message.decription=Message
+
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=T\u00e2che de demande d'informations
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=T\u00e2che de demande d'informations
+rmwf_workflowmodel.association.rmwf_mixedAssignees.title=Acteurs
+rmwf_workflowmodel.association.rmwf_mixedAssignees.description=Acteurs
+
+rmwf_workflowmodel.type.rmwf_requestInfoTask.title=T\u00e2che de demande d'informations
+rmwf_workflowmodel.type.rmwf_requestInfoTask.description=T\u00e2che de demande d'informations
+
+rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=T\u00e2che de demande d'informations
rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.description=T\u00e2che de demande d'informations
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_it.properties b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_it.properties
index 159d8c24b9..a73244009a 100644
--- a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_it.properties
+++ b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_it.properties
@@ -1,23 +1,23 @@
-activitiReviewPooled.workflow.info.requested=Informazioni richieste per il record
-activitiReviewPooled.workflow.info.provided=Informazioni fornite per il record
-activitiReviewPooled.workflow.email.subject=Informazioni fornite per il record
-activitiReviewPooled.workflow.email.body1=L'utente
-activitiReviewPooled.workflow.email.body2=ha fornito le informazioni richieste per il record.
-
-rmwf_workflowmodel.type.rmwf_workflowTask.title=Attivit\u00e0 del flusso di lavoro
-rmwf_workflowmodel.type.rmwf_workflowTask.decription=Attivit\u00e0 del flusso di lavoro
-rmwf_workflowmodel.property.rmwf_requestedInformation.title=Informazioni richieste
-rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Informazioni richieste
-rmwf_workflowmodel.property.rmwf_message.title=Messaggio
-rmwf_workflowmodel.property.rmwf_message.decription=Messaggio
-
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=Attivit\u00e0 di richiesta informazioni
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=Attivit\u00e0 di richiesta informazioni
-rmwf_workflowmodel.association.rmwf_mixedAssignees.title=Assegnatari
-rmwf_workflowmodel.association.rmwf_mixedAssignees.description=Assegnatari
-
-rmwf_workflowmodel.type.rmwf_requestInfoTask.title=Attivit\u00e0 di richiesta informazioni
-rmwf_workflowmodel.type.rmwf_requestInfoTask.description=Attivit\u00e0 di richiesta informazioni
-
-rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=Attivit\u00e0 di richiesta informazioni
+activitiReviewPooled.workflow.info.requested=Informazioni richieste per il record
+activitiReviewPooled.workflow.info.provided=Informazioni fornite per il record
+activitiReviewPooled.workflow.email.subject=Informazioni fornite per il record
+activitiReviewPooled.workflow.email.body1=L'utente
+activitiReviewPooled.workflow.email.body2=ha fornito le informazioni richieste per il record.
+
+rmwf_workflowmodel.type.rmwf_workflowTask.title=Attivit\u00e0 del flusso di lavoro
+rmwf_workflowmodel.type.rmwf_workflowTask.decription=Attivit\u00e0 del flusso di lavoro
+rmwf_workflowmodel.property.rmwf_requestedInformation.title=Informazioni richieste
+rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Informazioni richieste
+rmwf_workflowmodel.property.rmwf_message.title=Messaggio
+rmwf_workflowmodel.property.rmwf_message.decription=Messaggio
+
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=Attivit\u00e0 di richiesta informazioni
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=Attivit\u00e0 di richiesta informazioni
+rmwf_workflowmodel.association.rmwf_mixedAssignees.title=Assegnatari
+rmwf_workflowmodel.association.rmwf_mixedAssignees.description=Assegnatari
+
+rmwf_workflowmodel.type.rmwf_requestInfoTask.title=Attivit\u00e0 di richiesta informazioni
+rmwf_workflowmodel.type.rmwf_requestInfoTask.description=Attivit\u00e0 di richiesta informazioni
+
+rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=Attivit\u00e0 di richiesta informazioni
rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.description=Attivit\u00e0 di richiesta informazioni
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_ja.properties b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_ja.properties
index 70d58d9100..eed2793d70 100644
--- a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_ja.properties
+++ b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_ja.properties
@@ -1,23 +1,23 @@
-activitiReviewPooled.workflow.info.requested=\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3055\u308c\u305f\u60c5\u5831
-activitiReviewPooled.workflow.info.provided=\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u63d0\u4f9b\u3055\u308c\u305f\u60c5\u5831
-activitiReviewPooled.workflow.email.subject=\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u63d0\u4f9b\u3055\u308c\u305f\u60c5\u5831
-activitiReviewPooled.workflow.email.body1=\u30e6\u30fc\u30b6\u30fc\u304c
-activitiReviewPooled.workflow.email.body2=\u30ec\u30b3\u30fc\u30c9\u306b\u5fc5\u8981\u306a\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u307e\u3057\u305f\u3002
-
-rmwf_workflowmodel.type.rmwf_workflowTask.title=\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u30bf\u30b9\u30af
-rmwf_workflowmodel.type.rmwf_workflowTask.decription=\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u30bf\u30b9\u30af
-rmwf_workflowmodel.property.rmwf_requestedInformation.title=\u30ea\u30af\u30a8\u30b9\u30c8\u3055\u308c\u305f\u60c5\u5831
-rmwf_workflowmodel.property.rmwf_requestedInformation.decription=\u30ea\u30af\u30a8\u30b9\u30c8\u3055\u308c\u305f\u60c5\u5831
-rmwf_workflowmodel.property.rmwf_message.title=\u30e1\u30c3\u30bb\u30fc\u30b8
-rmwf_workflowmodel.property.rmwf_message.decription=\u30e1\u30c3\u30bb\u30fc\u30b8
-
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=\u60c5\u5831\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30b9\u30af
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=\u60c5\u5831\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30b9\u30af
-rmwf_workflowmodel.association.rmwf_mixedAssignees.title=\u62c5\u5f53\u8005
-rmwf_workflowmodel.association.rmwf_mixedAssignees.description=\u62c5\u5f53\u8005
-
-rmwf_workflowmodel.type.rmwf_requestInfoTask.title=\u60c5\u5831\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30b9\u30af
-rmwf_workflowmodel.type.rmwf_requestInfoTask.description=\u60c5\u5831\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30b9\u30af
-
-rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=\u60c5\u5831\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30b9\u30af
+activitiReviewPooled.workflow.info.requested=\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3055\u308c\u305f\u60c5\u5831
+activitiReviewPooled.workflow.info.provided=\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u63d0\u4f9b\u3055\u308c\u305f\u60c5\u5831
+activitiReviewPooled.workflow.email.subject=\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u63d0\u4f9b\u3055\u308c\u305f\u60c5\u5831
+activitiReviewPooled.workflow.email.body1=\u30e6\u30fc\u30b6\u30fc\u304c
+activitiReviewPooled.workflow.email.body2=\u30ec\u30b3\u30fc\u30c9\u306b\u5fc5\u8981\u306a\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u307e\u3057\u305f\u3002
+
+rmwf_workflowmodel.type.rmwf_workflowTask.title=\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u30bf\u30b9\u30af
+rmwf_workflowmodel.type.rmwf_workflowTask.decription=\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u30bf\u30b9\u30af
+rmwf_workflowmodel.property.rmwf_requestedInformation.title=\u30ea\u30af\u30a8\u30b9\u30c8\u3055\u308c\u305f\u60c5\u5831
+rmwf_workflowmodel.property.rmwf_requestedInformation.decription=\u30ea\u30af\u30a8\u30b9\u30c8\u3055\u308c\u305f\u60c5\u5831
+rmwf_workflowmodel.property.rmwf_message.title=\u30e1\u30c3\u30bb\u30fc\u30b8
+rmwf_workflowmodel.property.rmwf_message.decription=\u30e1\u30c3\u30bb\u30fc\u30b8
+
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=\u60c5\u5831\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30b9\u30af
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=\u60c5\u5831\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30b9\u30af
+rmwf_workflowmodel.association.rmwf_mixedAssignees.title=\u62c5\u5f53\u8005
+rmwf_workflowmodel.association.rmwf_mixedAssignees.description=\u62c5\u5f53\u8005
+
+rmwf_workflowmodel.type.rmwf_requestInfoTask.title=\u60c5\u5831\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30b9\u30af
+rmwf_workflowmodel.type.rmwf_requestInfoTask.description=\u60c5\u5831\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30b9\u30af
+
+rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=\u60c5\u5831\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30b9\u30af
rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.description=\u60c5\u5831\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u30bf\u30b9\u30af
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_nb.properties b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_nb.properties
index 561f46950a..aee20d7c6a 100644
--- a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_nb.properties
+++ b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_nb.properties
@@ -1,23 +1,23 @@
-activitiReviewPooled.workflow.info.requested=Informasjon som ble forespurt for oppf\u00f8ringen
-activitiReviewPooled.workflow.info.provided=Informasjon som er s\u00f8rget for, til oppf\u00f8ringen
-activitiReviewPooled.workflow.email.subject=Informasjon som er s\u00f8rget for, til oppf\u00f8ringen
-activitiReviewPooled.workflow.email.body1=Brukeren
-activitiReviewPooled.workflow.email.body2=har s\u00f8rget for den n\u00f8dvendige informasjonen til oppf\u00f8ringen.
-
-rmwf_workflowmodel.type.rmwf_workflowTask.title=Arbeidsflytoppgave
-rmwf_workflowmodel.type.rmwf_workflowTask.decription=Arbeidsflytoppgave
-rmwf_workflowmodel.property.rmwf_requestedInformation.title=Forespurt informasjon
-rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Forespurt informasjon
-rmwf_workflowmodel.property.rmwf_message.title=Melding
-rmwf_workflowmodel.property.rmwf_message.decription=Melding
-
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=Be om informasjonsoppgave
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=Be om informasjonsoppgave
-rmwf_workflowmodel.association.rmwf_mixedAssignees.title=De som tilordnes
-rmwf_workflowmodel.association.rmwf_mixedAssignees.description=De som tilordnes
-
-rmwf_workflowmodel.type.rmwf_requestInfoTask.title=Be om informasjonsoppgave
-rmwf_workflowmodel.type.rmwf_requestInfoTask.description=Be om informasjonsoppgave
-
-rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=Be om informasjonsoppgave
+activitiReviewPooled.workflow.info.requested=Informasjon som ble forespurt for oppf\u00f8ringen
+activitiReviewPooled.workflow.info.provided=Informasjon som er s\u00f8rget for, til oppf\u00f8ringen
+activitiReviewPooled.workflow.email.subject=Informasjon som er s\u00f8rget for, til oppf\u00f8ringen
+activitiReviewPooled.workflow.email.body1=Brukeren
+activitiReviewPooled.workflow.email.body2=har s\u00f8rget for den n\u00f8dvendige informasjonen til oppf\u00f8ringen.
+
+rmwf_workflowmodel.type.rmwf_workflowTask.title=Arbeidsflytoppgave
+rmwf_workflowmodel.type.rmwf_workflowTask.decription=Arbeidsflytoppgave
+rmwf_workflowmodel.property.rmwf_requestedInformation.title=Forespurt informasjon
+rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Forespurt informasjon
+rmwf_workflowmodel.property.rmwf_message.title=Melding
+rmwf_workflowmodel.property.rmwf_message.decription=Melding
+
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=Be om informasjonsoppgave
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=Be om informasjonsoppgave
+rmwf_workflowmodel.association.rmwf_mixedAssignees.title=De som tilordnes
+rmwf_workflowmodel.association.rmwf_mixedAssignees.description=De som tilordnes
+
+rmwf_workflowmodel.type.rmwf_requestInfoTask.title=Be om informasjonsoppgave
+rmwf_workflowmodel.type.rmwf_requestInfoTask.description=Be om informasjonsoppgave
+
+rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=Be om informasjonsoppgave
rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.description=Be om informasjonsoppgave
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_nl.properties b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_nl.properties
index b36974a238..1d5c8a921d 100755
--- a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_nl.properties
+++ b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_nl.properties
@@ -1,23 +1,23 @@
-activitiReviewPooled.workflow.info.requested=Informatie aangevraagd voor de record
-activitiReviewPooled.workflow.info.provided=Informatie aangeleverd voor de record
-activitiReviewPooled.workflow.email.subject=Informatie aangeleverd voor de record
-activitiReviewPooled.workflow.email.body1=De gebruiker
-activitiReviewPooled.workflow.email.body2=heeft de vereiste informatie voor de record aangeleverd.
-
-rmwf_workflowmodel.type.rmwf_workflowTask.title=Workflowtaak
-rmwf_workflowmodel.type.rmwf_workflowTask.decription=Workflowtaak
-rmwf_workflowmodel.property.rmwf_requestedInformation.title=Aangevraagde informatie
-rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Aangevraagde informatie
-rmwf_workflowmodel.property.rmwf_message.title=Bericht
-rmwf_workflowmodel.property.rmwf_message.decription=Bericht
-
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=Informatie-aanvraagtaak
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=Informatie-aanvraagtaak
-rmwf_workflowmodel.association.rmwf_mixedAssignees.title=Uitvoerders
-rmwf_workflowmodel.association.rmwf_mixedAssignees.description=Uitvoerders
-
-rmwf_workflowmodel.type.rmwf_requestInfoTask.title=Informatie-aanvraagtaak
-rmwf_workflowmodel.type.rmwf_requestInfoTask.description=Informatie-aanvraagtaak
-
-rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=Informatie-aanvraagtaak
+activitiReviewPooled.workflow.info.requested=Informatie aangevraagd voor de record
+activitiReviewPooled.workflow.info.provided=Informatie aangeleverd voor de record
+activitiReviewPooled.workflow.email.subject=Informatie aangeleverd voor de record
+activitiReviewPooled.workflow.email.body1=De gebruiker
+activitiReviewPooled.workflow.email.body2=heeft de vereiste informatie voor de record aangeleverd.
+
+rmwf_workflowmodel.type.rmwf_workflowTask.title=Workflowtaak
+rmwf_workflowmodel.type.rmwf_workflowTask.decription=Workflowtaak
+rmwf_workflowmodel.property.rmwf_requestedInformation.title=Aangevraagde informatie
+rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Aangevraagde informatie
+rmwf_workflowmodel.property.rmwf_message.title=Bericht
+rmwf_workflowmodel.property.rmwf_message.decription=Bericht
+
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=Informatie-aanvraagtaak
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=Informatie-aanvraagtaak
+rmwf_workflowmodel.association.rmwf_mixedAssignees.title=Uitvoerders
+rmwf_workflowmodel.association.rmwf_mixedAssignees.description=Uitvoerders
+
+rmwf_workflowmodel.type.rmwf_requestInfoTask.title=Informatie-aanvraagtaak
+rmwf_workflowmodel.type.rmwf_requestInfoTask.description=Informatie-aanvraagtaak
+
+rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=Informatie-aanvraagtaak
rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.description=Informatie-aanvraagtaak
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_pt_BR.properties b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_pt_BR.properties
index 3f7d40eb74..b12bc3ed0e 100644
--- a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_pt_BR.properties
+++ b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_pt_BR.properties
@@ -1,23 +1,23 @@
-activitiReviewPooled.workflow.info.requested=Informa\u00e7\u00f5es solicitadas do documento arquiv\u00edstico
-activitiReviewPooled.workflow.info.provided=Informa\u00e7\u00f5es fornecidas do documento arquiv\u00edstico
-activitiReviewPooled.workflow.email.subject=Informa\u00e7\u00f5es fornecidas do documento arquiv\u00edstico
-activitiReviewPooled.workflow.email.body1=O usu\u00e1rio
-activitiReviewPooled.workflow.email.body2=forneceu as informa\u00e7\u00f5es necess\u00e1rias do documento arquiv\u00edstico.
-
-rmwf_workflowmodel.type.rmwf_workflowTask.title=Tarefa de fluxo de trabalho
-rmwf_workflowmodel.type.rmwf_workflowTask.decription=Tarefa de fluxo de trabalho
-rmwf_workflowmodel.property.rmwf_requestedInformation.title=Informa\u00e7\u00f5es solicitadas
-rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Informa\u00e7\u00f5es solicitadas
-rmwf_workflowmodel.property.rmwf_message.title=Mensagem
-rmwf_workflowmodel.property.rmwf_message.decription=Mensagem
-
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=Tarefa de solicita\u00e7\u00e3o de informa\u00e7\u00f5es
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=Tarefa de solicita\u00e7\u00e3o de informa\u00e7\u00f5es
-rmwf_workflowmodel.association.rmwf_mixedAssignees.title=Destinat\u00e1rios
-rmwf_workflowmodel.association.rmwf_mixedAssignees.description=Destinat\u00e1rios
-
-rmwf_workflowmodel.type.rmwf_requestInfoTask.title=Tarefa de solicita\u00e7\u00e3o de informa\u00e7\u00f5es
-rmwf_workflowmodel.type.rmwf_requestInfoTask.description=Tarefa de solicita\u00e7\u00e3o de informa\u00e7\u00f5es
-
-rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=Tarefa de solicita\u00e7\u00e3o de informa\u00e7\u00f5es
+activitiReviewPooled.workflow.info.requested=Informa\u00e7\u00f5es solicitadas do documento arquiv\u00edstico
+activitiReviewPooled.workflow.info.provided=Informa\u00e7\u00f5es fornecidas do documento arquiv\u00edstico
+activitiReviewPooled.workflow.email.subject=Informa\u00e7\u00f5es fornecidas do documento arquiv\u00edstico
+activitiReviewPooled.workflow.email.body1=O usu\u00e1rio
+activitiReviewPooled.workflow.email.body2=forneceu as informa\u00e7\u00f5es necess\u00e1rias do documento arquiv\u00edstico.
+
+rmwf_workflowmodel.type.rmwf_workflowTask.title=Tarefa de fluxo de trabalho
+rmwf_workflowmodel.type.rmwf_workflowTask.decription=Tarefa de fluxo de trabalho
+rmwf_workflowmodel.property.rmwf_requestedInformation.title=Informa\u00e7\u00f5es solicitadas
+rmwf_workflowmodel.property.rmwf_requestedInformation.decription=Informa\u00e7\u00f5es solicitadas
+rmwf_workflowmodel.property.rmwf_message.title=Mensagem
+rmwf_workflowmodel.property.rmwf_message.decription=Mensagem
+
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=Tarefa de solicita\u00e7\u00e3o de informa\u00e7\u00f5es
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=Tarefa de solicita\u00e7\u00e3o de informa\u00e7\u00f5es
+rmwf_workflowmodel.association.rmwf_mixedAssignees.title=Destinat\u00e1rios
+rmwf_workflowmodel.association.rmwf_mixedAssignees.description=Destinat\u00e1rios
+
+rmwf_workflowmodel.type.rmwf_requestInfoTask.title=Tarefa de solicita\u00e7\u00e3o de informa\u00e7\u00f5es
+rmwf_workflowmodel.type.rmwf_requestInfoTask.description=Tarefa de solicita\u00e7\u00e3o de informa\u00e7\u00f5es
+
+rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=Tarefa de solicita\u00e7\u00e3o de informa\u00e7\u00f5es
rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.description=Tarefa de solicita\u00e7\u00e3o de informa\u00e7\u00f5es
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_ru.properties b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_ru.properties
index 9c94c17859..3abcd96a93 100644
--- a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_ru.properties
+++ b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_ru.properties
@@ -1,23 +1,23 @@
-activitiReviewPooled.workflow.info.requested=\u0417\u0430\u043f\u0440\u043e\u0448\u0435\u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043f\u043e \u0437\u0430\u043f\u0438\u0441\u0438
-activitiReviewPooled.workflow.info.provided=\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043f\u043e \u0437\u0430\u043f\u0438\u0441\u0438
-activitiReviewPooled.workflow.email.subject=\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043f\u043e \u0437\u0430\u043f\u0438\u0441\u0438
-activitiReviewPooled.workflow.email.body1=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c
-activitiReviewPooled.workflow.email.body2=\u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u043b \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0443\u044e \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438.
-
-rmwf_workflowmodel.type.rmwf_workflowTask.title=\u0417\u0430\u0434\u0430\u0447\u0430 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
-rmwf_workflowmodel.type.rmwf_workflowTask.decription=\u0417\u0430\u0434\u0430\u0447\u0430 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
-rmwf_workflowmodel.property.rmwf_requestedInformation.title=\u0417\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e
-rmwf_workflowmodel.property.rmwf_requestedInformation.decription=\u0417\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e
-rmwf_workflowmodel.property.rmwf_message.title=\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435
-rmwf_workflowmodel.property.rmwf_message.decription=\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435
-
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=\u0417\u0430\u0434\u0430\u0447\u0430 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=\u0417\u0430\u0434\u0430\u0447\u0430 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438
-rmwf_workflowmodel.association.rmwf_mixedAssignees.title=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438
-rmwf_workflowmodel.association.rmwf_mixedAssignees.description=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438
-
-rmwf_workflowmodel.type.rmwf_requestInfoTask.title=\u0417\u0430\u0434\u0430\u0447\u0430 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438
-rmwf_workflowmodel.type.rmwf_requestInfoTask.description=\u0417\u0430\u0434\u0430\u0447\u0430 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438
-
-rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=\u0417\u0430\u0434\u0430\u0447\u0430 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438
+activitiReviewPooled.workflow.info.requested=\u0417\u0430\u043f\u0440\u043e\u0448\u0435\u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043f\u043e \u0437\u0430\u043f\u0438\u0441\u0438
+activitiReviewPooled.workflow.info.provided=\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043f\u043e \u0437\u0430\u043f\u0438\u0441\u0438
+activitiReviewPooled.workflow.email.subject=\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043f\u043e \u0437\u0430\u043f\u0438\u0441\u0438
+activitiReviewPooled.workflow.email.body1=\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c
+activitiReviewPooled.workflow.email.body2=\u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u043b \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0443\u044e \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438.
+
+rmwf_workflowmodel.type.rmwf_workflowTask.title=\u0417\u0430\u0434\u0430\u0447\u0430 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
+rmwf_workflowmodel.type.rmwf_workflowTask.decription=\u0417\u0430\u0434\u0430\u0447\u0430 \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430
+rmwf_workflowmodel.property.rmwf_requestedInformation.title=\u0417\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e
+rmwf_workflowmodel.property.rmwf_requestedInformation.decription=\u0417\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e
+rmwf_workflowmodel.property.rmwf_message.title=\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435
+rmwf_workflowmodel.property.rmwf_message.decription=\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435
+
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=\u0417\u0430\u0434\u0430\u0447\u0430 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=\u0417\u0430\u0434\u0430\u0447\u0430 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438
+rmwf_workflowmodel.association.rmwf_mixedAssignees.title=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438
+rmwf_workflowmodel.association.rmwf_mixedAssignees.description=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438
+
+rmwf_workflowmodel.type.rmwf_requestInfoTask.title=\u0417\u0430\u0434\u0430\u0447\u0430 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438
+rmwf_workflowmodel.type.rmwf_requestInfoTask.description=\u0417\u0430\u0434\u0430\u0447\u0430 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438
+
+rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=\u0417\u0430\u0434\u0430\u0447\u0430 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438
rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.description=\u0417\u0430\u0434\u0430\u0447\u0430 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_zh_CN.properties b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_zh_CN.properties
index 12047dd7d9..272c703087 100644
--- a/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_zh_CN.properties
+++ b/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_zh_CN.properties
@@ -1,23 +1,23 @@
-activitiReviewPooled.workflow.info.requested=\u4e3a\u8bb0\u5f55\u8bf7\u6c42\u7684\u4fe1\u606f
-activitiReviewPooled.workflow.info.provided=\u4e3a\u8bb0\u5f55\u63d0\u4f9b\u7684\u4fe1\u606f
-activitiReviewPooled.workflow.email.subject=\u4e3a\u8bb0\u5f55\u63d0\u4f9b\u7684\u4fe1\u606f
-activitiReviewPooled.workflow.email.body1=\u7528\u6237
-activitiReviewPooled.workflow.email.body2=\u5df2\u7ecf\u63d0\u4f9b\u8bb0\u5f55\u6240\u9700\u7684\u4fe1\u606f\u3002
-
-rmwf_workflowmodel.type.rmwf_workflowTask.title=\u5de5\u4f5c\u6d41\u7a0b\u4efb\u52a1
-rmwf_workflowmodel.type.rmwf_workflowTask.decription=\u5de5\u4f5c\u6d41\u7a0b\u4efb\u52a1
-rmwf_workflowmodel.property.rmwf_requestedInformation.title=\u8bf7\u6c42\u7684\u4fe1\u606f
-rmwf_workflowmodel.property.rmwf_requestedInformation.decription=\u8bf7\u6c42\u7684\u4fe1\u606f
-rmwf_workflowmodel.property.rmwf_message.title=\u6d88\u606f
-rmwf_workflowmodel.property.rmwf_message.decription=\u6d88\u606f
-
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=\u8bf7\u6c42\u4fe1\u606f\u4efb\u52a1
-rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=\u8bf7\u6c42\u4fe1\u606f\u4efb\u52a1
-rmwf_workflowmodel.association.rmwf_mixedAssignees.title=\u88ab\u6307\u6d3e\u8005\u6570
-rmwf_workflowmodel.association.rmwf_mixedAssignees.description=\u88ab\u6307\u6d3e\u8005\u6570
-
-rmwf_workflowmodel.type.rmwf_requestInfoTask.title=\u8bf7\u6c42\u4fe1\u606f\u4efb\u52a1
-rmwf_workflowmodel.type.rmwf_requestInfoTask.description=\u8bf7\u6c42\u4fe1\u606f\u4efb\u52a1
-
-rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=\u8bf7\u6c42\u4fe1\u606f\u4efb\u52a1
+activitiReviewPooled.workflow.info.requested=\u4e3a\u8bb0\u5f55\u8bf7\u6c42\u7684\u4fe1\u606f
+activitiReviewPooled.workflow.info.provided=\u4e3a\u8bb0\u5f55\u63d0\u4f9b\u7684\u4fe1\u606f
+activitiReviewPooled.workflow.email.subject=\u4e3a\u8bb0\u5f55\u63d0\u4f9b\u7684\u4fe1\u606f
+activitiReviewPooled.workflow.email.body1=\u7528\u6237
+activitiReviewPooled.workflow.email.body2=\u5df2\u7ecf\u63d0\u4f9b\u8bb0\u5f55\u6240\u9700\u7684\u4fe1\u606f\u3002
+
+rmwf_workflowmodel.type.rmwf_workflowTask.title=\u5de5\u4f5c\u6d41\u7a0b\u4efb\u52a1
+rmwf_workflowmodel.type.rmwf_workflowTask.decription=\u5de5\u4f5c\u6d41\u7a0b\u4efb\u52a1
+rmwf_workflowmodel.property.rmwf_requestedInformation.title=\u8bf7\u6c42\u7684\u4fe1\u606f
+rmwf_workflowmodel.property.rmwf_requestedInformation.decription=\u8bf7\u6c42\u7684\u4fe1\u606f
+rmwf_workflowmodel.property.rmwf_message.title=\u6d88\u606f
+rmwf_workflowmodel.property.rmwf_message.decription=\u6d88\u606f
+
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.title=\u8bf7\u6c42\u4fe1\u606f\u4efb\u52a1
+rmwf_workflowmodel.type.rmwf_submitRequestInfoTask.description=\u8bf7\u6c42\u4fe1\u606f\u4efb\u52a1
+rmwf_workflowmodel.association.rmwf_mixedAssignees.title=\u88ab\u6307\u6d3e\u8005\u6570
+rmwf_workflowmodel.association.rmwf_mixedAssignees.description=\u88ab\u6307\u6d3e\u8005\u6570
+
+rmwf_workflowmodel.type.rmwf_requestInfoTask.title=\u8bf7\u6c42\u4fe1\u606f\u4efb\u52a1
+rmwf_workflowmodel.type.rmwf_requestInfoTask.description=\u8bf7\u6c42\u4fe1\u606f\u4efb\u52a1
+
+rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.title=\u8bf7\u6c42\u4fe1\u606f\u4efb\u52a1
rmwf_workflowmodel.type.rmwf_reviewRequestInfoTask.description=\u8bf7\u6c42\u4fe1\u606f\u4efb\u52a1
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/config/alfresco/workflow/rmWorkflowModel.xml b/rm-community/rm-community-repo/config/alfresco/workflow/rmWorkflowModel.xml
index 33bbf8aa52..7ee9da4b23 100644
--- a/rm-community/rm-community-repo/config/alfresco/workflow/rmWorkflowModel.xml
+++ b/rm-community/rm-community-repo/config/alfresco/workflow/rmWorkflowModel.xml
@@ -1,62 +1,62 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- bpm:workflowTask
-
-
- d:text
- true
-
-
- d:text
- true
-
-
-
-
-
- rmwf:workflowTask
-
-
-
- false
- false
-
-
- cm:authority
- true
- true
-
-
-
-
-
-
- rmwf:workflowTask
-
-
-
- rmwf:workflowTask
-
-
- false
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ bpm:workflowTask
+
+
+ d:text
+ true
+
+
+ d:text
+ true
+
+
+
+
+
+ rmwf:workflowTask
+
+
+
+ false
+ false
+
+
+ cm:authority
+ true
+ true
+
+
+
+
+
+
+ rmwf:workflowTask
+
+
+
+ rmwf:workflowTask
+
+
+ false
+
+
+
+
+
\ No newline at end of file
diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_dod5015/caveat/RMListOfValuesConstraint.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_dod5015/caveat/RMListOfValuesConstraint.java
index e02a8a32d2..43d36e830d 100644
--- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_dod5015/caveat/RMListOfValuesConstraint.java
+++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_dod5015/caveat/RMListOfValuesConstraint.java
@@ -1,41 +1,41 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-package org.alfresco.module.org_alfresco_module_dod5015.caveat;
-
-/**
- * Compatibility Implementation.
- *
- * Used as a compatibility implementation when migrating from V1.0 to V2.0. RMCustom model still references
- * this class implementation, but package has been changed.
- *
- * @author Roy Wetherall
- */
-public class RMListOfValuesConstraint extends org.alfresco.module.org_alfresco_module_rm.caveat.RMListOfValuesConstraint
-{
- // No implementation
-}
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+package org.alfresco.module.org_alfresco_module_dod5015.caveat;
+
+/**
+ * Compatibility Implementation.
+ *
+ * Used as a compatibility implementation when migrating from V1.0 to V2.0. RMCustom model still references
+ * this class implementation, but package has been changed.
+ *
+ * @author Roy Wetherall
+ */
+public class RMListOfValuesConstraint extends org.alfresco.module.org_alfresco_module_rm.caveat.RMListOfValuesConstraint
+{
+ // No implementation
+}
diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/CannotApplyConstraintMetadataException.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/CannotApplyConstraintMetadataException.java
index df58361a2f..3cf37d9a8e 100644
--- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/CannotApplyConstraintMetadataException.java
+++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/CannotApplyConstraintMetadataException.java
@@ -1,45 +1,45 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-package org.alfresco.module.org_alfresco_module_rm;
-
-import org.alfresco.service.namespace.QName;
-import org.springframework.extensions.surf.util.I18NUtil;
-
-/**
- * @deprecated as of 2.1 see {@link org.alfresco.module.org_alfresco_module_rm.admin.CannotApplyConstraintMetadataException}
- */
-public class CannotApplyConstraintMetadataException extends CustomMetadataException
-{
- private static final long serialVersionUID = -6194867814140009959L;
- public static final String MSG_CANNOT_APPLY_CONSTRAINT = "rm.admin.cannot-apply-constraint";
-
- public CannotApplyConstraintMetadataException(QName lovConstraint, String propIdAsString, QName dataType)
- {
- super(I18NUtil.getMessage(CannotApplyConstraintMetadataException.MSG_CANNOT_APPLY_CONSTRAINT, lovConstraint, propIdAsString, dataType));
- }
-}
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+package org.alfresco.module.org_alfresco_module_rm;
+
+import org.alfresco.service.namespace.QName;
+import org.springframework.extensions.surf.util.I18NUtil;
+
+/**
+ * @deprecated as of 2.1 see {@link org.alfresco.module.org_alfresco_module_rm.admin.CannotApplyConstraintMetadataException}
+ */
+public class CannotApplyConstraintMetadataException extends CustomMetadataException
+{
+ private static final long serialVersionUID = -6194867814140009959L;
+ public static final String MSG_CANNOT_APPLY_CONSTRAINT = "rm.admin.cannot-apply-constraint";
+
+ public CannotApplyConstraintMetadataException(QName lovConstraint, String propIdAsString, QName dataType)
+ {
+ super(I18NUtil.getMessage(CannotApplyConstraintMetadataException.MSG_CANNOT_APPLY_CONSTRAINT, lovConstraint, propIdAsString, dataType));
+ }
+}
diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/CustomMetadataException.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/CustomMetadataException.java
index 876406b601..67de31ca00 100644
--- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/CustomMetadataException.java
+++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/CustomMetadataException.java
@@ -1,41 +1,41 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-package org.alfresco.module.org_alfresco_module_rm;
-
-/**
- * @deprecated as of 2.1 see {@link org.alfresco.module.org_alfresco_module_rm.admin.CustomMetadataException}
- */
-public abstract class CustomMetadataException extends Exception
-{
- private static final long serialVersionUID = -6676112294794381360L;
-
- public CustomMetadataException(String msg)
- {
- super(msg);
- }
-}
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+package org.alfresco.module.org_alfresco_module_rm;
+
+/**
+ * @deprecated as of 2.1 see {@link org.alfresco.module.org_alfresco_module_rm.admin.CustomMetadataException}
+ */
+public abstract class CustomMetadataException extends Exception
+{
+ private static final long serialVersionUID = -6676112294794381360L;
+
+ public CustomMetadataException(String msg)
+ {
+ super(msg);
+ }
+}
diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/InvalidCustomAspectMetadataException.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/InvalidCustomAspectMetadataException.java
index e23d5796ee..e7cb3ce053 100644
--- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/InvalidCustomAspectMetadataException.java
+++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/InvalidCustomAspectMetadataException.java
@@ -1,45 +1,45 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-package org.alfresco.module.org_alfresco_module_rm;
-
-import org.alfresco.service.namespace.QName;
-import org.springframework.extensions.surf.util.I18NUtil;
-
-/**
- * @deprecated as of 2.1 see {@link org.alfresco.module.org_alfresco_module_rm.admin.InvalidCustomAspectMetadataException}
- */
-public class InvalidCustomAspectMetadataException extends CustomMetadataException
-{
- private static final long serialVersionUID = -6194867814140009959L;
- public static final String MSG_INVALID_CUSTOM_ASPECT = "rm.admin.invalid-custom-aspect";
-
- public InvalidCustomAspectMetadataException(QName customAspect, String aspectName)
- {
- super(I18NUtil.getMessage(MSG_INVALID_CUSTOM_ASPECT, customAspect, aspectName));
- }
-}
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+package org.alfresco.module.org_alfresco_module_rm;
+
+import org.alfresco.service.namespace.QName;
+import org.springframework.extensions.surf.util.I18NUtil;
+
+/**
+ * @deprecated as of 2.1 see {@link org.alfresco.module.org_alfresco_module_rm.admin.InvalidCustomAspectMetadataException}
+ */
+public class InvalidCustomAspectMetadataException extends CustomMetadataException
+{
+ private static final long serialVersionUID = -6194867814140009959L;
+ public static final String MSG_INVALID_CUSTOM_ASPECT = "rm.admin.invalid-custom-aspect";
+
+ public InvalidCustomAspectMetadataException(QName customAspect, String aspectName)
+ {
+ super(I18NUtil.getMessage(MSG_INVALID_CUSTOM_ASPECT, customAspect, aspectName));
+ }
+}
diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/NotCustomisableMetadataException.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/NotCustomisableMetadataException.java
index 318512bc7d..ae8c3586b4 100644
--- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/NotCustomisableMetadataException.java
+++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/NotCustomisableMetadataException.java
@@ -1,44 +1,44 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-package org.alfresco.module.org_alfresco_module_rm;
-
-import org.springframework.extensions.surf.util.I18NUtil;
-
-/**
- * @deprecated as of 2.1 see {@link org.alfresco.module.org_alfresco_module_rm.admin.NotCustomisableMetadataException}
- */
-public class NotCustomisableMetadataException extends CustomMetadataException
-{
- private static final long serialVersionUID = -6194867814140009959L;
- public static final String MSG_NOT_CUSTOMISABLE = "rm.admin.not-customisable";
-
- public NotCustomisableMetadataException(String aspectName)
- {
- super(I18NUtil.getMessage(MSG_NOT_CUSTOMISABLE, aspectName));
- }
-}
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+package org.alfresco.module.org_alfresco_module_rm;
+
+import org.springframework.extensions.surf.util.I18NUtil;
+
+/**
+ * @deprecated as of 2.1 see {@link org.alfresco.module.org_alfresco_module_rm.admin.NotCustomisableMetadataException}
+ */
+public class NotCustomisableMetadataException extends CustomMetadataException
+{
+ private static final long serialVersionUID = -6194867814140009959L;
+ public static final String MSG_NOT_CUSTOMISABLE = "rm.admin.not-customisable";
+
+ public NotCustomisableMetadataException(String aspectName)
+ {
+ super(I18NUtil.getMessage(MSG_NOT_CUSTOMISABLE, aspectName));
+ }
+}
diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/PropertyAlreadyExistsMetadataException.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/PropertyAlreadyExistsMetadataException.java
index 5ede0622b4..f7d24d89f7 100644
--- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/PropertyAlreadyExistsMetadataException.java
+++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/PropertyAlreadyExistsMetadataException.java
@@ -1,45 +1,45 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-package org.alfresco.module.org_alfresco_module_rm;
-
-import org.springframework.extensions.surf.util.I18NUtil;
-
-/**
- * @deprecated as of 2.1 see {@link org.alfresco.module.org_alfresco_module_rm.admin.PropertyAlreadyExistsMetadataException}
- */
-public class PropertyAlreadyExistsMetadataException extends CustomMetadataException
-{
- private static final long serialVersionUID = -6194867814140009959L;
-
- public static final String MSG_PROPERTY_ALREADY_EXISTS = "rm.admin.property-already-exists";
-
- public PropertyAlreadyExistsMetadataException(String propIdAsString)
- {
- super(I18NUtil.getMessage(MSG_PROPERTY_ALREADY_EXISTS, propIdAsString));
- }
-}
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+package org.alfresco.module.org_alfresco_module_rm;
+
+import org.springframework.extensions.surf.util.I18NUtil;
+
+/**
+ * @deprecated as of 2.1 see {@link org.alfresco.module.org_alfresco_module_rm.admin.PropertyAlreadyExistsMetadataException}
+ */
+public class PropertyAlreadyExistsMetadataException extends CustomMetadataException
+{
+ private static final long serialVersionUID = -6194867814140009959L;
+
+ public static final String MSG_PROPERTY_ALREADY_EXISTS = "rm.admin.property-already-exists";
+
+ public PropertyAlreadyExistsMetadataException(String propIdAsString)
+ {
+ super(I18NUtil.getMessage(MSG_PROPERTY_ALREADY_EXISTS, propIdAsString));
+ }
+}
diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementAdminService.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementAdminService.java
index 28411c873e..5e6710736a 100644
--- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementAdminService.java
+++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementAdminService.java
@@ -1,37 +1,37 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-package org.alfresco.module.org_alfresco_module_rm;
-
-/**
- * @deprecated as of 2.1 see {@link org.alfresco.module.org_alfresco_module_rm.admin.RecordsManagementAdminService}
- */
-public interface RecordsManagementAdminService
- extends org.alfresco.module.org_alfresco_module_rm.admin.RecordsManagementAdminService
-{
-
-}
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+package org.alfresco.module.org_alfresco_module_rm;
+
+/**
+ * @deprecated as of 2.1 see {@link org.alfresco.module.org_alfresco_module_rm.admin.RecordsManagementAdminService}
+ */
+public interface RecordsManagementAdminService
+ extends org.alfresco.module.org_alfresco_module_rm.admin.RecordsManagementAdminService
+{
+
+}
diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementService.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementService.java
index d438fda846..f6a5973873 100644
--- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementService.java
+++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementService.java
@@ -1,308 +1,308 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-package org.alfresco.module.org_alfresco_module_rm;
-
-import java.io.Serializable;
-import java.util.List;
-import java.util.Map;
-import java.util.Set;
-
-import org.alfresco.module.org_alfresco_module_rm.disposition.DispositionService;
-import org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanComponentKind;
-import org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanService;
-import org.alfresco.module.org_alfresco_module_rm.freeze.FreezeService;
-import org.alfresco.module.org_alfresco_module_rm.record.RecordService;
-import org.alfresco.module.org_alfresco_module_rm.recordfolder.RecordFolderService;
-import org.alfresco.module.org_alfresco_module_rm.transfer.TransferService;
-import org.alfresco.service.cmr.repository.NodeRef;
-import org.alfresco.service.namespace.QName;
-
-/**
- * Records management service interface.
- *
- * Allows simple creation, manipulation and querying of records management components.
- *
- * @author Roy Wetherall
- * @deprecated as of 2.2
- */
-public interface RecordsManagementService
-{
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#isFilePlan(NodeRef)}
- */
- @Deprecated
- boolean isFilePlanComponent(NodeRef nodeRef);
-
- /**
- * @since 2.0
- * @deprecated As of 2.1, see {@link FilePlanService#getFilePlanComponentKind(NodeRef)}
- */
- @Deprecated
- FilePlanComponentKind getFilePlanComponentKind(NodeRef nodeRef);
-
- /**
- * @since 2.0
- * @deprecated As of 2.1, see {@link FilePlanService#getFilePlanComponentKindFromType(QName)}
- */
- @Deprecated
- FilePlanComponentKind getFilePlanComponentKindFromType(QName type);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#isFilePlanContainer(NodeRef)}
- */
- @Deprecated
- boolean isRecordsManagementContainer(NodeRef nodeRef);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#isFilePlan(NodeRef)}
- */
- @Deprecated
- boolean isFilePlan(NodeRef nodeRef);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#isRecordCategory(NodeRef)}
- */
- @Deprecated
- boolean isRecordCategory(NodeRef nodeRef);
-
- /**
- * @deprecated As of 2.2, see {@link RecordFolderService#isRecordFolder(NodeRef)}
- */
- @Deprecated
- boolean isRecordFolder(NodeRef nodeRef);
-
- /**
- * @since 2.0
- * @deprecated As of 2.2, see {@link TransferService#isTransfer(NodeRef)}
- */
- @Deprecated
- boolean isTransfer(NodeRef nodeRef);
-
- /**
- * @since 2.0
- * @deprecated As of 2.2, see {@link RecordService#isMetadataStub(NodeRef)}
- */
- @Deprecated
- boolean isMetadataStub(NodeRef nodeRef);
-
- /**
- * @since 2.0
- * @deprecated As of 2.2, see {@link DispositionService#isDisposableItemCutoff(NodeRef)}
- */
- boolean isCutoff(NodeRef nodeRef);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getNodeRefPath(NodeRef)}
- */
- @Deprecated
- List getNodeRefPath(NodeRef nodeRef);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getFilePlan(NodeRef)}
- */
- @Deprecated
- NodeRef getFilePlan(NodeRef nodeRef);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getFilePlans()}
- */
- @Deprecated
- List getFilePlans();
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#createFilePlan(NodeRef, String, QName)}
- */
- @Deprecated
- NodeRef createFilePlan(NodeRef parent, String name, QName type);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#createFilePlan(NodeRef, String, QName, Map)}
- */
- @Deprecated
- NodeRef createFilePlan(NodeRef parent, String name, QName type, Map properties);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#createFilePlan(NodeRef, String)}
- */
- @Deprecated
- NodeRef createFilePlan(NodeRef parent, String name);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#createFilePlan(NodeRef, String, Map)}
- */
- @Deprecated
- NodeRef createFilePlan(NodeRef parent, String name, Map properties);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getAllContained(NodeRef, boolean)}
- */
- @Deprecated
- List getAllContained(NodeRef recordCategory, boolean deep);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getAllContained(NodeRef)}
- */
- @Deprecated
- List getAllContained(NodeRef recordCategory);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getContainedRecordCategories(NodeRef, boolean)}
- */
- @Deprecated
- List getContainedRecordCategories(NodeRef recordCategory, boolean deep);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getContainedRecordCategories(NodeRef)}
- */
- @Deprecated
- List getContainedRecordCategories(NodeRef recordCategory);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getContainedRecordCategories(NodeRef, boolean)}
- */
- @Deprecated
- List getContainedRecordFolders(NodeRef container, boolean deep);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getContainedRecordFolders(NodeRef)}
- */
- @Deprecated
- List getContainedRecordFolders(NodeRef container);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#createRecordCategory(NodeRef, String, QName)}
- */
- @Deprecated
- NodeRef createRecordCategory(NodeRef parent, String name, QName type);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#createRecordCategory(NodeRef, String, QName, Map)}
- */
- @Deprecated
- NodeRef createRecordCategory(NodeRef parent, String name, QName type, Map properties);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#createRecordCategory(NodeRef, String)}
- */
- @Deprecated
- NodeRef createRecordCategory(NodeRef parent, String name);
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#createRecordCategory(NodeRef, String, Map)}
- */
- @Deprecated
- NodeRef createRecordCategory(NodeRef parent, String name, Map properties);
-
- /**
- * @deprecated As of 2.2, see {@link RecordFolderService#isRecordFolderDeclared(NodeRef)}
- */
- @Deprecated
- boolean isRecordFolderDeclared(NodeRef nodeRef);
-
- /**
- * @since 2.0
- * @deprecated As of 2.2, see {@link RecordFolderService#isRecordFolderClosed(NodeRef)}
- */
- @Deprecated
- boolean isRecordFolderClosed(NodeRef nodeRef);
-
- /**
- * @deprecated As of 2.2, see {@link RecordFolderService#createRecordFolder(NodeRef, String, QName)}
- */
- @Deprecated
- NodeRef createRecordFolder(NodeRef rmContainer, String name, QName type);
-
- /**
- * @deprecated As of 2.2, see {@link RecordFolderService#createRecordFolder(NodeRef, String, QName, Map)}
- */
- @Deprecated
- NodeRef createRecordFolder(NodeRef rmContainer, String name, QName type, Map properties);
-
- /**
- * @deprecated As of 2.2, see {@link RecordFolderService#createRecordFolder(NodeRef, String)}
- */
- @Deprecated
- NodeRef createRecordFolder(NodeRef parent, String name);
-
- /**
- * @deprecated As of 2.2, see {@link RecordFolderService#createRecordFolder(NodeRef, String, Map)
- */
- @Deprecated
- NodeRef createRecordFolder(NodeRef parent, String name, Map properties);
-
- /**
- * @deprecated As of 2.2, see {@link RecordService#getRecords(NodeRef)}
- */
- @Deprecated
- List getRecords(NodeRef recordFolder);
-
- /**
- * @deprecated As of 2.2, see {@link RecordFolderService#getRecordFolders(NodeRef)}
- */
- @Deprecated
- List getRecordFolders(NodeRef record);
-
- /**
- * @deprecated As of 2.1, replaced by {@link RecordService#getRecordMetaDataAspects()}
- */
- @Deprecated
- Set getRecordMetaDataAspects();
-
- /**
- * @deprecated As of 2.1, replaced by {@link RecordService#isDeclared(NodeRef)}
- */
- @Deprecated
- boolean isRecordDeclared(NodeRef nodeRef);
-
- /**
- * @since 2.0
- * @deprecated As of 2.1, replaced by {@link FreezeService#isHold(NodeRef)}
- */
- @Deprecated
- boolean isHold(NodeRef nodeRef);
-
- /**
- * @since 2.0
- * @deprecated As of 2.1, replaced by {@link FreezeService#isFrozen(NodeRef)}
- */
- @Deprecated
- boolean isFrozen(NodeRef nodeRef);
-
- /**
- * @since 2.0
- * @deprecated As of 2.1, replaced by {@link FreezeService#hasFrozenChildren(NodeRef)}
- */
- @Deprecated
- boolean hasFrozenChildren(NodeRef nodeRef);
-
- /**
- * @deprecated As of 2.1, replaced by {@link RecordService#isRecord(NodeRef)}
- */
- @Deprecated
- boolean isRecord(NodeRef nodeRef);
-}
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+package org.alfresco.module.org_alfresco_module_rm;
+
+import java.io.Serializable;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+
+import org.alfresco.module.org_alfresco_module_rm.disposition.DispositionService;
+import org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanComponentKind;
+import org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanService;
+import org.alfresco.module.org_alfresco_module_rm.freeze.FreezeService;
+import org.alfresco.module.org_alfresco_module_rm.record.RecordService;
+import org.alfresco.module.org_alfresco_module_rm.recordfolder.RecordFolderService;
+import org.alfresco.module.org_alfresco_module_rm.transfer.TransferService;
+import org.alfresco.service.cmr.repository.NodeRef;
+import org.alfresco.service.namespace.QName;
+
+/**
+ * Records management service interface.
+ *
+ * Allows simple creation, manipulation and querying of records management components.
+ *
+ * @author Roy Wetherall
+ * @deprecated as of 2.2
+ */
+public interface RecordsManagementService
+{
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#isFilePlan(NodeRef)}
+ */
+ @Deprecated
+ boolean isFilePlanComponent(NodeRef nodeRef);
+
+ /**
+ * @since 2.0
+ * @deprecated As of 2.1, see {@link FilePlanService#getFilePlanComponentKind(NodeRef)}
+ */
+ @Deprecated
+ FilePlanComponentKind getFilePlanComponentKind(NodeRef nodeRef);
+
+ /**
+ * @since 2.0
+ * @deprecated As of 2.1, see {@link FilePlanService#getFilePlanComponentKindFromType(QName)}
+ */
+ @Deprecated
+ FilePlanComponentKind getFilePlanComponentKindFromType(QName type);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#isFilePlanContainer(NodeRef)}
+ */
+ @Deprecated
+ boolean isRecordsManagementContainer(NodeRef nodeRef);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#isFilePlan(NodeRef)}
+ */
+ @Deprecated
+ boolean isFilePlan(NodeRef nodeRef);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#isRecordCategory(NodeRef)}
+ */
+ @Deprecated
+ boolean isRecordCategory(NodeRef nodeRef);
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordFolderService#isRecordFolder(NodeRef)}
+ */
+ @Deprecated
+ boolean isRecordFolder(NodeRef nodeRef);
+
+ /**
+ * @since 2.0
+ * @deprecated As of 2.2, see {@link TransferService#isTransfer(NodeRef)}
+ */
+ @Deprecated
+ boolean isTransfer(NodeRef nodeRef);
+
+ /**
+ * @since 2.0
+ * @deprecated As of 2.2, see {@link RecordService#isMetadataStub(NodeRef)}
+ */
+ @Deprecated
+ boolean isMetadataStub(NodeRef nodeRef);
+
+ /**
+ * @since 2.0
+ * @deprecated As of 2.2, see {@link DispositionService#isDisposableItemCutoff(NodeRef)}
+ */
+ boolean isCutoff(NodeRef nodeRef);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getNodeRefPath(NodeRef)}
+ */
+ @Deprecated
+ List getNodeRefPath(NodeRef nodeRef);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getFilePlan(NodeRef)}
+ */
+ @Deprecated
+ NodeRef getFilePlan(NodeRef nodeRef);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getFilePlans()}
+ */
+ @Deprecated
+ List getFilePlans();
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#createFilePlan(NodeRef, String, QName)}
+ */
+ @Deprecated
+ NodeRef createFilePlan(NodeRef parent, String name, QName type);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#createFilePlan(NodeRef, String, QName, Map)}
+ */
+ @Deprecated
+ NodeRef createFilePlan(NodeRef parent, String name, QName type, Map properties);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#createFilePlan(NodeRef, String)}
+ */
+ @Deprecated
+ NodeRef createFilePlan(NodeRef parent, String name);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#createFilePlan(NodeRef, String, Map)}
+ */
+ @Deprecated
+ NodeRef createFilePlan(NodeRef parent, String name, Map properties);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getAllContained(NodeRef, boolean)}
+ */
+ @Deprecated
+ List getAllContained(NodeRef recordCategory, boolean deep);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getAllContained(NodeRef)}
+ */
+ @Deprecated
+ List getAllContained(NodeRef recordCategory);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getContainedRecordCategories(NodeRef, boolean)}
+ */
+ @Deprecated
+ List getContainedRecordCategories(NodeRef recordCategory, boolean deep);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getContainedRecordCategories(NodeRef)}
+ */
+ @Deprecated
+ List getContainedRecordCategories(NodeRef recordCategory);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getContainedRecordCategories(NodeRef, boolean)}
+ */
+ @Deprecated
+ List getContainedRecordFolders(NodeRef container, boolean deep);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getContainedRecordFolders(NodeRef)}
+ */
+ @Deprecated
+ List getContainedRecordFolders(NodeRef container);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#createRecordCategory(NodeRef, String, QName)}
+ */
+ @Deprecated
+ NodeRef createRecordCategory(NodeRef parent, String name, QName type);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#createRecordCategory(NodeRef, String, QName, Map)}
+ */
+ @Deprecated
+ NodeRef createRecordCategory(NodeRef parent, String name, QName type, Map properties);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#createRecordCategory(NodeRef, String)}
+ */
+ @Deprecated
+ NodeRef createRecordCategory(NodeRef parent, String name);
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#createRecordCategory(NodeRef, String, Map)}
+ */
+ @Deprecated
+ NodeRef createRecordCategory(NodeRef parent, String name, Map properties);
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordFolderService#isRecordFolderDeclared(NodeRef)}
+ */
+ @Deprecated
+ boolean isRecordFolderDeclared(NodeRef nodeRef);
+
+ /**
+ * @since 2.0
+ * @deprecated As of 2.2, see {@link RecordFolderService#isRecordFolderClosed(NodeRef)}
+ */
+ @Deprecated
+ boolean isRecordFolderClosed(NodeRef nodeRef);
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordFolderService#createRecordFolder(NodeRef, String, QName)}
+ */
+ @Deprecated
+ NodeRef createRecordFolder(NodeRef rmContainer, String name, QName type);
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordFolderService#createRecordFolder(NodeRef, String, QName, Map)}
+ */
+ @Deprecated
+ NodeRef createRecordFolder(NodeRef rmContainer, String name, QName type, Map properties);
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordFolderService#createRecordFolder(NodeRef, String)}
+ */
+ @Deprecated
+ NodeRef createRecordFolder(NodeRef parent, String name);
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordFolderService#createRecordFolder(NodeRef, String, Map)
+ */
+ @Deprecated
+ NodeRef createRecordFolder(NodeRef parent, String name, Map properties);
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordService#getRecords(NodeRef)}
+ */
+ @Deprecated
+ List getRecords(NodeRef recordFolder);
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordFolderService#getRecordFolders(NodeRef)}
+ */
+ @Deprecated
+ List getRecordFolders(NodeRef record);
+
+ /**
+ * @deprecated As of 2.1, replaced by {@link RecordService#getRecordMetaDataAspects()}
+ */
+ @Deprecated
+ Set getRecordMetaDataAspects();
+
+ /**
+ * @deprecated As of 2.1, replaced by {@link RecordService#isDeclared(NodeRef)}
+ */
+ @Deprecated
+ boolean isRecordDeclared(NodeRef nodeRef);
+
+ /**
+ * @since 2.0
+ * @deprecated As of 2.1, replaced by {@link FreezeService#isHold(NodeRef)}
+ */
+ @Deprecated
+ boolean isHold(NodeRef nodeRef);
+
+ /**
+ * @since 2.0
+ * @deprecated As of 2.1, replaced by {@link FreezeService#isFrozen(NodeRef)}
+ */
+ @Deprecated
+ boolean isFrozen(NodeRef nodeRef);
+
+ /**
+ * @since 2.0
+ * @deprecated As of 2.1, replaced by {@link FreezeService#hasFrozenChildren(NodeRef)}
+ */
+ @Deprecated
+ boolean hasFrozenChildren(NodeRef nodeRef);
+
+ /**
+ * @deprecated As of 2.1, replaced by {@link RecordService#isRecord(NodeRef)}
+ */
+ @Deprecated
+ boolean isRecord(NodeRef nodeRef);
+}
diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementServiceImpl.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementServiceImpl.java
index 31a9e26a37..0d49574dad 100644
--- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementServiceImpl.java
+++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementServiceImpl.java
@@ -1,504 +1,504 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-package org.alfresco.module.org_alfresco_module_rm;
-
-import java.io.Serializable;
-import java.util.ArrayList;
-import java.util.List;
-import java.util.Map;
-import java.util.Set;
-
-import org.alfresco.module.org_alfresco_module_rm.disposition.DispositionService;
-import org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanComponentKind;
-import org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanService;
-import org.alfresco.module.org_alfresco_module_rm.freeze.FreezeService;
-import org.alfresco.module.org_alfresco_module_rm.model.RecordsManagementModel;
-import org.alfresco.module.org_alfresco_module_rm.record.RecordService;
-import org.alfresco.module.org_alfresco_module_rm.recordfolder.RecordFolderService;
-import org.alfresco.module.org_alfresco_module_rm.transfer.TransferService;
-import org.alfresco.module.org_alfresco_module_rm.util.ServiceBaseImpl;
-import org.alfresco.service.cmr.repository.NodeRef;
-import org.alfresco.service.cmr.repository.StoreRef;
-import org.alfresco.service.namespace.QName;
-
-/**
- * Records management service implementation.
- *
- * @author Roy Wetherall
- * @deprecated as of 2.2
- */
-public class RecordsManagementServiceImpl extends ServiceBaseImpl
- implements RecordsManagementService,
- RecordsManagementModel
-{
- /** Store that the RM roots are contained within */
- @SuppressWarnings("unused")
- @Deprecated
- private StoreRef defaultStoreRef = StoreRef.STORE_REF_WORKSPACE_SPACESSTORE;
-
- /** Service registry */
- private RecordsManagementServiceRegistry serviceRegistry;
-
- /**
- * Set the service registry service
- *
- * @param serviceRegistry service registry
- */
- public void setRecordsManagementServiceRegistry(RecordsManagementServiceRegistry serviceRegistry)
- {
- // Internal ops use the unprotected services from the voter (e.g. nodeService)
- this.serviceRegistry = serviceRegistry;
- this.dictionaryService = serviceRegistry.getDictionaryService();
- }
-
- /**
- * Sets the default RM store reference
- * @param defaultStoreRef store reference
- */
- @Deprecated
- public void setDefaultStoreRef(StoreRef defaultStoreRef)
- {
- this.defaultStoreRef = defaultStoreRef;
- }
-
- /**
- * @return File plan service
- */
- private FilePlanService getFilePlanService()
- {
- return serviceRegistry.getFilePlanService();
- }
-
- /**
- * @return Record Folder Service
- */
- private RecordFolderService getRecordFolderService()
- {
- return serviceRegistry.getRecordFolderService();
- }
-
- /**
- * @return Record Service
- */
- private RecordService getRecordService()
- {
- return serviceRegistry.getRecordService();
- }
-
- /**
- * @return Freeze Service
- */
- private FreezeService getFreezeService()
- {
- return serviceRegistry.getFreezeService();
- }
-
- /**
- * @return Disposition Service
- */
- private DispositionService getDispositionService()
- {
- return serviceRegistry.getDispositionService();
- }
-
- /**
- * @return Transfer service
- */
- private TransferService getTransferService()
- {
- return serviceRegistry.getTransferService();
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#isFilePlanComponent(NodeRef)}
- */
- @Override
- public boolean isFilePlanComponent(NodeRef nodeRef)
- {
- return getFilePlanService().isFilePlanComponent(nodeRef);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getFilePlanComponentKind(NodeRef)}
- */
- @Override
- public FilePlanComponentKind getFilePlanComponentKind(NodeRef nodeRef)
- {
- return getFilePlanService().getFilePlanComponentKind(nodeRef);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getFilePlanComponentKindFromType(QName)}
- */
- @Override
- public FilePlanComponentKind getFilePlanComponentKindFromType(QName type)
- {
- return getFilePlanService().getFilePlanComponentKindFromType(type);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#isFilePlanContainer(NodeRef)}
- */
- @Override
- public boolean isRecordsManagementContainer(NodeRef nodeRef)
- {
- return getFilePlanService().isFilePlanContainer(nodeRef);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#isFilePlan(NodeRef)}
- */
- @Override
- public boolean isFilePlan(NodeRef nodeRef)
- {
- return getFilePlanService().isFilePlan(nodeRef);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#isRecordCategory(NodeRef)}
- */
- @Override
- public boolean isRecordCategory(NodeRef nodeRef)
- {
- return getFilePlanService().isRecordCategory(nodeRef);
- }
-
- /**
- * @deprecated As of 2.2, see {@link RecordFolderService#isRecordFolder(NodeRef)}
- */
- @Override
- public boolean isRecordFolder(NodeRef nodeRef)
- {
- return getRecordFolderService().isRecordFolder(nodeRef);
- }
-
- /**
- * @deprecated As of 2.2, see {@link TransferService#isTransfer(NodeRef)}
- */
- @Override
- public boolean isTransfer(NodeRef nodeRef)
- {
- return getTransferService().isTransfer(nodeRef);
- }
-
- /**
- * @deprecated As of 2.2, see {@link RecordService#isMetadataStub(NodeRef)}
- */
- @Override
- public boolean isMetadataStub(NodeRef nodeRef)
- {
- return getRecordService().isMetadataStub(nodeRef);
- }
-
- /**
- * @deprecated As of 2.2, see {@link DispositionService#isDisposableItemCutoff(NodeRef)}
- */
- @Override
- public boolean isCutoff(NodeRef nodeRef)
- {
- return getDispositionService().isDisposableItemCutoff(nodeRef);
- }
-
- /**
- * @deprecated as of 2.1, see {@link FilePlanService#getNodeRefPath(NodeRef)}
- */
- @Override
- public List getNodeRefPath(NodeRef nodeRef)
- {
- return getFilePlanService().getNodeRefPath(nodeRef);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getFilePlan(NodeRef)}
- */
- @Override
- public NodeRef getFilePlan(NodeRef nodeRef)
- {
- return getFilePlanService().getFilePlan(nodeRef);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getFilePlans()}
- */
- @Override
- public List getFilePlans()
- {
- return new ArrayList(getFilePlanService().getFilePlans());
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#createFilePlan(NodeRef, String, QName)}
- */
- @Override
- public NodeRef createFilePlan(NodeRef parent, String name, QName type)
- {
- return getFilePlanService().createFilePlan(parent, name, type);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#createFilePlan(NodeRef, String, QName, Map)}
- */
- @Override
- public NodeRef createFilePlan(NodeRef parent, String name, QName type, Map properties)
- {
- return getFilePlanService().createFilePlan(parent, name, type, properties);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#createFilePlan(NodeRef, String)}
- */
- @Override
- public NodeRef createFilePlan(NodeRef parent, String name)
- {
- return getFilePlanService().createFilePlan(parent, name);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#createFilePlan(NodeRef, String, Map)}
- */
- @Override
- public NodeRef createFilePlan(NodeRef parent, String name, Map properties)
- {
- return getFilePlanService().createFilePlan(parent, name, properties);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getAllContained(NodeRef, boolean)}
- */
- @Override
- public List getAllContained(NodeRef container, boolean deep)
- {
- return getFilePlanService().getAllContained(container, deep);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getAllContained(NodeRef)}
- */
- @Override
- public List getAllContained(NodeRef container)
- {
- return getFilePlanService().getAllContained(container);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getContainedRecordCategories(NodeRef, boolean)}
- */
- @Override
- public List getContainedRecordCategories(NodeRef container, boolean deep)
- {
- return getFilePlanService().getContainedRecordCategories(container, deep);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getContainedRecordCategories(NodeRef)}
- */
- @Override
- public List getContainedRecordCategories(NodeRef container)
- {
- return getFilePlanService().getContainedRecordCategories(container);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getContainedRecordFolders(NodeRef, boolean)}
- */
- @Override
- public List getContainedRecordFolders(NodeRef container, boolean deep)
- {
- return getFilePlanService().getContainedRecordFolders(container, deep);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#getContainedRecordFolders(NodeRef)}
- */
- @Override
- public List getContainedRecordFolders(NodeRef container)
- {
- return getFilePlanService().getContainedRecordFolders(container);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#createRecordCategory(NodeRef, String, QName)}
- */
- @Override
- public NodeRef createRecordCategory(NodeRef parent, String name, QName type)
- {
- return getFilePlanService().createRecordCategory(parent, name, type);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#createRecordCategory(NodeRef, String, QName, Map)}
- */
- @Override
- public NodeRef createRecordCategory(NodeRef parent, String name, QName type, Map properties)
- {
- return getFilePlanService().createRecordCategory(parent, name, type, properties);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#createRecordCategory(NodeRef, String)}
- */
- @Override
- public NodeRef createRecordCategory(NodeRef parent, String name)
- {
- return getFilePlanService().createRecordCategory(parent, name);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FilePlanService#createRecordCategory(NodeRef, String, Map)}
- */
- public NodeRef createRecordCategory(NodeRef parent, String name, Map properties)
- {
- return getFilePlanService().createRecordCategory(parent, name, properties);
- }
-
- /**
- * @deprecated As of 2.2, see {@link RecordFolderService#isRecordFolderDeclared(NodeRef)}
- */
- @Override
- public boolean isRecordFolderDeclared(NodeRef recordFolder)
- {
- return getRecordFolderService().isRecordFolderDeclared(recordFolder);
- }
-
- /**
- * @deprecated As of 2.2, see {@link RecordFolderService#isRecordFolderClosed(NodeRef)}
- */
- @Override
- public boolean isRecordFolderClosed(NodeRef nodeRef)
- {
- return getRecordFolderService().isRecordFolderClosed(nodeRef);
- }
-
- /**
- * @deprecated As of 2.2, see {@link RecordFolderService#createRecordFolder(NodeRef, String, QName)}
- */
- @Override
- public NodeRef createRecordFolder(NodeRef parent, String name, QName type)
- {
- return getRecordFolderService().createRecordFolder(parent, name, type);
- }
-
- /**
- * @deprecated As of 2.2, see {@link RecordFolderService#createRecordFolder(NodeRef, String, QName, Map)}
- */
- @Override
- public NodeRef createRecordFolder(NodeRef rmContainer, String name, QName type, Map properties)
- {
- return getRecordFolderService().createRecordFolder(rmContainer, name, type, properties);
- }
-
- /**
- * @deprecated As of 2.2, see {@link RecordFolderService#createRecordFolder(NodeRef, String)}
- */
- @Override
- public NodeRef createRecordFolder(NodeRef rmContrainer, String name)
- {
- return getRecordFolderService().createRecordFolder(rmContrainer, name);
- }
-
- /**
- * @deprecated As of 2.2, see {@link RecordFolderService#createRecordFolder(NodeRef, String, Map)}
- */
- @Override
- public NodeRef createRecordFolder(NodeRef parent, String name, Map properties)
- {
- return getRecordFolderService().createRecordFolder(parent, name, properties);
- }
-
- /**
- * @deprecated As of 2.2, see {@link RecordService#getRecords(NodeRef)}
- */
- @Override
- public List getRecords(NodeRef recordFolder)
- {
- return getRecordService().getRecords(recordFolder);
- }
-
- /**
- * @deprecated As of 2.2, see {@link RecordFolderService#getRecordFolders(NodeRef)}
- */
- @Override
- public List getRecordFolders(NodeRef record)
- {
- return getRecordFolderService().getRecordFolders(record);
- }
-
- /**
- * @deprecated As of 2.1, see {@link RecordService#getRecordMetaDataAspects()}
- */
- @Override
- public Set getRecordMetaDataAspects()
- {
- return getRecordService().getRecordMetaDataAspects();
- }
-
- /**
- * @deprecated As of 2.1, see {@link RecordService#isDeclared(NodeRef)}
- */
- @Override
- public boolean isRecordDeclared(NodeRef nodeRef)
- {
- return getRecordService().isDeclared(nodeRef);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FreezeService#isHold(NodeRef)}
- */
- @Override
- public boolean isHold(NodeRef nodeRef)
- {
- return getFreezeService().isHold(nodeRef);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FreezeService#isFrozen(NodeRef)}
- */
- @Override
- public boolean isFrozen(NodeRef nodeRef)
- {
- return getFreezeService().isFrozen(nodeRef);
- }
-
- /**
- * @deprecated As of 2.1, see {@link FreezeService#hasFrozenChildren(NodeRef)}
- */
- @Override
- public boolean hasFrozenChildren(NodeRef nodeRef)
- {
- return getFreezeService().hasFrozenChildren(nodeRef);
- }
-
- /**
- * @deprecated As of 2.1, see {@link RecordService#isRecord(NodeRef)}
- */
- @Override
- public boolean isRecord(NodeRef nodeRef)
- {
- return getRecordService().isRecord(nodeRef);
- }
-}
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+package org.alfresco.module.org_alfresco_module_rm;
+
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+
+import org.alfresco.module.org_alfresco_module_rm.disposition.DispositionService;
+import org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanComponentKind;
+import org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanService;
+import org.alfresco.module.org_alfresco_module_rm.freeze.FreezeService;
+import org.alfresco.module.org_alfresco_module_rm.model.RecordsManagementModel;
+import org.alfresco.module.org_alfresco_module_rm.record.RecordService;
+import org.alfresco.module.org_alfresco_module_rm.recordfolder.RecordFolderService;
+import org.alfresco.module.org_alfresco_module_rm.transfer.TransferService;
+import org.alfresco.module.org_alfresco_module_rm.util.ServiceBaseImpl;
+import org.alfresco.service.cmr.repository.NodeRef;
+import org.alfresco.service.cmr.repository.StoreRef;
+import org.alfresco.service.namespace.QName;
+
+/**
+ * Records management service implementation.
+ *
+ * @author Roy Wetherall
+ * @deprecated as of 2.2
+ */
+public class RecordsManagementServiceImpl extends ServiceBaseImpl
+ implements RecordsManagementService,
+ RecordsManagementModel
+{
+ /** Store that the RM roots are contained within */
+ @SuppressWarnings("unused")
+ @Deprecated
+ private StoreRef defaultStoreRef = StoreRef.STORE_REF_WORKSPACE_SPACESSTORE;
+
+ /** Service registry */
+ private RecordsManagementServiceRegistry serviceRegistry;
+
+ /**
+ * Set the service registry service
+ *
+ * @param serviceRegistry service registry
+ */
+ public void setRecordsManagementServiceRegistry(RecordsManagementServiceRegistry serviceRegistry)
+ {
+ // Internal ops use the unprotected services from the voter (e.g. nodeService)
+ this.serviceRegistry = serviceRegistry;
+ this.dictionaryService = serviceRegistry.getDictionaryService();
+ }
+
+ /**
+ * Sets the default RM store reference
+ * @param defaultStoreRef store reference
+ */
+ @Deprecated
+ public void setDefaultStoreRef(StoreRef defaultStoreRef)
+ {
+ this.defaultStoreRef = defaultStoreRef;
+ }
+
+ /**
+ * @return File plan service
+ */
+ private FilePlanService getFilePlanService()
+ {
+ return serviceRegistry.getFilePlanService();
+ }
+
+ /**
+ * @return Record Folder Service
+ */
+ private RecordFolderService getRecordFolderService()
+ {
+ return serviceRegistry.getRecordFolderService();
+ }
+
+ /**
+ * @return Record Service
+ */
+ private RecordService getRecordService()
+ {
+ return serviceRegistry.getRecordService();
+ }
+
+ /**
+ * @return Freeze Service
+ */
+ private FreezeService getFreezeService()
+ {
+ return serviceRegistry.getFreezeService();
+ }
+
+ /**
+ * @return Disposition Service
+ */
+ private DispositionService getDispositionService()
+ {
+ return serviceRegistry.getDispositionService();
+ }
+
+ /**
+ * @return Transfer service
+ */
+ private TransferService getTransferService()
+ {
+ return serviceRegistry.getTransferService();
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#isFilePlanComponent(NodeRef)}
+ */
+ @Override
+ public boolean isFilePlanComponent(NodeRef nodeRef)
+ {
+ return getFilePlanService().isFilePlanComponent(nodeRef);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getFilePlanComponentKind(NodeRef)}
+ */
+ @Override
+ public FilePlanComponentKind getFilePlanComponentKind(NodeRef nodeRef)
+ {
+ return getFilePlanService().getFilePlanComponentKind(nodeRef);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getFilePlanComponentKindFromType(QName)}
+ */
+ @Override
+ public FilePlanComponentKind getFilePlanComponentKindFromType(QName type)
+ {
+ return getFilePlanService().getFilePlanComponentKindFromType(type);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#isFilePlanContainer(NodeRef)}
+ */
+ @Override
+ public boolean isRecordsManagementContainer(NodeRef nodeRef)
+ {
+ return getFilePlanService().isFilePlanContainer(nodeRef);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#isFilePlan(NodeRef)}
+ */
+ @Override
+ public boolean isFilePlan(NodeRef nodeRef)
+ {
+ return getFilePlanService().isFilePlan(nodeRef);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#isRecordCategory(NodeRef)}
+ */
+ @Override
+ public boolean isRecordCategory(NodeRef nodeRef)
+ {
+ return getFilePlanService().isRecordCategory(nodeRef);
+ }
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordFolderService#isRecordFolder(NodeRef)}
+ */
+ @Override
+ public boolean isRecordFolder(NodeRef nodeRef)
+ {
+ return getRecordFolderService().isRecordFolder(nodeRef);
+ }
+
+ /**
+ * @deprecated As of 2.2, see {@link TransferService#isTransfer(NodeRef)}
+ */
+ @Override
+ public boolean isTransfer(NodeRef nodeRef)
+ {
+ return getTransferService().isTransfer(nodeRef);
+ }
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordService#isMetadataStub(NodeRef)}
+ */
+ @Override
+ public boolean isMetadataStub(NodeRef nodeRef)
+ {
+ return getRecordService().isMetadataStub(nodeRef);
+ }
+
+ /**
+ * @deprecated As of 2.2, see {@link DispositionService#isDisposableItemCutoff(NodeRef)}
+ */
+ @Override
+ public boolean isCutoff(NodeRef nodeRef)
+ {
+ return getDispositionService().isDisposableItemCutoff(nodeRef);
+ }
+
+ /**
+ * @deprecated as of 2.1, see {@link FilePlanService#getNodeRefPath(NodeRef)}
+ */
+ @Override
+ public List getNodeRefPath(NodeRef nodeRef)
+ {
+ return getFilePlanService().getNodeRefPath(nodeRef);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getFilePlan(NodeRef)}
+ */
+ @Override
+ public NodeRef getFilePlan(NodeRef nodeRef)
+ {
+ return getFilePlanService().getFilePlan(nodeRef);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getFilePlans()}
+ */
+ @Override
+ public List getFilePlans()
+ {
+ return new ArrayList(getFilePlanService().getFilePlans());
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#createFilePlan(NodeRef, String, QName)}
+ */
+ @Override
+ public NodeRef createFilePlan(NodeRef parent, String name, QName type)
+ {
+ return getFilePlanService().createFilePlan(parent, name, type);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#createFilePlan(NodeRef, String, QName, Map)}
+ */
+ @Override
+ public NodeRef createFilePlan(NodeRef parent, String name, QName type, Map properties)
+ {
+ return getFilePlanService().createFilePlan(parent, name, type, properties);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#createFilePlan(NodeRef, String)}
+ */
+ @Override
+ public NodeRef createFilePlan(NodeRef parent, String name)
+ {
+ return getFilePlanService().createFilePlan(parent, name);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#createFilePlan(NodeRef, String, Map)}
+ */
+ @Override
+ public NodeRef createFilePlan(NodeRef parent, String name, Map properties)
+ {
+ return getFilePlanService().createFilePlan(parent, name, properties);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getAllContained(NodeRef, boolean)}
+ */
+ @Override
+ public List getAllContained(NodeRef container, boolean deep)
+ {
+ return getFilePlanService().getAllContained(container, deep);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getAllContained(NodeRef)}
+ */
+ @Override
+ public List getAllContained(NodeRef container)
+ {
+ return getFilePlanService().getAllContained(container);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getContainedRecordCategories(NodeRef, boolean)}
+ */
+ @Override
+ public List getContainedRecordCategories(NodeRef container, boolean deep)
+ {
+ return getFilePlanService().getContainedRecordCategories(container, deep);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getContainedRecordCategories(NodeRef)}
+ */
+ @Override
+ public List getContainedRecordCategories(NodeRef container)
+ {
+ return getFilePlanService().getContainedRecordCategories(container);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getContainedRecordFolders(NodeRef, boolean)}
+ */
+ @Override
+ public List getContainedRecordFolders(NodeRef container, boolean deep)
+ {
+ return getFilePlanService().getContainedRecordFolders(container, deep);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#getContainedRecordFolders(NodeRef)}
+ */
+ @Override
+ public List getContainedRecordFolders(NodeRef container)
+ {
+ return getFilePlanService().getContainedRecordFolders(container);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#createRecordCategory(NodeRef, String, QName)}
+ */
+ @Override
+ public NodeRef createRecordCategory(NodeRef parent, String name, QName type)
+ {
+ return getFilePlanService().createRecordCategory(parent, name, type);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#createRecordCategory(NodeRef, String, QName, Map)}
+ */
+ @Override
+ public NodeRef createRecordCategory(NodeRef parent, String name, QName type, Map properties)
+ {
+ return getFilePlanService().createRecordCategory(parent, name, type, properties);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#createRecordCategory(NodeRef, String)}
+ */
+ @Override
+ public NodeRef createRecordCategory(NodeRef parent, String name)
+ {
+ return getFilePlanService().createRecordCategory(parent, name);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FilePlanService#createRecordCategory(NodeRef, String, Map)}
+ */
+ public NodeRef createRecordCategory(NodeRef parent, String name, Map properties)
+ {
+ return getFilePlanService().createRecordCategory(parent, name, properties);
+ }
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordFolderService#isRecordFolderDeclared(NodeRef)}
+ */
+ @Override
+ public boolean isRecordFolderDeclared(NodeRef recordFolder)
+ {
+ return getRecordFolderService().isRecordFolderDeclared(recordFolder);
+ }
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordFolderService#isRecordFolderClosed(NodeRef)}
+ */
+ @Override
+ public boolean isRecordFolderClosed(NodeRef nodeRef)
+ {
+ return getRecordFolderService().isRecordFolderClosed(nodeRef);
+ }
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordFolderService#createRecordFolder(NodeRef, String, QName)}
+ */
+ @Override
+ public NodeRef createRecordFolder(NodeRef parent, String name, QName type)
+ {
+ return getRecordFolderService().createRecordFolder(parent, name, type);
+ }
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordFolderService#createRecordFolder(NodeRef, String, QName, Map)}
+ */
+ @Override
+ public NodeRef createRecordFolder(NodeRef rmContainer, String name, QName type, Map properties)
+ {
+ return getRecordFolderService().createRecordFolder(rmContainer, name, type, properties);
+ }
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordFolderService#createRecordFolder(NodeRef, String)}
+ */
+ @Override
+ public NodeRef createRecordFolder(NodeRef rmContrainer, String name)
+ {
+ return getRecordFolderService().createRecordFolder(rmContrainer, name);
+ }
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordFolderService#createRecordFolder(NodeRef, String, Map)}
+ */
+ @Override
+ public NodeRef createRecordFolder(NodeRef parent, String name, Map properties)
+ {
+ return getRecordFolderService().createRecordFolder(parent, name, properties);
+ }
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordService#getRecords(NodeRef)}
+ */
+ @Override
+ public List getRecords(NodeRef recordFolder)
+ {
+ return getRecordService().getRecords(recordFolder);
+ }
+
+ /**
+ * @deprecated As of 2.2, see {@link RecordFolderService#getRecordFolders(NodeRef)}
+ */
+ @Override
+ public List getRecordFolders(NodeRef record)
+ {
+ return getRecordFolderService().getRecordFolders(record);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link RecordService#getRecordMetaDataAspects()}
+ */
+ @Override
+ public Set getRecordMetaDataAspects()
+ {
+ return getRecordService().getRecordMetaDataAspects();
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link RecordService#isDeclared(NodeRef)}
+ */
+ @Override
+ public boolean isRecordDeclared(NodeRef nodeRef)
+ {
+ return getRecordService().isDeclared(nodeRef);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FreezeService#isHold(NodeRef)}
+ */
+ @Override
+ public boolean isHold(NodeRef nodeRef)
+ {
+ return getFreezeService().isHold(nodeRef);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FreezeService#isFrozen(NodeRef)}
+ */
+ @Override
+ public boolean isFrozen(NodeRef nodeRef)
+ {
+ return getFreezeService().isFrozen(nodeRef);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link FreezeService#hasFrozenChildren(NodeRef)}
+ */
+ @Override
+ public boolean hasFrozenChildren(NodeRef nodeRef)
+ {
+ return getFreezeService().hasFrozenChildren(nodeRef);
+ }
+
+ /**
+ * @deprecated As of 2.1, see {@link RecordService#isRecord(NodeRef)}
+ */
+ @Override
+ public boolean isRecord(NodeRef nodeRef)
+ {
+ return getRecordService().isRecord(nodeRef);
+ }
+}
diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceDeprecated.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceDeprecated.java
index 249a48e301..d9e758f3ac 100644
--- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceDeprecated.java
+++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceDeprecated.java
@@ -1,83 +1,83 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-package org.alfresco.module.org_alfresco_module_rm.audit;
-
-import java.io.Serializable;
-import java.util.Date;
-import java.util.Map;
-
-import org.alfresco.api.AlfrescoPublicApi;
-import org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction;
-import org.alfresco.service.cmr.repository.NodeRef;
-
-/**
- * Deprecated records management audit interface methods.
- *
- * @author Roy Wetherall
- * @since 2.1
- * @deprecated as of 2.1, see {@link RecordsManagementAuditService}.
- */
-@AlfrescoPublicApi
-public interface RecordsManagementAuditServiceDeprecated
-{
- /**
- * @deprecated as of 2.1, see {@link #stop(NodeRef)}
- */
- @Deprecated
- void stop();
-
- /**
- * @deprecated as of 2.1, see {@link #clear(NodeRef)}
- */
- @Deprecated
- void clear();
-
- /**
- * @deprecated as of 2.1, see {@link #isEnabled(NodeRef)}
- */
- @Deprecated
- boolean isEnabled();
-
- /**
- * @deprecated as of 2.1, see {@link #getDateLastStarted(NodeRef)}
- */
- @Deprecated
- Date getDateLastStarted();
-
- /**
- * @deprecated as of 2.1, see {@link #getDateLastStopped(NodeRef)}
- */
- Date getDateLastStopped();
-
- /**
- * @deprecated as of 2.1
- */
- @Deprecated
- void auditRMAction(RecordsManagementAction action, NodeRef nodeRef, Map parameters);
-
-}
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see .
+ * #L%
+ */
+
+package org.alfresco.module.org_alfresco_module_rm.audit;
+
+import java.io.Serializable;
+import java.util.Date;
+import java.util.Map;
+
+import org.alfresco.api.AlfrescoPublicApi;
+import org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction;
+import org.alfresco.service.cmr.repository.NodeRef;
+
+/**
+ * Deprecated records management audit interface methods.
+ *
+ * @author Roy Wetherall
+ * @since 2.1
+ * @deprecated as of 2.1, see {@link RecordsManagementAuditService}.
+ */
+@AlfrescoPublicApi
+public interface RecordsManagementAuditServiceDeprecated
+{
+ /**
+ * @deprecated as of 2.1, see {@link #stop(NodeRef)}
+ */
+ @Deprecated
+ void stop();
+
+ /**
+ * @deprecated as of 2.1, see {@link #clear(NodeRef)}
+ */
+ @Deprecated
+ void clear();
+
+ /**
+ * @deprecated as of 2.1, see {@link #isEnabled(NodeRef)}
+ */
+ @Deprecated
+ boolean isEnabled();
+
+ /**
+ * @deprecated as of 2.1, see {@link #getDateLastStarted(NodeRef)}
+ */
+ @Deprecated
+ Date getDateLastStarted();
+
+ /**
+ * @deprecated as of 2.1, see {@link #getDateLastStopped(NodeRef)}
+ */
+ Date getDateLastStopped();
+
+ /**
+ * @deprecated as of 2.1
+ */
+ @Deprecated
+ void auditRMAction(RecordsManagementAction action, NodeRef nodeRef, Map parameters);
+
+}
diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/PivotUtil.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/PivotUtil.java
index 2fe741e78b..96626177ee 100644
--- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/PivotUtil.java
+++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/PivotUtil.java
@@ -1,71 +1,71 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see .
- * #L%
- */
-
-package org.alfresco.module.org_alfresco_module_rm.caveat;
-
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-
-/* package scope */ final class PivotUtil
-{
- private PivotUtil()
- {
- // Will not be called
- }
-
- static Map> getPivot(Map> source)
- {
-
- Map> pivot = new HashMap>();
-
- for (Map.Entry> entry : source.entrySet())
- {
- Listvalues = entry.getValue();
- for (String value : values)
- {
- String authority = entry.getKey();
- if (pivot.containsKey(value))
- {
- // already exists
- List list = pivot.get(value);
- list.add(authority );
- }
- else
- {
- // New value
- List list = new ArrayList();
- list.add(authority);
- pivot.put(value, list);
- }
- }
- }
-
- return pivot;
- }
-}
+/*
+ * #%L
+ * Alfresco Records Management Module
+ * %%
+ * Copyright (C) 2005 - 2016 Alfresco Software Limited
+ * %%
+ * This file is part of the Alfresco software.
+ * -
+ * If the software was purchased under a paid Alfresco license, the terms of
+ * the paid license agreement will prevail. Otherwise, the software is
+ * provided under the following open source license terms:
+ * -
+ * Alfresco is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * -
+ * Alfresco is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ * -
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Alfresco. If not, see