Let git handle line endings for us.

This commit is contained in:
Tom Page
2016-09-23 14:36:49 +01:00
parent aa8e1c1b32
commit eacfd00e0c
1218 changed files with 165140 additions and 165111 deletions

View File

@@ -1,15 +1,15 @@
# EditorConfig file: http://editorconfig.org/ # EditorConfig file: http://editorconfig.org/
# Syntax at: https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties # Syntax at: https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
# This is the Top level for the RM project # This is the Top level for the RM project
root = true root = true
# All files should use spaces. # All files should use spaces.
[*] [*]
indent_style = space indent_style = space
end_of_line = crlf end_of_line = crlf
trim_trailing_whitespace = true trim_trailing_whitespace = true
indent_size = 3 indent_size = 3
[*.java] [*.java]
indent_size = 4 indent_size = 4

29
.gitattributes vendored Normal file
View File

@@ -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

80
.gitignore vendored
View File

@@ -1,40 +1,40 @@
# General ignored files and directories # General ignored files and directories
.ant-targets-build.xml .ant-targets-build.xml
.classpath .classpath
.gradle .gradle
.idea .idea
.project .project
.settings .settings
*.eml *.eml
*.iml *.iml
*.log* *.log*
*.tmp *.tmp
*.war *.war
bin bin
build.local.properties build.local.properties
dist dist
explodedDeps explodedDeps
local.properties local.properties
target target
test-output test-output
# /rm-community/ # /rm-community/
/rm-community/l10n /rm-community/l10n
/rm-community/root /rm-community/root
# /rm-community/rm-server/ # /rm-community/rm-server/
/rm-community/rm-server/alfresco-solr.zip /rm-community/rm-server/alfresco-solr.zip
/rm-community/rm-server/solr /rm-community/rm-server/solr
/rm-community/rm-server/shared /rm-community/rm-server/shared
# /rm-community/rm-server/config/ # /rm-community/rm-server/config/
/rm-community/rm-server/config/alfresco-global.properties /rm-community/rm-server/config/alfresco-global.properties
# /rm-community/rm-server/config/alfresco/ # /rm-community/rm-server/config/alfresco/
/rm-community/rm-server/config/alfresco/extension /rm-community/rm-server/config/alfresco/extension
# /rm-enterprise/rm-automation-enterprise/ # /rm-enterprise/rm-automation-enterprise/
/rm-enterprise/rm-automation-enterprise/l10n /rm-enterprise/rm-automation-enterprise/l10n
/rm-enterprise/rm-automation-enterprise/root /rm-enterprise/rm-automation-enterprise/root
rm-automation/src/test/resources/webdriver.properties rm-automation/src/test/resources/webdriver.properties

View File

@@ -1,44 +1,44 @@
{ {
"bitwise": true, "bitwise": true,
"curly": true, "curly": true,
"eqeqeq": true, "eqeqeq": true,
"es3": true, "es3": true,
"forin": true, "forin": true,
"freeze": true, "freeze": true,
"funcscope": true, "funcscope": true,
"immed": true, "immed": true,
"indent": 3, "indent": 3,
"iterator": true, "iterator": true,
"latedef": true, "latedef": true,
"maxcomplexity": 10, "maxcomplexity": 10,
"maxdepth": 50, "maxdepth": 50,
"maxerr": 50, "maxerr": 50,
"maxlen": 250, "maxlen": 250,
"maxparams": 50, "maxparams": 50,
"maxstatements": 30, "maxstatements": 30,
"newcap": true, "newcap": true,
"noarg": true, "noarg": true,
"nonbsp": true, "nonbsp": true,
"nonew": true, "nonew": true,
"notypeof": true, "notypeof": true,
"shadow": "outer", "shadow": "outer",
"undef": true, "undef": true,
"unused": true, "unused": true,
"globals": { "globals": {
"module": false, "module": false,
"model": true, "model": true,
"Alfresco": true, "Alfresco": true,
"YAHOO": false, "YAHOO": false,
"appContext": false, "appContext": false,
"PDFJS": false, "PDFJS": false,
"AlfrescoUtil": true, "AlfrescoUtil": true,
"msg": false "msg": false
}, },
"expr": true, "expr": true,
"strict": false, "strict": false,
"browser": true, "browser": true,
"dojo": true "dojo": true
} }

View File

@@ -1,105 +1,105 @@
Configuring and starting Alfresco/Share: Configuring and starting Alfresco/Share:
---------------------------------------- ----------------------------------------
- Clone the project from git - Clone the project from git
- Import the project as a maven project - Import the project as a maven project
- Start the Alfresco/Share instances with the following commands: - Start the Alfresco/Share instances with the following commands:
To start the repo: To start the repo:
cd rm-community/rm-community-repo cd rm-community/rm-community-repo
mvn clean install -Pstart-repo mvn clean install -Pstart-repo
To start Share: To start Share:
cd rm-community/rm-community-share cd rm-community/rm-community-share
mvn clean install -Pstart-share mvn clean install -Pstart-share
NOTE: If you have the enterprise code, see rm-enterprise/README.txt for instructions on how to build/start the enterprise code. NOTE: If you have the enterprise code, see rm-enterprise/README.txt for instructions on how to build/start the enterprise code.
Configuring a different DB other than H2 (e.g. MySQL or PostgreSQL): Configuring a different DB other than H2 (e.g. MySQL or PostgreSQL):
-------------------------------------------------------------------- --------------------------------------------------------------------
- Create a file called "local.properties" under src/main/resources in rm-community-repo (you may need to create the directory) - Create a file called "local.properties" under src/main/resources in rm-community-repo (you may need to create the directory)
- Add the following properties in this new file - Add the following properties in this new file
my.db.name -> The name of the database schema 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) 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: - Run the following commands to start your Alfresco instance:
to start Alfresco (using Postgres): to start Alfresco (using Postgres):
mvn clean install -Pstart-repo,use-postgres mvn clean install -Pstart-repo,use-postgres
to start Alfresco (using MySQL): to start Alfresco (using MySQL):
mvn clean install -Pstart-repo,use-mysql mvn clean install -Pstart-repo,use-mysql
Running integration test: 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): 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 mvn clean install -Dskip.integrationtests=false
Running UI Automation tests: Running UI Automation tests:
---------------------------- ----------------------------
To run the automated UI tests, change to the rm-automation directory and run: To run the automated UI tests, change to the rm-automation directory and run:
mvn clean install -Dskip.automationtests=false 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 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: Updating License Headers:
------------------------- -------------------------
In order to refesh out of date license source headers run the following command: In order to refesh out of date license source headers run the following command:
mvn clean install -Dlicense.update.dryrun=false mvn clean install -Dlicense.update.dryrun=false
Running tests against latest Aikau snapshot: Running tests against latest Aikau snapshot:
-------------------------------------------- --------------------------------------------
The latest Aikau snapshot can be pulled by running the following command in rm-community: The latest Aikau snapshot can be pulled by running the following command in rm-community:
mvn clean install -DskipTests -Dalfresco.aikau.version=LATEST -U mvn clean install -DskipTests -Dalfresco.aikau.version=LATEST -U
Thereafter start the Share instance and run automation tests as described above. Thereafter start the Share instance and run automation tests as described above.
Configuring Outlook Integration: Configuring Outlook Integration:
------------------------------- -------------------------------
To download and run RM with the Outlook Integration AMPs installed on the repo and Share use the following commands: 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-repo,outlook-integration
mvn clean install -Pstart-share,outlook-integration mvn clean install -Pstart-share,outlook-integration
Follow these instructions install licence and Outlook plugin: 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-license.html
- http://docs.alfresco.com/outlook2.1/tasks/Outlook-install_v2.html - http://docs.alfresco.com/outlook2.1/tasks/Outlook-install_v2.html
SNAPSHOT dependencies: SNAPSHOT dependencies:
---------------------- ----------------------
If you're building Enterprise RM, the base project (Community) is pulled in via a snapshot dependency configured in maven. 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 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. (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 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 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. --no-snapshot-dependency (or -nsu) option, which won't try to download a newer version.
Code Formatting: 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. 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.

View File

@@ -1,4 +1,4 @@
# Localisation config overrides for Records Management module # 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 " 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" EXCLUDED_FILES="$EXCLUDED_FILES rm-method-security.properties springloaded.properties file-mapping.properties classified-content-notForTranslating.properties notForTranslating"
EXTENSION_PREFIX=-RM EXTENSION_PREFIX=-RM

View File

@@ -1,18 +1,18 @@
This file is part of the Alfresco software. This file is part of the Alfresco software.
- -
If the software was purchased under a paid Alfresco license, the terms of If the software was purchased under a paid Alfresco license, the terms of
the paid license agreement will prevail. Otherwise, the software is the paid license agreement will prevail. Otherwise, the software is
provided under the following open source license terms: provided under the following open source license terms:
- -
Alfresco is free software: you can redistribute it and/or modify Alfresco is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or the Free Software Foundation, either version 3 of the License, or
(at your option) any later version. (at your option) any later version.
- -
Alfresco is distributed in the hope that it will be useful, Alfresco is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details. GNU Lesser General Public License for more details.
- -
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with Alfresco. If not, see <http://www.gnu.org/licenses/>. along with Alfresco. If not, see <http://www.gnu.org/licenses/>.

View File

@@ -1,165 +1,165 @@
GNU LESSER GENERAL PUBLIC LICENSE GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007 Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed. of this license document, but changing it is not allowed.
This version of the GNU Lesser General Public License incorporates This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below. License, supplemented by the additional permissions listed below.
0. Additional Definitions. 0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU Lesser 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, and the "GNU GPL" refers to version 3 of the GNU
General Public License. General Public License.
"The Library" refers to a covered work governed by this License, "The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below. other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface provided An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library. 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 Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library. of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked with which the Combined Work was made is also called the "Linked
Version". Version".
The "Minimal Corresponding Source" for a Combined Work means the The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version. based on the Application, and not on the Linked Version.
The "Corresponding Application Code" for a Combined Work means the The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work. Application, but excluding the System Libraries of the Combined Work.
1. Exception to Section 3 of the GNU GPL. 1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL. without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions. 2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a 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 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 that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified facility is invoked), then you may convey a copy of the modified
version: version:
a) under this License, provided that you make a good faith effort to a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions of b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy. this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files. 3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from 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 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 code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following: (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 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 Library is used in it and that the Library and its use are
covered by this License. covered by this License.
b) Accompany the object code with a copy of the GNU GPL and this license b) Accompany the object code with a copy of the GNU GPL and this license
document. document.
4. Combined Works. 4. Combined Works.
You may convey a Combined Work under terms of your choice that, You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of engineering for debugging such modifications, if you also do each of
the following: the following:
a) Give prominent notice with each copy of the Combined Work that 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 the Library is used in it and that the Library and its use are
covered by this License. covered by this License.
b) Accompany the Combined Work with a copy of the GNU GPL and this license b) Accompany the Combined Work with a copy of the GNU GPL and this license
document. document.
c) For a Combined Work that displays copyright notices during c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document. copies of the GNU GPL and this license document.
d) Do one of the following: d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms of this 0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying manner specified by section 6 of the GNU GPL for conveying
Corresponding Source. Corresponding Source.
1) Use a suitable shared library mechanism for linking with the 1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked of the Library that is interface-compatible with the Linked
Version. Version.
e) Provide Installation Information, but only if you would otherwise e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.) for conveying Corresponding Source.)
5. Combined Libraries. 5. Combined Libraries.
You may place library facilities that are a work based on the You may place library facilities that are a work based on the
Library side by side in a single library together with other library Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your License, and convey such a combined library under terms of your
choice, if you do both of the following: choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work based a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities, on the Library, uncombined with any other library facilities,
conveyed under the terms of this License. conveyed under the terms of this License.
b) Give prominent notice with the combined library that part of it 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 is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work. accompanying uncombined form of the same work.
6. Revised Versions of the GNU Lesser General Public License. 6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new 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 versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns. differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version" of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and applies to it, you have the option of following the terms and
conditions either of that published version or of any later version conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser 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, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation. General Public License ever published by the Free Software Foundation.
If the Library as you received it specifies that a proxy can decide If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the permanent authorization for you to choose that version for the
Library. Library.

View File

@@ -1,2 +1,2 @@
alfresco_community=Alfresco Community alfresco_community=Alfresco Community
alfresco_enterprise=Alfresco Enterprise alfresco_enterprise=Alfresco Enterprise

View File

@@ -1,17 +1,17 @@
# EditorConfig file: http://editorconfig.org/ # EditorConfig file: http://editorconfig.org/
# Syntax at: https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties # Syntax at: https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
# This is the Top level for the RM project # This is the Top level for the RM project
root = true root = true
# All files should use spaces. # All files should use spaces.
[*] [*]
indent_style = space indent_style = space
# Just JS for now. # Just JS for now.
[*.js] [*.js]
indent_size = 3 indent_size = 3
trim_trailing_whitespace = true trim_trailing_whitespace = true
#TODO: css, xml, ftl, etc. #TODO: css, xml, ftl, etc.

View File

@@ -1,45 +1,45 @@
{ {
"bitwise": true, "bitwise": true,
"curly": true, "curly": true,
"eqeqeq": true, "eqeqeq": true,
"es3": true, "es3": true,
"forin": true, "forin": true,
"freeze": true, "freeze": true,
"funcscope": true, "funcscope": true,
"immed": true, "immed": true,
"indent": 3, "indent": 3,
"iterator": true, "iterator": true,
"latedef": true, "latedef": true,
"maxcomplexity": 10, "maxcomplexity": 10,
"maxdepth": 50, "maxdepth": 50,
"maxerr": 50, "maxerr": 50,
"maxlen": 250, "maxlen": 250,
"maxparams": 50, "maxparams": 50,
"maxstatements": 30, "maxstatements": 30,
"newcap": true, "newcap": true,
"noarg": true, "noarg": true,
"nonbsp": true, "nonbsp": true,
"nonew": true, "nonew": true,
"notypeof": true, "notypeof": true,
"shadow": "outer", "shadow": "outer",
"undef": true, "undef": true,
"unused": true, "unused": true,
"globals": { "globals": {
"module": false, "module": false,
"model": true, "model": true,
"Alfresco": true, "Alfresco": true,
"YAHOO": false, "YAHOO": false,
"appContext": false, "appContext": false,
"PDFJS": false, "PDFJS": false,
"AlfrescoUtil": true, "AlfrescoUtil": true,
"msg": false "msg": false
}, },
"expr": true, "expr": true,
"strict": false, "strict": false,
"browser": true, "browser": true,
"dojo": true "dojo": true
} }

View File

@@ -1,165 +1,165 @@
GNU LESSER GENERAL PUBLIC LICENSE GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007 Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed. of this license document, but changing it is not allowed.
This version of the GNU Lesser General Public License incorporates This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below. License, supplemented by the additional permissions listed below.
0. Additional Definitions. 0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU Lesser 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, and the "GNU GPL" refers to version 3 of the GNU
General Public License. General Public License.
"The Library" refers to a covered work governed by this License, "The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below. other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface provided An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library. 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 Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library. of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked with which the Combined Work was made is also called the "Linked
Version". Version".
The "Minimal Corresponding Source" for a Combined Work means the The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version. based on the Application, and not on the Linked Version.
The "Corresponding Application Code" for a Combined Work means the The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work. Application, but excluding the System Libraries of the Combined Work.
1. Exception to Section 3 of the GNU GPL. 1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL. without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions. 2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a 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 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 that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified facility is invoked), then you may convey a copy of the modified
version: version:
a) under this License, provided that you make a good faith effort to a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions of b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy. this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files. 3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from 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 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 code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following: (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 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 Library is used in it and that the Library and its use are
covered by this License. covered by this License.
b) Accompany the object code with a copy of the GNU GPL and this license b) Accompany the object code with a copy of the GNU GPL and this license
document. document.
4. Combined Works. 4. Combined Works.
You may convey a Combined Work under terms of your choice that, You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of engineering for debugging such modifications, if you also do each of
the following: the following:
a) Give prominent notice with each copy of the Combined Work that 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 the Library is used in it and that the Library and its use are
covered by this License. covered by this License.
b) Accompany the Combined Work with a copy of the GNU GPL and this license b) Accompany the Combined Work with a copy of the GNU GPL and this license
document. document.
c) For a Combined Work that displays copyright notices during c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document. copies of the GNU GPL and this license document.
d) Do one of the following: d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms of this 0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying manner specified by section 6 of the GNU GPL for conveying
Corresponding Source. Corresponding Source.
1) Use a suitable shared library mechanism for linking with the 1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked of the Library that is interface-compatible with the Linked
Version. Version.
e) Provide Installation Information, but only if you would otherwise e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.) for conveying Corresponding Source.)
5. Combined Libraries. 5. Combined Libraries.
You may place library facilities that are a work based on the You may place library facilities that are a work based on the
Library side by side in a single library together with other library Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your License, and convey such a combined library under terms of your
choice, if you do both of the following: choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work based a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities, on the Library, uncombined with any other library facilities,
conveyed under the terms of this License. conveyed under the terms of this License.
b) Give prominent notice with the combined library that part of it 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 is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work. accompanying uncombined form of the same work.
6. Revised Versions of the GNU Lesser General Public License. 6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new 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 versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns. differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version" of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and applies to it, you have the option of following the terms and
conditions either of that published version or of any later version conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser 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, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation. General Public License ever published by the Free Software Foundation.
If the Library as you received it specifies that a proxy can decide If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the permanent authorization for you to choose that version for the
Library. Library.

View File

@@ -1,16 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<!-- Extend Imap Service --> <!-- Extend Imap Service -->
<bean id="rm.imapService" abstract="true" class="org.alfresco.repo.imap.ExtendedImapServiceImpl"> <bean id="rm.imapService" abstract="true" class="org.alfresco.repo.imap.ExtendedImapServiceImpl">
<property name="dictionaryService" ref="DictionaryService"/> <property name="dictionaryService" ref="DictionaryService"/>
<property name="authenticationUtil" ref="rm.authenticationUtil"/> <property name="authenticationUtil" ref="rm.authenticationUtil"/>
</bean> </bean>
<bean class="org.alfresco.util.BeanExtender"> <bean class="org.alfresco.util.BeanExtender">
<property name="beanName" value="imapService" /> <property name="beanName" value="imapService" />
<property name="extendingBeanName" value="rm.imapService" /> <property name="extendingBeanName" value="rm.imapService" />
</bean> </bean>
</beans> </beans>

View File

@@ -1,66 +1,66 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<!-- I18N --> <!-- I18N -->
<bean id="rmActionResourceBundles" class="org.alfresco.i18n.ResourceBundleBootstrapComponent"> <bean id="rmActionResourceBundles" class="org.alfresco.i18n.ResourceBundleBootstrapComponent">
<property name="resourceBundles"> <property name="resourceBundles">
<list> <list>
<value>alfresco.module.org_alfresco_module_rm.messages.actions</value> <value>alfresco.module.org_alfresco_module_rm.messages.actions</value>
</list> </list>
</property> </property>
</bean> </bean>
<!-- Declare as Record action --> <!-- Declare as Record action -->
<!-- TODO rename --> <!-- TODO rename -->
<bean id="create-record" parent="action-executer" class="org.alfresco.module.org_alfresco_module_rm.action.dm.CreateRecordAction"> <bean id="create-record" parent="action-executer" class="org.alfresco.module.org_alfresco_module_rm.action.dm.CreateRecordAction">
<property name="recordService" ref="RecordService" /> <property name="recordService" ref="RecordService" />
<property name="nodeService" ref="NodeService" /> <property name="nodeService" ref="NodeService" />
<property name="filePlanService" ref="FilePlanService" /> <property name="filePlanService" ref="FilePlanService" />
<property name="dictionaryService" ref="DictionaryService" /> <property name="dictionaryService" ref="DictionaryService" />
<property name="applicableTypes"> <property name="applicableTypes">
<list> <list>
<value>{http://www.alfresco.org/model/content/1.0}content</value> <value>{http://www.alfresco.org/model/content/1.0}content</value>
</list> </list>
</property> </property>
</bean> </bean>
<!-- Declare as Record Version action --> <!-- Declare as Record Version action -->
<bean id="declare-as-version-record" parent="action-executer" class="org.alfresco.module.org_alfresco_module_rm.action.dm.DeclareAsVersionRecordAction"> <bean id="declare-as-version-record" parent="action-executer" class="org.alfresco.module.org_alfresco_module_rm.action.dm.DeclareAsVersionRecordAction">
<property name="recordableVersionService" ref="RecordableVersionService" /> <property name="recordableVersionService" ref="RecordableVersionService" />
<property name="nodeService" ref="NodeService" /> <property name="nodeService" ref="NodeService" />
<property name="filePlanService" ref="FilePlanService" /> <property name="filePlanService" ref="FilePlanService" />
<property name="dictionaryService" ref="DictionaryService" /> <property name="dictionaryService" ref="DictionaryService" />
<property name="authenticationUtil" ref="rm.authenticationUtil" /> <property name="authenticationUtil" ref="rm.authenticationUtil" />
<property name="applicableTypes"> <property name="applicableTypes">
<list> <list>
<value>{http://www.alfresco.org/model/content/1.0}content</value> <value>{http://www.alfresco.org/model/content/1.0}content</value>
</list> </list>
</property> </property>
</bean> </bean>
<!-- Hide record action --> <!-- Hide record action -->
<bean id="hide-record" parent="action-executer" class="org.alfresco.module.org_alfresco_module_rm.action.dm.HideRecordAction"> <bean id="hide-record" parent="action-executer" class="org.alfresco.module.org_alfresco_module_rm.action.dm.HideRecordAction">
<property name="nodeService" ref="NodeService" /> <property name="nodeService" ref="NodeService" />
<property name="inplaceRecordService" ref="InplaceRecordService" /> <property name="inplaceRecordService" ref="InplaceRecordService" />
<property name="publicAction" value="true"/> <property name="publicAction" value="true"/>
</bean> </bean>
<!-- Move DM record action --> <!-- Move DM record action -->
<bean id="move-dm-record" parent="action-executer" class="org.alfresco.module.org_alfresco_module_rm.action.dm.MoveDmRecordAction"> <bean id="move-dm-record" parent="action-executer" class="org.alfresco.module.org_alfresco_module_rm.action.dm.MoveDmRecordAction">
<property name="nodeService" ref="NodeService"/> <property name="nodeService" ref="NodeService"/>
<property name="inplaceRecordService" ref="InplaceRecordService"/> <property name="inplaceRecordService" ref="InplaceRecordService"/>
<property name="publicAction" value="false"/> <property name="publicAction" value="false"/>
<property name="adhocPropertiesAllowed" value="true" /> <property name="adhocPropertiesAllowed" value="true" />
</bean> </bean>
<!-- Recordable version config action --> <!-- Recordable version config action -->
<bean id="recordable-version-config" parent="action-executer" class="org.alfresco.module.org_alfresco_module_rm.action.dm.RecordableVersionConfigAction"> <bean id="recordable-version-config" parent="action-executer" class="org.alfresco.module.org_alfresco_module_rm.action.dm.RecordableVersionConfigAction">
<property name="nodeService" ref="NodeService" /> <property name="nodeService" ref="NodeService" />
<property name="dictionaryService" ref="DictionaryService" /> <property name="dictionaryService" ref="DictionaryService" />
</bean> </bean>
<!-- Recordable version config constraint --> <!-- Recordable version config constraint -->
<bean id="ac-versions" class="org.alfresco.module.org_alfresco_module_rm.action.constraint.VersionParameterConstraint" parent="action-constraint" /> <bean id="ac-versions" class="org.alfresco.module.org_alfresco_module_rm.action.constraint.VersionParameterConstraint" parent="action-constraint" />
</beans> </beans>

View File

@@ -1,88 +1,88 @@
# Enable ghosting of records on deletion # Enable ghosting of records on deletion
rm.ghosting.enabled=true rm.ghosting.enabled=true
# Notification configuration # Notification configuration
rm.notification.role=RecordsManager rm.notification.role=RecordsManager
# NOTE: the notification subject can now be set within the usual I18N property files per notification template # 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. # Turn off imap server attachments if we are using RM.
# TODO : Longer term needs to have a query based, dynamic # TODO : Longer term needs to have a query based, dynamic
# exclusion for RM sites. # exclusion for RM sites.
# #
imap.server.attachments.extraction.enabled=false imap.server.attachments.extraction.enabled=false
# #
# Enable auditing # Enable auditing
# #
audit.enabled=true audit.enabled=true
audit.rm.enabled=true audit.rm.enabled=true
#audit.rm.runas=admin #audit.rm.runas=admin
#audit.filter.alfresco-access.transaction.user=~null;.* #audit.filter.alfresco-access.transaction.user=~null;.*
# #
# Extended permission service cache sizing # Extended permission service cache sizing
# #
cache.writersSharedCache.maxItems=10000 cache.writersSharedCache.maxItems=10000
cache.writersSharedCache.cluster.type=fully-distributed cache.writersSharedCache.cluster.type=fully-distributed
# #
# Indicates whether RM rules will be run as Admin or not by default # Indicates whether RM rules will be run as Admin or not by default
# #
rm.rule.runasadmin=true rm.rule.runasadmin=true
# #
# Auto-complete suggestion parameters # Auto-complete suggestion parameters
# #
# The minimum size of fragment supplied that will trigger a search for suggestions for auto completion # The minimum size of fragment supplied that will trigger a search for suggestions for auto completion
rm.autocompletesuggestion.minfragmentsize=2 rm.autocompletesuggestion.minfragmentsize=2
# The maximum number of path suggestions to supply # The maximum number of path suggestions to supply
rm.autocompletesuggestion.maxsuggestions.path=5 rm.autocompletesuggestion.maxsuggestions.path=5
# The maximum number of node suggestions to supply # The maximum number of node suggestions to supply
rm.autocompletesuggestion.maxsuggestions.node=5 rm.autocompletesuggestion.maxsuggestions.node=5
# The maximum number of date suggestions to supply # The maximum number of date suggestions to supply
rm.autocompletesuggestion.maxsuggestions.date=5 rm.autocompletesuggestion.maxsuggestions.date=5
# Comma separated list of types/aspects to be used by the node parameter autocomplete suggester # Comma separated list of types/aspects to be used by the node parameter autocomplete suggester
rm.autocompletesuggestion.nodeParameterSuggester.aspectsAndTypes=rma:record,cm:content rm.autocompletesuggestion.nodeParameterSuggester.aspectsAndTypes=rma:record,cm:content
# #
# Global RM retention lifecycle trigger cron job expression # Global RM retention lifecycle trigger cron job expression
# #
rm.dispositionlifecycletrigger.cronexpression=0 0/5 * * * ? rm.dispositionlifecycletrigger.cronexpression=0 0/5 * * * ?
# #
# Records contributors group # Records contributors group
# #
# if false then record contributor check is ignored and all users can contribute records from # 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 # 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'. # in order for them to contribute a record from a collaboration site. Default value 'false'.
rm.record.contributors.group.enabled=false rm.record.contributors.group.enabled=false
# record contributors group, default value 'RECORD_CONTRIBUTORS' # record contributors group, default value 'RECORD_CONTRIBUTORS'
rm.record.contributors.group.name=RECORD_CONTRIBUTORS rm.record.contributors.group.name=RECORD_CONTRIBUTORS
# #
# Content cleansing # Content cleansing
# #
rm.content.cleansing.enabled=false rm.content.cleansing.enabled=false
rm.content.cleaner=contentCleanser.522022M rm.content.cleaner=contentCleanser.522022M
# Indicates whether mandatory properties are checked before completing a record # Indicates whether mandatory properties are checked before completing a record
# #
rm.completerecord.mandatorypropertiescheck.enabled=true rm.completerecord.mandatorypropertiescheck.enabled=true
# #
# Indicates whether the existing file plan is converted to a standard file plan during # 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. # 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 # 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 # on the individual records and will not be visible in the UI, but can be assessed via
# deprecated model properties in the rma namespace. # deprecated model properties in the rma namespace.
# #
rm.patch.v22.convertToStandardFilePlan=false rm.patch.v22.convertToStandardFilePlan=false
# #
# Extended auto-version behaviour. If true and other auto-version properties are satisfied, then # 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. # a document will be auto-versioned when its type is changed.
# #
version.store.enableAutoVersionOnTypeChange=false version.store.enableAutoVersionOnTypeChange=false

View File

@@ -1,90 +1,90 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!-- Default Audit Configuration --> <!-- Default Audit Configuration -->
<Audit <Audit
xmlns="http://www.alfresco.org/repo/audit/model/3.2" xmlns="http://www.alfresco.org/repo/audit/model/3.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.alfresco.org/repo/audit/model/3.2 alfresco-audit-3.2.xsd" xsi:schemaLocation="http://www.alfresco.org/repo/audit/model/3.2 alfresco-audit-3.2.xsd"
> >
<DataExtractors> <DataExtractors>
<DataExtractor name="simpleValue" registeredName="auditModel.extractor.simpleValue"/> <DataExtractor name="simpleValue" registeredName="auditModel.extractor.simpleValue"/>
<DataExtractor name="nullValue" registeredName="auditModel.extractor.nullValue"/> <DataExtractor name="nullValue" registeredName="auditModel.extractor.nullValue"/>
<DataExtractor name="nodeName" registeredName="auditModel.extractor.nodeName"/> <DataExtractor name="nodeName" registeredName="auditModel.extractor.nodeName"/>
<DataExtractor name="nodeType" registeredName="auditModel.extractor.nodeType"/> <DataExtractor name="nodeType" registeredName="auditModel.extractor.nodeType"/>
<DataExtractor name="userRoles" registeredName="org_alfresco_module_rm_userRolesExtractor"/> <DataExtractor name="userRoles" registeredName="org_alfresco_module_rm_userRolesExtractor"/>
<DataExtractor name="namePath" registeredName="org_alfresco_module_rm_namePathExtractor"/> <DataExtractor name="namePath" registeredName="org_alfresco_module_rm_namePathExtractor"/>
<DataExtractor name="nodeRefPath" registeredName="org_alfresco_module_rm_nodeRefPathExtractor"/> <DataExtractor name="nodeRefPath" registeredName="org_alfresco_module_rm_nodeRefPathExtractor"/>
<DataExtractor name="nodeIdentifier" registeredName="org_alfresco_module_rm_identifierExtractor"/> <DataExtractor name="nodeIdentifier" registeredName="org_alfresco_module_rm_identifierExtractor"/>
</DataExtractors> </DataExtractors>
<DataGenerators> <DataGenerators>
<DataGenerator name="personFullName" registeredName="auditModel.generator.personFullName"/> <DataGenerator name="personFullName" registeredName="auditModel.generator.personFullName"/>
</DataGenerators> </DataGenerators>
<PathMappings> <PathMappings>
<PathMap source="/RM" target="/RM"/> <PathMap source="/RM" target="/RM"/>
<!-- Force the fullName generator to trigger --> <!-- Force the fullName generator to trigger -->
<PathMap source="/RM/event/node" target="/RM/event/person"/> <PathMap source="/RM/event/node" target="/RM/event/person"/>
<PathMap source="/alfresco-api/post/AuthenticationService/authenticate" target="/RM/login"/> <PathMap source="/alfresco-api/post/AuthenticationService/authenticate" target="/RM/login"/>
</PathMappings> </PathMappings>
<Application name="RM" key="RM"> <Application name="RM" key="RM">
<AuditPath key="event"> <AuditPath key="event">
<!-- Record user details --> <!-- Record user details -->
<AuditPath key="person"> <AuditPath key="person">
<RecordValue key="roles" dataExtractor="userRoles"/> <RecordValue key="roles" dataExtractor="userRoles"/>
<GenerateValue key="fullName" dataGenerator="personFullName"/> <GenerateValue key="fullName" dataGenerator="personFullName"/>
</AuditPath> </AuditPath>
<!-- Record a description of the event --> <!-- Record a description of the event -->
<AuditPath key="name"> <AuditPath key="name">
<RecordValue key="value" dataExtractor="simpleValue"/> <RecordValue key="value" dataExtractor="simpleValue"/>
</AuditPath> </AuditPath>
<!-- Record the node's details --> <!-- Record the node's details -->
<AuditPath key="node"> <AuditPath key="node">
<RecordValue key="noderef" dataExtractor="simpleValue"/> <RecordValue key="noderef" dataExtractor="simpleValue"/>
<RecordValue key="name" dataExtractor="nodeName"/> <RecordValue key="name" dataExtractor="nodeName"/>
<RecordValue key="type" dataExtractor="nodeType"/> <RecordValue key="type" dataExtractor="nodeType"/>
<RecordValue key="namePath" dataExtractor="namePath"/> <RecordValue key="namePath" dataExtractor="namePath"/>
<RecordValue key="nodeRefPath" dataExtractor="nodeRefPath"/> <RecordValue key="nodeRefPath" dataExtractor="nodeRefPath"/>
<RecordValue key="identifier" dataExtractor="nodeIdentifier"/> <RecordValue key="identifier" dataExtractor="nodeIdentifier"/>
<AuditPath key="changes"> <AuditPath key="changes">
<AuditPath key="before"> <AuditPath key="before">
<RecordValue key="value" dataExtractor="simpleValue"/> <RecordValue key="value" dataExtractor="simpleValue"/>
</AuditPath> </AuditPath>
<AuditPath key="after"> <AuditPath key="after">
<RecordValue key="value" dataExtractor="simpleValue"/> <RecordValue key="value" dataExtractor="simpleValue"/>
</AuditPath> </AuditPath>
</AuditPath> </AuditPath>
</AuditPath> </AuditPath>
<!-- <!--
RM action parameters RM action parameters
* Keyed by action name to be more selective * Keyed by action name to be more selective
* Only record the parameters if they are of interest * Only record the parameters if they are of interest
--> -->
<!-- A test action --> <!-- A test action -->
<AuditPath key="testAction"> <AuditPath key="testAction">
<AuditPath key="parameters"> <AuditPath key="parameters">
<AuditPath key="testActionParam"> <AuditPath key="testActionParam">
<RecordValue key="value" dataExtractor="simpleValue"/> <RecordValue key="value" dataExtractor="simpleValue"/>
</AuditPath> </AuditPath>
</AuditPath> </AuditPath>
</AuditPath> </AuditPath>
</AuditPath> </AuditPath>
<AuditPath key="login"> <AuditPath key="login">
<AuditPath key="args"> <AuditPath key="args">
<AuditPath key="userName"> <AuditPath key="userName">
<RecordValue key="value" dataExtractor="simpleValue"/> <RecordValue key="value" dataExtractor="simpleValue"/>
</AuditPath> </AuditPath>
</AuditPath> </AuditPath>
<AuditPath key="no-error"> <AuditPath key="no-error">
<GenerateValue key="fullName" dataGenerator="personFullName"/> <GenerateValue key="fullName" dataGenerator="personFullName"/>
</AuditPath> </AuditPath>
<AuditPath key="error"> <AuditPath key="error">
<RecordValue key="value" dataExtractor="nullValue"/> <RecordValue key="value" dataExtractor="nullValue"/>
</AuditPath> </AuditPath>
</AuditPath> </AuditPath>
</Application> </Application>
</Audit> </Audit>

View File

@@ -1,254 +1,254 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<view:view xmlns:view="http://www.alfresco.org/view/repository/1.0" <view:view xmlns:view="http://www.alfresco.org/view/repository/1.0"
xmlns:nt="http://www.jcp.org/jcr/nt/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0"
xmlns:alf="http://www.alfresco.org" xmlns:alf="http://www.alfresco.org"
xmlns:d="http://www.alfresco.org/model/dictionary/1.0" xmlns:d="http://www.alfresco.org/model/dictionary/1.0"
xmlns:act="http://www.alfresco.org/model/action/1.0" xmlns:act="http://www.alfresco.org/model/action/1.0"
xmlns:wf="http://www.alfresco.org/model/workflow/1.0" xmlns:wf="http://www.alfresco.org/model/workflow/1.0"
xmlns:app="http://www.alfresco.org/model/application/1.0" xmlns:app="http://www.alfresco.org/model/application/1.0"
xmlns:usr="http://www.alfresco.org/model/user/1.0" xmlns:usr="http://www.alfresco.org/model/user/1.0"
xmlns:ver="http://www.alfresco.org/model/versionstore/1.0" xmlns:ver="http://www.alfresco.org/model/versionstore/1.0"
xmlns:cm="http://www.alfresco.org/model/content/1.0" xmlns:cm="http://www.alfresco.org/model/content/1.0"
xmlns:sv="http://www.jcp.org/jcr/sv/1.0" xmlns:sv="http://www.jcp.org/jcr/sv/1.0"
xmlns:mix="http://www.jcp.org/jcr/mix/1.0" xmlns:mix="http://www.jcp.org/jcr/mix/1.0"
xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0"
xmlns:sys="http://www.alfresco.org/model/system/1.0" xmlns:sys="http://www.alfresco.org/model/system/1.0"
xmlns:rule="http://www.alfresco.org/model/rule/1.0" xmlns:rule="http://www.alfresco.org/model/rule/1.0"
xmlns:fm="http://www.alfresco.org/model/forum/1.0" xmlns:fm="http://www.alfresco.org/model/forum/1.0"
xmlns:bpm="http://www.alfresco.org/model/bpm/1.0" xmlns:bpm="http://www.alfresco.org/model/bpm/1.0"
xmlns:rma="http://www.alfresco.org/model/recordsmanagement/1.0" xmlns:rma="http://www.alfresco.org/model/recordsmanagement/1.0"
xmlns:custom="custom.model" xmlns:custom="custom.model"
xmlns="" > xmlns="" >
<cm:folder view:childName="cm:records_management"> <cm:folder view:childName="cm:records_management">
<view:properties> <view:properties>
<sys:store-protocol>workspace</sys:store-protocol> <sys:store-protocol>workspace</sys:store-protocol>
<sys:store-identifier>SpacesStore</sys:store-identifier> <sys:store-identifier>SpacesStore</sys:store-identifier>
<sys:node-uuid>rm_config_folder</sys:node-uuid> <sys:node-uuid>rm_config_folder</sys:node-uuid>
<cm:name>Records Management</cm:name> <cm:name>Records Management</cm:name>
<cm:title>Records Management</cm:title> <cm:title>Records Management</cm:title>
<cm:description>Configuration information for the Records Management application.</cm:description> <cm:description>Configuration information for the Records Management application.</cm:description>
</view:properties> </view:properties>
<view:associations> <view:associations>
<cm:contains> <cm:contains>
<cm:content view:childName="cm:rm_event_config.json"> <cm:content view:childName="cm:rm_event_config.json">
<view:aspects> <view:aspects>
<cm:titled></cm:titled> <cm:titled></cm:titled>
</view:aspects> </view:aspects>
<view:properties> <view:properties>
<sys:store-protocol>workspace</sys:store-protocol> <sys:store-protocol>workspace</sys:store-protocol>
<sys:store-identifier>SpacesStore</sys:store-identifier> <sys:store-identifier>SpacesStore</sys:store-identifier>
<sys:node-uuid>rm_event_config</sys:node-uuid> <sys:node-uuid>rm_event_config</sys:node-uuid>
<cm:description>Records management event configuration.</cm:description> <cm:description>Records management event configuration.</cm:description>
<cm:content>contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/rmEventConfigBootstrap.json|mimetype=text/plain|encoding=UTF-8</cm:content> <cm:content>contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/rmEventConfigBootstrap.json|mimetype=text/plain|encoding=UTF-8</cm:content>
<cm:title>rm_event_config.json</cm:title> <cm:title>rm_event_config.json</cm:title>
<cm:name>rm_event_config.json</cm:name> <cm:name>rm_event_config.json</cm:name>
</view:properties> </view:properties>
</cm:content> </cm:content>
<cm:dictionaryModel view:childName="cm:recordsCustomModel.xml"> <cm:dictionaryModel view:childName="cm:recordsCustomModel.xml">
<view:aspects> <view:aspects>
<cm:titled></cm:titled> <cm:titled></cm:titled>
</view:aspects> </view:aspects>
<view:properties> <view:properties>
<sys:store-protocol>workspace</sys:store-protocol> <sys:store-protocol>workspace</sys:store-protocol>
<sys:store-identifier>SpacesStore</sys:store-identifier> <sys:store-identifier>SpacesStore</sys:store-identifier>
<sys:node-uuid>records_management_custom_model</sys:node-uuid> <sys:node-uuid>records_management_custom_model</sys:node-uuid>
<cm:description>Records Management Custom Model</cm:description> <cm:description>Records Management Custom Model</cm:description>
<cm:content>contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/recordsCustomModel.xml|mimetype=text/plain|encoding=UTF-8</cm:content> <cm:content>contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/recordsCustomModel.xml|mimetype=text/plain|encoding=UTF-8</cm:content>
<cm:title>recordsCustomModel.xml</cm:title> <cm:title>recordsCustomModel.xml</cm:title>
<cm:name>recordsCustomModel.xml</cm:name> <cm:name>recordsCustomModel.xml</cm:name>
<cm:modelName>{http://www.alfresco.org/model/rmcustom/1.0}rmcustom</cm:modelName> <cm:modelName>{http://www.alfresco.org/model/rmcustom/1.0}rmcustom</cm:modelName>
<cm:modelDescription>Records Management Custom Model</cm:modelDescription> <cm:modelDescription>Records Management Custom Model</cm:modelDescription>
<cm:modelAuthor>Alfresco</cm:modelAuthor> <cm:modelAuthor>Alfresco</cm:modelAuthor>
<cm:modelVersion>1.0</cm:modelVersion> <cm:modelVersion>1.0</cm:modelVersion>
<cm:modelActive>true</cm:modelActive> <cm:modelActive>true</cm:modelActive>
</view:properties> </view:properties>
</cm:dictionaryModel> </cm:dictionaryModel>
<cm:folder view:childName="cm:records_management_behavior_scripts"> <cm:folder view:childName="cm:records_management_behavior_scripts">
<view:properties> <view:properties>
<sys:store-protocol>workspace</sys:store-protocol> <sys:store-protocol>workspace</sys:store-protocol>
<sys:store-identifier>SpacesStore</sys:store-identifier> <sys:store-identifier>SpacesStore</sys:store-identifier>
<sys:node-uuid>rm_behavior_scripts</sys:node-uuid> <sys:node-uuid>rm_behavior_scripts</sys:node-uuid>
<cm:name>Records Management Behavior Scripts</cm:name> <cm:name>Records Management Behavior Scripts</cm:name>
<cm:title>Records Management Behavior Scripts</cm:title> <cm:title>Records Management Behavior Scripts</cm:title>
<cm:description>Scripts intended for execution in response to RM events.</cm:description> <cm:description>Scripts intended for execution in response to RM events.</cm:description>
</view:properties> </view:properties>
<view:associations> <view:associations>
<cm:contains> <cm:contains>
<!-- TODO Will likely remove this script. Here for test purposes. <!-- TODO Will likely remove this script. Here for test purposes.
Or perhaps replace it with a product-ready script --> Or perhaps replace it with a product-ready script -->
<cm:content view:childName="cm:onCreate_supersedes.js"> <cm:content view:childName="cm:onCreate_supersedes.js">
<view:aspects> <view:aspects>
<cm:titled></cm:titled> <cm:titled></cm:titled>
</view:aspects> </view:aspects>
<view:properties> <view:properties>
<sys:store-protocol>workspace</sys:store-protocol> <sys:store-protocol>workspace</sys:store-protocol>
<sys:store-identifier>SpacesStore</sys:store-identifier> <sys:store-identifier>SpacesStore</sys:store-identifier>
<cm:description>Records management sample script.</cm:description> <cm:description>Records management sample script.</cm:description>
<cm:content>contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/onCreate_supersedes.js|mimetype=text/javascript|encoding=UTF-8</cm:content> <cm:content>contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/onCreate_supersedes.js|mimetype=text/javascript|encoding=UTF-8</cm:content>
<cm:title>onCreate_supersedes.js</cm:title> <cm:title>onCreate_supersedes.js</cm:title>
<cm:name>onCreate_supersedes.js</cm:name> <cm:name>onCreate_supersedes.js</cm:name>
</view:properties> </view:properties>
</cm:content> </cm:content>
</cm:contains> </cm:contains>
</view:associations> </view:associations>
</cm:folder> </cm:folder>
<cm:folder view:childName="cm:records_management_scripts"> <cm:folder view:childName="cm:records_management_scripts">
<view:properties> <view:properties>
<sys:store-protocol>workspace</sys:store-protocol> <sys:store-protocol>workspace</sys:store-protocol>
<sys:store-identifier>SpacesStore</sys:store-identifier> <sys:store-identifier>SpacesStore</sys:store-identifier>
<sys:node-uuid>rm_scripts</sys:node-uuid> <sys:node-uuid>rm_scripts</sys:node-uuid>
<cm:name>Records Management Scripts</cm:name> <cm:name>Records Management Scripts</cm:name>
<cm:title>Records Management Scripts</cm:title> <cm:title>Records Management Scripts</cm:title>
<cm:description>Scripts specific to RM that can also be executed by RM rules.</cm:description> <cm:description>Scripts specific to RM that can also be executed by RM rules.</cm:description>
</view:properties> </view:properties>
</cm:folder> </cm:folder>
<cm:folder view:childName="cm:records_management_email_templates"> <cm:folder view:childName="cm:records_management_email_templates">
<view:properties> <view:properties>
<sys:store-protocol>workspace</sys:store-protocol> <sys:store-protocol>workspace</sys:store-protocol>
<sys:store-identifier>SpacesStore</sys:store-identifier> <sys:store-identifier>SpacesStore</sys:store-identifier>
<sys:node-uuid>records_management_email_templates</sys:node-uuid> <sys:node-uuid>records_management_email_templates</sys:node-uuid>
<cm:name>Records Management Email Templates</cm:name> <cm:name>Records Management Email Templates</cm:name>
<cm:title>Records Management Email Templates</cm:title> <cm:title>Records Management Email Templates</cm:title>
<cm:description>Email templates for records management.</cm:description> <cm:description>Email templates for records management.</cm:description>
</view:properties> </view:properties>
<view:associations> <view:associations>
<cm:contains> <cm:contains>
<cm:content <cm:content
view:childName="cm:notify-records-due-for-review-email.ftl"> view:childName="cm:notify-records-due-for-review-email.ftl">
<view:aspects> <view:aspects>
<cm:titled></cm:titled> <cm:titled></cm:titled>
<cm:author></cm:author> <cm:author></cm:author>
<app:inlineeditable></app:inlineeditable> <app:inlineeditable></app:inlineeditable>
<cm:versionable></cm:versionable> <cm:versionable></cm:versionable>
</view:aspects> </view:aspects>
<view:properties> <view:properties>
<app:editInline> <app:editInline>
true true
</app:editInline> </app:editInline>
<cm:description>Email template for notify records due for review job.</cm:description> <cm:description>Email template for notify records due for review job.</cm:description>
<cm:content>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_</cm:content> <cm:content>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_</cm:content>
<cm:title>notify-records-due-for-review-email.ftl</cm:title> <cm:title>notify-records-due-for-review-email.ftl</cm:title>
<cm:author></cm:author> <cm:author></cm:author>
<cm:name>notify-records-due-for-review-email.ftl</cm:name> <cm:name>notify-records-due-for-review-email.ftl</cm:name>
<cm:lastPatchUpdate>org_alfresco_module_rm_notificationTemplatePatch</cm:lastPatchUpdate> <cm:lastPatchUpdate>org_alfresco_module_rm_notificationTemplatePatch</cm:lastPatchUpdate>
</view:properties> </view:properties>
<view:associations></view:associations> <view:associations></view:associations>
</cm:content> </cm:content>
<cm:content view:childName="cm:record-superseded-email.ftl"> <cm:content view:childName="cm:record-superseded-email.ftl">
<view:aspects> <view:aspects>
<cm:titled></cm:titled> <cm:titled></cm:titled>
<cm:author></cm:author> <cm:author></cm:author>
<app:inlineeditable></app:inlineeditable> <app:inlineeditable></app:inlineeditable>
<cm:versionable></cm:versionable> <cm:versionable></cm:versionable>
</view:aspects> </view:aspects>
<view:properties> <view:properties>
<sys:store-protocol>workspace</sys:store-protocol> <sys:store-protocol>workspace</sys:store-protocol>
<sys:store-identifier>SpacesStore</sys:store-identifier> <sys:store-identifier>SpacesStore</sys:store-identifier>
<sys:node-uuid>record_superseded_template</sys:node-uuid> <sys:node-uuid>record_superseded_template</sys:node-uuid>
<cm:description>Record superseded email template.</cm:description> <cm:description>Record superseded email template.</cm:description>
<cm:content>contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/record-superseded-email.ftl|mimetype=text/plain|encoding=UTF-8</cm:content> <cm:content>contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/record-superseded-email.ftl|mimetype=text/plain|encoding=UTF-8</cm:content>
<cm:title>record-superseded-email.ftl</cm:title> <cm:title>record-superseded-email.ftl</cm:title>
<cm:name>record-superseded-email.ftl</cm:name> <cm:name>record-superseded-email.ftl</cm:name>
<cm:lastPatchUpdate>org_alfresco_module_rm_notificationTemplatePatch</cm:lastPatchUpdate> <cm:lastPatchUpdate>org_alfresco_module_rm_notificationTemplatePatch</cm:lastPatchUpdate>
</view:properties> </view:properties>
</cm:content> </cm:content>
<cm:content view:childName="cm:record-rejected-email.ftl"> <cm:content view:childName="cm:record-rejected-email.ftl">
<view:aspects> <view:aspects>
<cm:titled></cm:titled> <cm:titled></cm:titled>
<cm:author></cm:author> <cm:author></cm:author>
<app:inlineeditable></app:inlineeditable> <app:inlineeditable></app:inlineeditable>
<cm:versionable></cm:versionable> <cm:versionable></cm:versionable>
</view:aspects> </view:aspects>
<view:properties> <view:properties>
<sys:store-protocol>workspace</sys:store-protocol> <sys:store-protocol>workspace</sys:store-protocol>
<sys:store-identifier>SpacesStore</sys:store-identifier> <sys:store-identifier>SpacesStore</sys:store-identifier>
<sys:node-uuid>record_rejected_template</sys:node-uuid> <sys:node-uuid>record_rejected_template</sys:node-uuid>
<cm:description>Record rejected email template.</cm:description> <cm:description>Record rejected email template.</cm:description>
<cm:content>contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/record-rejected-email.ftl|mimetype=text/plain|encoding=UTF-8</cm:content> <cm:content>contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/content/record-rejected-email.ftl|mimetype=text/plain|encoding=UTF-8</cm:content>
<cm:title>record-rejected-email.ftl</cm:title> <cm:title>record-rejected-email.ftl</cm:title>
<cm:name>record-rejected-email.ftl</cm:name> <cm:name>record-rejected-email.ftl</cm:name>
<cm:lastPatchUpdate>org_alfresco_module_rm_notificationTemplatePatch</cm:lastPatchUpdate> <cm:lastPatchUpdate>org_alfresco_module_rm_notificationTemplatePatch</cm:lastPatchUpdate>
</view:properties> </view:properties>
</cm:content> </cm:content>
</cm:contains> </cm:contains>
</view:associations> </view:associations>
</cm:folder> </cm:folder>
<cm:folder view:childName="cm:rm_report_templates"> <cm:folder view:childName="cm:rm_report_templates">
<view:properties> <view:properties>
<sys:store-protocol>workspace</sys:store-protocol> <sys:store-protocol>workspace</sys:store-protocol>
<sys:store-identifier>SpacesStore</sys:store-identifier> <sys:store-identifier>SpacesStore</sys:store-identifier>
<sys:node-uuid>rm_report_templates</sys:node-uuid> <sys:node-uuid>rm_report_templates</sys:node-uuid>
<cm:name>Records Management Report Templates</cm:name> <cm:name>Records Management Report Templates</cm:name>
<cm:title>Records Management Report Templates</cm:title> <cm:title>Records Management Report Templates</cm:title>
<cm:description>Records management report templates.</cm:description> <cm:description>Records management report templates.</cm:description>
</view:properties> </view:properties>
<view:associations> <view:associations>
<cm:contains> <cm:contains>
<cm:content view:childName="cm:report_rmr_destructionReport.html.ftl"> <cm:content view:childName="cm:report_rmr_destructionReport.html.ftl">
<view:aspects> <view:aspects>
<cm:titled></cm:titled> <cm:titled></cm:titled>
<cm:author></cm:author> <cm:author></cm:author>
</view:aspects> </view:aspects>
<view:properties> <view:properties>
<sys:store-protocol>workspace</sys:store-protocol> <sys:store-protocol>workspace</sys:store-protocol>
<sys:store-identifier>SpacesStore</sys:store-identifier> <sys:store-identifier>SpacesStore</sys:store-identifier>
<sys:node-uuid>rmr_destructionReport</sys:node-uuid> <sys:node-uuid>rmr_destructionReport</sys:node-uuid>
<cm:description>Desruction report template.</cm:description> <cm:description>Desruction report template.</cm:description>
<cm:content>contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_destructionReport.html.ftl|mimetype=text/plain|encoding=UTF-8</cm:content> <cm:content>contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_destructionReport.html.ftl|mimetype=text/plain|encoding=UTF-8</cm:content>
<cm:title>Destruction Report Template</cm:title> <cm:title>Destruction Report Template</cm:title>
<cm:name>report_rmr_destructionReport.html.ftl</cm:name> <cm:name>report_rmr_destructionReport.html.ftl</cm:name>
</view:properties> </view:properties>
</cm:content> </cm:content>
</cm:contains> </cm:contains>
<cm:contains> <cm:contains>
<cm:content view:childName="cm:report_rmr_transferReport.html.ftl"> <cm:content view:childName="cm:report_rmr_transferReport.html.ftl">
<view:aspects> <view:aspects>
<cm:titled></cm:titled> <cm:titled></cm:titled>
<cm:author></cm:author> <cm:author></cm:author>
</view:aspects> </view:aspects>
<view:properties> <view:properties>
<sys:store-protocol>workspace</sys:store-protocol> <sys:store-protocol>workspace</sys:store-protocol>
<sys:store-identifier>SpacesStore</sys:store-identifier> <sys:store-identifier>SpacesStore</sys:store-identifier>
<sys:node-uuid>rmr_transferReport</sys:node-uuid> <sys:node-uuid>rmr_transferReport</sys:node-uuid>
<cm:description>Transfer report template.</cm:description> <cm:description>Transfer report template.</cm:description>
<cm:content>contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_transferReport.html.ftl|mimetype=text/plain|encoding=UTF-8</cm:content> <cm:content>contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_transferReport.html.ftl|mimetype=text/plain|encoding=UTF-8</cm:content>
<cm:title>Transfer Report Template</cm:title> <cm:title>Transfer Report Template</cm:title>
<cm:name>report_rmr_transferReport.html.ftl</cm:name> <cm:name>report_rmr_transferReport.html.ftl</cm:name>
</view:properties> </view:properties>
</cm:content> </cm:content>
</cm:contains> </cm:contains>
<cm:contains> <cm:contains>
<cm:content view:childName="cm:report_rmr_holdReport.html.ftl"> <cm:content view:childName="cm:report_rmr_holdReport.html.ftl">
<view:aspects> <view:aspects>
<cm:titled></cm:titled> <cm:titled></cm:titled>
<cm:author></cm:author> <cm:author></cm:author>
</view:aspects> </view:aspects>
<view:properties> <view:properties>
<sys:store-protocol>workspace</sys:store-protocol> <sys:store-protocol>workspace</sys:store-protocol>
<sys:store-identifier>SpacesStore</sys:store-identifier> <sys:store-identifier>SpacesStore</sys:store-identifier>
<sys:node-uuid>rmr_holdReport</sys:node-uuid> <sys:node-uuid>rmr_holdReport</sys:node-uuid>
<cm:description>Hold report template.</cm:description> <cm:description>Hold report template.</cm:description>
<cm:content>contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_holdReport.html.ftl|mimetype=text/plain|encoding=UTF-8</cm:content> <cm:content>contentUrl=classpath:alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_holdReport.html.ftl|mimetype=text/plain|encoding=UTF-8</cm:content>
<cm:title>Hold Report Template</cm:title> <cm:title>Hold Report Template</cm:title>
<cm:name>report_rmr_holdReport.html.ftl</cm:name> <cm:name>report_rmr_holdReport.html.ftl</cm:name>
</view:properties> </view:properties>
</cm:content> </cm:content>
</cm:contains> </cm:contains>
</view:associations> </view:associations>
</cm:folder> </cm:folder>
</cm:contains> </cm:contains>
</view:associations> </view:associations>
</cm:folder> </cm:folder>
</view:view> </view:view>

View File

@@ -1,150 +1,150 @@
<#-- <#--
#%L #%L
Alfresco Records Management Module Alfresco Records Management Module
%% %%
Copyright (C) 2005 - 2016 Alfresco Software Limited Copyright (C) 2005 - 2016 Alfresco Software Limited
%% %%
This file is part of the Alfresco software. This file is part of the Alfresco software.
- -
If the software was purchased under a paid Alfresco license, the terms of If the software was purchased under a paid Alfresco license, the terms of
the paid license agreement will prevail. Otherwise, the software is the paid license agreement will prevail. Otherwise, the software is
provided under the following open source license terms: provided under the following open source license terms:
- -
Alfresco is free software: you can redistribute it and/or modify Alfresco is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or the Free Software Foundation, either version 3 of the License, or
(at your option) any later version. (at your option) any later version.
- -
Alfresco is distributed in the hope that it will be useful, Alfresco is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details. GNU Lesser General Public License for more details.
- -
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with Alfresco. If not, see <http://www.gnu.org/licenses/>. along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
#L% #L%
--> -->
<html> <html>
<head> <head>
<style type="text/css"><!-- <style type="text/css"><!--
body body
{ {
font-family: Arial, sans-serif; font-family: Arial, sans-serif;
font-size: 14px; font-size: 14px;
color: #4c4c4c; color: #4c4c4c;
} }
a, a:visited a, a:visited
{ {
color: #0072cf; color: #0072cf;
} }
--></style> --></style>
</head> </head>
<body bgcolor="#dddddd"> <body bgcolor="#dddddd">
<table width="100%" cellpadding="20" cellspacing="0" border="0" bgcolor="#dddddd"> <table width="100%" cellpadding="20" cellspacing="0" border="0" bgcolor="#dddddd">
<tr> <tr>
<td width="100%" align="center"> <td width="100%" align="center">
<table width="70%" cellpadding="0" cellspacing="0" bgcolor="white" style="background-color: white; border: 1px solid #aaaaaa;"> <table width="70%" cellpadding="0" cellspacing="0" bgcolor="white" style="background-color: white; border: 1px solid #aaaaaa;">
<tr> <tr>
<td width="100%"> <td width="100%">
<table width="100%" cellpadding="0" cellspacing="0" border="0"> <table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td style="padding: 10px 30px 0px;"> <td style="padding: 10px 30px 0px;">
<table width="100%" cellpadding="0" cellspacing="0" border="0"> <table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td> <td>
<table cellpadding="0" cellspacing="0" border="0"> <table cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td> <td>
<img src="${shareUrl}/res/components/images/task-64.png" alt="" width="64" height="64" border="0" style="padding-right: 20px;" /> <img src="${shareUrl}/res/components/images/task-64.png" alt="" width="64" height="64" border="0" style="padding-right: 20px;" />
</td> </td>
<td> <td>
<div style="font-size: 22px; padding-bottom: 4px;"> <div style="font-size: 22px; padding-bottom: 4px;">
Records due for review. Records due for review.
</div> </div>
<div style="font-size: 13px;"> <div style="font-size: 13px;">
${date?datetime?string.full} ${date?datetime?string.full}
</div> </div>
</td> </td>
</tr> </tr>
</table> </table>
<div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;"> <div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;">
<p>Hi,</p> <p>Hi,</p>
<p>The following records are now due for review:</p> <p>The following records are now due for review:</p>
<#if (args.records)??> <#if (args.records)??>
<table cellpadding="0" callspacing="0" border="0" bgcolor="#eeeeee" style="padding:10px; border: 1px solid #aaaaaa;"> <table cellpadding="0" callspacing="0" border="0" bgcolor="#eeeeee" style="padding:10px; border: 1px solid #aaaaaa;">
<#list args.records as record> <#list args.records as record>
<tr> <tr>
<td> <td>
<table cellpadding="0" cellspacing="0" border="0"> <table cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td valign="top"> <td valign="top">
<img src="${shareUrl}/res/components/documentlibrary/images/record-64.png" alt="" width="64" height="64" border="0" style="padding-right: 10px;" /> <img src="${shareUrl}/res/components/documentlibrary/images/record-64.png" alt="" width="64" height="64" border="0" style="padding-right: 10px;" />
</td> </td>
<td> <td>
<table cellpadding="2" cellspacing="0" border="0"> <table cellpadding="2" cellspacing="0" border="0">
<tr> <tr>
<td><b>${record.properties["rma:identifier"]!} ${record.name}</b></td> <td><b>${record.properties["rma:identifier"]!} ${record.name}</b></td>
</tr> </tr>
<tr> <tr>
<td>Click on this link to view the record:</td> <td>Click on this link to view the record:</td>
</tr> </tr>
<tr> <tr>
<td> <td>
<a href="${shareUrl}/page/site/${args.site}/document-details?nodeRef=${record.storeType}://${record.storeId}/${record.id}"> <a href="${shareUrl}/page/site/${args.site}/document-details?nodeRef=${record.storeType}://${record.storeId}/${record.id}">
${shareUrl}/page/site/${args.site}/document-details?nodeRef=${record.storeType}://${record.storeId}/${record.id}</a> ${shareUrl}/page/site/${args.site}/document-details?nodeRef=${record.storeType}://${record.storeId}/${record.id}</a>
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
<#if record_has_next> <#if record_has_next>
<tr><td><div style="border-top: 1px solid #aaaaaa; margin:12px;"></div></td></tr> <tr><td><div style="border-top: 1px solid #aaaaaa; margin:12px;"></div></td></tr>
</#if> </#if>
</#list> </#list>
</table> </table>
</#if> </#if>
<p>Sincerely,<br /> <p>Sincerely,<br />
Alfresco ${productName!""}</p> Alfresco ${productName!""}</p>
</div> </div>
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
<tr> <tr>
<td> <td>
<div style="border-top: 1px solid #aaaaaa;">&nbsp;</div> <div style="border-top: 1px solid #aaaaaa;">&nbsp;</div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td style="padding: 0px 30px; font-size: 13px;"> <td style="padding: 0px 30px; font-size: 13px;">
To find out more about Alfresco ${productName!""} visit <a href="http://www.alfresco.com">http://www.alfresco.com</a> To find out more about Alfresco ${productName!""} visit <a href="http://www.alfresco.com">http://www.alfresco.com</a>
</td> </td>
</tr> </tr>
<tr> <tr>
<td> <td>
<div style="border-bottom: 1px solid #aaaaaa;">&nbsp;</div> <div style="border-bottom: 1px solid #aaaaaa;">&nbsp;</div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td style="padding: 10px 30px;"> <td style="padding: 10px 30px;">
<img src="${shareUrl}/themes/default/images/app-logo.png" alt="" width="117" height="48" border="0" /> <img src="${shareUrl}/themes/default/images/app-logo.png" alt="" width="117" height="48" border="0" />
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
</table> </table>
</body> </body>
</html> </html>

View File

@@ -1,41 +1,41 @@
/* /*
* #%L * #%L
* Alfresco Records Management Module * Alfresco Records Management Module
* %% * %%
* Copyright (C) 2005 - 2016 Alfresco Software Limited * Copyright (C) 2005 - 2016 Alfresco Software Limited
* %% * %%
* This file is part of the Alfresco software. * This file is part of the Alfresco software.
* - * -
* If the software was purchased under a paid Alfresco license, the terms of * If the software was purchased under a paid Alfresco license, the terms of
* the paid license agreement will prevail. Otherwise, the software is * the paid license agreement will prevail. Otherwise, the software is
* provided under the following open source license terms: * provided under the following open source license terms:
* - * -
* Alfresco is free software: you can redistribute it and/or modify * Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by * it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or * the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version. * (at your option) any later version.
* - * -
* Alfresco is distributed in the hope that it will be useful, * Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details. * GNU Lesser General Public License for more details.
* - * -
* You should have received a copy of the GNU Lesser General Public License * You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>. * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
* #L% * #L%
*/ */
/** /**
* Main entrypoint for script. * Main entrypoint for script.
* *
* @method main * @method main
*/ */
function main() function main()
{ {
// Log debug message // Log debug message
logger.log("Record " + node.name + " has been superseded. Sending notification"); logger.log("Record " + node.name + " has been superseded. Sending notification");
// Send notification // Send notification
rmService.sendSupersededNotification(node); rmService.sendSupersededNotification(node);
} }
main(); main();

View File

@@ -1,146 +1,146 @@
<#-- <#--
#%L #%L
Alfresco Records Management Module Alfresco Records Management Module
%% %%
Copyright (C) 2005 - 2016 Alfresco Software Limited Copyright (C) 2005 - 2016 Alfresco Software Limited
%% %%
This file is part of the Alfresco software. This file is part of the Alfresco software.
- -
If the software was purchased under a paid Alfresco license, the terms of If the software was purchased under a paid Alfresco license, the terms of
the paid license agreement will prevail. Otherwise, the software is the paid license agreement will prevail. Otherwise, the software is
provided under the following open source license terms: provided under the following open source license terms:
- -
Alfresco is free software: you can redistribute it and/or modify Alfresco is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or the Free Software Foundation, either version 3 of the License, or
(at your option) any later version. (at your option) any later version.
- -
Alfresco is distributed in the hope that it will be useful, Alfresco is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details. GNU Lesser General Public License for more details.
- -
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with Alfresco. If not, see <http://www.gnu.org/licenses/>. along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
#L% #L%
--> -->
<html> <html>
<head> <head>
<style type="text/css"><!-- <style type="text/css"><!--
body body
{ {
font-family: Arial, sans-serif; font-family: Arial, sans-serif;
font-size: 14px; font-size: 14px;
color: #4c4c4c; color: #4c4c4c;
} }
a, a:visited a, a:visited
{ {
color: #0072cf; color: #0072cf;
} }
--></style> --></style>
</head> </head>
<body bgcolor="#dddddd"> <body bgcolor="#dddddd">
<table width="100%" cellpadding="20" cellspacing="0" border="0" bgcolor="#dddddd"> <table width="100%" cellpadding="20" cellspacing="0" border="0" bgcolor="#dddddd">
<tr> <tr>
<td width="100%" align="center"> <td width="100%" align="center">
<table width="70%" cellpadding="0" cellspacing="0" bgcolor="white" style="background-color: white; border: 1px solid #aaaaaa;"> <table width="70%" cellpadding="0" cellspacing="0" bgcolor="white" style="background-color: white; border: 1px solid #aaaaaa;">
<tr> <tr>
<td width="100%"> <td width="100%">
<table width="100%" cellpadding="0" cellspacing="0" border="0"> <table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td style="padding: 10px 30px 0px;"> <td style="padding: 10px 30px 0px;">
<table width="100%" cellpadding="0" cellspacing="0" border="0"> <table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td> <td>
<table cellpadding="0" cellspacing="0" border="0"> <table cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td> <td>
<img src="${shareUrl}/res/components/images/task-64.png" alt="" width="64" height="64" border="0" style="padding-right: 20px;" /> <img src="${shareUrl}/res/components/images/task-64.png" alt="" width="64" height="64" border="0" style="padding-right: 20px;" />
</td> </td>
<td> <td>
<div style="font-size: 22px; padding-bottom: 4px;"> <div style="font-size: 22px; padding-bottom: 4px;">
Record has been rejected Record has been rejected
</div> </div>
<div style="font-size: 13px;"> <div style="font-size: 13px;">
${args.rejectDate?datetime?string.full} ${args.rejectDate?datetime?string.full}
</div> </div>
</td> </td>
</tr> </tr>
</table> </table>
<div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;"> <div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;">
<p>Hello <b><i>${args.recordCreator}</i></b>,</p> <p>Hello <b><i>${args.recordCreator}</i></b>,</p>
<p><b><i>${args.rejectedPerson}</i></b> has rejected the following record with this reason:</p> <p><b><i>${args.rejectedPerson}</i></b> has rejected the following record with this reason:</p>
<p>${args.rejectReason}</p> <p>${args.rejectReason}</p>
<table cellpadding="0" callspacing="0" border="0" bgcolor="#eeeeee" style="padding:10px; border: 1px solid #aaaaaa;"> <table cellpadding="0" callspacing="0" border="0" bgcolor="#eeeeee" style="padding:10px; border: 1px solid #aaaaaa;">
<tr> <tr>
<td> <td>
<table cellpadding="0" cellspacing="0" border="0"> <table cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td valign="top"> <td valign="top">
<img src="${shareUrl}/res/rm/components/documentlibrary/images/record-64.png" alt="" width="64" height="64" border="0" style="padding-right: 10px;" /> <img src="${shareUrl}/res/rm/components/documentlibrary/images/record-64.png" alt="" width="64" height="64" border="0" style="padding-right: 10px;" />
</td> </td>
<td> <td>
<table cellpadding="2" cellspacing="0" border="0"> <table cellpadding="2" cellspacing="0" border="0">
<tr> <tr>
<td><b>${args.recordId} ${args.recordName}</b></td> <td><b>${args.recordId} ${args.recordName}</b></td>
</tr> </tr>
<tr> <tr>
<td>Click on this link to view the record:</td> <td>Click on this link to view the record:</td>
</tr> </tr>
<tr> <tr>
<td> <td>
<a href="${shareUrl}/page/site/${args.site}/document-details?nodeRef=${args.record.storeType}://${args.record.storeId}/${args.record.id}"> <a href="${shareUrl}/page/site/${args.site}/document-details?nodeRef=${args.record.storeType}://${args.record.storeId}/${args.record.id}">
${shareUrl}/page/site/${args.site}/document-details?nodeRef=${args.record.storeType}://${args.record.storeId}/${args.record.id}</a> ${shareUrl}/page/site/${args.site}/document-details?nodeRef=${args.record.storeType}://${args.record.storeId}/${args.record.id}</a>
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
<tr><td><div style="border-top: 1px solid #aaaaaa; margin:12px;"></div></td></tr> <tr><td><div style="border-top: 1px solid #aaaaaa; margin:12px;"></div></td></tr>
</table> </table>
<p>Sincerely,<br /> <p>Sincerely,<br />
Alfresco ${productName!""}</p> Alfresco ${productName!""}</p>
</div> </div>
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
<tr> <tr>
<td> <td>
<div style="border-top: 1px solid #aaaaaa;">&nbsp;</div> <div style="border-top: 1px solid #aaaaaa;">&nbsp;</div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td style="padding: 0px 30px; font-size: 13px;"> <td style="padding: 0px 30px; font-size: 13px;">
To find out more about Alfresco ${productName!""} visit <a href="http://www.alfresco.com">http://www.alfresco.com</a> To find out more about Alfresco ${productName!""} visit <a href="http://www.alfresco.com">http://www.alfresco.com</a>
</td> </td>
</tr> </tr>
<tr> <tr>
<td> <td>
<div style="border-bottom: 1px solid #aaaaaa;">&nbsp;</div> <div style="border-bottom: 1px solid #aaaaaa;">&nbsp;</div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td style="padding: 10px 30px;"> <td style="padding: 10px 30px;">
<img src="${shareUrl}/themes/default/images/app-logo.png" alt="" width="117" height="48" border="0" /> <img src="${shareUrl}/themes/default/images/app-logo.png" alt="" width="117" height="48" border="0" />
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
</table> </table>
</body> </body>
</html> </html>

View File

@@ -1,144 +1,144 @@
<#-- <#--
#%L #%L
Alfresco Records Management Module Alfresco Records Management Module
%% %%
Copyright (C) 2005 - 2016 Alfresco Software Limited Copyright (C) 2005 - 2016 Alfresco Software Limited
%% %%
This file is part of the Alfresco software. This file is part of the Alfresco software.
- -
If the software was purchased under a paid Alfresco license, the terms of If the software was purchased under a paid Alfresco license, the terms of
the paid license agreement will prevail. Otherwise, the software is the paid license agreement will prevail. Otherwise, the software is
provided under the following open source license terms: provided under the following open source license terms:
- -
Alfresco is free software: you can redistribute it and/or modify Alfresco is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or the Free Software Foundation, either version 3 of the License, or
(at your option) any later version. (at your option) any later version.
- -
Alfresco is distributed in the hope that it will be useful, Alfresco is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details. GNU Lesser General Public License for more details.
- -
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with Alfresco. If not, see <http://www.gnu.org/licenses/>. along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
#L% #L%
--> -->
<html> <html>
<head> <head>
<style type="text/css"><!-- <style type="text/css"><!--
body body
{ {
font-family: Arial, sans-serif; font-family: Arial, sans-serif;
font-size: 14px; font-size: 14px;
color: #4c4c4c; color: #4c4c4c;
} }
a, a:visited a, a:visited
{ {
color: #0072cf; color: #0072cf;
} }
--></style> --></style>
</head> </head>
<body bgcolor="#dddddd"> <body bgcolor="#dddddd">
<table width="100%" cellpadding="20" cellspacing="0" border="0" bgcolor="#dddddd"> <table width="100%" cellpadding="20" cellspacing="0" border="0" bgcolor="#dddddd">
<tr> <tr>
<td width="100%" align="center"> <td width="100%" align="center">
<table width="70%" cellpadding="0" cellspacing="0" bgcolor="white" style="background-color: white; border: 1px solid #aaaaaa;"> <table width="70%" cellpadding="0" cellspacing="0" bgcolor="white" style="background-color: white; border: 1px solid #aaaaaa;">
<tr> <tr>
<td width="100%"> <td width="100%">
<table width="100%" cellpadding="0" cellspacing="0" border="0"> <table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td style="padding: 10px 30px 0px;"> <td style="padding: 10px 30px 0px;">
<table width="100%" cellpadding="0" cellspacing="0" border="0"> <table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td> <td>
<table cellpadding="0" cellspacing="0" border="0"> <table cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td> <td>
<img src="${shareUrl}/res/components/images/task-64.png" alt="" width="64" height="64" border="0" style="padding-right: 20px;" /> <img src="${shareUrl}/res/components/images/task-64.png" alt="" width="64" height="64" border="0" style="padding-right: 20px;" />
</td> </td>
<td> <td>
<div style="font-size: 22px; padding-bottom: 4px;"> <div style="font-size: 22px; padding-bottom: 4px;">
Superseded record. Superseded record.
</div> </div>
<div style="font-size: 13px;"> <div style="font-size: 13px;">
${date?datetime?string.full} ${date?datetime?string.full}
</div> </div>
</td> </td>
</tr> </tr>
</table> </table>
<div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;"> <div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;">
<p>Hi,</p> <p>Hi,</p>
<p>The following record been superseded:</p> <p>The following record been superseded:</p>
<table cellpadding="0" callspacing="0" border="0" bgcolor="#eeeeee" style="padding:10px; border: 1px solid #aaaaaa;"> <table cellpadding="0" callspacing="0" border="0" bgcolor="#eeeeee" style="padding:10px; border: 1px solid #aaaaaa;">
<tr> <tr>
<td> <td>
<table cellpadding="0" cellspacing="0" border="0"> <table cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td valign="top"> <td valign="top">
<img src="${shareUrl}/res/components/documentlibrary/images/record-64.png" alt="" width="64" height="64" border="0" style="padding-right: 10px;" /> <img src="${shareUrl}/res/components/documentlibrary/images/record-64.png" alt="" width="64" height="64" border="0" style="padding-right: 10px;" />
</td> </td>
<td> <td>
<table cellpadding="2" cellspacing="0" border="0"> <table cellpadding="2" cellspacing="0" border="0">
<tr> <tr>
<td><b>${args.record.properties["rma:identifier"]!} ${args.record.name}</b></td> <td><b>${args.record.properties["rma:identifier"]!} ${args.record.name}</b></td>
</tr> </tr>
<tr> <tr>
<td>Click on this link to view the record:</td> <td>Click on this link to view the record:</td>
</tr> </tr>
<tr> <tr>
<td> <td>
<a href="${shareUrl}/page/site/${args.site}/document-details?nodeRef=${args.record.storeType}://${args.record.storeId}/${args.record.id}"> <a href="${shareUrl}/page/site/${args.site}/document-details?nodeRef=${args.record.storeType}://${args.record.storeId}/${args.record.id}">
${shareUrl}/page/site/${args.site}/document-details?nodeRef=${args.record.storeType}://${args.record.storeId}/${args.record.id}</a> ${shareUrl}/page/site/${args.site}/document-details?nodeRef=${args.record.storeType}://${args.record.storeId}/${args.record.id}</a>
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
<tr><td><div style="border-top: 1px solid #aaaaaa; margin:12px;"></div></td></tr> <tr><td><div style="border-top: 1px solid #aaaaaa; margin:12px;"></div></td></tr>
</table> </table>
<p>Sincerely,<br /> <p>Sincerely,<br />
Alfresco ${productName!""}</p> Alfresco ${productName!""}</p>
</div> </div>
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
<tr> <tr>
<td> <td>
<div style="border-top: 1px solid #aaaaaa;">&nbsp;</div> <div style="border-top: 1px solid #aaaaaa;">&nbsp;</div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td style="padding: 0px 30px; font-size: 13px;"> <td style="padding: 0px 30px; font-size: 13px;">
To find out more about Alfresco ${productName!""} visit <a href="http://www.alfresco.com">http://www.alfresco.com</a> To find out more about Alfresco ${productName!""} visit <a href="http://www.alfresco.com">http://www.alfresco.com</a>
</td> </td>
</tr> </tr>
<tr> <tr>
<td> <td>
<div style="border-bottom: 1px solid #aaaaaa;">&nbsp;</div> <div style="border-bottom: 1px solid #aaaaaa;">&nbsp;</div>
</td> </td>
</tr> </tr>
<tr> <tr>
<td style="padding: 10px 30px;"> <td style="padding: 10px 30px;">
<img src="${shareUrl}/themes/default/images/app-logo.png" alt="" width="117" height="48" border="0" /> <img src="${shareUrl}/themes/default/images/app-logo.png" alt="" width="117" height="48" border="0" />
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
</table> </table>
</body> </body>
</html> </html>

View File

@@ -1,159 +1,159 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- Definition of Records Management Model --> <!-- Definition of Records Management Model -->
<!-- Note: the rmc: namespace is defined further on in the document --> <!-- Note: the rmc: namespace is defined further on in the document -->
<model name="rmc:rmcustom" xmlns="http://www.alfresco.org/model/dictionary/1.0"> <model name="rmc:rmcustom" xmlns="http://www.alfresco.org/model/dictionary/1.0">
<!-- Meta-data about the model --> <!-- Meta-data about the model -->
<description>Records Management Custom Model</description> <description>Records Management Custom Model</description>
<author>Alfresco</author> <author>Alfresco</author>
<version>1.0</version> <version>1.0</version>
<!-- Imports are required to allow references to definitions in other models --> <!-- Imports are required to allow references to definitions in other models -->
<imports> <imports>
<!-- Import Alfresco Records Management Definitions --> <!-- Import Alfresco Records Management Definitions -->
<import uri="http://www.alfresco.org/model/recordsmanagement/1.0" prefix="rma"/> <import uri="http://www.alfresco.org/model/recordsmanagement/1.0" prefix="rma"/>
<!-- Import Alfresco Dictionary Definitions --> <!-- Import Alfresco Dictionary Definitions -->
<import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d"/> <import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d"/>
<!-- Import Alfresco Content Domain Model Definitions --> <!-- Import Alfresco Content Domain Model Definitions -->
<import uri="http://www.alfresco.org/model/content/1.0" prefix="cm"/> <import uri="http://www.alfresco.org/model/content/1.0" prefix="cm"/>
<!-- Import Alfresco Content Domain Model Definitions --> <!-- Import Alfresco Content Domain Model Definitions -->
<import uri="http://www.alfresco.org/model/system/1.0" prefix="sys" /> <import uri="http://www.alfresco.org/model/system/1.0" prefix="sys" />
</imports> </imports>
<!-- Records Management Custom Models Namespace --> <!-- Records Management Custom Models Namespace -->
<namespaces> <namespaces>
<namespace uri="http://www.alfresco.org/model/rmcustom/1.0" prefix="rmc"/> <namespace uri="http://www.alfresco.org/model/rmcustom/1.0" prefix="rmc"/>
</namespaces> </namespaces>
<constraints> <constraints>
<!-- Note: intentionally empty list of values - allowed values can be added/updated dynamically --> <!-- Note: intentionally empty list of values - allowed values can be added/updated dynamically -->
<constraint name="rmc:smList" type="org.alfresco.module.org_alfresco_module_rm.caveat.RMListOfValuesConstraint"> <constraint name="rmc:smList" type="org.alfresco.module.org_alfresco_module_rm.caveat.RMListOfValuesConstraint">
<title>listconstraint.rmc_smList.title</title> <title>listconstraint.rmc_smList.title</title>
<parameter name="allowedValues"> <parameter name="allowedValues">
<list> <list>
</list> </list>
</parameter> </parameter>
<parameter name="caseSensitive"><value>true</value></parameter> <parameter name="caseSensitive"><value>true</value></parameter>
</constraint> </constraint>
<!-- Note: intentionally empty list of values - allowed values can be added/updated dynamically --> <!-- Note: intentionally empty list of values - allowed values can be added/updated dynamically -->
<constraint name="rmc:tlList" type="org.alfresco.module.org_alfresco_module_rm.caveat.RMListOfValuesConstraint"> <constraint name="rmc:tlList" type="org.alfresco.module.org_alfresco_module_rm.caveat.RMListOfValuesConstraint">
<title>listconstraint.rmc_tlList.title</title> <title>listconstraint.rmc_tlList.title</title>
<parameter name="allowedValues"> <parameter name="allowedValues">
<list> <list>
</list> </list>
</parameter> </parameter>
<parameter name="caseSensitive"><value>true</value></parameter> <parameter name="caseSensitive"><value>true</value></parameter>
</constraint> </constraint>
</constraints> </constraints>
<aspects> <aspects>
<aspect name="rmc:customSupplementalMarkingList"> <aspect name="rmc:customSupplementalMarkingList">
<properties> <properties>
<property name="rmc:supplementalMarkingList"> <property name="rmc:supplementalMarkingList">
<title>Supplemental Marking List</title> <title>Supplemental Marking List</title>
<type>d:text</type> <type>d:text</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<multiple>true</multiple> <multiple>true</multiple>
<constraints> <constraints>
<constraint ref="rmc:smList"/> <constraint ref="rmc:smList"/>
</constraints> </constraints>
</property> </property>
</properties> </properties>
</aspect> </aspect>
<aspect name="rmc:customAssocs"> <aspect name="rmc:customAssocs">
<title>Records Management Custom Associations</title> <title>Records Management Custom Associations</title>
<associations> <associations>
<child-association name="rmc:supersedes"> <child-association name="rmc:supersedes">
<title>Superseded By__Supersedes</title> <title>Superseded By__Supersedes</title>
<source> <source>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<many>true</many> <many>true</many>
</source> </source>
<target> <target>
<class>rma:record</class> <class>rma:record</class>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<many>true</many> <many>true</many>
</target> </target>
</child-association> </child-association>
<child-association name="rmc:obsoletes"> <child-association name="rmc:obsoletes">
<title>Obsoleted By__Obsoletes</title> <title>Obsoleted By__Obsoletes</title>
<source> <source>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<many>true</many> <many>true</many>
</source> </source>
<target> <target>
<class>rma:record</class> <class>rma:record</class>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<many>true</many> <many>true</many>
</target> </target>
</child-association> </child-association>
<child-association name="rmc:versions"> <child-association name="rmc:versions">
<title>Next Version__Previous Version</title> <title>Next Version__Previous Version</title>
<source> <source>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<many>true</many> <many>true</many>
</source> </source>
<target> <target>
<class>rma:record</class> <class>rma:record</class>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<many>true</many> <many>true</many>
</target> </target>
</child-association> </child-association>
<child-association name="rmc:supports"> <child-association name="rmc:supports">
<title>Supporting Documentation__Supported Documentation</title> <title>Supporting Documentation__Supported Documentation</title>
<source> <source>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<many>true</many> <many>true</many>
</source> </source>
<target> <target>
<class>rma:record</class> <class>rma:record</class>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<many>true</many> <many>true</many>
</target> </target>
</child-association> </child-association>
<association name="rmc:crossreference"> <association name="rmc:crossreference">
<title>Cross-Reference</title> <title>Cross-Reference</title>
<source> <source>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<many>true</many> <many>true</many>
</source> </source>
<target> <target>
<class>rma:record</class> <class>rma:record</class>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<many>true</many> <many>true</many>
</target> </target>
</association> </association>
<association name="rmc:rendition"> <association name="rmc:rendition">
<title>Rendition</title> <title>Rendition</title>
<source> <source>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<many>true</many> <many>true</many>
</source> </source>
<target> <target>
<class>rma:record</class> <class>rma:record</class>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<many>true</many> <many>true</many>
</target> </target>
</association> </association>
</associations> </associations>
</aspect> </aspect>
</aspects> </aspects>
</model> </model>

View File

@@ -1,76 +1,76 @@
{ {
"events" : "events" :
[ [
{ {
"eventType" : "rmEventType.simple", "eventType" : "rmEventType.simple",
"eventName" : "case_closed", "eventName" : "case_closed",
"eventDisplayLabel" : "rmevent.case_closed" "eventDisplayLabel" : "rmevent.case_closed"
}, },
{ {
"eventType" : "rmEventType.simple", "eventType" : "rmEventType.simple",
"eventName" : "abolished", "eventName" : "abolished",
"eventDisplayLabel" : "rmevent.abolished" "eventDisplayLabel" : "rmevent.abolished"
}, },
{ {
"eventType" : "rmEventType.simple", "eventType" : "rmEventType.simple",
"eventName" : "re_designated", "eventName" : "re_designated",
"eventDisplayLabel" : "rmevent.re_designated" "eventDisplayLabel" : "rmevent.re_designated"
}, },
{ {
"eventType" : "rmEventType.simple", "eventType" : "rmEventType.simple",
"eventName" : "no_longer_needed", "eventName" : "no_longer_needed",
"eventDisplayLabel" : "rmevent.no_longer_needed" "eventDisplayLabel" : "rmevent.no_longer_needed"
}, },
{ {
"eventType" : "rmEventType.superseded", "eventType" : "rmEventType.superseded",
"eventName" : "superseded", "eventName" : "superseded",
"eventDisplayLabel" : "rmevent.superseded" "eventDisplayLabel" : "rmevent.superseded"
}, },
{ {
"eventType" : "rmEventType.versioned", "eventType" : "rmEventType.versioned",
"eventName" : "versioned", "eventName" : "versioned",
"eventDisplayLabel" : "rmevent.versioned" "eventDisplayLabel" : "rmevent.versioned"
}, },
{ {
"eventType" : "rmEventType.simple", "eventType" : "rmEventType.simple",
"eventName" : "study_complete", "eventName" : "study_complete",
"eventDisplayLabel" : "rmevent.study_complete" "eventDisplayLabel" : "rmevent.study_complete"
}, },
{ {
"eventType" : "rmEventType.simple", "eventType" : "rmEventType.simple",
"eventName" : "training_complete", "eventName" : "training_complete",
"eventDisplayLabel" : "rmevent.training_complete" "eventDisplayLabel" : "rmevent.training_complete"
}, },
{ {
"eventType" : "rmEventType.crossReferencedRecordTransfered", "eventType" : "rmEventType.crossReferencedRecordTransfered",
"eventName" : "related_record_trasfered_inactive_storage", "eventName" : "related_record_trasfered_inactive_storage",
"eventDisplayLabel" : "rmevent.related_record_trasfered_inactive_storage" "eventDisplayLabel" : "rmevent.related_record_trasfered_inactive_storage"
}, },
{ {
"eventType" : "rmEventType.obsolete", "eventType" : "rmEventType.obsolete",
"eventName" : "obsolete", "eventName" : "obsolete",
"eventDisplayLabel" : "rmevent.obsolete" "eventDisplayLabel" : "rmevent.obsolete"
}, },
{ {
"eventType" : "rmEventType.simple", "eventType" : "rmEventType.simple",
"eventName" : "all_allowances_granted_are_terminated", "eventName" : "all_allowances_granted_are_terminated",
"eventDisplayLabel" : "rmevent.all_allowances_granted_are_terminated" "eventDisplayLabel" : "rmevent.all_allowances_granted_are_terminated"
}, },
{ {
"eventType" : "rmEventType.simple", "eventType" : "rmEventType.simple",
"eventName" : "WGI_action_complete", "eventName" : "WGI_action_complete",
"eventDisplayLabel" : "rmevent.WGI_action_complete" "eventDisplayLabel" : "rmevent.WGI_action_complete"
}, },
{ {
"eventType" : "rmEventType.simple", "eventType" : "rmEventType.simple",
"eventName" : "separation", "eventName" : "separation",
"eventDisplayLabel" : "rmevent.separation" "eventDisplayLabel" : "rmevent.separation"
}, },
{ {
"eventType" : "rmEventType.simple", "eventType" : "rmEventType.simple",
"eventName" : "case_complete", "eventName" : "case_complete",
"eventDisplayLabel" : "rmevent.case_complete" "eventDisplayLabel" : "rmevent.case_complete"
} }
] ]
} }

View File

@@ -1,38 +1,38 @@
/* /*
* #%L * #%L
* Alfresco Records Management Module * Alfresco Records Management Module
* %% * %%
* Copyright (C) 2005 - 2016 Alfresco Software Limited * Copyright (C) 2005 - 2016 Alfresco Software Limited
* %% * %%
* This file is part of the Alfresco software. * This file is part of the Alfresco software.
* - * -
* If the software was purchased under a paid Alfresco license, the terms of * If the software was purchased under a paid Alfresco license, the terms of
* the paid license agreement will prevail. Otherwise, the software is * the paid license agreement will prevail. Otherwise, the software is
* provided under the following open source license terms: * provided under the following open source license terms:
* - * -
* Alfresco is free software: you can redistribute it and/or modify * Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by * it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or * the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version. * (at your option) any later version.
* - * -
* Alfresco is distributed in the hope that it will be useful, * Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details. * GNU Lesser General Public License for more details.
* - * -
* You should have received a copy of the GNU Lesser General Public License * You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>. * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
* #L% * #L%
*/ */
/** /**
* Main entrypoint for script. * Main entrypoint for script.
* This sample script simply echoes the name of the node with the changed property. * This sample script simply echoes the name of the node with the changed property.
* *
* @method main * @method main
*/ */
function main() function main()
{ {
logger.log("Sample RM script. No-op run on node " + node.name); logger.log("Sample RM script. No-op run on node " + node.name);
} }
main(); main();

View File

@@ -1,142 +1,142 @@
<#-- <#--
#%L #%L
Alfresco Records Management Module Alfresco Records Management Module
%% %%
Copyright (C) 2005 - 2016 Alfresco Software Limited Copyright (C) 2005 - 2016 Alfresco Software Limited
%% %%
This file is part of the Alfresco software. This file is part of the Alfresco software.
- -
If the software was purchased under a paid Alfresco license, the terms of If the software was purchased under a paid Alfresco license, the terms of
the paid license agreement will prevail. Otherwise, the software is the paid license agreement will prevail. Otherwise, the software is
provided under the following open source license terms: provided under the following open source license terms:
- -
Alfresco is free software: you can redistribute it and/or modify Alfresco is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or the Free Software Foundation, either version 3 of the License, or
(at your option) any later version. (at your option) any later version.
- -
Alfresco is distributed in the hope that it will be useful, Alfresco is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details. GNU Lesser General Public License for more details.
- -
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with Alfresco. If not, see <http://www.gnu.org/licenses/>. along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
#L% #L%
--> -->
<html> <html>
<head> <head>
<style type="text/css"><!-- <style type="text/css"><!--
body body
{ {
font-family: Arial, sans-serif; font-family: Arial, sans-serif;
font-size: 14px; font-size: 14px;
color: #4c4c4c; color: #4c4c4c;
} }
a, a:visited a, a:visited
{ {
color: #0072cf; color: #0072cf;
} }
--></style> --></style>
</head> </head>
<body bgcolor="#dddddd"> <body bgcolor="#dddddd">
<table width="100%" cellpadding="20" cellspacing="0" border="0" bgcolor="#dddddd"> <table width="100%" cellpadding="20" cellspacing="0" border="0" bgcolor="#dddddd">
<tr> <tr>
<td width="100%" align="center"> <td width="100%" align="center">
<table width="70%" cellpadding="0" cellspacing="0" bgcolor="white" style="background-color: white; border: 1px solid #aaaaaa;"> <table width="70%" cellpadding="0" cellspacing="0" bgcolor="white" style="background-color: white; border: 1px solid #aaaaaa;">
<tr> <tr>
<td width="100%"> <td width="100%">
<table width="100%" cellpadding="0" cellspacing="0" border="0"> <table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td style="padding: 10px 30px 0px;"> <td style="padding: 10px 30px 0px;">
<table width="100%" cellpadding="0" cellspacing="0" border="0"> <table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td> <td>
<table cellpadding="0" cellspacing="0" border="0"> <table cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td> <td>
<img src="${shareUrl}/res/components/images/task-64.png" alt="" width="64" height="64" border="0" style="padding-right: 20px;" /> <img src="${shareUrl}/res/components/images/task-64.png" alt="" width="64" height="64" border="0" style="padding-right: 20px;" />
</td> </td>
<td> <td>
<div style="font-size: 22px; padding-bottom: 4px;"> <div style="font-size: 22px; padding-bottom: 4px;">
${message("file.report.destruction.report")} ${message("file.report.destruction.report")}
</div> </div>
</td> </td>
</tr> </tr>
</table> </table>
<div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;"> <div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;">
<table cellpadding="2" cellspacing="3" border="0"> <table cellpadding="2" cellspacing="3" border="0">
<tr> <tr>
<td><i>${message("file.report.destroyed")} <#if node.hasAspect("rma:record")>${message("file.report.record")}<#else>${message("file.report.record.folder")}</#if>:</i></td> <td><i>${message("file.report.destroyed")} <#if node.hasAspect("rma:record")>${message("file.report.record")}<#else>${message("file.report.record.folder")}</#if>:</i></td>
<td>${node.properties["rma:identifier"]} <b>${node.properties.name}</b></td> <td>${node.properties["rma:identifier"]} <b>${node.properties.name}</b></td>
</tr> </tr>
<tr> <tr>
<td><i>${message("file.report.disposition.authority")}:</i></td> <td><i>${message("file.report.disposition.authority")}:</i></td>
<td> <td>
<#if node.properties["rma:recordSearchDispositionAuthority"]??> <#if node.properties["rma:recordSearchDispositionAuthority"]??>
${node.properties["rma:recordSearchDispositionAuthority"]} ${node.properties["rma:recordSearchDispositionAuthority"]}
</#if> </#if>
</td> </td>
</tr> </tr>
<tr> <tr>
<td><i>${message("file.report.disposition.instructions")}:</i></td> <td><i>${message("file.report.disposition.instructions")}:</i></td>
<td> <td>
<#if node.properties["rma:recordSearchDispositionInstructions"]??> <#if node.properties["rma:recordSearchDispositionInstructions"]??>
${node.properties["rma:recordSearchDispositionInstructions"]} ${node.properties["rma:recordSearchDispositionInstructions"]}
</#if> </#if>
</td> </td>
</tr> </tr>
</table> </table>
<#if node.childAssociations["cm:contains"]??> <#if node.childAssociations["cm:contains"]??>
<div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;"> <div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;">
<table cellpadding="2" cellspacing="3" border="0"> <table cellpadding="2" cellspacing="3" border="0">
<tr> <tr>
<td><i>${message("file.report.destroyed.records")}:</i></td> <td><i>${message("file.report.destroyed.records")}:</i></td>
<td></td> <td></td>
</tr> </tr>
</table> </table>
<table cellpadding="0" callspacing="0" border="0" bgcolor="#eeeeee" style="padding:10px; border: 1px solid #aaaaaa;"> <table cellpadding="0" callspacing="0" border="0" bgcolor="#eeeeee" style="padding:10px; border: 1px solid #aaaaaa;">
<tr> <tr>
<td> <td>
<table cellpadding="0" cellspacing="0" border="0"> <table cellpadding="0" cellspacing="0" border="0">
<#list node.childAssociations["cm:contains"] as child> <#list node.childAssociations["cm:contains"] as child>
<tr> <tr>
<td valign="top"> <td valign="top">
<img src="${url}/${child.icon32}" alt="" width="32" height="32" border="0" style="padding-right: 10px;" /> <img src="${url}/${child.icon32}" alt="" width="32" height="32" border="0" style="padding-right: 10px;" />
</td> </td>
<td> <td>
<table cellpadding="2" cellspacing="0" border="0"> <table cellpadding="2" cellspacing="0" border="0">
<tr> <tr>
<td>${child.properties["rma:identifier"]} <b>${child.properties.name}</b></td> <td>${child.properties["rma:identifier"]} <b>${child.properties.name}</b></td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
</#list> </#list>
</table> </table>
</td> </td>
</tr> </tr>
</table> </table>
</#if> </#if>
<div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;"> <div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;">
</div> </div>
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
<tr> <tr>
<td style="padding: 10px 30px;"> <td style="padding: 10px 30px;">
<img src="${shareUrl}/themes/default/images/app-logo.png" alt="" width="117" height="48" border="0" /> <img src="${shareUrl}/themes/default/images/app-logo.png" alt="" width="117" height="48" border="0" />
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
</table> </table>
</body> </body>
</html> </html>

View File

@@ -1,146 +1,146 @@
<#-- <#--
#%L #%L
Alfresco Records Management Module Alfresco Records Management Module
%% %%
Copyright (C) 2005 - 2016 Alfresco Software Limited Copyright (C) 2005 - 2016 Alfresco Software Limited
%% %%
This file is part of the Alfresco software. This file is part of the Alfresco software.
- -
If the software was purchased under a paid Alfresco license, the terms of If the software was purchased under a paid Alfresco license, the terms of
the paid license agreement will prevail. Otherwise, the software is the paid license agreement will prevail. Otherwise, the software is
provided under the following open source license terms: provided under the following open source license terms:
- -
Alfresco is free software: you can redistribute it and/or modify Alfresco is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or the Free Software Foundation, either version 3 of the License, or
(at your option) any later version. (at your option) any later version.
- -
Alfresco is distributed in the hope that it will be useful, Alfresco is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details. GNU Lesser General Public License for more details.
- -
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with Alfresco. If not, see <http://www.gnu.org/licenses/>. along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
#L% #L%
--> -->
<html> <html>
<head> <head>
<style type="text/css"><!-- <style type="text/css"><!--
body body
{ {
font-family: Arial, sans-serif; font-family: Arial, sans-serif;
font-size: 14px; font-size: 14px;
color: #4c4c4c; color: #4c4c4c;
} }
a, a:visited a, a:visited
{ {
color: #0072cf; color: #0072cf;
} }
--></style> --></style>
</head> </head>
<body bgcolor="#dddddd"> <body bgcolor="#dddddd">
<table width="100%" cellpadding="20" cellspacing="0" border="0" bgcolor="#dddddd"> <table width="100%" cellpadding="20" cellspacing="0" border="0" bgcolor="#dddddd">
<tr> <tr>
<td width="100%" align="center"> <td width="100%" align="center">
<table width="70%" cellpadding="0" cellspacing="0" bgcolor="white" style="background-color: white; border: 1px solid #aaaaaa;"> <table width="70%" cellpadding="0" cellspacing="0" bgcolor="white" style="background-color: white; border: 1px solid #aaaaaa;">
<tr> <tr>
<td width="100%"> <td width="100%">
<table width="100%" cellpadding="0" cellspacing="0" border="0"> <table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td style="padding: 10px 30px 0px;"> <td style="padding: 10px 30px 0px;">
<table width="100%" cellpadding="0" cellspacing="0" border="0"> <table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td> <td>
<table cellpadding="0" cellspacing="0" border="0"> <table cellpadding="0" cellspacing="0" border="0">
<tr> <tr>
<td> <td>
<img src="${shareUrl}/res/components/images/task-64.png" alt="" width="64" height="64" border="0" style="padding-right: 20px;" /> <img src="${shareUrl}/res/components/images/task-64.png" alt="" width="64" height="64" border="0" style="padding-right: 20px;" />
</td> </td>
<td> <td>
<div style="font-size: 22px; padding-bottom: 4px;"> <div style="font-size: 22px; padding-bottom: 4px;">
${message("file.report.hold.report")} ${message("file.report.hold.report")}
</div> </div>
</td> </td>
</tr> </tr>
</table> </table>
<div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;"> <div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;">
<table cellpadding="2" cellspacing="3" border="0"> <table cellpadding="2" cellspacing="3" border="0">
<tr> <tr>
<td><i>${message("file.report.hold.name")}:</i></td> <td><i>${message("file.report.hold.name")}:</i></td>
<td>${node.properties["cm:name"]}</td> <td>${node.properties["cm:name"]}</td>
</tr> </tr>
<tr> <tr>
<td><i>${message("file.report.hold.description")}:</i></td> <td><i>${message("file.report.hold.description")}:</i></td>
<td> <td>
<#if node.properties["cm:description"]??> <#if node.properties["cm:description"]??>
${node.properties["cm:description"]} ${node.properties["cm:description"]}
</#if> </#if>
</td> </td>
</tr> </tr>
<tr> <tr>
<td><i>${message("file.report.hold.reason")}:</i></td> <td><i>${message("file.report.hold.reason")}:</i></td>
<td>${node.properties["rma:holdReason"]}</td> <td>${node.properties["rma:holdReason"]}</td>
</tr> </tr>
<tr> <tr>
<td><i>${message("file.report.createdby")}:</i></td> <td><i>${message("file.report.createdby")}:</i></td>
<td>${reportUser}</td> <td>${reportUser}</td>
</tr> </tr>
<tr> <tr>
<td><i>${message("file.report.createdon")}:</i></td> <td><i>${message("file.report.createdon")}:</i></td>
<td>${reportDate}</td> <td>${reportDate}</td>
</tr> </tr>
</table> </table>
<#if node.childAssociations["rma:frozenRecords"]??> <#if node.childAssociations["rma:frozenRecords"]??>
<div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;"> <div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;">
<table cellpadding="2" cellspacing="3" border="0"> <table cellpadding="2" cellspacing="3" border="0">
<tr> <tr>
<td><i>${message("file.report.hold.held")}:</i></td> <td><i>${message("file.report.hold.held")}:</i></td>
<td></td> <td></td>
</tr> </tr>
</table> </table>
<table cellpadding="0" callspacing="0" border="0" bgcolor="#eeeeee" style="padding:10px; border: 1px solid #aaaaaa;"> <table cellpadding="0" callspacing="0" border="0" bgcolor="#eeeeee" style="padding:10px; border: 1px solid #aaaaaa;">
<tr> <tr>
<td> <td>
<table cellpadding="0" cellspacing="0" border="0"> <table cellpadding="0" cellspacing="0" border="0">
<#list node.childAssociations["rma:frozenRecords"] as child> <#list node.childAssociations["rma:frozenRecords"] as child>
<tr> <tr>
<td valign="top"> <td valign="top">
<img src="${url}/${child.icon32}" alt="" width="32" height="32" border="0" style="padding-right: 10px;" /> <img src="${url}/${child.icon32}" alt="" width="32" height="32" border="0" style="padding-right: 10px;" />
</td> </td>
<td> <td>
<table cellpadding="2" cellspacing="0" border="0"> <table cellpadding="2" cellspacing="0" border="0">
<tr> <tr>
<td>${child.properties["rma:identifier"]} <b>${child.properties.name}</b></td> <td>${child.properties["rma:identifier"]} <b>${child.properties.name}</b></td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
</#list> </#list>
</table> </table>
</td> </td>
</tr> </tr>
</table> </table>
</#if> </#if>
<div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;"> <div style="font-size: 14px; margin: 12px 0px 24px 0px; padding-top: 10px; border-top: 1px solid #aaaaaa;">
</div> </div>
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
<tr> <tr>
<td style="padding: 10px 30px;"> <td style="padding: 10px 30px;">
<img src="${shareUrl}/themes/default/images/app-logo.png" alt="" width="117" height="48" border="0" /> <img src="${shareUrl}/themes/default/images/app-logo.png" alt="" width="117" height="48" border="0" />
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
</table> </table>
</body> </body>
</html> </html>

View File

@@ -1,113 +1,113 @@
<#-- <#--
#%L #%L
Alfresco Records Management Module Alfresco Records Management Module
%% %%
Copyright (C) 2005 - 2016 Alfresco Software Limited Copyright (C) 2005 - 2016 Alfresco Software Limited
%% %%
This file is part of the Alfresco software. This file is part of the Alfresco software.
- -
If the software was purchased under a paid Alfresco license, the terms of If the software was purchased under a paid Alfresco license, the terms of
the paid license agreement will prevail. Otherwise, the software is the paid license agreement will prevail. Otherwise, the software is
provided under the following open source license terms: provided under the following open source license terms:
- -
Alfresco is free software: you can redistribute it and/or modify Alfresco is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or the Free Software Foundation, either version 3 of the License, or
(at your option) any later version. (at your option) any later version.
- -
Alfresco is distributed in the hope that it will be useful, Alfresco is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details. GNU Lesser General Public License for more details.
- -
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with Alfresco. If not, see <http://www.gnu.org/licenses/>. along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
#L% #L%
--> -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<#assign isAccession=node.properties["rma:transferAccessionIndicator"]> <#assign isAccession=node.properties["rma:transferAccessionIndicator"]>
<head> <head>
<#if isAccession> <#if isAccession>
<title>${message("file.report.acession.report")}</title> <title>${message("file.report.acession.report")}</title>
<#else> <#else>
<title>${message("file.report.transfer.report")}</title> <title>${message("file.report.transfer.report")}</title>
</#if> </#if>
<style> <style>
body { font-family: arial,verdana; font-size: 81%; color: #333; } body { font-family: arial,verdana; font-size: 81%; color: #333; }
.records { margin-left: 20px; margin-top: 10px; } .records { margin-left: 20px; margin-top: 10px; }
.record { padding: 5px; } .record { padding: 5px; }
.label { color: #111; } .label { color: #111; }
.nodeName { font-weight: bold; } .nodeName { font-weight: bold; }
.transferred-item { background-color: #eee; padding: 10px; margin-bottom: 15px; } .transferred-item { background-color: #eee; padding: 10px; margin-bottom: 15px; }
</style> </style>
</head> </head>
<body> <body>
<#if isAccession> <#if isAccession>
<h1>${message("file.report.acession.report")}</h1> <h1>${message("file.report.acession.report")}</h1>
<#else> <#else>
<h1>${message("file.report.transfer.report")}</h1> <h1>${message("file.report.transfer.report")}</h1>
</#if> </#if>
<table cellpadding="3" cellspacing="3"> <table cellpadding="3" cellspacing="3">
<tr> <tr>
<td class="label">${message("file.report.transfer.date")}:</td> <td class="label">${message("file.report.transfer.date")}:</td>
<td>${node.properties["cm:created"]?string(message("file.report.date.format"))?html}</td> <td>${node.properties["cm:created"]?string(message("file.report.date.format"))?html}</td>
</tr> </tr>
<tr> <tr>
<td class="label">${message("file.report.transfer.location")}:</td> <td class="label">${message("file.report.transfer.location")}:</td>
<td> <td>
<#if isAccession> <#if isAccession>
${message("file.report.nara")} ${message("file.report.nara")}
<#else> <#else>
${node.properties["rma:transferLocation"]?html} ${node.properties["rma:transferLocation"]?html}
</#if> </#if>
</td> </td>
</tr> </tr>
<tr> <tr>
<td class="label">${message("file.report.performed.by")}:</td> <td class="label">${message("file.report.performed.by")}:</td>
<td>${node.properties["cm:creator"]?html}</td> <td>${node.properties["cm:creator"]?html}</td>
</tr> </tr>
<tr> <tr>
<td class="label">${message("file.report.disposition.authority")}:</td> <td class="label">${message("file.report.disposition.authority")}:</td>
<td>${properties["dispositionAuthority"]?html}</td> <td>${properties["dispositionAuthority"]?html}</td>
</tr> </tr>
</table> </table>
<h2>${message("file.report.transferred.items")}</h2> <h2>${message("file.report.transferred.items")}</h2>
<div class="transferred-item"> <div class="transferred-item">
<#list properties.transferNodes as transferNode> <#list properties.transferNodes as transferNode>
<#if transferNode.properties["isFolder"]> <#if transferNode.properties["isFolder"]>
<@generateTransferFolderHTML transferNode/> <@generateTransferFolderHTML transferNode/>
<#else> <#else>
<@generateTransferRecordHTML transferNode/> <@generateTransferRecordHTML transferNode/>
</#if> </#if>
</#list> </#list>
</div> </div>
</body> </body>
</html> </html>
<#macro generateTransferFolderHTML transferNode> <#macro generateTransferFolderHTML transferNode>
<span class="nodeName"> <span class="nodeName">
${transferNode.properties["name"]?html} ${transferNode.properties["name"]?html}
</span> </span>
(${message("file.report.unique.folder.identifier")}: ${transferNode.properties["identifier"]?html}) (${message("file.report.unique.folder.identifier")}: ${transferNode.properties["identifier"]?html})
<div class="records"> <div class="records">
<#list transferNode.properties["records"] as record> <#list transferNode.properties["records"] as record>
<@generateTransferRecordHTML record/> <@generateTransferRecordHTML record/>
</#list> </#list>
</div> </div>
</#macro> </#macro>
<#macro generateTransferRecordHTML transferNode> <#macro generateTransferRecordHTML transferNode>
<div class="record"> <div class="record">
<span class="nodeName"> <span class="nodeName">
${transferNode.properties["name"]?html} ${transferNode.properties["name"]?html}
</span> </span>
(${message("file.report.unique.record.identifier")}: ${transferNode.properties["identifier"]?html}) (${message("file.report.unique.record.identifier")}: ${transferNode.properties["identifier"]?html})
<#if transferNode.properties["isDeclared"]> <#if transferNode.properties["isDeclared"]>
${message("file.report.declared.by")} ${message("file.report.declared.by")}
${transferNode.properties["declaredBy"]?html} ${transferNode.properties["declaredBy"]?html}
${message("file.report.declared.on")} ${message("file.report.declared.on")}
${transferNode.properties["declaredOn"]?string(message("file.report.date.format"))?html} ${transferNode.properties["declaredOn"]?string(message("file.report.date.format"))?html}
</#if> </#if>
</div> </div>
</#macro> </#macro>

View File

@@ -1,85 +1,85 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<bean id="groupBase" <bean id="groupBase"
abstract="true" abstract="true"
init-method="init" init-method="init"
class="org.alfresco.module.org_alfresco_module_rm.capability.GroupImpl"> class="org.alfresco.module.org_alfresco_module_rm.capability.GroupImpl">
<property name="capabilityService" ref="CapabilityService"/> <property name="capabilityService" ref="CapabilityService"/>
</bean> </bean>
<bean id="recordsGroup" <bean id="recordsGroup"
parent="groupBase"> parent="groupBase">
<property name="id" value="records"/> <property name="id" value="records"/>
<property name="index" value="5"/> <property name="index" value="5"/>
</bean> </bean>
<bean id="auditGroup" <bean id="auditGroup"
parent="groupBase"> parent="groupBase">
<property name="id" value="audit"/> <property name="id" value="audit"/>
<property name="index" value="10" /> <property name="index" value="10" />
</bean> </bean>
<bean id="cutoffGroup" <bean id="cutoffGroup"
parent="groupBase"> parent="groupBase">
<property name="id" value="cutoff"/> <property name="id" value="cutoff"/>
<property name="index" value="30"/> <property name="index" value="30"/>
</bean> </bean>
<bean id="dispositionAndTransfersGroup" <bean id="dispositionAndTransfersGroup"
parent="groupBase"> parent="groupBase">
<property name="id" value="dispositionAndTransfers"/> <property name="id" value="dispositionAndTransfers"/>
<property name="index" value="40"/> <property name="index" value="40"/>
</bean> </bean>
<bean id="eventsGroup" <bean id="eventsGroup"
parent="groupBase"> parent="groupBase">
<property name="id" value="events"/> <property name="id" value="events"/>
<property name="index" value="50"/> <property name="index" value="50"/>
</bean> </bean>
<bean id="configGroup" <bean id="configGroup"
parent="groupBase"> parent="groupBase">
<property name="id" value="config"/> <property name="id" value="config"/>
<property name="index" value="60"/> <property name="index" value="60"/>
</bean> </bean>
<bean id="folderControlGroup" <bean id="folderControlGroup"
parent="groupBase"> parent="groupBase">
<property name="id" value="folderControl"/> <property name="id" value="folderControl"/>
<property name="index" value="70"/> <property name="index" value="70"/>
</bean> </bean>
<bean id="holdControlsGroup" <bean id="holdControlsGroup"
parent="groupBase"> parent="groupBase">
<property name="id" value="holdControls"/> <property name="id" value="holdControls"/>
<property name="index" value="80"/> <property name="index" value="80"/>
</bean> </bean>
<bean id="referencesGroup" <bean id="referencesGroup"
parent="groupBase"> parent="groupBase">
<property name="id" value="references"/> <property name="id" value="references"/>
<property name="index" value="110"/> <property name="index" value="110"/>
</bean> </bean>
<bean id="securityGroup" <bean id="securityGroup"
parent="groupBase"> parent="groupBase">
<property name="id" value="security"/> <property name="id" value="security"/>
<property name="index" value="120"/> <property name="index" value="120"/>
</bean> </bean>
<bean id="vitalRecordsGroup" <bean id="vitalRecordsGroup"
parent="groupBase"> parent="groupBase">
<property name="id" value="vitalRecords"/> <property name="id" value="vitalRecords"/>
<property name="index" value="130"/> <property name="index" value="130"/>
</bean> </bean>
<bean id="rulesGroup" <bean id="rulesGroup"
parent="groupBase"> parent="groupBase">
<property name="id" value="rules"/> <property name="id" value="rules"/>
<property name="index" value="140"/> <property name="index" value="140"/>
</bean> </bean>
</beans> </beans>

View File

@@ -1,73 +1,73 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<!-- Assignable Capabilities --> <!-- Assignable Capabilities -->
<bean id="rmAccessAuditCapability" <bean id="rmAccessAuditCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="AccessAudit"/> <property name="name" value="AccessAudit"/>
<property name="permission" value="AccessAudit"/> <property name="permission" value="AccessAudit"/>
<property name="group"><ref bean="auditGroup"/></property> <property name="group"><ref bean="auditGroup"/></property>
<property name="index" value="10" /> <property name="index" value="10" />
</bean> </bean>
<bean id="rmDeclareAuditAsRecordCapability" <bean id="rmDeclareAuditAsRecordCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="DeclareAuditAsRecord" /> <property name="name" value="DeclareAuditAsRecord" />
<property name="permission" value="DeclareAuditAsRecord" /> <property name="permission" value="DeclareAuditAsRecord" />
<property name="group"><ref bean="auditGroup"/></property> <property name="group"><ref bean="auditGroup"/></property>
<property name="index" value="20" /> <property name="index" value="20" />
</bean> </bean>
<bean id="rmDeleteAuditCapability" <bean id="rmDeleteAuditCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="DeleteAudit" /> <property name="name" value="DeleteAudit" />
<property name="permission" value="DeleteAudit" /> <property name="permission" value="DeleteAudit" />
<property name="group"><ref bean="auditGroup"/></property> <property name="group"><ref bean="auditGroup"/></property>
<property name="index" value="30" /> <property name="index" value="30" />
</bean> </bean>
<bean id="rmEnableDisableAuditByTypesCapability" <bean id="rmEnableDisableAuditByTypesCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="EnableDisableAuditByTypes" /> <property name="name" value="EnableDisableAuditByTypes" />
<property name="permission" value="EnableDisableAuditByTypes" /> <property name="permission" value="EnableDisableAuditByTypes" />
<property name="group"><ref bean="auditGroup"/></property> <property name="group"><ref bean="auditGroup"/></property>
<property name="index" value="40" /> <property name="index" value="40" />
</bean> </bean>
<bean id="rmExportAuditCapability" <bean id="rmExportAuditCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="ExportAudit" /> <property name="name" value="ExportAudit" />
<property name="permission" value="ExportAudit" /> <property name="permission" value="ExportAudit" />
<property name="group"><ref bean="auditGroup"/></property> <property name="group"><ref bean="auditGroup"/></property>
<property name="index" value="50" /> <property name="index" value="50" />
</bean> </bean>
<bean id="rmSelectAuditMetadataCapability" <bean id="rmSelectAuditMetadataCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="SelectAuditMetadata" /> <property name="name" value="SelectAuditMetadata" />
<property name="permission" value="SelectAuditMetadata" /> <property name="permission" value="SelectAuditMetadata" />
<property name="group"><ref bean="auditGroup"/></property> <property name="group"><ref bean="auditGroup"/></property>
<property name="index" value="60" /> <property name="index" value="60" />
</bean> </bean>
<!-- Non-Assignable Capabilities --> <!-- Non-Assignable Capabilities -->
<bean id="rmAuditAdmin" <bean id="rmAuditAdmin"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="AuditAdmin"/> <property name="name" value="AuditAdmin"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="capabilities"> <property name="capabilities">
<set> <set>
<ref bean="rmAccessAuditCapability"/> <ref bean="rmAccessAuditCapability"/>
<ref bean="rmDeclareAuditAsRecordCapability"/> <ref bean="rmDeclareAuditAsRecordCapability"/>
<ref bean="rmDeleteAuditCapability"/> <ref bean="rmDeleteAuditCapability"/>
<ref bean="rmEnableDisableAuditByTypesCapability"/> <ref bean="rmEnableDisableAuditByTypesCapability"/>
<ref bean="rmExportAuditCapability"/> <ref bean="rmExportAuditCapability"/>
<ref bean="rmSelectAuditMetadataCapability"/> <ref bean="rmSelectAuditMetadataCapability"/>
</set> </set>
</property> </property>
</bean> </bean>
</beans> </beans>

View File

@@ -1,232 +1,232 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<!-- Capability Conditions --> <!-- Capability Conditions -->
<bean id="capabilityCondition.base" <bean id="capabilityCondition.base"
abstract="true"> abstract="true">
<property name="permissionService" ref="permissionService" /> <!-- use lower case service to enhance performance --> <property name="permissionService" ref="permissionService" /> <!-- use lower case service to enhance performance -->
<property name="nodeService" ref="nodeService" /> <!-- use lower case service to enhance performance --> <property name="nodeService" ref="nodeService" /> <!-- use lower case service to enhance performance -->
<property name="freezeService" ref="FreezeService" /> <property name="freezeService" ref="FreezeService" />
<property name="recordService" ref="RecordService" /> <property name="recordService" ref="RecordService" />
<property name="filePlanService" ref="FilePlanService" /> <property name="filePlanService" ref="FilePlanService" />
<property name="dispositionService" ref="DispositionService" /> <property name="dispositionService" ref="DispositionService" />
<property name="recordFolderService" ref="recordFolderService" /> <property name="recordFolderService" ref="recordFolderService" />
<property name="transactionalResourceHelper" ref="rm.transactionalResourceHelper" /> <property name="transactionalResourceHelper" ref="rm.transactionalResourceHelper" />
</bean> </bean>
<bean id="capabilityCondition.frozen" <bean id="capabilityCondition.frozen"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.FrozenCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.FrozenCapabilityCondition">
<property name="holdService" ref="HoldService" /> <property name="holdService" ref="HoldService" />
</bean> </bean>
<bean id="capabilityCondition.frozenOrFrozenChildren" <bean id="capabilityCondition.frozenOrFrozenChildren"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.FrozenCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.FrozenCapabilityCondition">
<property name="checkChildren" value="true" /> <property name="checkChildren" value="true" />
<property name="holdService" ref="HoldService" /> <property name="holdService" ref="HoldService" />
</bean> </bean>
<bean id="capabilityCondition.frozenOrHold" <bean id="capabilityCondition.frozenOrHold"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.FrozenOrHoldCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.FrozenOrHoldCondition">
</bean> </bean>
<bean id="capabilityCondition.cutoff" <bean id="capabilityCondition.cutoff"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.CutoffCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.CutoffCapabilityCondition">
</bean> </bean>
<bean id="capabilityCondition.closed" <bean id="capabilityCondition.closed"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.ClosedCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.ClosedCapabilityCondition">
</bean> </bean>
<bean id="capabilityCondition.declared" <bean id="capabilityCondition.declared"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.DeclaredCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.DeclaredCapabilityCondition">
</bean> </bean>
<bean id="capabilityCondition.filling" <bean id="capabilityCondition.filling"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.FillingCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.FillingCapabilityCondition">
</bean> </bean>
<bean id="capabilityCondition.transferred" <bean id="capabilityCondition.transferred"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.TransferredCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.TransferredCapabilityCondition">
</bean> </bean>
<bean id="capabilityCondition.movable" <bean id="capabilityCondition.movable"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.MovableCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.MovableCapabilityCondition">
</bean> </bean>
<bean id="capabilityCondition.destroyed" <bean id="capabilityCondition.destroyed"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.DestroyedCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.DestroyedCapabilityCondition">
</bean> </bean>
<bean id="capabilityCondition.vitalRecordOrFolder" <bean id="capabilityCondition.vitalRecordOrFolder"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.VitalRecordOrFolderCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.VitalRecordOrFolderCapabilityCondition">
</bean> </bean>
<bean id="capabilityCondition.recordFiled" <bean id="capabilityCondition.recordFiled"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.RecordFiledCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.RecordFiledCapabilityCondition">
</bean> </bean>
<bean id="capabilityCondition.destroyMayBeScheduled" <bean id="capabilityCondition.destroyMayBeScheduled"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.MayBeScheduledCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.MayBeScheduledCapabilityCondition">
<property name="dispositionService" ref="DispositionService"/> <property name="dispositionService" ref="DispositionService"/>
<property name="dispositionAction" value="destroy"/> <property name="dispositionAction" value="destroy"/>
</bean> </bean>
<bean id="capabilityCondition.destroyIsScheduled" <bean id="capabilityCondition.destroyIsScheduled"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsScheduledCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsScheduledCapabilityCondition">
<property name="dispositionService" ref="DispositionService"/> <property name="dispositionService" ref="DispositionService"/>
<property name="dispositionAction" value="destroy"/> <property name="dispositionAction" value="destroy"/>
</bean> </bean>
<bean id="capabilityCondition.destroyIsScheduledOrComplete" <bean id="capabilityCondition.destroyIsScheduledOrComplete"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.AtLeastOneCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.AtLeastOneCondition">
<property name="conditions"> <property name="conditions">
<list> <list>
<ref bean="capabilityCondition.destroyed" /> <ref bean="capabilityCondition.destroyed" />
<ref bean="capabilityCondition.destroyIsScheduled" /> <ref bean="capabilityCondition.destroyIsScheduled" />
</list> </list>
</property> </property>
</bean> </bean>
<bean id="capabilityCondition.hasEvents" <bean id="capabilityCondition.hasEvents"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.HasEventsCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.HasEventsCapabilityCondition">
<property name="dispositionService" ref="DispositionService"/> <property name="dispositionService" ref="DispositionService"/>
</bean> </bean>
<bean id="capabilityCondition.fileable" <bean id="capabilityCondition.fileable"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.FileableCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.FileableCapabilityCondition">
<property name="dictionaryService" ref="DictionaryService"/> <property name="dictionaryService" ref="DictionaryService"/>
</bean> </bean>
<bean id="capabilityCondition.transferIsScheduled" <bean id="capabilityCondition.transferIsScheduled"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsScheduledCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsScheduledCapabilityCondition">
<property name="dispositionService" ref="DispositionService"/> <property name="dispositionService" ref="DispositionService"/>
<property name="dispositionAction" value="transfer"/> <property name="dispositionAction" value="transfer"/>
</bean> </bean>
<bean id="capabilityCondition.accessionIsScheduled" <bean id="capabilityCondition.accessionIsScheduled"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsScheduledCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsScheduledCapabilityCondition">
<property name="dispositionService" ref="DispositionService"/> <property name="dispositionService" ref="DispositionService"/>
<property name="dispositionAction" value="accession"/> <property name="dispositionAction" value="accession"/>
</bean> </bean>
<bean id="capabilityCondition.cutoffIsScheduled" <bean id="capabilityCondition.cutoffIsScheduled"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsScheduledCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsScheduledCapabilityCondition">
<property name="dispositionService" ref="DispositionService"/> <property name="dispositionService" ref="DispositionService"/>
<property name="dispositionAction" value="cutoff"/> <property name="dispositionAction" value="cutoff"/>
</bean> </bean>
<bean id="capabilityCondition.retentionIsScheduled" <bean id="capabilityCondition.retentionIsScheduled"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsScheduledCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsScheduledCapabilityCondition">
<property name="dispositionService" ref="DispositionService"/> <property name="dispositionService" ref="DispositionService"/>
<property name="dispositionAction" value="retain"/> <property name="dispositionAction" value="retain"/>
</bean> </bean>
<bean id="capabilityCondition.isTransferAccession" <bean id="capabilityCondition.isTransferAccession"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsTransferAccessionCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsTransferAccessionCapabilityCondition">
</bean> </bean>
<bean id="capabilityCondition.isTransferring" <bean id="capabilityCondition.isTransferring"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.HasAspectCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.HasAspectCapabilityCondition">
<property name="aspectName" value="rma:transferring"/> <property name="aspectName" value="rma:transferring"/>
<property name="namespaceService" ref="NamespaceService"/> <property name="namespaceService" ref="NamespaceService"/>
</bean> </bean>
<bean id="capabilityCondition.hasDispositionAsOfDate" <bean id="capabilityCondition.hasDispositionAsOfDate"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.HasDispositionDateCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.HasDispositionDateCapabilityCondition">
<property name="dispositionService" ref="DispositionService"/> <property name="dispositionService" ref="DispositionService"/>
</bean> </bean>
<bean id="capabilityCondition.lastDispositionActionCutoff" <bean id="capabilityCondition.lastDispositionActionCutoff"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.LastDispositionActionCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.LastDispositionActionCondition">
<property name="dispositionService" ref="DispositionService"/> <property name="dispositionService" ref="DispositionService"/>
<property name="dispositionActionName" value="cutoff"/> <property name="dispositionActionName" value="cutoff"/>
</bean> </bean>
<bean id="capabilityCondition.isRecord" <bean id="capabilityCondition.isRecord"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsRecordCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsRecordCondition">
</bean> </bean>
<bean id="capabilityCondition.isRecordFolder" <bean id="capabilityCondition.isRecordFolder"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsRecordFolderCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsRecordFolderCondition">
</bean> </bean>
<bean id="capabilityCondition.isRecordCategory" <bean id="capabilityCondition.isRecordCategory"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsRecordCategoryCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsRecordCategoryCondition">
</bean> </bean>
<bean id="capabilityCondition.isRejectedRecord" <bean id="capabilityCondition.isRejectedRecord"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.HasAspectCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.HasAspectCapabilityCondition">
<property name="aspectName" value="rma:recordRejectionDetails"/> <property name="aspectName" value="rma:recordRejectionDetails"/>
<property name="namespaceService" ref="NamespaceService"/> <property name="namespaceService" ref="NamespaceService"/>
</bean> </bean>
<bean id="capabilityCondition.isClassified" <bean id="capabilityCondition.isClassified"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsClassifiedCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsClassifiedCapabilityCondition">
<property name="dispositionService" ref="DispositionService"/> <property name="dispositionService" ref="DispositionService"/>
</bean> </bean>
<bean id="capabilityCondition.fail" <bean id="capabilityCondition.fail"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.FailCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.FailCapabilityCondition">
</bean> </bean>
<bean id="capabilityCondition.isRecordOriginatingLocationSet" <bean id="capabilityCondition.isRecordOriginatingLocationSet"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsPropertySetCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.IsPropertySetCondition">
<property name="propertyName" value="rma:recordOriginatingLocation"/> <property name="propertyName" value="rma:recordOriginatingLocation"/>
<property name="namespaceService" ref="NamespaceService" /> <property name="namespaceService" ref="NamespaceService" />
</bean> </bean>
<bean id="capabilityCondition.hasFillingOnHolds" <bean id="capabilityCondition.hasFillingOnHolds"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.HoldCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.HoldCapabilityCondition">
<property name="includedInHold" value="false"/> <property name="includedInHold" value="false"/>
<property name="holdService" ref="HoldService" /> <property name="holdService" ref="HoldService" />
</bean> </bean>
<bean id="capabilityCondition.hasFillingOnHeld" <bean id="capabilityCondition.hasFillingOnHeld"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.HoldCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.HoldCapabilityCondition">
<property name="includedInHold" value="true"/> <property name="includedInHold" value="true"/>
<property name="holdService" ref="HoldService" /> <property name="holdService" ref="HoldService" />
</bean> </bean>
<bean id="capabilityCondition.hasFillingOnHoldContainer" <bean id="capabilityCondition.hasFillingOnHoldContainer"
parent="capabilityCondition.base" parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.FillingOnHoldContainerCapabilityCondition"> class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.FillingOnHoldContainerCapabilityCondition">
</bean> </bean>
</beans> </beans>

View File

@@ -1,94 +1,94 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<!-- Assignable Capabilities --> <!-- Assignable Capabilities -->
<bean id="rmAttachRulesToMetadataPropertiesCapability" <bean id="rmAttachRulesToMetadataPropertiesCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="AttachRulesToMetadataProperties"/> <property name="name" value="AttachRulesToMetadataProperties"/>
<property name="permission" value="AttachRulesToMetadataProperties"/> <property name="permission" value="AttachRulesToMetadataProperties"/>
<property name="group"><ref bean="configGroup"/></property> <property name="group"><ref bean="configGroup"/></property>
<property name="index" value="10" /> <property name="index" value="10" />
</bean> </bean>
<bean id="rmCreateModifyDestroyRolesCapability" <bean id="rmCreateModifyDestroyRolesCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CreateModifyDestroyRoles" /> <property name="name" value="CreateModifyDestroyRoles" />
<property name="permission" value="CreateModifyDestroyRoles" /> <property name="permission" value="CreateModifyDestroyRoles" />
<property name="group"><ref bean="configGroup"/></property> <property name="group"><ref bean="configGroup"/></property>
<property name="index" value="20" /> <property name="index" value="20" />
</bean> </bean>
<bean id="rmCreateModifyDestroyFileplanTypesCapability" <bean id="rmCreateModifyDestroyFileplanTypesCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CreateModifyDestroyFileplanTypes" /> <property name="name" value="CreateModifyDestroyFileplanTypes" />
<property name="permission" value="CreateModifyDestroyFileplanTypes" /> <property name="permission" value="CreateModifyDestroyFileplanTypes" />
<property name="group"><ref bean="configGroup"/></property> <property name="group"><ref bean="configGroup"/></property>
<property name="index" value="40" /> <property name="index" value="40" />
</bean> </bean>
<bean id="rmCreateModifyDestroyRecordTypesCapability" <bean id="rmCreateModifyDestroyRecordTypesCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CreateModifyDestroyRecordTypes" /> <property name="name" value="CreateModifyDestroyRecordTypes" />
<property name="permission" value="CreateModifyDestroyRecordTypes" /> <property name="permission" value="CreateModifyDestroyRecordTypes" />
<property name="group"><ref bean="configGroup"/></property> <property name="group"><ref bean="configGroup"/></property>
<property name="index" value="50" /> <property name="index" value="50" />
</bean> </bean>
<bean id="rmCreateModifyDestroyReferenceTypesCapability" <bean id="rmCreateModifyDestroyReferenceTypesCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CreateModifyDestroyReferenceTypes" /> <property name="name" value="CreateModifyDestroyReferenceTypes" />
<property name="permission" value="CreateModifyDestroyReferenceTypes" /> <property name="permission" value="CreateModifyDestroyReferenceTypes" />
<property name="group"><ref bean="configGroup"/></property> <property name="group"><ref bean="configGroup"/></property>
<property name="index" value="60" /> <property name="index" value="60" />
</bean> </bean>
<bean id="rmMakeOptionalPropertiesMandatoryCapability" <bean id="rmMakeOptionalPropertiesMandatoryCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="MakeOptionalParametersMandatory" /> <property name="name" value="MakeOptionalParametersMandatory" />
<property name="permission" value="MakeOptionalParametersMandatory" /> <property name="permission" value="MakeOptionalParametersMandatory" />
<property name="group"><ref bean="configGroup"/></property> <property name="group"><ref bean="configGroup"/></property>
<property name="index" value="80" /> <property name="index" value="80" />
</bean> </bean>
<bean id="rmMapEmailMetadataCapability" <bean id="rmMapEmailMetadataCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="MapEmailMetadata" /> <property name="name" value="MapEmailMetadata" />
<property name="permission" value="MapEmailMetadata" /> <property name="permission" value="MapEmailMetadata" />
<property name="group"><ref bean="configGroup"/></property> <property name="group"><ref bean="configGroup"/></property>
<property name="index" value="90" /> <property name="index" value="90" />
</bean> </bean>
<bean id="rmCreateAndAssociateSelectionListsCapability" <bean id="rmCreateAndAssociateSelectionListsCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CreateAndAssociateSelectionLists"/> <property name="name" value="CreateAndAssociateSelectionLists"/>
<property name="permission" value="CreateAndAssociateSelectionLists"/> <property name="permission" value="CreateAndAssociateSelectionLists"/>
<property name="group"><ref bean="configGroup"/></property> <property name="group"><ref bean="configGroup"/></property>
<property name="index" value="20" /> <property name="index" value="20" />
</bean> </bean>
<bean id="rmEditSelectionListsCapability" <bean id="rmEditSelectionListsCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="EditSelectionLists" /> <property name="name" value="EditSelectionLists" />
<property name="permission" value="EditSelectionLists" /> <property name="permission" value="EditSelectionLists" />
<property name="group"><ref bean="configGroup"/></property> <property name="group"><ref bean="configGroup"/></property>
<property name="index" value="70" /> <property name="index" value="70" />
</bean> </bean>
<!-- Non-Assignable Capabilities --> <!-- Non-Assignable Capabilities -->
<bean id="rmListAdmin" <bean id="rmListAdmin"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="ListAdmin"/> <property name="name" value="ListAdmin"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="capabilities"> <property name="capabilities">
<set> <set>
<ref bean="rmCreateAndAssociateSelectionListsCapability"/> <ref bean="rmCreateAndAssociateSelectionListsCapability"/>
<ref bean="rmEditSelectionListsCapability"/> <ref bean="rmEditSelectionListsCapability"/>
</set> </set>
</property> </property>
</bean> </bean>
</beans> </beans>

View File

@@ -1,316 +1,316 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<!-- Assignable Capabilities --> <!-- Assignable Capabilities -->
<!-- Cut off --> <!-- Cut off -->
<bean id="rmApproveRecordsScheduledForCutoffCapability" <bean id="rmApproveRecordsScheduledForCutoffCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="ApproveRecordsScheduledForCutoff"/> <property name="name" value="ApproveRecordsScheduledForCutoff"/>
<property name="permission" value="ApproveRecordsScheduledForCutoff"/> <property name="permission" value="ApproveRecordsScheduledForCutoff"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozenOrFrozenChildren" value="false"/> <entry key="capabilityCondition.frozenOrFrozenChildren" value="false"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="cutoffGroup"/></property> <property name="group"><ref bean="cutoffGroup"/></property>
<property name="index" value="10" /> <property name="index" value="10" />
</bean> </bean>
<!-- Transfer --> <!-- Transfer -->
<bean id="rmAuthorizeAllTransfersCapability" <bean id="rmAuthorizeAllTransfersCapability"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="AuthorizeAllTransfers"/> <property name="name" value="AuthorizeAllTransfers"/>
<property name="permission" value="AuthorizeAllTransfers"/> <property name="permission" value="AuthorizeAllTransfers"/>
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmInitiateAllTransfersCapability"/> <ref bean="rmInitiateAllTransfersCapability"/>
<ref bean="rmCompleteAllTransfersCapability"/> <ref bean="rmCompleteAllTransfersCapability"/>
</list> </list>
</property> </property>
<property name="group"><ref bean="dispositionAndTransfersGroup"/></property> <property name="group"><ref bean="dispositionAndTransfersGroup"/></property>
<property name="index" value="10" /> <property name="index" value="10" />
</bean> </bean>
<!-- Accession --> <!-- Accession -->
<bean id="rmAuthorizeNominatedTransfersCapability" <bean id="rmAuthorizeNominatedTransfersCapability"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="AuthorizeNominatedTransfers"/> <property name="name" value="AuthorizeNominatedTransfers"/>
<property name="permission" value="AuthorizeNominatedTransfers"/> <property name="permission" value="AuthorizeNominatedTransfers"/>
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmInitiateNominatedTransfersCapability"/> <ref bean="rmInitiateNominatedTransfersCapability"/>
<ref bean="rmCompleteNominatedTransfersCapability"/> <ref bean="rmCompleteNominatedTransfersCapability"/>
</list> </list>
</property> </property>
<property name="group"><ref bean="dispositionAndTransfersGroup"/></property> <property name="group"><ref bean="dispositionAndTransfersGroup"/></property>
<property name="index" value="20" /> <property name="index" value="20" />
</bean> </bean>
<!-- Destroy --> <!-- Destroy -->
<bean id="rmDestroyRecordsScheduledForDestructionCapability" <bean id="rmDestroyRecordsScheduledForDestructionCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="DestroyRecordsScheduledForDestruction"/> <property name="name" value="DestroyRecordsScheduledForDestruction"/>
<property name="permission" value="DestroyRecordsScheduledForDestruction"/> <property name="permission" value="DestroyRecordsScheduledForDestruction"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozenOrFrozenChildren" value="false"/> <entry key="capabilityCondition.frozenOrFrozenChildren" value="false"/>
<entry key="capabilityCondition.destroyIsScheduled" value="true"/> <entry key="capabilityCondition.destroyIsScheduled" value="true"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="dispositionAndTransfersGroup"/></property> <property name="group"><ref bean="dispositionAndTransfersGroup"/></property>
<property name="index" value="50" /> <property name="index" value="50" />
</bean> </bean>
<!-- Unscheduled Destroy --> <!-- Unscheduled Destroy -->
<!-- @deprecated as of 2.1 --> <!-- @deprecated as of 2.1 -->
<bean id="rmDestroyRecordsCapability" <bean id="rmDestroyRecordsCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="DestroyRecords"/> <property name="name" value="DestroyRecords"/>
<property name="permission" value="DestroyRecords"/> <property name="permission" value="DestroyRecords"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.fail" value="true"/> <entry key="capabilityCondition.fail" value="true"/>
</map> </map>
</property> </property>
</bean> </bean>
<!-- Manually Change Disposition Dates --> <!-- Manually Change Disposition Dates -->
<bean id="rmManuallyChangeDispositionDatesCapability" <bean id="rmManuallyChangeDispositionDatesCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="ManuallyChangeDispositionDates"/> <property name="name" value="ManuallyChangeDispositionDates"/>
<property name="permission" value="ManuallyChangeDispositionDates"/> <property name="permission" value="ManuallyChangeDispositionDates"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
<value>RECORD</value> <value>RECORD</value>
<value>FILE_PLAN_COMPONENT</value> <value>FILE_PLAN_COMPONENT</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozenOrFrozenChildren" value="false"/> <entry key="capabilityCondition.frozenOrFrozenChildren" value="false"/>
<entry key="capabilityCondition.hasDispositionAsOfDate" value="true"/> <entry key="capabilityCondition.hasDispositionAsOfDate" value="true"/>
<entry key="capabilityCondition.isTransferring" value="false" /> <entry key="capabilityCondition.isTransferring" value="false" />
</map> </map>
</property> </property>
<property name="group"><ref bean="dispositionAndTransfersGroup"/></property> <property name="group"><ref bean="dispositionAndTransfersGroup"/></property>
<property name="index" value="60" /> <property name="index" value="60" />
</bean> </bean>
<!-- file destruction report capability --> <!-- file destruction report capability -->
<bean id="rmFileDestructionReportCapability" <bean id="rmFileDestructionReportCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="FileDestructionReport" /> <property name="name" value="FileDestructionReport" />
<property name="permission" value="FileDestructionReport" /> <!-- Associated permission --> <property name="permission" value="FileDestructionReport" /> <!-- Associated permission -->
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD</value> <!-- Only applies to records and record folders --> <value>RECORD</value> <!-- Only applies to records and record folders -->
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <!-- Must have read and file permissions --> <entry key="capabilityCondition.filling" value="true"/> <!-- Must have read and file permissions -->
<entry key="capabilityCondition.frozen" value="false"/> <!-- Not for frozen records --> <entry key="capabilityCondition.frozen" value="false"/> <!-- Not for frozen records -->
<entry key="capabilityCondition.destroyed" value="true"/> <!-- Only for destroyed things --> <entry key="capabilityCondition.destroyed" value="true"/> <!-- Only for destroyed things -->
</map> </map>
</property> </property>
<property name="group"><ref bean="dispositionAndTransfersGroup"/></property> <!-- Part of the disposition group of capabilities --> <property name="group"><ref bean="dispositionAndTransfersGroup"/></property> <!-- Part of the disposition group of capabilities -->
<property name="index" value="110" /> <property name="index" value="110" />
</bean> </bean>
<!-- file transfer report capability --> <!-- file transfer report capability -->
<bean id="rmFileTransferReportCapability" <bean id="rmFileTransferReportCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="FileTransferReport" /> <property name="name" value="FileTransferReport" />
<property name="permission" value="FileTransferReport" /> <property name="permission" value="FileTransferReport" />
<property name="kinds"> <property name="kinds">
<list> <list>
<value>TRANSFER</value> <value>TRANSFER</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="dispositionAndTransfersGroup"/></property> <property name="group"><ref bean="dispositionAndTransfersGroup"/></property>
<property name="index" value="120" /> <property name="index" value="120" />
</bean> </bean>
<!-- End Rentention --> <!-- End Rentention -->
<bean id="rmEndRetentionCapability" <bean id="rmEndRetentionCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="EndRetention"/> <property name="name" value="EndRetention"/>
<property name="permission" value="EndRetention" /> <property name="permission" value="EndRetention" />
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozenOrFrozenChildren" value="false"/> <entry key="capabilityCondition.frozenOrFrozenChildren" value="false"/>
<entry key="capabilityCondition.retentionIsScheduled" value="true" /> <entry key="capabilityCondition.retentionIsScheduled" value="true" />
</map> </map>
</property> </property>
<property name="group"><ref bean="dispositionAndTransfersGroup"/></property> <property name="group"><ref bean="dispositionAndTransfersGroup"/></property>
<property name="index" value="70" /> <property name="index" value="70" />
</bean> </bean>
<!-- Non-assignable Capabilities --> <!-- Non-assignable Capabilities -->
<bean id="rmInitiateAllTransfersCapability" <bean id="rmInitiateAllTransfersCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="InitiateAllTransfers"/> <property name="name" value="InitiateAllTransfers"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.frozenOrFrozenChildren" value="false"/> <entry key="capabilityCondition.frozenOrFrozenChildren" value="false"/>
<entry key="capabilityCondition.transferIsScheduled" value="true" /> <entry key="capabilityCondition.transferIsScheduled" value="true" />
<entry key="capabilityCondition.isTransferring" value="false" /> <entry key="capabilityCondition.isTransferring" value="false" />
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmCompleteAllTransfersCapability" <bean id="rmCompleteAllTransfersCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CompleteAllTransfers"/> <property name="name" value="CompleteAllTransfers"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds" value="TRANSFER"/> <property name="kinds" value="TRANSFER"/>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.isTransferAccession" value="false"/> <entry key="capabilityCondition.isTransferAccession" value="false"/>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmInitiateNominatedTransfersCapability" <bean id="rmInitiateNominatedTransfersCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="InitiateNominatedTransfers"/> <property name="name" value="InitiateNominatedTransfers"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.frozenOrFrozenChildren" value="false"/> <entry key="capabilityCondition.frozenOrFrozenChildren" value="false"/>
<entry key="capabilityCondition.accessionIsScheduled" value="true" /> <entry key="capabilityCondition.accessionIsScheduled" value="true" />
<entry key="capabilityCondition.isTransferring" value="false" /> <entry key="capabilityCondition.isTransferring" value="false" />
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmCompleteNominatedTransfersCapability" <bean id="rmCompleteNominatedTransfersCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CompleteNominatedTransfers"/> <property name="name" value="CompleteNominatedTransfers"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds" value="TRANSFER"/> <property name="kinds" value="TRANSFER"/>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.isTransferAccession" value="true"/> <entry key="capabilityCondition.isTransferAccession" value="true"/>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmCutOffCapability" <bean id="rmCutOffCapability"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="CutOff"/> <property name="name" value="CutOff"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmApproveRecordsScheduledForCutoffCapability"/> <ref bean="rmApproveRecordsScheduledForCutoffCapability"/>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.cutoff" value="false"/> <entry key="capabilityCondition.cutoff" value="false"/>
<entry key="capabilityCondition.cutoffIsScheduled" value="true" /> <entry key="capabilityCondition.cutoffIsScheduled" value="true" />
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmUndoCutOffCapability" <bean id="rmUndoCutOffCapability"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="UndoCutOff"/> <property name="name" value="UndoCutOff"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmApproveRecordsScheduledForCutoffCapability"/> <ref bean="rmApproveRecordsScheduledForCutoffCapability"/>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.cutoff" value="true"/> <entry key="capabilityCondition.cutoff" value="true"/>
<entry key="capabilityCondition.isTransferring" value="false" /> <entry key="capabilityCondition.isTransferring" value="false" />
<entry key="capabilityCondition.lastDispositionActionCutoff" value="true"/> <entry key="capabilityCondition.lastDispositionActionCutoff" value="true"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmDestroyCapability" <bean id="rmDestroyCapability"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="Destroy"/> <property name="name" value="Destroy"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmDestroyRecordsScheduledForDestructionCapability"/> <ref bean="rmDestroyRecordsScheduledForDestructionCapability"/>
<ref bean="rmDestroyRecordsCapability"/> <ref bean="rmDestroyRecordsCapability"/>
</list> </list>
</property> </property>
</bean> </bean>
</beans> </beans>

View File

@@ -1,42 +1,42 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<!-- Assignable Capabilities --> <!-- Assignable Capabilities -->
<bean id="rmAddModifyEventDatesCapability" <bean id="rmAddModifyEventDatesCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="AddModifyEventDates"/> <property name="name" value="AddModifyEventDates"/>
<property name="permission" value="AddModifyEventDates"/> <property name="permission" value="AddModifyEventDates"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.hasEvents" value="true"/> <entry key="capabilityCondition.hasEvents" value="true"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="eventsGroup"/></property> <property name="group"><ref bean="eventsGroup"/></property>
<property name="index" value="10" /> <property name="index" value="10" />
</bean> </bean>
<bean id="rmCreateModifyDestroyEventsCapability" <bean id="rmCreateModifyDestroyEventsCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CreateModifyDestroyEvents" /> <property name="name" value="CreateModifyDestroyEvents" />
<property name="permission" value="CreateModifyDestroyEvents" /> <property name="permission" value="CreateModifyDestroyEvents" />
<property name="group"><ref bean="eventsGroup"/></property> <property name="group"><ref bean="eventsGroup"/></property>
<property name="index" value="20" /> <property name="index" value="20" />
</bean> </bean>
<!-- Non-Assignable Capabilities --> <!-- Non-Assignable Capabilities -->
</beans> </beans>

View File

@@ -1,97 +1,97 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<!-- Assignable Capabilities --> <!-- Assignable Capabilities -->
<bean id="rmCreateModifyDestroyFileplanMetadataCapability" <bean id="rmCreateModifyDestroyFileplanMetadataCapability"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="CreateModifyDestroyFileplanMetadata"/> <property name="name" value="CreateModifyDestroyFileplanMetadata"/>
<property name="permission" value="CreateModifyDestroyFileplanMetadata"/> <property name="permission" value="CreateModifyDestroyFileplanMetadata"/>
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmCreateRootRecordCategoryCapability"/> <ref bean="rmCreateRootRecordCategoryCapability"/>
<ref bean="rmCreateModifyDestroyRecordCategoryCapability"/> <ref bean="rmCreateModifyDestroyRecordCategoryCapability"/>
<ref bean="rmCreateModifyDestroyUnfiledRecordContainerCapability"/> <ref bean="rmCreateModifyDestroyUnfiledRecordContainerCapability"/>
</list> </list>
</property> </property>
<property name="group"><ref bean="configGroup"/></property> <property name="group"><ref bean="configGroup"/></property>
<property name="index" value="30" /> <property name="index" value="30" />
</bean> </bean>
<!-- Unassignable Capabilities --> <!-- Unassignable Capabilities -->
<bean id="rmCreateRootRecordCategoryCapability" <bean id="rmCreateRootRecordCategoryCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CreateRootRecordCategory"/> <property name="name" value="CreateRootRecordCategory"/>
<property name="permission" value="CreateModifyDestroyFileplanMetadata"/> <property name="permission" value="CreateModifyDestroyFileplanMetadata"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>FILE_PLAN</value> <value>FILE_PLAN</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmCreateModifyDestroyRecordCategoryCapability" <bean id="rmCreateModifyDestroyRecordCategoryCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CreateModifyDestroyRecordCategory"/> <property name="name" value="CreateModifyDestroyRecordCategory"/>
<property name="permission" value="CreateModifyDestroyFileplanMetadata"/> <property name="permission" value="CreateModifyDestroyFileplanMetadata"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_CATEGORY</value> <value>RECORD_CATEGORY</value>
<value>DISPOSITION_SCHEDULE</value> <value>DISPOSITION_SCHEDULE</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmMoveRecordCategoryCapability" <bean id="rmMoveRecordCategoryCapability"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="MoveRecordCategory"/> <property name="name" value="MoveRecordCategory"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="undetermined" value="true"/> <property name="undetermined" value="true"/>
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmCreateModifyDestroyFileplanMetadataCapability"/> <ref bean="rmCreateModifyDestroyFileplanMetadataCapability"/>
</list> </list>
</property> </property>
<property name="targetCapability" ref="rmCreateModifyDestroyFileplanMetadataCapability"/> <property name="targetCapability" ref="rmCreateModifyDestroyFileplanMetadataCapability"/>
</bean> </bean>
<bean id="rmCreateModifyDestroyUnfiledRecordContainerCapability" <bean id="rmCreateModifyDestroyUnfiledRecordContainerCapability"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="CreateModifyDestroyUnfiledRecordContainer"/> <property name="name" value="CreateModifyDestroyUnfiledRecordContainer"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>UNFILED_RECORD_CONTAINER</value> <value>UNFILED_RECORD_CONTAINER</value>
<value>UNFILED_RECORD_FOLDER</value> <value>UNFILED_RECORD_FOLDER</value>
</list> </list>
</property> </property>
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmCreateUnfiledRecordsContainerFolderCapability"/> <ref bean="rmCreateUnfiledRecordsContainerFolderCapability"/>
<ref bean="rmModifyUnfiledRecordsContainerFolderCapability"/> <ref bean="rmModifyUnfiledRecordsContainerFolderCapability"/>
<ref bean="rmDeleteUnfiledRecordsContainerFolderCapability"/> <ref bean="rmDeleteUnfiledRecordsContainerFolderCapability"/>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
</map> </map>
</property> </property>
</bean> </bean>
</beans> </beans>

View File

@@ -1,171 +1,171 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<!-- Public Capabilities --> <!-- Public Capabilities -->
<bean id="rmCreateHoldCapability" <bean id="rmCreateHoldCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CreateHold"/> <property name="name" value="CreateHold"/>
<property name="permission" value="CreateHold"/> <property name="permission" value="CreateHold"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>FILE_PLAN</value> <!-- required because the create hold method is parameterized by file plan --> <value>FILE_PLAN</value> <!-- required because the create hold method is parameterized by file plan -->
<value>HOLD_CONTAINER</value> <value>HOLD_CONTAINER</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.hasFillingOnHoldContainer" value="true"/> <entry key="capabilityCondition.hasFillingOnHoldContainer" value="true"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="holdControlsGroup"/></property> <property name="group"><ref bean="holdControlsGroup"/></property>
<property name="index" value="40" /> <property name="index" value="40" />
</bean> </bean>
<bean id="rmEditHoldCapability" <bean id="rmEditHoldCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="EditHold"/> <property name="name" value="EditHold"/>
<property name="permission" value="EditHold"/> <property name="permission" value="EditHold"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>HOLD</value> <value>HOLD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="holdControlsGroup"/></property> <property name="group"><ref bean="holdControlsGroup"/></property>
<property name="index" value="46" /> <property name="index" value="46" />
</bean> </bean>
<bean id="rmDeleteHoldCapability" <bean id="rmDeleteHoldCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="DeleteHold"/> <property name="name" value="DeleteHold"/>
<property name="permission" value="DeleteHold"/> <property name="permission" value="DeleteHold"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>HOLD</value> <value>HOLD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="holdControlsGroup"/></property> <property name="group"><ref bean="holdControlsGroup"/></property>
<property name="index" value="48" /> <property name="index" value="48" />
</bean> </bean>
<bean id="rmAddToHoldCapability" <bean id="rmAddToHoldCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="AddToHold" /> <property name="name" value="AddToHold" />
<property name="permission" value="AddToHold" /> <property name="permission" value="AddToHold" />
<property name="kinds"> <property name="kinds">
<list> <list>
<value>HOLD</value> <value>HOLD</value>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.hasFillingOnHolds" value="true"/> <entry key="capabilityCondition.hasFillingOnHolds" value="true"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="holdControlsGroup"/></property> <property name="group"><ref bean="holdControlsGroup"/></property>
<property name="index" value="50" /> <property name="index" value="50" />
</bean> </bean>
<bean id="rmRemoveFromHoldCapability" <bean id="rmRemoveFromHoldCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="RemoveFromHold" /> <property name="name" value="RemoveFromHold" />
<property name="permission" value="RemoveFromHold" /> <property name="permission" value="RemoveFromHold" />
<property name="kinds"> <property name="kinds">
<list> <list>
<value>HOLD</value> <value>HOLD</value>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="true"/> <entry key="capabilityCondition.frozen" value="true"/>
<entry key="capabilityCondition.hasFillingOnHeld" value="true"/> <entry key="capabilityCondition.hasFillingOnHeld" value="true"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="holdControlsGroup"/></property> <property name="group"><ref bean="holdControlsGroup"/></property>
<property name="index" value="60" /> <property name="index" value="60" />
</bean> </bean>
<!-- file hold report capability --> <!-- file hold report capability -->
<bean id="rmFileHoldReportCapability" <bean id="rmFileHoldReportCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="FileHoldReport" /> <property name="name" value="FileHoldReport" />
<property name="permission" value="FileHoldReport" /> <!-- Associated permission --> <property name="permission" value="FileHoldReport" /> <!-- Associated permission -->
<property name="kinds"> <property name="kinds">
<list> <list>
<value>HOLD</value> <!-- Only applies to holds --> <value>HOLD</value> <!-- Only applies to holds -->
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <!-- Must have read and file permissions --> <entry key="capabilityCondition.filling" value="true"/> <!-- Must have read and file permissions -->
</map> </map>
</property> </property>
<property name="group"><ref bean="holdControlsGroup"/></property> <!-- Part of the hold group of capabilities --> <property name="group"><ref bean="holdControlsGroup"/></property> <!-- Part of the hold group of capabilities -->
<property name="index" value="80" /> <property name="index" value="80" />
</bean> </bean>
<!-- Deprecated capabilities (as of 2.2) --> <!-- Deprecated capabilities (as of 2.2) -->
<bean id="rmExtendRetentionPeriodOrFreezeCapability" <bean id="rmExtendRetentionPeriodOrFreezeCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="ExtendRetentionPeriodOrFreeze"/> <property name="name" value="ExtendRetentionPeriodOrFreeze"/>
<property name="permission" value="ExtendRetentionPeriodOrFreeze"/> <property name="permission" value="ExtendRetentionPeriodOrFreeze"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmUnfreezeCapability" <bean id="rmUnfreezeCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="Unfreeze"/> <property name="name" value="Unfreeze"/>
<property name="permission" value="Unfreeze"/> <property name="permission" value="Unfreeze"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozenOrHold" value="true"/> <entry key="capabilityCondition.frozenOrHold" value="true"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmViewUpdateReasonsForFreezeCapability" <bean id="rmViewUpdateReasonsForFreezeCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="ViewUpdateReasonsForFreeze"/> <property name="name" value="ViewUpdateReasonsForFreeze"/>
<property name="permission" value="ViewUpdateReasonsForFreeze"/> <property name="permission" value="ViewUpdateReasonsForFreeze"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozenOrHold" value="true"/> <entry key="capabilityCondition.frozenOrHold" value="true"/>
</map> </map>
</property> </property>
</bean> </bean>
</beans> </beans>

View File

@@ -1,249 +1,249 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<bean id="rmCreate" <bean id="rmCreate"
parent="rmBaseCapability" parent="rmBaseCapability"
class="org.alfresco.module.org_alfresco_module_rm.capability.impl.CreateCapability"> class="org.alfresco.module.org_alfresco_module_rm.capability.impl.CreateCapability">
<property name="recordService" ref="recordService"/> <property name="recordService" ref="recordService"/>
<property name="recordFolderService" ref="RecordFolderService"/> <property name="recordFolderService" ref="RecordFolderService"/>
<property name="name" value="Create"/> <property name="name" value="Create"/>
<property name="private" value="true"/> <property name="private" value="true"/>
</bean> </bean>
<bean id="rmDelete" <bean id="rmDelete"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="Delete"/> <property name="name" value="Delete"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmDeleteRecordsCapability"/> <ref bean="rmDeleteRecordsCapability"/>
<ref bean="rmCreateModifyDestroyFileplanMetadataCapability"/> <ref bean="rmCreateModifyDestroyFileplanMetadataCapability"/>
<ref bean="rmDeleteRecordFolderCapability"/> <ref bean="rmDeleteRecordFolderCapability"/>
<ref bean="rmDeleteUnfiledRecordsContainerFolderCapability"/> <ref bean="rmDeleteUnfiledRecordsContainerFolderCapability"/>
<ref bean="rmDeleteHoldCapability"/> <ref bean="rmDeleteHoldCapability"/>
<ref bean="rmUnlinkFromRecordFolderCapability"/> <ref bean="rmUnlinkFromRecordFolderCapability"/>
</list> </list>
</property> </property>
</bean> </bean>
<bean id="rmUpdate" <bean id="rmUpdate"
parent="compositeCapability" parent="compositeCapability"
class="org.alfresco.module.org_alfresco_module_rm.capability.impl.UpdateCapability"> class="org.alfresco.module.org_alfresco_module_rm.capability.impl.UpdateCapability">
<property name="name" value="Update"/> <property name="name" value="Update"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmModifyRecordFolderCapability"/> <ref bean="rmModifyRecordFolderCapability"/>
<ref bean="rmCreateModifyDestroyFileplanMetadataCapability"/> <ref bean="rmCreateModifyDestroyFileplanMetadataCapability"/>
<ref bean="rmEditDeclaredRecordMetadataCapability"/> <ref bean="rmEditDeclaredRecordMetadataCapability"/>
<ref bean="rmEditNonRecordMetadataCapability"/> <ref bean="rmEditNonRecordMetadataCapability"/>
<ref bean="rmCreateModifyRecordsInCuttoffFoldersCapability"/> <ref bean="rmCreateModifyRecordsInCuttoffFoldersCapability"/>
<ref bean="rmEditRecordMetadataCapability"/> <ref bean="rmEditRecordMetadataCapability"/>
<ref bean="rmModifyUnfiledRecordsContainerFolderCapability"/> <ref bean="rmModifyUnfiledRecordsContainerFolderCapability"/>
<ref bean="rmEditHoldCapability"/> <ref bean="rmEditHoldCapability"/>
</list> </list>
</property> </property>
</bean> </bean>
<bean id="rmUpdateProperties" <bean id="rmUpdateProperties"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="UpdateProperties"/> <property name="name" value="UpdateProperties"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmModifyRecordFolderCapability"/> <ref bean="rmModifyRecordFolderCapability"/>
<ref bean="rmCreateModifyDestroyFileplanMetadataCapability"/> <ref bean="rmCreateModifyDestroyFileplanMetadataCapability"/>
<ref bean="rmEditDeclaredRecordMetadataCapability"/> <ref bean="rmEditDeclaredRecordMetadataCapability"/>
<ref bean="rmEditNonRecordMetadataCapability"/> <ref bean="rmEditNonRecordMetadataCapability"/>
<ref bean="rmCreateModifyRecordsInCuttoffFoldersCapability"/> <ref bean="rmCreateModifyRecordsInCuttoffFoldersCapability"/>
<ref bean="rmEditRecordMetadataCapability"/> <ref bean="rmEditRecordMetadataCapability"/>
<ref bean="rmModifyUnfiledRecordsContainerFolderCapability"/> <ref bean="rmModifyUnfiledRecordsContainerFolderCapability"/>
<ref bean="rmEditHoldCapability"/> <ref bean="rmEditHoldCapability"/>
</list> </list>
</property> </property>
</bean> </bean>
<bean id="rmDeclare" <bean id="rmDeclare"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="Declare"/> <property name="name" value="Declare"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmDeclareRecordsCapability"/> <ref bean="rmDeclareRecordsCapability"/>
<ref bean="rmDeclareRecordsInClosedFoldersCapability"/> <ref bean="rmDeclareRecordsInClosedFoldersCapability"/>
</list> </list>
</property> </property>
</bean> </bean>
<bean id="rmWriteContent" <bean id="rmWriteContent"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="WriteContent"/> <property name="name" value="WriteContent"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.declared" value="false"/> <entry key="capabilityCondition.declared" value="false"/>
<entry key="capabilityCondition.closed" value="false"/> <entry key="capabilityCondition.closed" value="false"/>
<entry key="capabilityCondition.cutoff" value="false"/> <entry key="capabilityCondition.cutoff" value="false"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmMove" <bean id="rmMove"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="Move"/> <property name="name" value="Move"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmMoveRecordCategoryCapability"/> <ref bean="rmMoveRecordCategoryCapability"/>
<ref bean="rmMoveRecordFolderCapability"/> <ref bean="rmMoveRecordFolderCapability"/>
<ref bean="rmMoveRecordsCapability"/> <ref bean="rmMoveRecordsCapability"/>
<ref bean="rmMoveUnfiledRecordsCapability"/> <ref bean="rmMoveUnfiledRecordsCapability"/>
<ref bean="rmMoveUnfiledRecordsContainerFolderCapability"/> <ref bean="rmMoveUnfiledRecordsContainerFolderCapability"/>
<ref bean="rmFileUnfiledRecordsCapability"/> <ref bean="rmFileUnfiledRecordsCapability"/>
</list> </list>
</property> </property>
</bean> </bean>
<bean id="rmCopy" <bean id="rmCopy"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="Copy"/> <property name="name" value="Copy"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmCopyRecordCapability"/> <ref bean="rmCopyRecordCapability"/>
<ref bean="rmCopyUnfiledRecordCapability"/> <ref bean="rmCopyUnfiledRecordCapability"/>
<ref bean="rmCopyRecordFolderCapability"/> <ref bean="rmCopyRecordFolderCapability"/>
<ref bean="rmCopyUnfiledRecordFolderCapability"/> <ref bean="rmCopyUnfiledRecordFolderCapability"/>
<ref bean="rmCopyRecordCategoryCapability"/> <ref bean="rmCopyRecordCategoryCapability"/>
</list> </list>
</property> </property>
<property name="targetCapability" ref="rmCreate" /> <property name="targetCapability" ref="rmCreate" />
</bean> </bean>
<bean id="rmCopyRecordCapability" <bean id="rmCopyRecordCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CopyRecord"/> <property name="name" value="CopyRecord"/>
<property name="permission" value="CreateRecords"/> <property name="permission" value="CreateRecords"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.recordFiled" value="true"/> <entry key="capabilityCondition.recordFiled" value="true"/>
</map> </map>
</property> </property>
<property name="targetCapability" ref="rmFileRecordsCapability"/> <property name="targetCapability" ref="rmFileRecordsCapability"/>
</bean> </bean>
<bean id="rmCopyUnfiledRecordCapability" <bean id="rmCopyUnfiledRecordCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CopyUnfiledRecord"/> <property name="name" value="CopyUnfiledRecord"/>
<property name="permission" value="CreateRecords"/> <property name="permission" value="CreateRecords"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.recordFiled" value="false"/> <entry key="capabilityCondition.recordFiled" value="false"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmCopyRecordFolderCapability" <bean id="rmCopyRecordFolderCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CopyRecordFolder"/> <property name="name" value="CopyRecordFolder"/>
<property name="permission" value="CreateModifyDestroyFolders"/> <property name="permission" value="CreateModifyDestroyFolders"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmCopyUnfiledRecordFolderCapability" <bean id="rmCopyUnfiledRecordFolderCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CopyUnfiledRecordFolder"/> <property name="name" value="CopyUnfiledRecordFolder"/>
<property name="permission" value="CreateModifyDestroyFolders"/> <property name="permission" value="CreateModifyDestroyFolders"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>UNFILED_RECORD_CONTAINER</value> <value>UNFILED_RECORD_CONTAINER</value>
<value>UNFILED_RECORD_FOLDER</value> <value>UNFILED_RECORD_FOLDER</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmCopyRecordCategoryCapability" <bean id="rmCopyRecordCategoryCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CopyRecordCategory"/> <property name="name" value="CopyRecordCategory"/>
<property name="permission" value="CreateModifyDestroyFileplanMetadata"/> <property name="permission" value="CreateModifyDestroyFileplanMetadata"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_CATEGORY</value> <value>RECORD_CATEGORY</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmImport" <bean id="rmImport"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="Import"/> <property name="name" value="Import"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>FILE_PLAN</value> <value>FILE_PLAN</value>
<value>RECORD_CATEGORY</value> <value>RECORD_CATEGORY</value>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.closed" value="false"/> <entry key="capabilityCondition.closed" value="false"/>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
</map> </map>
</property> </property>
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmCreateModifyDestroyFoldersCapability"/> <ref bean="rmCreateModifyDestroyFoldersCapability"/>
<ref bean="rmCreateModifyDestroyFileplanMetadataCapability"/> <ref bean="rmCreateModifyDestroyFileplanMetadataCapability"/>
<ref bean="rmFileRecordsCapability"/> <ref bean="rmFileRecordsCapability"/>
</list> </list>
</property> </property>
</bean> </bean>
</beans> </beans>

View File

@@ -1,389 +1,389 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<bean id="rmViewRecordsCapability" <bean id="rmViewRecordsCapability"
parent="rmBaseCapability" parent="rmBaseCapability"
class="org.alfresco.module.org_alfresco_module_rm.capability.impl.ViewRecordsCapability"> class="org.alfresco.module.org_alfresco_module_rm.capability.impl.ViewRecordsCapability">
<property name="name" value="ViewRecords" /> <property name="name" value="ViewRecords" />
<property name="group"><ref bean="recordsGroup"/></property> <property name="group"><ref bean="recordsGroup"/></property>
<property name="index" value="30" /> <property name="index" value="30" />
</bean> </bean>
<bean id="rmCreateRecordsCapability" <bean id="rmCreateRecordsCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CreateRecords"/> <property name="name" value="CreateRecords"/>
<property name="group"><ref bean="recordsGroup"/></property> <property name="group"><ref bean="recordsGroup"/></property>
<property name="index" value="35" /> <property name="index" value="35" />
<property name="permission" value="CreateRecords"/> <property name="permission" value="CreateRecords"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD</value> <value>RECORD</value>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
<value>UNFILED_RECORD_CONTAINER</value> <value>UNFILED_RECORD_CONTAINER</value>
<value>UNFILED_RECORD_FOLDER</value> <value>UNFILED_RECORD_FOLDER</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.cutoff" value="false"/> <entry key="capabilityCondition.cutoff" value="false"/>
<entry key="capabilityCondition.closed" value="false"/> <entry key="capabilityCondition.closed" value="false"/>
<entry key="capabilityCondition.declared" value="false"/> <entry key="capabilityCondition.declared" value="false"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmUndeclareRecordsCapability" <bean id="rmUndeclareRecordsCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="UndeclareRecords"/> <property name="name" value="UndeclareRecords"/>
<property name="permission" value="UndeclareRecords"/> <property name="permission" value="UndeclareRecords"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.declared" value="true"/> <entry key="capabilityCondition.declared" value="true"/>
<entry key="capabilityCondition.cutoff" value="false"/> <entry key="capabilityCondition.cutoff" value="false"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="recordsGroup"/></property> <property name="group"><ref bean="recordsGroup"/></property>
<property name="index" value="20" /> <property name="index" value="20" />
</bean> </bean>
<bean id="rmDeclareRecordsInClosedFoldersCapability" <bean id="rmDeclareRecordsInClosedFoldersCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="DeclareRecordsInClosedFolders"/> <property name="name" value="DeclareRecordsInClosedFolders"/>
<property name="permission" value="DeclareRecordsInClosedFolders"/> <property name="permission" value="DeclareRecordsInClosedFolders"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.cutoff" value="false"/> <entry key="capabilityCondition.cutoff" value="false"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.closed" value="true"/> <entry key="capabilityCondition.closed" value="true"/>
<entry key="capabilityCondition.declared" value="false"/> <entry key="capabilityCondition.declared" value="false"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="recordsGroup"/></property> <property name="group"><ref bean="recordsGroup"/></property>
<property name="index" value="30" /> <property name="index" value="30" />
</bean> </bean>
<bean id="rmCreateModifyRecordsInCuttoffFoldersCapability" <bean id="rmCreateModifyRecordsInCuttoffFoldersCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CreateModifyRecordsInCutoffFolders"/> <property name="name" value="CreateModifyRecordsInCutoffFolders"/>
<property name="permission" value="CreateModifyRecordsInCutoffFolders"/> <property name="permission" value="CreateModifyRecordsInCutoffFolders"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.cutoff" value="true"/> <entry key="capabilityCondition.cutoff" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.closed" value="false"/> <entry key="capabilityCondition.closed" value="false"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="cutoffGroup"/></property> <property name="group"><ref bean="cutoffGroup"/></property>
<property name="index" value="20" /> <property name="index" value="20" />
</bean> </bean>
<bean id="rmFileRecordsCapability" <bean id="rmFileRecordsCapability"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="FileRecords" /> <property name="name" value="FileRecords" />
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmCreateRecordsCapability"/> <ref bean="rmCreateRecordsCapability"/>
<ref bean="rmCreateModifyRecordsInCuttoffFoldersCapability"/> <ref bean="rmCreateModifyRecordsInCuttoffFoldersCapability"/>
</list> </list>
</property> </property>
</bean> </bean>
<bean id="rmLinkToRecordsCapability" <bean id="rmLinkToRecordsCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="LinkToRecords"/> <property name="name" value="LinkToRecords"/>
<property name="permission" value="LinkToRecords" /> <property name="permission" value="LinkToRecords" />
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.recordFiled" value="true"/> <!-- Can only link a filed record --> <entry key="capabilityCondition.recordFiled" value="true"/> <!-- Can only link a filed record -->
</map> </map>
</property> </property>
<property name="targetCapability" ref="rmFilePermissionOnly" /> <property name="targetCapability" ref="rmFilePermissionOnly" />
<property name="group"><ref bean="recordsGroup"/></property> <property name="group"><ref bean="recordsGroup"/></property>
<property name="index" value="45" /> <property name="index" value="45" />
</bean> </bean>
<bean id="rmDeleteLinksCapability" <bean id="rmDeleteLinksCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="DeleteLinks"/> <property name="name" value="DeleteLinks"/>
<property name="permission" value="DeleteLinks"/> <property name="permission" value="DeleteLinks"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="recordsGroup"/></property> <property name="group"><ref bean="recordsGroup"/></property>
<property name="index" value="46" /> <property name="index" value="46" />
</bean> </bean>
<bean id="rmFileUnfiledRecordsCapability" <bean id="rmFileUnfiledRecordsCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="FileUnfiledRecords"/> <property name="name" value="FileUnfiledRecords"/>
<property name="permission" value="FileUnfiledRecords"/> <property name="permission" value="FileUnfiledRecords"/>
<property name="kind" value="RECORD" /> <property name="kind" value="RECORD" />
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <!-- Checks if the user has the filling capability --> <entry key="capabilityCondition.filling" value="true"/> <!-- Checks if the user has the filling capability -->
<entry key="capabilityCondition.frozen" value="false"/> <!-- Checks that the node is not frozen --> <entry key="capabilityCondition.frozen" value="false"/> <!-- Checks that the node is not frozen -->
<entry key="capabilityCondition.recordFiled" value="false"/> <!-- Checks that the node hasn't been filed --> <entry key="capabilityCondition.recordFiled" value="false"/> <!-- Checks that the node hasn't been filed -->
</map> </map>
</property> </property>
<property name="targetCapability" ref="rmFilePermissionOnly" /> <!-- Checks that the user has the correct capability on the destination folder --> <property name="targetCapability" ref="rmFilePermissionOnly" /> <!-- Checks that the user has the correct capability on the destination folder -->
<property name="group"><ref bean="recordsGroup"/></property> <property name="group"><ref bean="recordsGroup"/></property>
<property name="index" value="41" /> <property name="index" value="41" />
</bean> </bean>
<bean id="rmFilePermissionOnly" <bean id="rmFilePermissionOnly"
parent="declarativeCapability" > <!-- Checks for filling permission only, useful for destination checks --> parent="declarativeCapability" > <!-- Checks for filling permission only, useful for destination checks -->
<property name="name" value="FillingPermissionOnly"/> <property name="name" value="FillingPermissionOnly"/>
<property name="private" value="true" /> <property name="private" value="true" />
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <!-- Checks if the user has the filling capability --> <entry key="capabilityCondition.filling" value="true"/> <!-- Checks if the user has the filling capability -->
<entry key="capabilityCondition.closed" value="false"/> <entry key="capabilityCondition.closed" value="false"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.cutoff" value="false"/> <entry key="capabilityCondition.cutoff" value="false"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmDeclareRecordsCapability" <bean id="rmDeclareRecordsCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="DeclareRecords"/> <property name="name" value="DeclareRecords"/>
<property name="permission" value="DeclareRecords"/> <property name="permission" value="DeclareRecords"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.cutoff" value="false"/> <entry key="capabilityCondition.cutoff" value="false"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.declared" value="false"/> <entry key="capabilityCondition.declared" value="false"/>
<entry key="capabilityCondition.closed" value="false"/> <entry key="capabilityCondition.closed" value="false"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="recordsGroup"/></property> <property name="group"><ref bean="recordsGroup"/></property>
<property name="index" value="10" /> <property name="index" value="10" />
</bean> </bean>
<bean id="rmDeleteRecordsCapability" <bean id="rmDeleteRecordsCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="DeleteRecords"/> <property name="name" value="DeleteRecords"/>
<property name="permission" value="DeleteRecords"/> <property name="permission" value="DeleteRecords"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="dispositionAndTransfersGroup"/></property> <property name="group"><ref bean="dispositionAndTransfersGroup"/></property>
<property name="index" value="30" /> <property name="index" value="30" />
</bean> </bean>
<bean id="rmEditDeclaredRecordMetadataCapability" <bean id="rmEditDeclaredRecordMetadataCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="EditDeclaredRecordMetadata"/> <property name="name" value="EditDeclaredRecordMetadata"/>
<property name="permission" value="EditDeclaredRecordMetadata"/> <property name="permission" value="EditDeclaredRecordMetadata"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.declared" value="true"/> <entry key="capabilityCondition.declared" value="true"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="recordsGroup"/></property> <property name="group"><ref bean="recordsGroup"/></property>
<property name="index" value="10" /> <property name="index" value="10" />
</bean> </bean>
<bean id="rmEditNonRecordMetadataCapability" <bean id="rmEditNonRecordMetadataCapability"
parent="declarativeCapability" parent="declarativeCapability"
class="org.alfresco.module.org_alfresco_module_rm.capability.impl.EditNonRecordMetadataCapability"> class="org.alfresco.module.org_alfresco_module_rm.capability.impl.EditNonRecordMetadataCapability">
<property name="name" value="EditNonRecordMetadata"/> <property name="name" value="EditNonRecordMetadata"/>
<property name="permission" value="EditNonRecordMetadata"/> <property name="permission" value="EditNonRecordMetadata"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.cutoff" value="false"/> <entry key="capabilityCondition.cutoff" value="false"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.declared" value="false"/> <entry key="capabilityCondition.declared" value="false"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="recordsGroup"/></property> <property name="group"><ref bean="recordsGroup"/></property>
<property name="index" value="20" /> <property name="index" value="20" />
<property name="transactionalResourceHelper" ref="rm.transactionalResourceHelper"/> <property name="transactionalResourceHelper" ref="rm.transactionalResourceHelper"/>
</bean> </bean>
<bean id="rmEditRecordMetadataCapability" <bean id="rmEditRecordMetadataCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="EditRecordMetadata"/> <property name="name" value="EditRecordMetadata"/>
<property name="permission" value="EditRecordMetadata"/> <property name="permission" value="EditRecordMetadata"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.cutoff" value="false"/> <entry key="capabilityCondition.cutoff" value="false"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.declared" value="false"/> <entry key="capabilityCondition.declared" value="false"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="recordsGroup"/></property> <property name="group"><ref bean="recordsGroup"/></property>
<property name="index" value="30" /> <property name="index" value="30" />
</bean> </bean>
<bean id="rmMoveRecordsCapability" <bean id="rmMoveRecordsCapability"
parent="declarativeCapability" > parent="declarativeCapability" >
<property name="name" value="MoveRecords" /> <property name="name" value="MoveRecords" />
<property name="permission" value="MoveRecords"/> <property name="permission" value="MoveRecords"/>
<property name="undetermined" value="true" /> <property name="undetermined" value="true" />
<property name="kind" value="RECORD" /> <property name="kind" value="RECORD" />
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.recordFiled" value="true"/> <!-- Can only move a filed record --> <entry key="capabilityCondition.recordFiled" value="true"/> <!-- Can only move a filed record -->
<entry key="capabilityCondition.cutoff" value="false"/> <!-- Can not move a record once it is cutoff --> <entry key="capabilityCondition.cutoff" value="false"/> <!-- Can not move a record once it is cutoff -->
</map> </map>
</property> </property>
<property name="targetCapability" ref="rmFilePermissionOnly"/> <property name="targetCapability" ref="rmFilePermissionOnly"/>
<property name="group"><ref bean="recordsGroup"/></property> <property name="group"><ref bean="recordsGroup"/></property>
<property name="index" value="40" /> <property name="index" value="40" />
</bean> </bean>
<bean id="rmMoveUnfiledRecordsCapability" <bean id="rmMoveUnfiledRecordsCapability"
parent="declarativeCapability" > parent="declarativeCapability" >
<property name="name" value="MoveUnfiledRecords" /> <property name="name" value="MoveUnfiledRecords" />
<property name="permission" value="MoveRecords"/> <property name="permission" value="MoveRecords"/>
<property name="undetermined" value="true" /> <property name="undetermined" value="true" />
<property name="kind" value="RECORD" /> <property name="kind" value="RECORD" />
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.recordFiled" value="false"/> <!-- Can only move a unfiled record --> <entry key="capabilityCondition.recordFiled" value="false"/> <!-- Can only move a unfiled record -->
<entry key="capabilityCondition.cutoff" value="false"/> <!-- Can not move a record once it is cutoff --> <entry key="capabilityCondition.cutoff" value="false"/> <!-- Can not move a record once it is cutoff -->
</map> </map>
</property> </property>
<property name="targetCapability" ref="rmFilePermissionOnly"/> <property name="targetCapability" ref="rmFilePermissionOnly"/>
</bean> </bean>
<bean id="rmRejectRecordsCapability" <bean id="rmRejectRecordsCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="RejectRecords"/> <property name="name" value="RejectRecords"/>
<property name="permission" value="RejectRecords"/> <property name="permission" value="RejectRecords"/>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.cutoff" value="false"/> <entry key="capabilityCondition.cutoff" value="false"/>
<entry key="capabilityCondition.closed" value="false"/> <entry key="capabilityCondition.closed" value="false"/>
<entry key="capabilityCondition.declared" value="false"/> <entry key="capabilityCondition.declared" value="false"/>
<entry key="capabilityCondition.recordFiled" value="false"/> <entry key="capabilityCondition.recordFiled" value="false"/>
<entry key="capabilityCondition.isRecordOriginatingLocationSet" value="true" /> <entry key="capabilityCondition.isRecordOriginatingLocationSet" value="true" />
</map> </map>
</property> </property>
<property name="group"><ref bean="recordsGroup"/></property> <property name="group"><ref bean="recordsGroup"/></property>
<property name="index" value="42" /> <property name="index" value="42" />
</bean> </bean>
<bean id="rmHideRecordsCapability" <bean id="rmHideRecordsCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="HideRecords"/> <property name="name" value="HideRecords"/>
<property name="private" value="true" /> <property name="private" value="true" />
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
</map> </map>
</property> </property>
</bean> </bean>
<!-- Request record information capability --> <!-- Request record information capability -->
<!-- @since 2.1 --> <!-- @since 2.1 -->
<bean id="rmRequestRecordInformationCapability" <bean id="rmRequestRecordInformationCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="RequestRecordInformation"/> <property name="name" value="RequestRecordInformation"/>
<property name="permission" value="RequestRecordInformation"/> <!-- Associated permission (this is assignable) --> <property name="permission" value="RequestRecordInformation"/> <!-- Associated permission (this is assignable) -->
<property name="kind" value="RECORD" /> <!-- Only applies to records --> <property name="kind" value="RECORD" /> <!-- Only applies to records -->
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <!-- Must have read and file permissions --> <entry key="capabilityCondition.filling" value="true"/> <!-- Must have read and file permissions -->
<entry key="capabilityCondition.frozen" value="false"/> <!-- Not for frozen records --> <entry key="capabilityCondition.frozen" value="false"/> <!-- Not for frozen records -->
<entry key="capabilityCondition.declared" value="false"/> <!-- Only for undeclared records --> <entry key="capabilityCondition.declared" value="false"/> <!-- Only for undeclared records -->
</map> </map>
</property> </property>
<property name="group"><ref bean="recordsGroup"/></property> <!-- Part of the records group of capabilities --> <property name="group"><ref bean="recordsGroup"/></property> <!-- Part of the records group of capabilities -->
<property name="index" value="100" /> <property name="index" value="100" />
</bean> </bean>
<bean id="rmMoveDmRecordsCapability" <bean id="rmMoveDmRecordsCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="MoveDmRecords" /> <property name="name" value="MoveDmRecords" />
<property name="private" value="true" /> <property name="private" value="true" />
<property name="kind" value="RECORD" /> <property name="kind" value="RECORD" />
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
</map> </map>
</property> </property>
</bean> </bean>
</beans> </beans>

View File

@@ -1,230 +1,230 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<bean id="rmCloseFoldersCapability" <bean id="rmCloseFoldersCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CloseFolders"/> <property name="name" value="CloseFolders"/>
<property name="permission" value="CloseFolders"/> <property name="permission" value="CloseFolders"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.cutoff" value="false"/> <entry key="capabilityCondition.cutoff" value="false"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.closed" value="false"/> <entry key="capabilityCondition.closed" value="false"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="folderControlGroup"/></property> <property name="group"><ref bean="folderControlGroup"/></property>
<property name="index" value="10" /> <property name="index" value="10" />
</bean> </bean>
<bean id="rmCreateModifyDestroyFoldersCapability" <bean id="rmCreateModifyDestroyFoldersCapability"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="CreateModifyDestroyFolders"/> <property name="name" value="CreateModifyDestroyFolders"/>
<property name="permission" value="CreateModifyDestroyFolders"/> <property name="permission" value="CreateModifyDestroyFolders"/>
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmCreateRecordFolderCapability"/> <ref bean="rmCreateRecordFolderCapability"/>
<ref bean="rmModifyRecordFolderCapability"/> <ref bean="rmModifyRecordFolderCapability"/>
<ref bean="rmDeleteRecordFolderCapability"/> <ref bean="rmDeleteRecordFolderCapability"/>
</list> </list>
</property> </property>
<property name="group"><ref bean="folderControlGroup"/></property> <property name="group"><ref bean="folderControlGroup"/></property>
<property name="index" value="20" /> <property name="index" value="20" />
</bean> </bean>
<bean id="rmReOpenFoldersCapability" <bean id="rmReOpenFoldersCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="ReOpenFolders"/> <property name="name" value="ReOpenFolders"/>
<property name="permission" value="ReOpenFolders"/> <property name="permission" value="ReOpenFolders"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.cutoff" value="false"/> <entry key="capabilityCondition.cutoff" value="false"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.closed" value="true"/> <entry key="capabilityCondition.closed" value="true"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="folderControlGroup"/></property> <property name="group"><ref bean="folderControlGroup"/></property>
<property name="index" value="40" /> <property name="index" value="40" />
</bean> </bean>
<!-- Unassignable --> <!-- Unassignable -->
<bean id="rmCreateRecordFolderCapability" <bean id="rmCreateRecordFolderCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CreateRecordFolder"/> <property name="name" value="CreateRecordFolder"/>
<property name="permission" value="CreateModifyDestroyFolders"/> <property name="permission" value="CreateModifyDestroyFolders"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_CATEGORY</value> <value>RECORD_CATEGORY</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmModifyRecordFolderCapability" <bean id="rmModifyRecordFolderCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="ModifyRecordFolder"/> <property name="name" value="ModifyRecordFolder"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="permission" value="CreateModifyDestroyFolders"/> <property name="permission" value="CreateModifyDestroyFolders"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.cutoff" value="false"/> <entry key="capabilityCondition.cutoff" value="false"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.closed" value="false"/> <entry key="capabilityCondition.closed" value="false"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmDeleteRecordFolderCapability" <bean id="rmDeleteRecordFolderCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="DeleteRecordFolder"/> <property name="name" value="DeleteRecordFolder"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="permission" value="CreateModifyDestroyFolders"/> <property name="permission" value="CreateModifyDestroyFolders"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>RECORD_FOLDER</value> <value>RECORD_FOLDER</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmMoveRecordFolderCapability" <bean id="rmMoveRecordFolderCapability"
parent="compositeCapability"> parent="compositeCapability">
<property name="name" value="MoveRecordFolder"/> <property name="name" value="MoveRecordFolder"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="undetermined" value="true"/> <property name="undetermined" value="true"/>
<property name="capabilities"> <property name="capabilities">
<list> <list>
<ref bean="rmDeleteRecordFolderCapability"/> <ref bean="rmDeleteRecordFolderCapability"/>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.movable" value="true"/> <entry key="capabilityCondition.movable" value="true"/>
</map> </map>
</property> </property>
<property name="targetCapability" ref="rmCreateRecordFolderCapability"/> <property name="targetCapability" ref="rmCreateRecordFolderCapability"/>
</bean> </bean>
<bean id="rmCreateUnfiledRecordsContainerFolderCapability" <bean id="rmCreateUnfiledRecordsContainerFolderCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CreateUnfiledRecordsContainerFolder"/> <property name="name" value="CreateUnfiledRecordsContainerFolder"/>
<property name="permission" value="CreateModifyDestroyFolders"/> <property name="permission" value="CreateModifyDestroyFolders"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>UNFILED_RECORD_CONTAINER</value> <value>UNFILED_RECORD_CONTAINER</value>
<value>UNFILED_RECORD_FOLDER</value> <value>UNFILED_RECORD_FOLDER</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmMoveUnfiledRecordsContainerFolderCapability" <bean id="rmMoveUnfiledRecordsContainerFolderCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="MoveUnfiledRecordsContainerFolder"/> <property name="name" value="MoveUnfiledRecordsContainerFolder"/>
<property name="permission" value="CreateModifyDestroyFolders"/> <property name="permission" value="CreateModifyDestroyFolders"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>UNFILED_RECORD_CONTAINER</value> <value>UNFILED_RECORD_CONTAINER</value>
<value>UNFILED_RECORD_FOLDER</value> <value>UNFILED_RECORD_FOLDER</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmModifyUnfiledRecordsContainerFolderCapability" <bean id="rmModifyUnfiledRecordsContainerFolderCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="ModifyUnfiledRecordsContainerFolder"/> <property name="name" value="ModifyUnfiledRecordsContainerFolder"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="permission" value="CreateModifyDestroyFolders"/> <property name="permission" value="CreateModifyDestroyFolders"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>UNFILED_RECORD_CONTAINER</value> <value>UNFILED_RECORD_CONTAINER</value>
<value>UNFILED_RECORD_FOLDER</value> <value>UNFILED_RECORD_FOLDER</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.cutoff" value="false"/> <entry key="capabilityCondition.cutoff" value="false"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.closed" value="false"/> <entry key="capabilityCondition.closed" value="false"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmDeleteUnfiledRecordsContainerFolderCapability" <bean id="rmDeleteUnfiledRecordsContainerFolderCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="DeleteUnfiledRecordsContainerFolder"/> <property name="name" value="DeleteUnfiledRecordsContainerFolder"/>
<property name="private" value="true"/> <property name="private" value="true"/>
<property name="permission" value="CreateModifyDestroyFolders"/> <property name="permission" value="CreateModifyDestroyFolders"/>
<property name="kinds"> <property name="kinds">
<list> <list>
<value>UNFILED_RECORD_CONTAINER</value> <value>UNFILED_RECORD_CONTAINER</value>
<value>UNFILED_RECORD_FOLDER</value> <value>UNFILED_RECORD_FOLDER</value>
</list> </list>
</property> </property>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.cutoff" value="false"/> <entry key="capabilityCondition.cutoff" value="false"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.closed" value="false"/> <entry key="capabilityCondition.closed" value="false"/>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="rmUnlinkFromRecordFolderCapability" <bean id="rmUnlinkFromRecordFolderCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="UnlinkFromRecordFolder" /> <property name="name" value="UnlinkFromRecordFolder" />
<property name="permission" value="DeleteLinks" /> <property name="permission" value="DeleteLinks" />
<property name="private" value="true" /> <property name="private" value="true" />
<property name="kind" value="RECORD_FOLDER" /> <property name="kind" value="RECORD_FOLDER" />
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
<entry key="capabilityCondition.closed" value="false"/> <entry key="capabilityCondition.closed" value="false"/>
</map> </map>
</property> </property>
</bean> </bean>
</beans> </beans>

View File

@@ -1,23 +1,23 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<!-- Assignable Capabilities --> <!-- Assignable Capabilities -->
<bean id="rmChangeOrDeleteReferencesCapability" <bean id="rmChangeOrDeleteReferencesCapability"
parent="rmBaseCapability" parent="rmBaseCapability"
class="org.alfresco.module.org_alfresco_module_rm.capability.impl.ChangeOrDeleteReferencesCapability"> class="org.alfresco.module.org_alfresco_module_rm.capability.impl.ChangeOrDeleteReferencesCapability">
<property name="name" value="ChangeOrDeleteReferences"/> <property name="name" value="ChangeOrDeleteReferences"/>
<property name="permission" value="ChangeOrDeleteReferences"/> <property name="permission" value="ChangeOrDeleteReferences"/>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="referencesGroup"/></property> <property name="group"><ref bean="referencesGroup"/></property>
<property name="index" value="10" /> <property name="index" value="10" />
</bean> </bean>
</beans> </beans>

View File

@@ -1,20 +1,20 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<bean id="rmManageRulesCapability" <bean id="rmManageRulesCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="ManageRules" /> <property name="name" value="ManageRules" />
<property name="permission" value="ManageRules" /> <property name="permission" value="ManageRules" />
<property name="group" ref="rulesGroup"/> <property name="group" ref="rulesGroup"/>
<property name="index" value="10" /> <property name="index" value="10" />
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
</map> </map>
</property> </property>
</bean> </bean>
</beans> </beans>

View File

@@ -1,61 +1,61 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<!-- Assignable Capabilities --> <!-- Assignable Capabilities -->
<!-- controls user and group creation/destruction --> <!-- controls user and group creation/destruction -->
<bean id="rmCreateModifyDestroyUsersAndGroupsCapability" <bean id="rmCreateModifyDestroyUsersAndGroupsCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CreateModifyDestroyUsersAndGroups" /> <property name="name" value="CreateModifyDestroyUsersAndGroups" />
<property name="permission" value="CreateModifyDestroyUsersAndGroups" /> <property name="permission" value="CreateModifyDestroyUsersAndGroups" />
<property name="group"><ref bean="securityGroup"/></property> <property name="group"><ref bean="securityGroup"/></property>
<property name="index" value="20" /> <property name="index" value="20" />
</bean> </bean>
<bean id="rmDisplayRightsReportCapability" <bean id="rmDisplayRightsReportCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="DisplayRightsReport" /> <property name="name" value="DisplayRightsReport" />
<property name="permission" value="DisplayRightsReport" /> <property name="permission" value="DisplayRightsReport" />
<property name="group"><ref bean="securityGroup"/></property> <property name="group"><ref bean="securityGroup"/></property>
<property name="index" value="30" /> <property name="index" value="30" />
</bean> </bean>
<!-- controls user and groups role assignments --> <!-- controls user and groups role assignments -->
<bean id="rmManageAccessControlsCapability" <bean id="rmManageAccessControlsCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="ManageAccessControls" /> <property name="name" value="ManageAccessControls" />
<property name="permission" value="ManageAccessControls" /> <property name="permission" value="ManageAccessControls" />
<property name="group"><ref bean="securityGroup"/></property> <property name="group"><ref bean="securityGroup"/></property>
<property name="index" value="40" /> <property name="index" value="40" />
</bean> </bean>
<!-- controls an entities permissions --> <!-- controls an entities permissions -->
<bean id="rmManageAccessRightsCapability" <bean id="rmManageAccessRightsCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="ManageAccessRights"/> <property name="name" value="ManageAccessRights"/>
<property name="permission" value="ManageAccessRights"/> <property name="permission" value="ManageAccessRights"/>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.filling" value="true"/> <entry key="capabilityCondition.filling" value="true"/>
</map> </map>
</property> </property>
<property name="group"><ref bean="securityGroup"/></property> <property name="group"><ref bean="securityGroup"/></property>
<property name="index" value="50" /> <property name="index" value="50" />
</bean> </bean>
<bean id="rmPasswordControlCapability" <bean id="rmPasswordControlCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="PasswordControl" /> <property name="name" value="PasswordControl" />
<property name="permission" value="PasswordControl" /> <property name="permission" value="PasswordControl" />
<property name="group"><ref bean="securityGroup"/></property> <property name="group"><ref bean="securityGroup"/></property>
<property name="index" value="60" /> <property name="index" value="60" />
</bean> </bean>
<!-- Non-Assignable Capabilities --> <!-- Non-Assignable Capabilities -->
</beans> </beans>

View File

@@ -1,36 +1,36 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<beans xmlns="http://www.springframework.org/schema/beans" <beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context" xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation=" xsi:schemaLocation="
http://www.springframework.org/schema/context http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd "> http://www.springframework.org/schema/aop/spring-aop-3.0.xsd ">
<!-- content destruction component --> <!-- content destruction component -->
<bean name="contentDestructionComponent" class="org.alfresco.module.org_alfresco_module_rm.content.ContentDestructionComponent"> <bean name="contentDestructionComponent" class="org.alfresco.module.org_alfresco_module_rm.content.ContentDestructionComponent">
<property name="eagerContentStoreCleaner" ref="eagerContentStoreCleaner" /> <property name="eagerContentStoreCleaner" ref="eagerContentStoreCleaner" />
<property name="dictionaryService" ref="dictionaryService" /> <property name="dictionaryService" ref="dictionaryService" />
<property name="nodeService" ref="nodeService" /> <property name="nodeService" ref="nodeService" />
<property name="behaviourFilter" ref="policyBehaviourFilter" /> <property name="behaviourFilter" ref="policyBehaviourFilter" />
<property name="cleansingEnabled" value="${rm.content.cleansing.enabled}" /> <property name="cleansingEnabled" value="${rm.content.cleansing.enabled}" />
</bean> </bean>
<!-- extended eager content store cleaner --> <!-- extended eager content store cleaner -->
<bean name="rm.eagerContentStoreCleaner" class="org.alfresco.module.org_alfresco_module_rm.content.EagerContentStoreCleaner"> <bean name="rm.eagerContentStoreCleaner" class="org.alfresco.module.org_alfresco_module_rm.content.EagerContentStoreCleaner">
<property name="transactionalResourceHelper" ref="rm.transactionalResourceHelper" /> <property name="transactionalResourceHelper" ref="rm.transactionalResourceHelper" />
<property name="contentCleanser" ref="${rm.content.cleaner}" /> <property name="contentCleanser" ref="${rm.content.cleaner}" />
</bean> </bean>
<bean class="org.alfresco.util.BeanExtender"> <bean class="org.alfresco.util.BeanExtender">
<property name="beanName" value="eagerContentStoreCleaner" /> <property name="beanName" value="eagerContentStoreCleaner" />
<property name="extendingBeanName" value="rm.eagerContentStoreCleaner" /> <property name="extendingBeanName" value="rm.eagerContentStoreCleaner" />
</bean> </bean>
<!-- content cleanser --> <!-- content cleanser -->
<bean id="contentCleanser.522022M" class="org.alfresco.module.org_alfresco_module_rm.content.cleanser.ContentCleanser522022M"/> <bean id="contentCleanser.522022M" class="org.alfresco.module.org_alfresco_module_rm.content.cleanser.ContentCleanser522022M"/>
</beans> </beans>

View File

@@ -1,82 +1,82 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<!-- This file contains DOD specific capabilities relating to classification. --> <!-- This file contains DOD specific capabilities relating to classification. -->
<!-- When we support classification they can be re-included and adjusted accordingly, for now they are deprecated --> <!-- When we support classification they can be re-included and adjusted accordingly, for now they are deprecated -->
<!-- by making them private. --> <!-- by making them private. -->
<beans> <beans>
<bean id="classifiedRecordsGroup" <bean id="classifiedRecordsGroup"
parent="groupBase"> parent="groupBase">
<property name="id" value="classifiedRecords"/> <property name="id" value="classifiedRecords"/>
<property name="index" value="200"/> <property name="index" value="200"/>
</bean> </bean>
<!-- Assignable Capabilities --> <!-- Assignable Capabilities -->
<bean id="rmCreateModifyDestroyClassificationGuidesCapability" <bean id="rmCreateModifyDestroyClassificationGuidesCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CreateModifyDestroyClassificationGuides"/> <property name="name" value="CreateModifyDestroyClassificationGuides"/>
<property name="permission" value="CreateModifyDestroyClassificationGuides"/> <property name="permission" value="CreateModifyDestroyClassificationGuides"/>
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> --> <!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="10" /> <property name="index" value="10" />
<property name="private" value="true" /> <property name="private" value="true" />
</bean> </bean>
<bean id="rmCreateModifyDestroyTimeframesCapability" <bean id="rmCreateModifyDestroyTimeframesCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="CreateModifyDestroyTimeframes" /> <property name="name" value="CreateModifyDestroyTimeframes" />
<property name="permission" value="CreateModifyDestroyTimeframes" /> <property name="permission" value="CreateModifyDestroyTimeframes" />
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> --> <!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="20" /> <property name="index" value="20" />
<property name="private" value="true" /> <property name="private" value="true" />
</bean> </bean>
<bean id="rmMapClassificationGuideMetadataCapability" <bean id="rmMapClassificationGuideMetadataCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="MapClassificationGuideMetadata" /> <property name="name" value="MapClassificationGuideMetadata" />
<property name="permission" value="MapClassificationGuideMetadata" /> <property name="permission" value="MapClassificationGuideMetadata" />
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> --> <!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="30" /> <property name="index" value="30" />
<property name="private" value="true" /> <property name="private" value="true" />
</bean> </bean>
<bean id="rmUpdateClassificationDatesCapability" <bean id="rmUpdateClassificationDatesCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="UpdateClassificationDates" /> <property name="name" value="UpdateClassificationDates" />
<property name="permission" value="UpdateClassificationDates" /> <property name="permission" value="UpdateClassificationDates" />
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> --> <!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="40" /> <property name="index" value="40" />
<property name="private" value="true" /> <property name="private" value="true" />
</bean> </bean>
<bean id="rmUpdateExemptionCategoriesCapability" <bean id="rmUpdateExemptionCategoriesCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="UpdateExemptionCategories" /> <property name="name" value="UpdateExemptionCategories" />
<property name="permission" value="UpdateExemptionCategories" /> <property name="permission" value="UpdateExemptionCategories" />
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> --> <!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="50" /> <property name="index" value="50" />
<property name="private" value="true" /> <property name="private" value="true" />
</bean> </bean>
<bean id="rmUpgradeDowngradeAndDeclassifyRecordsCapability" <bean id="rmUpgradeDowngradeAndDeclassifyRecordsCapability"
parent="declarativeCapability"> parent="declarativeCapability">
<property name="name" value="UpgradeDowngradeAndDeclassifyRecords"/> <property name="name" value="UpgradeDowngradeAndDeclassifyRecords"/>
<property name="permission" value="UpgradeDowngradeAndDeclassifyRecords"/> <property name="permission" value="UpgradeDowngradeAndDeclassifyRecords"/>
<property name="conditions"> <property name="conditions">
<map> <map>
<entry key="capabilityCondition.frozen" value="false"/> <entry key="capabilityCondition.frozen" value="false"/>
</map> </map>
</property> </property>
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> --> <!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="60" /> <property name="index" value="60" />
<property name="private" value="true" /> <property name="private" value="true" />
</bean> </bean>
<!-- Non-Assignable Capabilities --> <!-- Non-Assignable Capabilities -->
</beans> </beans>

View File

@@ -1,61 +1,61 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<!-- Bootstrap Records Management Models --> <!-- Bootstrap Records Management Models -->
<bean id="org_alfresco_module_dod5015_dod5015dictionaryBootstrap" parent="dictionaryModelBootstrap" depends-on="dictionaryBootstrap"> <bean id="org_alfresco_module_dod5015_dod5015dictionaryBootstrap" parent="dictionaryModelBootstrap" depends-on="dictionaryBootstrap">
<property name="models"> <property name="models">
<list> <list>
<value>alfresco/module/org_alfresco_module_rm/dod5015/dod5015Model.xml</value> <value>alfresco/module/org_alfresco_module_rm/dod5015/dod5015Model.xml</value>
</list> </list>
</property> </property>
<property name="labels"> <property name="labels">
<list> <list>
<value>alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model</value> <value>alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model</value>
</list> </list>
</property> </property>
</bean> </bean>
<!-- Bootstrap DoD record metadata aspects --> <!-- Bootstrap DoD record metadata aspects -->
<bean id="dod.recordMetadataAspectBootstrap" parent="recordMetadataAspectBootstrap"> <bean id="dod.recordMetadataAspectBootstrap" parent="recordMetadataAspectBootstrap">
<property name="recordMetadataAspects"> <property name="recordMetadataAspects">
<map> <map>
<entry key="dod:dod5015record" value="dod:filePlan" /> <entry key="dod:dod5015record" value="dod:filePlan" />
<entry key="dod:scannedRecord" value="dod:filePlan" /> <entry key="dod:scannedRecord" value="dod:filePlan" />
<entry key="dod:pdfRecord" value="dod:filePlan" /> <entry key="dod:pdfRecord" value="dod:filePlan" />
<entry key="dod:digitalPhotographRecord" value="dod:filePlan" /> <entry key="dod:digitalPhotographRecord" value="dod:filePlan" />
<entry key="dod:webRecord" value="dod:filePlan" /> <entry key="dod:webRecord" value="dod:filePlan" />
</map> </map>
</property> </property>
</bean> </bean>
<!-- Bootstap the message property files --> <!-- Bootstap the message property files -->
<bean id="org_alfresco_module_rm_resourceBundles.dod5015" class="org.alfresco.i18n.ResourceBundleBootstrapComponent"> <bean id="org_alfresco_module_rm_resourceBundles.dod5015" class="org.alfresco.i18n.ResourceBundleBootstrapComponent">
<property name="resourceBundles"> <property name="resourceBundles">
<list> <list>
<value>alfresco.module.org_alfresco_module_rm.dod5015.messages.dod5015</value> <value>alfresco.module.org_alfresco_module_rm.dod5015.messages.dod5015</value>
</list> </list>
</property> </property>
</bean> </bean>
<!-- Bootstrap DOD file plan type --> <!-- Bootstrap DOD file plan type -->
<bean id="org_alfresco_module_rm_filePlanBootstrap.dod5015" class="org.alfresco.module.org_alfresco_module_rm.dod5015.DOD5015FilePlanTypeBootstrap" init-method="init"> <bean id="org_alfresco_module_rm_filePlanBootstrap.dod5015" class="org.alfresco.module.org_alfresco_module_rm.dod5015.DOD5015FilePlanTypeBootstrap" init-method="init">
<property name="rmSiteType" ref="rma.rmSite"/> <property name="rmSiteType" ref="rma.rmSite"/>
</bean> </bean>
<!-- add publication date as a disposition property --> <!-- add publication date as a disposition property -->
<bean id="disposition.properties.publicationdate" parent="disposition.properties.base"> <bean id="disposition.properties.publicationdate" parent="disposition.properties.base">
<property name="name" value="dod:publicationDate" /> <property name="name" value="dod:publicationDate" />
<property name="appliesToFolderLevel" value="false"/> <property name="appliesToFolderLevel" value="false"/>
</bean> </bean>
<!-- Include classification capabilities, deprecated for now --> <!-- Include classification capabilities, deprecated for now -->
<import resource="classpath:alfresco/module/org_alfresco_module_rm/dod5015/dod5015-capabilities-classification-context.xml"/> <import resource="classpath:alfresco/module/org_alfresco_module_rm/dod5015/dod5015-capabilities-classification-context.xml"/>
<!-- Model behaviour --> <!-- Model behaviour -->
<bean id="dod.dod5015RecordAspect" class="org.alfresco.module.org_alfresco_module_rm.dod5015.model.dod.aspect.DOD5015RecordAspect" parent="rm.baseBehaviour"> <bean id="dod.dod5015RecordAspect" class="org.alfresco.module.org_alfresco_module_rm.dod5015.model.dod.aspect.DOD5015RecordAspect" parent="rm.baseBehaviour">
<property name="filePlanService" ref="filePlanService"/> <property name="filePlanService" ref="filePlanService"/>
</bean> </bean>
</beans> </beans>

View File

@@ -1,434 +1,434 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- Definition of DOD 5015 Model --> <!-- Definition of DOD 5015 Model -->
<model name="dod:dod5015" xmlns="http://www.alfresco.org/model/dictionary/1.0"> <model name="dod:dod5015" xmlns="http://www.alfresco.org/model/dictionary/1.0">
<!-- Meta-data about the model --> <!-- Meta-data about the model -->
<description>DOD 5015 Model</description> <description>DOD 5015 Model</description>
<author>Roy Wetherall</author> <author>Roy Wetherall</author>
<version>1.0</version> <version>1.0</version>
<!-- Imports are required to allow references to definitions in other models --> <!-- Imports are required to allow references to definitions in other models -->
<imports> <imports>
<!-- Import Alfresco Dictionary Definitions --> <!-- Import Alfresco Dictionary Definitions -->
<import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d"/> <import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d"/>
<!-- Import Alfresco Content Domain Model Definitions --> <!-- Import Alfresco Content Domain Model Definitions -->
<import uri="http://www.alfresco.org/model/content/1.0" prefix="cm"/> <import uri="http://www.alfresco.org/model/content/1.0" prefix="cm"/>
<!-- Import Alfresco Content Domain Model Definitions --> <!-- Import Alfresco Content Domain Model Definitions -->
<import uri="http://www.alfresco.org/model/system/1.0" prefix="sys" /> <import uri="http://www.alfresco.org/model/system/1.0" prefix="sys" />
<!-- Import Alfresco Records Management Model Definitions --> <!-- Import Alfresco Records Management Model Definitions -->
<import uri="http://www.alfresco.org/model/recordsmanagement/1.0" prefix="rma" /> <import uri="http://www.alfresco.org/model/recordsmanagement/1.0" prefix="rma" />
</imports> </imports>
<!-- Records Management Namespace --> <!-- Records Management Namespace -->
<namespaces> <namespaces>
<namespace uri="http://www.alfresco.org/model/dod5015/1.0" prefix="dod"/> <namespace uri="http://www.alfresco.org/model/dod5015/1.0" prefix="dod"/>
</namespaces> </namespaces>
<!-- TODO I18N --> <!-- TODO I18N -->
<constraints> <constraints>
<constraint name="dod:imageFormatList" type="LIST"> <constraint name="dod:imageFormatList" type="LIST">
<title>Image Formats</title> <title>Image Formats</title>
<parameter name="allowedValues"> <parameter name="allowedValues">
<list> <list>
<value>Binary Image Interchange Format (BIIF)</value> <value>Binary Image Interchange Format (BIIF)</value>
<value>GIF 89a</value> <value>GIF 89a</value>
<value>Graphic Image Format (GIF) 87a</value> <value>Graphic Image Format (GIF) 87a</value>
<value>Joint Photographic Experts Group (JPEG) (all versions)</value> <value>Joint Photographic Experts Group (JPEG) (all versions)</value>
<value>Portable Network Graphics (PNG) 1.0</value> <value>Portable Network Graphics (PNG) 1.0</value>
<value>Tagged Image Interchange Format (TIFF) 4.0</value> <value>Tagged Image Interchange Format (TIFF) 4.0</value>
<value>TIFF 5.0</value> <value>TIFF 5.0</value>
<value>TIFF 6.0</value> <value>TIFF 6.0</value>
</list> </list>
</parameter> </parameter>
<parameter name="caseSensitive"><value>true</value></parameter> <parameter name="caseSensitive"><value>true</value></parameter>
</constraint> </constraint>
</constraints> </constraints>
<types> <types>
<!-- DOD5015 site --> <!-- DOD5015 site -->
<!-- @since 2.2 --> <!-- @since 2.2 -->
<type name="dod:site"> <type name="dod:site">
<title>DOD5015 Site</title> <title>DOD5015 Site</title>
<parent>rma:rmsite</parent> <parent>rma:rmsite</parent>
</type> </type>
<!-- DOD5015 file plan --> <!-- DOD5015 file plan -->
<!-- @since 2.2 --> <!-- @since 2.2 -->
<type name="dod:filePlan"> <type name="dod:filePlan">
<title>DOD5015 File Plan</title> <title>DOD5015 File Plan</title>
<parent>rma:filePlan</parent> <parent>rma:filePlan</parent>
</type> </type>
<!-- Deprecated since 2.0 --> <!-- Deprecated since 2.0 -->
<type name="dod:recordSeries"> <type name="dod:recordSeries">
<title>Record Series</title> <title>Record Series</title>
<parent>rma:recordCategory</parent> <parent>rma:recordCategory</parent>
</type> </type>
</types> </types>
<aspects> <aspects>
<!-- DOD5015 Record Properties --> <!-- DOD5015 Record Properties -->
<!-- @since 2.2 --> <!-- @since 2.2 -->
<aspect name="dod:dod5015record"> <aspect name="dod:dod5015record">
<title>DOD5015 Record</title> <title>DOD5015 Record</title>
<properties> <properties>
<property name="dod:publicationDate"> <property name="dod:publicationDate">
<title>Publication Date</title> <title>Publication Date</title>
<type>d:date</type> <type>d:date</type>
<mandatory>true</mandatory> <mandatory>true</mandatory>
</property> </property>
<property name="dod:originator"> <property name="dod:originator">
<title>Originator</title> <title>Originator</title>
<type>d:text</type> <type>d:text</type>
<mandatory>true</mandatory> <mandatory>true</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:originatingOrganization"> <property name="dod:originatingOrganization">
<title>Originating Organization</title> <title>Originating Organization</title>
<type>d:text</type> <type>d:text</type>
<mandatory>true</mandatory> <mandatory>true</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:mediaType"> <property name="dod:mediaType">
<title>Media Type</title> <title>Media Type</title>
<type>d:text</type> <type>d:text</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:format"> <property name="dod:format">
<title>Format</title> <title>Format</title>
<type>d:text</type> <type>d:text</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:dateReceived"> <property name="dod:dateReceived">
<title>Date Received</title> <title>Date Received</title>
<type>d:date</type> <type>d:date</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
</property> </property>
<!-- TODO <!-- TODO
Do we need to model this as broken up address? Do we need to model this as broken up address?
Should we have a separate property for other address or just a multivalue property? Should we have a separate property for other address or just a multivalue property?
--> -->
<property name="dod:address"> <property name="dod:address">
<title>Addressee</title> <title>Addressee</title>
<type>d:text</type> <type>d:text</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:otherAddress"> <property name="dod:otherAddress">
<title>Other Addressee</title> <title>Other Addressee</title>
<type>d:text</type> <type>d:text</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
</properties> </properties>
</aspect> </aspect>
<aspect name="dod:scannedRecord"> <aspect name="dod:scannedRecord">
<title>Scanned Record</title> <title>Scanned Record</title>
<properties> <properties>
<property name="dod:scannedFormat"> <property name="dod:scannedFormat">
<title>Image Format</title> <title>Image Format</title>
<type>d:text</type> <type>d:text</type>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:scannedFormatVersion"> <property name="dod:scannedFormatVersion">
<title>Image Format and Version</title> <title>Image Format and Version</title>
<type>d:text</type> <type>d:text</type>
<mandatory>true</mandatory> <mandatory>true</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
<constraints> <constraints>
<constraint ref="dod:imageFormatList" /> <constraint ref="dod:imageFormatList" />
</constraints> </constraints>
</property> </property>
<property name="dod:resolutionX"> <property name="dod:resolutionX">
<title>Image Resolution X</title> <title>Image Resolution X</title>
<type>d:int</type> <type>d:int</type>
<mandatory>true</mandatory> <mandatory>true</mandatory>
</property> </property>
<property name="dod:resolutionY"> <property name="dod:resolutionY">
<title>Image Resolution Y</title> <title>Image Resolution Y</title>
<type>d:int</type> <type>d:int</type>
<mandatory>true</mandatory> <mandatory>true</mandatory>
</property> </property>
<property name="dod:scannedBitDepth"> <property name="dod:scannedBitDepth">
<title>Scanned Bit Depth</title> <title>Scanned Bit Depth</title>
<type>d:int</type> <type>d:int</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
</property> </property>
</properties> </properties>
</aspect> </aspect>
<aspect name="dod:pdfRecord"> <aspect name="dod:pdfRecord">
<title>PDF Record</title> <title>PDF Record</title>
<properties> <properties>
<property name="dod:producingApplication"> <property name="dod:producingApplication">
<title>Producing Application</title> <title>Producing Application</title>
<type>d:text</type> <type>d:text</type>
<mandatory>true</mandatory> <mandatory>true</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:producingApplicationVersion"> <property name="dod:producingApplicationVersion">
<title>Producing Application Version</title> <title>Producing Application Version</title>
<type>d:text</type> <type>d:text</type>
<mandatory>true</mandatory> <mandatory>true</mandatory>
</property> </property>
<property name="dod:pdfVersion"> <property name="dod:pdfVersion">
<title>PDF Version</title> <title>PDF Version</title>
<type>d:text</type> <type>d:text</type>
<mandatory>true</mandatory> <mandatory>true</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:creatingApplication"> <property name="dod:creatingApplication">
<title>Creating Application</title> <title>Creating Application</title>
<type>d:text</type> <type>d:text</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:documentSecuritySettings"> <property name="dod:documentSecuritySettings">
<title>Document Security Settings</title> <title>Document Security Settings</title>
<type>d:text</type> <type>d:text</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
</properties> </properties>
</aspect> </aspect>
<aspect name="dod:digitalPhotographRecord"> <aspect name="dod:digitalPhotographRecord">
<title>Digital Photograph Record</title> <title>Digital Photograph Record</title>
<properties> <properties>
<property name="dod:caption"> <property name="dod:caption">
<title>Caption</title> <title>Caption</title>
<type>d:text</type> <type>d:text</type>
<mandatory>true</mandatory> <mandatory>true</mandatory>
</property> </property>
<property name="dod:photographer"> <property name="dod:photographer">
<title>Photographer</title> <title>Photographer</title>
<type>d:text</type> <type>d:text</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:copyright"> <property name="dod:copyright">
<title>Copyright</title> <title>Copyright</title>
<type>d:text</type> <type>d:text</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:bitDepth"> <property name="dod:bitDepth">
<title>Bit Depth</title> <title>Bit Depth</title>
<type>d:text</type> <type>d:text</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:imageSizeX"> <property name="dod:imageSizeX">
<title>Image Size X</title> <title>Image Size X</title>
<type>d:int</type> <type>d:int</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
</property> </property>
<property name="dod:imageSizeY"> <property name="dod:imageSizeY">
<title>Image Size Y</title> <title>Image Size Y</title>
<type>d:int</type> <type>d:int</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
</property> </property>
<property name="dod:imageSource"> <property name="dod:imageSource">
<title>Image Source</title> <title>Image Source</title>
<type>d:text</type> <type>d:text</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:compression"> <property name="dod:compression">
<title>Compression</title> <title>Compression</title>
<type>d:text</type> <type>d:text</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:iccIcmProfile"> <property name="dod:iccIcmProfile">
<title>ICC/ICM Profile</title> <title>ICC/ICM Profile</title>
<type>d:text</type> <type>d:text</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:exifInformation"> <property name="dod:exifInformation">
<title>EXIF Information</title> <title>EXIF Information</title>
<type>d:text</type> <type>d:text</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
</properties> </properties>
</aspect> </aspect>
<aspect name="dod:webRecord"> <aspect name="dod:webRecord">
<title>Web Record</title> <title>Web Record</title>
<properties> <properties>
<property name="dod:webFileName"> <property name="dod:webFileName">
<title>Web File Name</title> <title>Web File Name</title>
<type>d:text</type> <type>d:text</type>
<mandatory>true</mandatory> <mandatory>true</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:webPlatform"> <property name="dod:webPlatform">
<title>Web Platform</title> <title>Web Platform</title>
<type>d:text</type> <type>d:text</type>
<mandatory>true</mandatory> <mandatory>true</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:webSiteName"> <property name="dod:webSiteName">
<title>Web Site Name</title> <title>Web Site Name</title>
<type>d:text</type> <type>d:text</type>
<mandatory>true</mandatory> <mandatory>true</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:webSiteURL"> <property name="dod:webSiteURL">
<title>Web Site URL</title> <title>Web Site URL</title>
<type>d:text</type> <type>d:text</type>
<mandatory>true</mandatory> <mandatory>true</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:captureMethod"> <property name="dod:captureMethod">
<title>Capture Method</title> <title>Capture Method</title>
<type>d:text</type> <type>d:text</type>
<mandatory>true</mandatory> <mandatory>true</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:captureDate"> <property name="dod:captureDate">
<title>Capture Date</title> <title>Capture Date</title>
<type>d:date</type> <type>d:date</type>
<mandatory>true</mandatory> <mandatory>true</mandatory>
</property> </property>
<property name="dod:contact"> <property name="dod:contact">
<title>Contact</title> <title>Contact</title>
<type>d:text</type> <type>d:text</type>
<mandatory>true</mandatory> <mandatory>true</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
<property name="dod:contentManagementSystem"> <property name="dod:contentManagementSystem">
<title>Content Management System</title> <title>Content Management System</title>
<type>d:text</type> <type>d:text</type>
<mandatory>false</mandatory> <mandatory>false</mandatory>
<index enabled="true"> <index enabled="true">
<atomic>true</atomic> <atomic>true</atomic>
<stored>false</stored> <stored>false</stored>
<tokenised>false</tokenised> <tokenised>false</tokenised>
</index> </index>
</property> </property>
</properties> </properties>
</aspect> </aspect>
</aspects> </aspects>
</model> </model>

View File

@@ -1,98 +1,98 @@
dod_dod5015.description=DOD5015 Content Model dod_dod5015.description=DOD5015 Content Model
dod_dod5015.type.dod_site.title=DOD5015 Site dod_dod5015.type.dod_site.title=DOD5015 Site
dod_dod5015.type.dod_site.description=DOD5015 Site dod_dod5015.type.dod_site.description=DOD5015 Site
dod_dod5015.type.dod_filePlan.title=DOD5015 File Plan dod_dod5015.type.dod_filePlan.title=DOD5015 File Plan
dod_dod5015.type.dod_filePlan.description=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.title=Record Series (Deprecated)
dod_dod5015.type.dod_recordSeries.description=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.title=DOD5015 Record
dod_dod5015.aspect.dod_dod5015record.description=DOD5015 Record dod_dod5015.aspect.dod_dod5015record.description=DOD5015 Record
dod_dod5015.property.dod_publicationDate.title=Publication Date dod_dod5015.property.dod_publicationDate.title=Publication Date
dod_dod5015.property.dod_publicationDate.decription=Publication Date dod_dod5015.property.dod_publicationDate.decription=Publication Date
dod_dod5015.property.dod_originator.title=Originator dod_dod5015.property.dod_originator.title=Originator
dod_dod5015.property.dod_originator.decription=Originator dod_dod5015.property.dod_originator.decription=Originator
dod_dod5015.property.dod_originatingOrganization.title=Originating Organization dod_dod5015.property.dod_originatingOrganization.title=Originating Organization
dod_dod5015.property.dod_originatingOrganization.decription=Originating Organization dod_dod5015.property.dod_originatingOrganization.decription=Originating Organization
dod_dod5015.property.dod_mediaType.title=Media Type dod_dod5015.property.dod_mediaType.title=Media Type
dod_dod5015.property.dod_mediaType.decription=Media Type dod_dod5015.property.dod_mediaType.decription=Media Type
dod_dod5015.property.dod_format.title=Format dod_dod5015.property.dod_format.title=Format
dod_dod5015.property.dod_format.decription=Format dod_dod5015.property.dod_format.decription=Format
dod_dod5015.property.dod_dateReceived.title=Date Received dod_dod5015.property.dod_dateReceived.title=Date Received
dod_dod5015.property.dod_dateReceived.decription=Date Received dod_dod5015.property.dod_dateReceived.decription=Date Received
dod_dod5015.property.dod_address.title=Addressee dod_dod5015.property.dod_address.title=Addressee
dod_dod5015.property.dod_address.decription=Addressee dod_dod5015.property.dod_address.decription=Addressee
dod_dod5015.property.dod_otherAddress.title=Other Addressee dod_dod5015.property.dod_otherAddress.title=Other Addressee
dod_dod5015.property.dod_otherAddress.decription=Other Addressee dod_dod5015.property.dod_otherAddress.decription=Other Addressee
dod_dod5015.aspect.dod_scannedRecord.title=Scanned Record dod_dod5015.aspect.dod_scannedRecord.title=Scanned Record
dod_dod5015.aspect.dod_scannedRecord.description=Scanned Record dod_dod5015.aspect.dod_scannedRecord.description=Scanned Record
dod_dod5015.property.dod_scannedFormat.title=Image Format dod_dod5015.property.dod_scannedFormat.title=Image Format
dod_dod5015.property.dod_scannedFormat.description=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.title=Image Format and Version
dod_dod5015.property.dod_scannedFormatVersion.description=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.title=Image Resolution X
dod_dod5015.property.dod_resolutionX.description=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.title=Image Resolution Y
dod_dod5015.property.dod_resolutionY.description=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.title=Scanned Bit Depth
dod_dod5015.property.dod_scannedBitDepth.description=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.title=PDF Record
dod_dod5015.aspect.dod_pdfRecord.description=PDF Record dod_dod5015.aspect.dod_pdfRecord.description=PDF Record
dod_dod5015.property.dod_producingApplication.title=Producing Application dod_dod5015.property.dod_producingApplication.title=Producing Application
dod_dod5015.property.dod_producingApplication.description=Producing Application dod_dod5015.property.dod_producingApplication.description=Producing Application
dod_dod5015.property.dod_producingApplicationVersion.title=Producing Application Version dod_dod5015.property.dod_producingApplicationVersion.title=Producing Application Version
dod_dod5015.property.dod_producingApplicationVersion.description=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.title=PDF Version
dod_dod5015.property.dod_pdfVersion.description=PDF Version dod_dod5015.property.dod_pdfVersion.description=PDF Version
dod_dod5015.property.dod_creatingApplication.title=Creating Application dod_dod5015.property.dod_creatingApplication.title=Creating Application
dod_dod5015.property.dod_creatingApplication.description=Creating Application dod_dod5015.property.dod_creatingApplication.description=Creating Application
dod_dod5015.property.dod_documentSecuritySettings.title=Document Security Settings dod_dod5015.property.dod_documentSecuritySettings.title=Document Security Settings
dod_dod5015.property.dod_documentSecuritySettings.description=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.title=Digital Photograph Record
dod_dod5015.aspect.dod_digitalPhotographRecord.description=Digital Photograph Record dod_dod5015.aspect.dod_digitalPhotographRecord.description=Digital Photograph Record
dod_dod5015.property.dod_caption.title=Caption dod_dod5015.property.dod_caption.title=Caption
dod_dod5015.property.dod_caption.description=Caption dod_dod5015.property.dod_caption.description=Caption
dod_dod5015.property.dod_photographer.title=Photographer dod_dod5015.property.dod_photographer.title=Photographer
dod_dod5015.property.dod_photographer.description=Photographer dod_dod5015.property.dod_photographer.description=Photographer
dod_dod5015.property.dod_copyright.title=Copyright dod_dod5015.property.dod_copyright.title=Copyright
dod_dod5015.property.dod_copyright.description=Copyright dod_dod5015.property.dod_copyright.description=Copyright
dod_dod5015.property.dod_bitDepth.title=Bit Depth dod_dod5015.property.dod_bitDepth.title=Bit Depth
dod_dod5015.property.dod_bitDepth.description=Bit Depth dod_dod5015.property.dod_bitDepth.description=Bit Depth
dod_dod5015.property.dod_imageSizeX.title=Image Size X dod_dod5015.property.dod_imageSizeX.title=Image Size X
dod_dod5015.property.dod_imageSizeX.description=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.title=Image Size Y
dod_dod5015.property.dod_imageSizeY.description=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.title=Image Source
dod_dod5015.property.dod_imageSource.description=Image Source dod_dod5015.property.dod_imageSource.description=Image Source
dod_dod5015.property.dod_compression.title=Compression dod_dod5015.property.dod_compression.title=Compression
dod_dod5015.property.dod_compression.description=Compression dod_dod5015.property.dod_compression.description=Compression
dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM Profile dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM Profile
dod_dod5015.property.dod_iccIcmProfile.description=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.title=EXIF Information
dod_dod5015.property.dod_exifInformation.description=EXIF Information dod_dod5015.property.dod_exifInformation.description=EXIF Information
dod_dod5015.aspect.dod_webRecord.title=Web Record dod_dod5015.aspect.dod_webRecord.title=Web Record
dod_dod5015.aspect.dod_webRecord.description=Web Record dod_dod5015.aspect.dod_webRecord.description=Web Record
dod_dod5015.property.dod_webFileName.title=Web File Name dod_dod5015.property.dod_webFileName.title=Web File Name
dod_dod5015.property.dod_webFileName.description=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.title=Web Platform
dod_dod5015.property.dod_webPlatform.description=Web Platform dod_dod5015.property.dod_webPlatform.description=Web Platform
dod_dod5015.property.dod_webSiteName.title=Web Site Name dod_dod5015.property.dod_webSiteName.title=Web Site Name
dod_dod5015.property.dod_webSiteName.description=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.title=Web Site URL
dod_dod5015.property.dod_webSiteURL.description=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.title=Capture Method
dod_dod5015.property.dod_captureMethod.description=Capture Method dod_dod5015.property.dod_captureMethod.description=Capture Method
dod_dod5015.property.dod_captureDate.title=Capture Date dod_dod5015.property.dod_captureDate.title=Capture Date
dod_dod5015.property.dod_captureDate.description=Capture Date dod_dod5015.property.dod_captureDate.description=Capture Date
dod_dod5015.property.dod_contact.title=Contact dod_dod5015.property.dod_contact.title=Contact
dod_dod5015.property.dod_contact.description=Contact dod_dod5015.property.dod_contact.description=Contact
dod_dod5015.property.dod_contentManagementSystem.title=Content Management System dod_dod5015.property.dod_contentManagementSystem.title=Content Management System
dod_dod5015.property.dod_contentManagementSystem.description=Content Management System dod_dod5015.property.dod_contentManagementSystem.description=Content Management System

View File

@@ -1,98 +1,98 @@
dod_dod5015.description=DoD 5015-konformes Content-Modell dod_dod5015.description=DoD 5015-konformes Content-Modell
dod_dod5015.type.dod_site.title=DoD 5015-konforme Site dod_dod5015.type.dod_site.title=DoD 5015-konforme Site
dod_dod5015.type.dod_site.description=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.title=DoD 5015 Ablageplan
dod_dod5015.type.dod_filePlan.description=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.title=Record-Serien (abgelehnt)
dod_dod5015.type.dod_recordSeries.description=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.title=DoD 5015-konformer Record
dod_dod5015.aspect.dod_dod5015record.description=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.title=Ver\u00f6ffentlichungsdatum
dod_dod5015.property.dod_publicationDate.decription=Ver\u00f6ffentlichungsdatum dod_dod5015.property.dod_publicationDate.decription=Ver\u00f6ffentlichungsdatum
dod_dod5015.property.dod_originator.title=Ersteller dod_dod5015.property.dod_originator.title=Ersteller
dod_dod5015.property.dod_originator.decription=Ersteller dod_dod5015.property.dod_originator.decription=Ersteller
dod_dod5015.property.dod_originatingOrganization.title=Erstellende Organisation dod_dod5015.property.dod_originatingOrganization.title=Erstellende Organisation
dod_dod5015.property.dod_originatingOrganization.decription=Erstellende Organisation dod_dod5015.property.dod_originatingOrganization.decription=Erstellende Organisation
dod_dod5015.property.dod_mediaType.title=Medientyp dod_dod5015.property.dod_mediaType.title=Medientyp
dod_dod5015.property.dod_mediaType.decription=Medientyp dod_dod5015.property.dod_mediaType.decription=Medientyp
dod_dod5015.property.dod_format.title=Format dod_dod5015.property.dod_format.title=Format
dod_dod5015.property.dod_format.decription=Format dod_dod5015.property.dod_format.decription=Format
dod_dod5015.property.dod_dateReceived.title=Eingangsdatum dod_dod5015.property.dod_dateReceived.title=Eingangsdatum
dod_dod5015.property.dod_dateReceived.decription=Eingangsdatum dod_dod5015.property.dod_dateReceived.decription=Eingangsdatum
dod_dod5015.property.dod_address.title=Empf\u00e4nger dod_dod5015.property.dod_address.title=Empf\u00e4nger
dod_dod5015.property.dod_address.decription=Empf\u00e4nger dod_dod5015.property.dod_address.decription=Empf\u00e4nger
dod_dod5015.property.dod_otherAddress.title=Anderer Empf\u00e4nger dod_dod5015.property.dod_otherAddress.title=Anderer Empf\u00e4nger
dod_dod5015.property.dod_otherAddress.decription=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.title=Eingescannter Record
dod_dod5015.aspect.dod_scannedRecord.description=Eingescannter Record dod_dod5015.aspect.dod_scannedRecord.description=Eingescannter Record
dod_dod5015.property.dod_scannedFormat.title=Bildformat dod_dod5015.property.dod_scannedFormat.title=Bildformat
dod_dod5015.property.dod_scannedFormat.description=Bildformat dod_dod5015.property.dod_scannedFormat.description=Bildformat
dod_dod5015.property.dod_scannedFormatVersion.title=Bildformat und Version dod_dod5015.property.dod_scannedFormatVersion.title=Bildformat und Version
dod_dod5015.property.dod_scannedFormatVersion.description=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.title=Bildaufl\u00f6sung X
dod_dod5015.property.dod_resolutionX.description=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.title=Bildaufl\u00f6sung Y
dod_dod5015.property.dod_resolutionY.description=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.title=Bittiefe des Scans
dod_dod5015.property.dod_scannedBitDepth.description=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.title=PDF-Record
dod_dod5015.aspect.dod_pdfRecord.description=PDF-Record dod_dod5015.aspect.dod_pdfRecord.description=PDF-Record
dod_dod5015.property.dod_producingApplication.title=Quellanwendung dod_dod5015.property.dod_producingApplication.title=Quellanwendung
dod_dod5015.property.dod_producingApplication.description=Quellanwendung dod_dod5015.property.dod_producingApplication.description=Quellanwendung
dod_dod5015.property.dod_producingApplicationVersion.title=Version der Quellanwendung dod_dod5015.property.dod_producingApplicationVersion.title=Version der Quellanwendung
dod_dod5015.property.dod_producingApplicationVersion.description=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.title=PDF-Version
dod_dod5015.property.dod_pdfVersion.description=PDF-Version dod_dod5015.property.dod_pdfVersion.description=PDF-Version
dod_dod5015.property.dod_creatingApplication.title=Quellsystem dod_dod5015.property.dod_creatingApplication.title=Quellsystem
dod_dod5015.property.dod_creatingApplication.description=Quellsystem dod_dod5015.property.dod_creatingApplication.description=Quellsystem
dod_dod5015.property.dod_documentSecuritySettings.title=Sicherheitseinstellungen des Dokuments dod_dod5015.property.dod_documentSecuritySettings.title=Sicherheitseinstellungen des Dokuments
dod_dod5015.property.dod_documentSecuritySettings.description=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.title=Record - Digitales Bild
dod_dod5015.aspect.dod_digitalPhotographRecord.description=Record - Digitales Bild dod_dod5015.aspect.dod_digitalPhotographRecord.description=Record - Digitales Bild
dod_dod5015.property.dod_caption.title=Beschriftung dod_dod5015.property.dod_caption.title=Beschriftung
dod_dod5015.property.dod_caption.description=Beschriftung dod_dod5015.property.dod_caption.description=Beschriftung
dod_dod5015.property.dod_photographer.title=Fotograf dod_dod5015.property.dod_photographer.title=Fotograf
dod_dod5015.property.dod_photographer.description=Fotograf dod_dod5015.property.dod_photographer.description=Fotograf
dod_dod5015.property.dod_copyright.title=Copyright dod_dod5015.property.dod_copyright.title=Copyright
dod_dod5015.property.dod_copyright.description=Copyright dod_dod5015.property.dod_copyright.description=Copyright
dod_dod5015.property.dod_bitDepth.title=Bittiefe dod_dod5015.property.dod_bitDepth.title=Bittiefe
dod_dod5015.property.dod_bitDepth.description=Bittiefe dod_dod5015.property.dod_bitDepth.description=Bittiefe
dod_dod5015.property.dod_imageSizeX.title=Bildgr\u00f6\u00dfe X dod_dod5015.property.dod_imageSizeX.title=Bildgr\u00f6\u00dfe X
dod_dod5015.property.dod_imageSizeX.description=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.title=Bildgr\u00f6\u00dfe Y
dod_dod5015.property.dod_imageSizeY.description=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.title=Bildquelle
dod_dod5015.property.dod_imageSource.description=Bildquelle dod_dod5015.property.dod_imageSource.description=Bildquelle
dod_dod5015.property.dod_compression.title=Komprimierung dod_dod5015.property.dod_compression.title=Komprimierung
dod_dod5015.property.dod_compression.description=Komprimierung dod_dod5015.property.dod_compression.description=Komprimierung
dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM-Profil dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM-Profil
dod_dod5015.property.dod_iccIcmProfile.description=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.title=EXIF-Informationen
dod_dod5015.property.dod_exifInformation.description=EXIF-Informationen dod_dod5015.property.dod_exifInformation.description=EXIF-Informationen
dod_dod5015.aspect.dod_webRecord.title=Web-Record dod_dod5015.aspect.dod_webRecord.title=Web-Record
dod_dod5015.aspect.dod_webRecord.description=Web-Record dod_dod5015.aspect.dod_webRecord.description=Web-Record
dod_dod5015.property.dod_webFileName.title=Webdateiname dod_dod5015.property.dod_webFileName.title=Webdateiname
dod_dod5015.property.dod_webFileName.description=Webdateiname dod_dod5015.property.dod_webFileName.description=Webdateiname
dod_dod5015.property.dod_webPlatform.title=Webplattform dod_dod5015.property.dod_webPlatform.title=Webplattform
dod_dod5015.property.dod_webPlatform.description=Webplattform dod_dod5015.property.dod_webPlatform.description=Webplattform
dod_dod5015.property.dod_webSiteName.title=Website-Name dod_dod5015.property.dod_webSiteName.title=Website-Name
dod_dod5015.property.dod_webSiteName.description=Website-Name dod_dod5015.property.dod_webSiteName.description=Website-Name
dod_dod5015.property.dod_webSiteURL.title=Website-URL dod_dod5015.property.dod_webSiteURL.title=Website-URL
dod_dod5015.property.dod_webSiteURL.description=Website-URL dod_dod5015.property.dod_webSiteURL.description=Website-URL
dod_dod5015.property.dod_captureMethod.title=Erfassungsmethode dod_dod5015.property.dod_captureMethod.title=Erfassungsmethode
dod_dod5015.property.dod_captureMethod.description=Erfassungsmethode dod_dod5015.property.dod_captureMethod.description=Erfassungsmethode
dod_dod5015.property.dod_captureDate.title=Erfassungsdatum dod_dod5015.property.dod_captureDate.title=Erfassungsdatum
dod_dod5015.property.dod_captureDate.description=Erfassungsdatum dod_dod5015.property.dod_captureDate.description=Erfassungsdatum
dod_dod5015.property.dod_contact.title=Kontakt dod_dod5015.property.dod_contact.title=Kontakt
dod_dod5015.property.dod_contact.description=Kontakt dod_dod5015.property.dod_contact.description=Kontakt
dod_dod5015.property.dod_contentManagementSystem.title=Content Management System dod_dod5015.property.dod_contentManagementSystem.title=Content Management System
dod_dod5015.property.dod_contentManagementSystem.description=Content Management System dod_dod5015.property.dod_contentManagementSystem.description=Content Management System

View File

@@ -1,98 +1,98 @@
dod_dod5015.description=Modelo de contenido de DOD5015 dod_dod5015.description=Modelo de contenido de DOD5015
dod_dod5015.type.dod_site.title=Sitio de DOD5015 dod_dod5015.type.dod_site.title=Sitio de DOD5015
dod_dod5015.type.dod_site.description=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.title=Plan de fichero DOD5015
dod_dod5015.type.dod_filePlan.description=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.title=Serie de documentos de archivo (depreciada)
dod_dod5015.type.dod_recordSeries.description=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.title=Documento de archivo de DOD5015
dod_dod5015.aspect.dod_dod5015record.description=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.title=Fecha de publicaci\u00f3n
dod_dod5015.property.dod_publicationDate.decription=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.title=Creador
dod_dod5015.property.dod_originator.decription=Creador dod_dod5015.property.dod_originator.decription=Creador
dod_dod5015.property.dod_originatingOrganization.title=Organizaci\u00f3n creadora dod_dod5015.property.dod_originatingOrganization.title=Organizaci\u00f3n creadora
dod_dod5015.property.dod_originatingOrganization.decription=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.title=Tipo de medio
dod_dod5015.property.dod_mediaType.decription=Tipo de medio dod_dod5015.property.dod_mediaType.decription=Tipo de medio
dod_dod5015.property.dod_format.title=Formato dod_dod5015.property.dod_format.title=Formato
dod_dod5015.property.dod_format.decription=Formato dod_dod5015.property.dod_format.decription=Formato
dod_dod5015.property.dod_dateReceived.title=Fecha de recepci\u00f3n dod_dod5015.property.dod_dateReceived.title=Fecha de recepci\u00f3n
dod_dod5015.property.dod_dateReceived.decription=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.title=Destinatario
dod_dod5015.property.dod_address.decription=Destinatario dod_dod5015.property.dod_address.decription=Destinatario
dod_dod5015.property.dod_otherAddress.title=Otro destinatario dod_dod5015.property.dod_otherAddress.title=Otro destinatario
dod_dod5015.property.dod_otherAddress.decription=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.title=Documento de archivo escaneado
dod_dod5015.aspect.dod_scannedRecord.description=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.title=Formato de imagen
dod_dod5015.property.dod_scannedFormat.description=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.title=Formato de imagen y versi\u00f3n
dod_dod5015.property.dod_scannedFormatVersion.description=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.title=Resoluci\u00f3n de imagen X
dod_dod5015.property.dod_resolutionX.description=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.title=Resoluci\u00f3n de imagen Y
dod_dod5015.property.dod_resolutionY.description=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.title=Profundidad de bits de escaneado
dod_dod5015.property.dod_scannedBitDepth.description=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.title=Documento de archivo PDF
dod_dod5015.aspect.dod_pdfRecord.description=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.title=Produciendo aplicaci\u00f3n
dod_dod5015.property.dod_producingApplication.description=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.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_producingApplicationVersion.description=Produciendo versi\u00f3n de la aplicaci\u00f3n
dod_dod5015.property.dod_pdfVersion.title=Versi\u00f3n PDF dod_dod5015.property.dod_pdfVersion.title=Versi\u00f3n PDF
dod_dod5015.property.dod_pdfVersion.description=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.title=Creando aplicaci\u00f3n
dod_dod5015.property.dod_creatingApplication.description=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.title=Configuraci\u00f3n de seguridad del documento
dod_dod5015.property.dod_documentSecuritySettings.description=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.title=Documento de archivo fotogr\u00e1fico digital
dod_dod5015.aspect.dod_digitalPhotographRecord.description=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.title=T\u00edtulo
dod_dod5015.property.dod_caption.description=T\u00edtulo dod_dod5015.property.dod_caption.description=T\u00edtulo
dod_dod5015.property.dod_photographer.title=Fot\u00f3grafo dod_dod5015.property.dod_photographer.title=Fot\u00f3grafo
dod_dod5015.property.dod_photographer.description=Fot\u00f3grafo dod_dod5015.property.dod_photographer.description=Fot\u00f3grafo
dod_dod5015.property.dod_copyright.title=Copyright dod_dod5015.property.dod_copyright.title=Copyright
dod_dod5015.property.dod_copyright.description=Copyright dod_dod5015.property.dod_copyright.description=Copyright
dod_dod5015.property.dod_bitDepth.title=Profundidad de bits dod_dod5015.property.dod_bitDepth.title=Profundidad de bits
dod_dod5015.property.dod_bitDepth.description=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.title=Tama\u00f1o de imagen X
dod_dod5015.property.dod_imageSizeX.description=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.title=Tama\u00f1o de imagen Y
dod_dod5015.property.dod_imageSizeY.description=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.title=Procedencia de la imagen
dod_dod5015.property.dod_imageSource.description=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.title=Compresi\u00f3n
dod_dod5015.property.dod_compression.description=Compresi\u00f3n dod_dod5015.property.dod_compression.description=Compresi\u00f3n
dod_dod5015.property.dod_iccIcmProfile.title=Perfil ICC/ICM dod_dod5015.property.dod_iccIcmProfile.title=Perfil ICC/ICM
dod_dod5015.property.dod_iccIcmProfile.description=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.title=Informaci\u00f3n EXIF
dod_dod5015.property.dod_exifInformation.description=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.title=Documento de archivo web
dod_dod5015.aspect.dod_webRecord.description=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.title=Nombre del fichero web
dod_dod5015.property.dod_webFileName.description=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.title=Plataforma web
dod_dod5015.property.dod_webPlatform.description=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.title=Nombre del sitio web
dod_dod5015.property.dod_webSiteName.description=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.title=URL del sitio web
dod_dod5015.property.dod_webSiteURL.description=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.title=M\u00e9todo de captura
dod_dod5015.property.dod_captureMethod.description=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.title=Fecha de captura
dod_dod5015.property.dod_captureDate.description=Fecha de captura dod_dod5015.property.dod_captureDate.description=Fecha de captura
dod_dod5015.property.dod_contact.title=Contacto dod_dod5015.property.dod_contact.title=Contacto
dod_dod5015.property.dod_contact.description=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.title=Sistema de gesti\u00f3n de contenidos
dod_dod5015.property.dod_contentManagementSystem.description=Sistema de gesti\u00f3n de contenidos dod_dod5015.property.dod_contentManagementSystem.description=Sistema de gesti\u00f3n de contenidos

View File

@@ -1,98 +1,98 @@
dod_dod5015.description=Mod\u00e8le de contenu DOD5015 dod_dod5015.description=Mod\u00e8le de contenu DOD5015
dod_dod5015.type.dod_site.title=Site DOD5015 dod_dod5015.type.dod_site.title=Site DOD5015
dod_dod5015.type.dod_site.description=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.title=Plan de classification DOD5015
dod_dod5015.type.dod_filePlan.description=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.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.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.title=Document d'archives DOD5015
dod_dod5015.aspect.dod_dod5015record.description=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.title=Date de publication
dod_dod5015.property.dod_publicationDate.decription=Date de publication dod_dod5015.property.dod_publicationDate.decription=Date de publication
dod_dod5015.property.dod_originator.title=\u00c9metteur dod_dod5015.property.dod_originator.title=\u00c9metteur
dod_dod5015.property.dod_originator.decription=\u00c9metteur dod_dod5015.property.dod_originator.decription=\u00c9metteur
dod_dod5015.property.dod_originatingOrganization.title=Organisation \u00e9mettrice dod_dod5015.property.dod_originatingOrganization.title=Organisation \u00e9mettrice
dod_dod5015.property.dod_originatingOrganization.decription=Organisation \u00e9mettrice dod_dod5015.property.dod_originatingOrganization.decription=Organisation \u00e9mettrice
dod_dod5015.property.dod_mediaType.title=Type de support dod_dod5015.property.dod_mediaType.title=Type de support
dod_dod5015.property.dod_mediaType.decription=Type de support dod_dod5015.property.dod_mediaType.decription=Type de support
dod_dod5015.property.dod_format.title=Format dod_dod5015.property.dod_format.title=Format
dod_dod5015.property.dod_format.decription=Format dod_dod5015.property.dod_format.decription=Format
dod_dod5015.property.dod_dateReceived.title=Date de r\u00e9ception dod_dod5015.property.dod_dateReceived.title=Date de r\u00e9ception
dod_dod5015.property.dod_dateReceived.decription=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.title=Destinataire
dod_dod5015.property.dod_address.decription=Destinataire dod_dod5015.property.dod_address.decription=Destinataire
dod_dod5015.property.dod_otherAddress.title=Autre destinataire dod_dod5015.property.dod_otherAddress.title=Autre destinataire
dod_dod5015.property.dod_otherAddress.decription=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.title=Document d'archives num\u00e9ris\u00e9
dod_dod5015.aspect.dod_scannedRecord.description=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.title=Format d'image
dod_dod5015.property.dod_scannedFormat.description=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.title=Format et version d'image
dod_dod5015.property.dod_scannedFormatVersion.description=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.title=R\u00e9solution d'image X
dod_dod5015.property.dod_resolutionX.description=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.title=R\u00e9solution d'image Y
dod_dod5015.property.dod_resolutionY.description=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.title=Profondeur de couleur num\u00e9ris\u00e9e
dod_dod5015.property.dod_scannedBitDepth.description=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.title=Document d'archives PDF
dod_dod5015.aspect.dod_pdfRecord.description=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.title=Application native
dod_dod5015.property.dod_producingApplication.description=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.title=Version de l'application native
dod_dod5015.property.dod_producingApplicationVersion.description=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.title=Version PDF
dod_dod5015.property.dod_pdfVersion.description=Version PDF dod_dod5015.property.dod_pdfVersion.description=Version PDF
dod_dod5015.property.dod_creatingApplication.title=Application native dod_dod5015.property.dod_creatingApplication.title=Application native
dod_dod5015.property.dod_creatingApplication.description=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.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.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.title=Photographie num\u00e9rique d'archives
dod_dod5015.aspect.dod_digitalPhotographRecord.description=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.title=L\u00e9gende
dod_dod5015.property.dod_caption.description=L\u00e9gende dod_dod5015.property.dod_caption.description=L\u00e9gende
dod_dod5015.property.dod_photographer.title=Photographe dod_dod5015.property.dod_photographer.title=Photographe
dod_dod5015.property.dod_photographer.description=Photographe dod_dod5015.property.dod_photographer.description=Photographe
dod_dod5015.property.dod_copyright.title=Copyright dod_dod5015.property.dod_copyright.title=Copyright
dod_dod5015.property.dod_copyright.description=Copyright dod_dod5015.property.dod_copyright.description=Copyright
dod_dod5015.property.dod_bitDepth.title=Profondeur de couleur dod_dod5015.property.dod_bitDepth.title=Profondeur de couleur
dod_dod5015.property.dod_bitDepth.description=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.title=Taille d'image X
dod_dod5015.property.dod_imageSizeX.description=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.title=Taille d'image Y
dod_dod5015.property.dod_imageSizeY.description=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.title=Source de l'image
dod_dod5015.property.dod_imageSource.description=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.title=Compression
dod_dod5015.property.dod_compression.description=Compression dod_dod5015.property.dod_compression.description=Compression
dod_dod5015.property.dod_iccIcmProfile.title=Profil ICC/ICM dod_dod5015.property.dod_iccIcmProfile.title=Profil ICC/ICM
dod_dod5015.property.dod_iccIcmProfile.description=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.title=Informations EXIF
dod_dod5015.property.dod_exifInformation.description=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.title=Document d'archives Web
dod_dod5015.aspect.dod_webRecord.description=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.title=Nom de fichier Web
dod_dod5015.property.dod_webFileName.description=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.title=Plate-forme Web
dod_dod5015.property.dod_webPlatform.description=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.title=Nom du site Web
dod_dod5015.property.dod_webSiteName.description=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.title=URL de site Web
dod_dod5015.property.dod_webSiteURL.description=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.title=M\u00e9thode de capture
dod_dod5015.property.dod_captureMethod.description=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.title=Date de capture
dod_dod5015.property.dod_captureDate.description=Date de capture dod_dod5015.property.dod_captureDate.description=Date de capture
dod_dod5015.property.dod_contact.title=Contact dod_dod5015.property.dod_contact.title=Contact
dod_dod5015.property.dod_contact.description=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.title=Syst\u00e8me de gestion de contenu
dod_dod5015.property.dod_contentManagementSystem.description=Syst\u00e8me de gestion de contenu dod_dod5015.property.dod_contentManagementSystem.description=Syst\u00e8me de gestion de contenu

View File

@@ -1,98 +1,98 @@
dod_dod5015.description=Modello di contenuto DOD5015 dod_dod5015.description=Modello di contenuto DOD5015
dod_dod5015.type.dod_site.title=Sito DOD5015 dod_dod5015.type.dod_site.title=Sito DOD5015
dod_dod5015.type.dod_site.description=Sito DOD5015 dod_dod5015.type.dod_site.description=Sito DOD5015
dod_dod5015.type.dod_filePlan.title=Piano file DOD5015 dod_dod5015.type.dod_filePlan.title=Piano file DOD5015
dod_dod5015.type.dod_filePlan.description=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.title=Serie record (obsoleta)
dod_dod5015.type.dod_recordSeries.description=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.title=Record DOD5015
dod_dod5015.aspect.dod_dod5015record.description=Record DOD5015 dod_dod5015.aspect.dod_dod5015record.description=Record DOD5015
dod_dod5015.property.dod_publicationDate.title=Data di pubblicazione dod_dod5015.property.dod_publicationDate.title=Data di pubblicazione
dod_dod5015.property.dod_publicationDate.decription=Data di pubblicazione dod_dod5015.property.dod_publicationDate.decription=Data di pubblicazione
dod_dod5015.property.dod_originator.title=Iniziatore dod_dod5015.property.dod_originator.title=Iniziatore
dod_dod5015.property.dod_originator.decription=Iniziatore dod_dod5015.property.dod_originator.decription=Iniziatore
dod_dod5015.property.dod_originatingOrganization.title=Organizzazione di origine dod_dod5015.property.dod_originatingOrganization.title=Organizzazione di origine
dod_dod5015.property.dod_originatingOrganization.decription=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.title=Tipo di supporto
dod_dod5015.property.dod_mediaType.decription=Tipo di supporto dod_dod5015.property.dod_mediaType.decription=Tipo di supporto
dod_dod5015.property.dod_format.title=Formato dod_dod5015.property.dod_format.title=Formato
dod_dod5015.property.dod_format.decription=Formato dod_dod5015.property.dod_format.decription=Formato
dod_dod5015.property.dod_dateReceived.title=Data di ricezione dod_dod5015.property.dod_dateReceived.title=Data di ricezione
dod_dod5015.property.dod_dateReceived.decription=Data di ricezione dod_dod5015.property.dod_dateReceived.decription=Data di ricezione
dod_dod5015.property.dod_address.title=Destinatario dod_dod5015.property.dod_address.title=Destinatario
dod_dod5015.property.dod_address.decription=Destinatario dod_dod5015.property.dod_address.decription=Destinatario
dod_dod5015.property.dod_otherAddress.title=Altro destinatario dod_dod5015.property.dod_otherAddress.title=Altro destinatario
dod_dod5015.property.dod_otherAddress.decription=Altro destinatario dod_dod5015.property.dod_otherAddress.decription=Altro destinatario
dod_dod5015.aspect.dod_scannedRecord.title=Record scansionato dod_dod5015.aspect.dod_scannedRecord.title=Record scansionato
dod_dod5015.aspect.dod_scannedRecord.description=Record scansionato dod_dod5015.aspect.dod_scannedRecord.description=Record scansionato
dod_dod5015.property.dod_scannedFormat.title=Formato immagine dod_dod5015.property.dod_scannedFormat.title=Formato immagine
dod_dod5015.property.dod_scannedFormat.description=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.title=Formato immagine e versione
dod_dod5015.property.dod_scannedFormatVersion.description=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.title=Risoluzione immagine X
dod_dod5015.property.dod_resolutionX.description=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.title=Risoluzione immagine Y
dod_dod5015.property.dod_resolutionY.description=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.title=Profondit\u00e0 in bit scansionata
dod_dod5015.property.dod_scannedBitDepth.description=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.title=Record PDF
dod_dod5015.aspect.dod_pdfRecord.description=Record PDF dod_dod5015.aspect.dod_pdfRecord.description=Record PDF
dod_dod5015.property.dod_producingApplication.title=Generazione applicazione dod_dod5015.property.dod_producingApplication.title=Generazione applicazione
dod_dod5015.property.dod_producingApplication.description=Generazione applicazione dod_dod5015.property.dod_producingApplication.description=Generazione applicazione
dod_dod5015.property.dod_producingApplicationVersion.title=Generazione versione applicazione dod_dod5015.property.dod_producingApplicationVersion.title=Generazione versione applicazione
dod_dod5015.property.dod_producingApplicationVersion.description=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.title=Versione PDF
dod_dod5015.property.dod_pdfVersion.description=Versione PDF dod_dod5015.property.dod_pdfVersion.description=Versione PDF
dod_dod5015.property.dod_creatingApplication.title=Creazione applicazione dod_dod5015.property.dod_creatingApplication.title=Creazione applicazione
dod_dod5015.property.dod_creatingApplication.description=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.title=Impostazioni di protezione documento
dod_dod5015.property.dod_documentSecuritySettings.description=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.title=Record fotografia digitale
dod_dod5015.aspect.dod_digitalPhotographRecord.description=Record fotografia digitale dod_dod5015.aspect.dod_digitalPhotographRecord.description=Record fotografia digitale
dod_dod5015.property.dod_caption.title=Didascalia dod_dod5015.property.dod_caption.title=Didascalia
dod_dod5015.property.dod_caption.description=Didascalia dod_dod5015.property.dod_caption.description=Didascalia
dod_dod5015.property.dod_photographer.title=Fotografo dod_dod5015.property.dod_photographer.title=Fotografo
dod_dod5015.property.dod_photographer.description=Fotografo dod_dod5015.property.dod_photographer.description=Fotografo
dod_dod5015.property.dod_copyright.title=Copyright dod_dod5015.property.dod_copyright.title=Copyright
dod_dod5015.property.dod_copyright.description=Copyright dod_dod5015.property.dod_copyright.description=Copyright
dod_dod5015.property.dod_bitDepth.title=Profondit\u00e0 in bit dod_dod5015.property.dod_bitDepth.title=Profondit\u00e0 in bit
dod_dod5015.property.dod_bitDepth.description=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.title=Dimensioni immagine X
dod_dod5015.property.dod_imageSizeX.description=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.title=Dimensioni immagine Y
dod_dod5015.property.dod_imageSizeY.description=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.title=Origine immagine
dod_dod5015.property.dod_imageSource.description=Origine immagine dod_dod5015.property.dod_imageSource.description=Origine immagine
dod_dod5015.property.dod_compression.title=Compressione dod_dod5015.property.dod_compression.title=Compressione
dod_dod5015.property.dod_compression.description=Compressione dod_dod5015.property.dod_compression.description=Compressione
dod_dod5015.property.dod_iccIcmProfile.title=Profilo ICC/ICM dod_dod5015.property.dod_iccIcmProfile.title=Profilo ICC/ICM
dod_dod5015.property.dod_iccIcmProfile.description=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.title=Informazioni EXIF
dod_dod5015.property.dod_exifInformation.description=Informazioni EXIF dod_dod5015.property.dod_exifInformation.description=Informazioni EXIF
dod_dod5015.aspect.dod_webRecord.title=Record Web dod_dod5015.aspect.dod_webRecord.title=Record Web
dod_dod5015.aspect.dod_webRecord.description=Record Web dod_dod5015.aspect.dod_webRecord.description=Record Web
dod_dod5015.property.dod_webFileName.title=Nome file Web dod_dod5015.property.dod_webFileName.title=Nome file Web
dod_dod5015.property.dod_webFileName.description=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.title=Piattaforma Web
dod_dod5015.property.dod_webPlatform.description=Piattaforma Web dod_dod5015.property.dod_webPlatform.description=Piattaforma Web
dod_dod5015.property.dod_webSiteName.title=Nome sito Web dod_dod5015.property.dod_webSiteName.title=Nome sito Web
dod_dod5015.property.dod_webSiteName.description=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.title=URL sito Web
dod_dod5015.property.dod_webSiteURL.description=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.title=Metodo di acquisizione
dod_dod5015.property.dod_captureMethod.description=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.title=Data di acquisizione
dod_dod5015.property.dod_captureDate.description=Data di acquisizione dod_dod5015.property.dod_captureDate.description=Data di acquisizione
dod_dod5015.property.dod_contact.title=Contatto dod_dod5015.property.dod_contact.title=Contatto
dod_dod5015.property.dod_contact.description=Contatto dod_dod5015.property.dod_contact.description=Contatto
dod_dod5015.property.dod_contentManagementSystem.title=Sistema di gestione dei contenuti dod_dod5015.property.dod_contentManagementSystem.title=Sistema di gestione dei contenuti
dod_dod5015.property.dod_contentManagementSystem.description=Sistema di gestione dei contenuti dod_dod5015.property.dod_contentManagementSystem.description=Sistema di gestione dei contenuti

View File

@@ -1,98 +1,98 @@
dod_dod5015.description=DOD5015\u30b3\u30f3\u30c6\u30f3\u30c4\u30e2\u30c7\u30eb 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.title=DOD5015\u30b5\u30a4\u30c8
dod_dod5015.type.dod_site.description=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.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_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.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.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.title=DOD5015\u30ec\u30b3\u30fc\u30c9
dod_dod5015.aspect.dod_dod5015record.description=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.title=\u767a\u884c\u65e5
dod_dod5015.property.dod_publicationDate.decription=\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.title=\u767a\u4fe1\u5143
dod_dod5015.property.dod_originator.decription=\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.title=\u767a\u4fe1\u5143\u7d44\u7e54
dod_dod5015.property.dod_originatingOrganization.decription=\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.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_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.title=\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
dod_dod5015.property.dod_format.decription=\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.title=\u53d7\u4fe1\u65e5
dod_dod5015.property.dod_dateReceived.decription=\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.title=\u53d7\u4fe1\u8005
dod_dod5015.property.dod_address.decription=\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.title=\u305d\u306e\u4ed6\u306e\u53d7\u4fe1\u8005
dod_dod5015.property.dod_otherAddress.decription=\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.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.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.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_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.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_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.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_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.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_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.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.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.title=PDF\u30ec\u30b3\u30fc\u30c9
dod_dod5015.aspect.dod_pdfRecord.description=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.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_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.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_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.title=PDF\u30d0\u30fc\u30b8\u30e7\u30f3
dod_dod5015.property.dod_pdfVersion.description=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.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_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.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.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.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.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.title=\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3
dod_dod5015.property.dod_caption.description=\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.title=\u5199\u771f\u5bb6
dod_dod5015.property.dod_photographer.description=\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.title=\u8457\u4f5c\u6a29
dod_dod5015.property.dod_copyright.description=\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.title=\u30d3\u30c3\u30c8\u6df1\u5ea6
dod_dod5015.property.dod_bitDepth.description=\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.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_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.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_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.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_imageSource.description=\u30a4\u30e1\u30fc\u30b8\u30bd\u30fc\u30b9
dod_dod5015.property.dod_compression.title=\u5727\u7e2e dod_dod5015.property.dod_compression.title=\u5727\u7e2e
dod_dod5015.property.dod_compression.description=\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.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_iccIcmProfile.description=ICC/ICM\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb
dod_dod5015.property.dod_exifInformation.title=EXIF\u60c5\u5831 dod_dod5015.property.dod_exifInformation.title=EXIF\u60c5\u5831
dod_dod5015.property.dod_exifInformation.description=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.title=Web\u30ec\u30b3\u30fc\u30c9
dod_dod5015.aspect.dod_webRecord.description=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.title=Web\u30d5\u30a1\u30a4\u30eb\u540d
dod_dod5015.property.dod_webFileName.description=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.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_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.title=Web\u30b5\u30a4\u30c8\u540d
dod_dod5015.property.dod_webSiteName.description=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.title=Web\u30b5\u30a4\u30c8URL
dod_dod5015.property.dod_webSiteURL.description=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.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_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.title=\u30ad\u30e3\u30d7\u30c1\u30e3\u65e5
dod_dod5015.property.dod_captureDate.description=\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.title=\u9023\u7d61\u5148
dod_dod5015.property.dod_contact.description=\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.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.property.dod_contentManagementSystem.description=\u30b3\u30f3\u30c6\u30f3\u30c4\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0

View File

@@ -1,98 +1,98 @@
dod_dod5015.description=DOD5015-innholdsmodell dod_dod5015.description=DOD5015-innholdsmodell
dod_dod5015.type.dod_site.title=DOD5015-omr\u00e5de dod_dod5015.type.dod_site.title=DOD5015-omr\u00e5de
dod_dod5015.type.dod_site.description=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.title=DOD5015-filplan
dod_dod5015.type.dod_filePlan.description=DOD5015-filplan dod_dod5015.type.dod_filePlan.description=DOD5015-filplan
dod_dod5015.type.dod_recordSeries.title=Oppf\u00f8ringsserie (avskrevet) dod_dod5015.type.dod_recordSeries.title=Oppf\u00f8ringsserie (avskrevet)
dod_dod5015.type.dod_recordSeries.description=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.title=DOD5015-oppf\u00f8ring
dod_dod5015.aspect.dod_dod5015record.description=DOD5015-oppf\u00f8ring dod_dod5015.aspect.dod_dod5015record.description=DOD5015-oppf\u00f8ring
dod_dod5015.property.dod_publicationDate.title=Publikasjonsdato dod_dod5015.property.dod_publicationDate.title=Publikasjonsdato
dod_dod5015.property.dod_publicationDate.decription=Publikasjonsdato dod_dod5015.property.dod_publicationDate.decription=Publikasjonsdato
dod_dod5015.property.dod_originator.title=Avsender dod_dod5015.property.dod_originator.title=Avsender
dod_dod5015.property.dod_originator.decription=Avsender dod_dod5015.property.dod_originator.decription=Avsender
dod_dod5015.property.dod_originatingOrganization.title=Utgangsorganisasjon dod_dod5015.property.dod_originatingOrganization.title=Utgangsorganisasjon
dod_dod5015.property.dod_originatingOrganization.decription=Utgangsorganisasjon dod_dod5015.property.dod_originatingOrganization.decription=Utgangsorganisasjon
dod_dod5015.property.dod_mediaType.title=Medietype dod_dod5015.property.dod_mediaType.title=Medietype
dod_dod5015.property.dod_mediaType.decription=Medietype dod_dod5015.property.dod_mediaType.decription=Medietype
dod_dod5015.property.dod_format.title=Format dod_dod5015.property.dod_format.title=Format
dod_dod5015.property.dod_format.decription=Format dod_dod5015.property.dod_format.decription=Format
dod_dod5015.property.dod_dateReceived.title=Dato mottatt dod_dod5015.property.dod_dateReceived.title=Dato mottatt
dod_dod5015.property.dod_dateReceived.decription=Dato mottatt dod_dod5015.property.dod_dateReceived.decription=Dato mottatt
dod_dod5015.property.dod_address.title=Mottaker dod_dod5015.property.dod_address.title=Mottaker
dod_dod5015.property.dod_address.decription=Mottaker dod_dod5015.property.dod_address.decription=Mottaker
dod_dod5015.property.dod_otherAddress.title=Andre mottakere dod_dod5015.property.dod_otherAddress.title=Andre mottakere
dod_dod5015.property.dod_otherAddress.decription=Andre mottakere dod_dod5015.property.dod_otherAddress.decription=Andre mottakere
dod_dod5015.aspect.dod_scannedRecord.title=Skannet oppf\u00f8ring dod_dod5015.aspect.dod_scannedRecord.title=Skannet oppf\u00f8ring
dod_dod5015.aspect.dod_scannedRecord.description=Skannet oppf\u00f8ring dod_dod5015.aspect.dod_scannedRecord.description=Skannet oppf\u00f8ring
dod_dod5015.property.dod_scannedFormat.title=Bildeformat dod_dod5015.property.dod_scannedFormat.title=Bildeformat
dod_dod5015.property.dod_scannedFormat.description=Bildeformat dod_dod5015.property.dod_scannedFormat.description=Bildeformat
dod_dod5015.property.dod_scannedFormatVersion.title=Bildeformat og -versjon dod_dod5015.property.dod_scannedFormatVersion.title=Bildeformat og -versjon
dod_dod5015.property.dod_scannedFormatVersion.description=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.title=Bildeoppl\u00f8sning X
dod_dod5015.property.dod_resolutionX.description=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.title=Bildeoppl\u00f8sning Y
dod_dod5015.property.dod_resolutionY.description=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.title=Skannet bitdybde
dod_dod5015.property.dod_scannedBitDepth.description=Skannet bitdybde dod_dod5015.property.dod_scannedBitDepth.description=Skannet bitdybde
dod_dod5015.aspect.dod_pdfRecord.title=PDF-oppf\u00f8ring dod_dod5015.aspect.dod_pdfRecord.title=PDF-oppf\u00f8ring
dod_dod5015.aspect.dod_pdfRecord.description=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.title=Produserende program
dod_dod5015.property.dod_producingApplication.description=Produserende program dod_dod5015.property.dod_producingApplication.description=Produserende program
dod_dod5015.property.dod_producingApplicationVersion.title=Produserende programversjon dod_dod5015.property.dod_producingApplicationVersion.title=Produserende programversjon
dod_dod5015.property.dod_producingApplicationVersion.description=Produserende programversjon dod_dod5015.property.dod_producingApplicationVersion.description=Produserende programversjon
dod_dod5015.property.dod_pdfVersion.title=PDF-versjon dod_dod5015.property.dod_pdfVersion.title=PDF-versjon
dod_dod5015.property.dod_pdfVersion.description=PDF-versjon dod_dod5015.property.dod_pdfVersion.description=PDF-versjon
dod_dod5015.property.dod_creatingApplication.title=Opprette program dod_dod5015.property.dod_creatingApplication.title=Opprette program
dod_dod5015.property.dod_creatingApplication.description=Opprette program dod_dod5015.property.dod_creatingApplication.description=Opprette program
dod_dod5015.property.dod_documentSecuritySettings.title=Innstillinger ved dokumentsikkerhet dod_dod5015.property.dod_documentSecuritySettings.title=Innstillinger ved dokumentsikkerhet
dod_dod5015.property.dod_documentSecuritySettings.description=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.title=Digital bildeoppf\u00f8ring
dod_dod5015.aspect.dod_digitalPhotographRecord.description=Digital bildeoppf\u00f8ring dod_dod5015.aspect.dod_digitalPhotographRecord.description=Digital bildeoppf\u00f8ring
dod_dod5015.property.dod_caption.title=Tittel dod_dod5015.property.dod_caption.title=Tittel
dod_dod5015.property.dod_caption.description=Tittel dod_dod5015.property.dod_caption.description=Tittel
dod_dod5015.property.dod_photographer.title=Fotograf dod_dod5015.property.dod_photographer.title=Fotograf
dod_dod5015.property.dod_photographer.description=Fotograf dod_dod5015.property.dod_photographer.description=Fotograf
dod_dod5015.property.dod_copyright.title=Copyright dod_dod5015.property.dod_copyright.title=Copyright
dod_dod5015.property.dod_copyright.description=Copyright dod_dod5015.property.dod_copyright.description=Copyright
dod_dod5015.property.dod_bitDepth.title=Bitdybde dod_dod5015.property.dod_bitDepth.title=Bitdybde
dod_dod5015.property.dod_bitDepth.description=Bitdybde dod_dod5015.property.dod_bitDepth.description=Bitdybde
dod_dod5015.property.dod_imageSizeX.title=Bildest\u00f8rrelse X dod_dod5015.property.dod_imageSizeX.title=Bildest\u00f8rrelse X
dod_dod5015.property.dod_imageSizeX.description=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.title=Bildest\u00f8rrelse Y
dod_dod5015.property.dod_imageSizeY.description=Bildest\u00f8rrelse Y dod_dod5015.property.dod_imageSizeY.description=Bildest\u00f8rrelse Y
dod_dod5015.property.dod_imageSource.title=Bildekilde dod_dod5015.property.dod_imageSource.title=Bildekilde
dod_dod5015.property.dod_imageSource.description=Bildekilde dod_dod5015.property.dod_imageSource.description=Bildekilde
dod_dod5015.property.dod_compression.title=Komprimering dod_dod5015.property.dod_compression.title=Komprimering
dod_dod5015.property.dod_compression.description=Komprimering dod_dod5015.property.dod_compression.description=Komprimering
dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM-profil dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM-profil
dod_dod5015.property.dod_iccIcmProfile.description=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.title=EXIF-informasjon
dod_dod5015.property.dod_exifInformation.description=EXIF-informasjon dod_dod5015.property.dod_exifInformation.description=EXIF-informasjon
dod_dod5015.aspect.dod_webRecord.title=Nettoppf\u00f8ring dod_dod5015.aspect.dod_webRecord.title=Nettoppf\u00f8ring
dod_dod5015.aspect.dod_webRecord.description=Nettoppf\u00f8ring dod_dod5015.aspect.dod_webRecord.description=Nettoppf\u00f8ring
dod_dod5015.property.dod_webFileName.title=Nettfilnavn dod_dod5015.property.dod_webFileName.title=Nettfilnavn
dod_dod5015.property.dod_webFileName.description=Nettfilnavn dod_dod5015.property.dod_webFileName.description=Nettfilnavn
dod_dod5015.property.dod_webPlatform.title=Nettplattform dod_dod5015.property.dod_webPlatform.title=Nettplattform
dod_dod5015.property.dod_webPlatform.description=Nettplattform dod_dod5015.property.dod_webPlatform.description=Nettplattform
dod_dod5015.property.dod_webSiteName.title=Nettstedsnavn dod_dod5015.property.dod_webSiteName.title=Nettstedsnavn
dod_dod5015.property.dod_webSiteName.description=Nettstedsnavn dod_dod5015.property.dod_webSiteName.description=Nettstedsnavn
dod_dod5015.property.dod_webSiteURL.title=Nettstedsadresse dod_dod5015.property.dod_webSiteURL.title=Nettstedsadresse
dod_dod5015.property.dod_webSiteURL.description=Nettstedsadresse dod_dod5015.property.dod_webSiteURL.description=Nettstedsadresse
dod_dod5015.property.dod_captureMethod.title=Opptaksmetode dod_dod5015.property.dod_captureMethod.title=Opptaksmetode
dod_dod5015.property.dod_captureMethod.description=Opptaksmetode dod_dod5015.property.dod_captureMethod.description=Opptaksmetode
dod_dod5015.property.dod_captureDate.title=Opptaksdato dod_dod5015.property.dod_captureDate.title=Opptaksdato
dod_dod5015.property.dod_captureDate.description=Opptaksdato dod_dod5015.property.dod_captureDate.description=Opptaksdato
dod_dod5015.property.dod_contact.title=Kontakt dod_dod5015.property.dod_contact.title=Kontakt
dod_dod5015.property.dod_contact.description=Kontakt dod_dod5015.property.dod_contact.description=Kontakt
dod_dod5015.property.dod_contentManagementSystem.title=Innholdsforvaltningssystem dod_dod5015.property.dod_contentManagementSystem.title=Innholdsforvaltningssystem
dod_dod5015.property.dod_contentManagementSystem.description= Innholdsforvaltningssystem dod_dod5015.property.dod_contentManagementSystem.description= Innholdsforvaltningssystem

View File

@@ -1,98 +1,98 @@
dod_dod5015.description=DOD5015-contentmodel dod_dod5015.description=DOD5015-contentmodel
dod_dod5015.type.dod_site.title=DOD5015-site dod_dod5015.type.dod_site.title=DOD5015-site
dod_dod5015.type.dod_site.description=DOD5015-site dod_dod5015.type.dod_site.description=DOD5015-site
dod_dod5015.type.dod_filePlan.title=DOD5015-ordeningsplan dod_dod5015.type.dod_filePlan.title=DOD5015-ordeningsplan
dod_dod5015.type.dod_filePlan.description=DOD5015-ordeningsplan dod_dod5015.type.dod_filePlan.description=DOD5015-ordeningsplan
dod_dod5015.type.dod_recordSeries.title=Recordreeks (afgekeurd) dod_dod5015.type.dod_recordSeries.title=Recordreeks (afgekeurd)
dod_dod5015.type.dod_recordSeries.description=Recordreeks (afgekeurd) dod_dod5015.type.dod_recordSeries.description=Recordreeks (afgekeurd)
dod_dod5015.aspect.dod_dod5015record.title=DOD5015-record dod_dod5015.aspect.dod_dod5015record.title=DOD5015-record
dod_dod5015.aspect.dod_dod5015record.description=DOD5015-record dod_dod5015.aspect.dod_dod5015record.description=DOD5015-record
dod_dod5015.property.dod_publicationDate.title=Publicatiedatum dod_dod5015.property.dod_publicationDate.title=Publicatiedatum
dod_dod5015.property.dod_publicationDate.decription=Publicatiedatum dod_dod5015.property.dod_publicationDate.decription=Publicatiedatum
dod_dod5015.property.dod_originator.title=Herkomst dod_dod5015.property.dod_originator.title=Herkomst
dod_dod5015.property.dod_originator.decription=Herkomst dod_dod5015.property.dod_originator.decription=Herkomst
dod_dod5015.property.dod_originatingOrganization.title=Oorspronkelijke organisatie dod_dod5015.property.dod_originatingOrganization.title=Oorspronkelijke organisatie
dod_dod5015.property.dod_originatingOrganization.decription=Oorspronkelijke organisatie dod_dod5015.property.dod_originatingOrganization.decription=Oorspronkelijke organisatie
dod_dod5015.property.dod_mediaType.title=Type medium dod_dod5015.property.dod_mediaType.title=Type medium
dod_dod5015.property.dod_mediaType.decription=Type medium dod_dod5015.property.dod_mediaType.decription=Type medium
dod_dod5015.property.dod_format.title=Indeling dod_dod5015.property.dod_format.title=Indeling
dod_dod5015.property.dod_format.decription=Indeling dod_dod5015.property.dod_format.decription=Indeling
dod_dod5015.property.dod_dateReceived.title=Datum ontvangen dod_dod5015.property.dod_dateReceived.title=Datum ontvangen
dod_dod5015.property.dod_dateReceived.decription=Datum ontvangen dod_dod5015.property.dod_dateReceived.decription=Datum ontvangen
dod_dod5015.property.dod_address.title=Geadresseerde dod_dod5015.property.dod_address.title=Geadresseerde
dod_dod5015.property.dod_address.decription=Geadresseerde dod_dod5015.property.dod_address.decription=Geadresseerde
dod_dod5015.property.dod_otherAddress.title=Andere geadresseerde dod_dod5015.property.dod_otherAddress.title=Andere geadresseerde
dod_dod5015.property.dod_otherAddress.decription=Andere geadresseerde dod_dod5015.property.dod_otherAddress.decription=Andere geadresseerde
dod_dod5015.aspect.dod_scannedRecord.title=Gescande record dod_dod5015.aspect.dod_scannedRecord.title=Gescande record
dod_dod5015.aspect.dod_scannedRecord.description=Gescande record dod_dod5015.aspect.dod_scannedRecord.description=Gescande record
dod_dod5015.property.dod_scannedFormat.title=Beeldindeling dod_dod5015.property.dod_scannedFormat.title=Beeldindeling
dod_dod5015.property.dod_scannedFormat.description=Beeldindeling dod_dod5015.property.dod_scannedFormat.description=Beeldindeling
dod_dod5015.property.dod_scannedFormatVersion.title=Beeldindeling en -versie dod_dod5015.property.dod_scannedFormatVersion.title=Beeldindeling en -versie
dod_dod5015.property.dod_scannedFormatVersion.description=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.title=Beeldresolutie X
dod_dod5015.property.dod_resolutionX.description=Beeldresolutie X dod_dod5015.property.dod_resolutionX.description=Beeldresolutie X
dod_dod5015.property.dod_resolutionY.title=Beeldresolutie Y dod_dod5015.property.dod_resolutionY.title=Beeldresolutie Y
dod_dod5015.property.dod_resolutionY.description=Beeldresolutie Y dod_dod5015.property.dod_resolutionY.description=Beeldresolutie Y
dod_dod5015.property.dod_scannedBitDepth.title=Gescande bitdiepte dod_dod5015.property.dod_scannedBitDepth.title=Gescande bitdiepte
dod_dod5015.property.dod_scannedBitDepth.description=Gescande bitdiepte dod_dod5015.property.dod_scannedBitDepth.description=Gescande bitdiepte
dod_dod5015.aspect.dod_pdfRecord.title=PDF-record dod_dod5015.aspect.dod_pdfRecord.title=PDF-record
dod_dod5015.aspect.dod_pdfRecord.description=PDF-record dod_dod5015.aspect.dod_pdfRecord.description=PDF-record
dod_dod5015.property.dod_producingApplication.title=Producerende applicatie dod_dod5015.property.dod_producingApplication.title=Producerende applicatie
dod_dod5015.property.dod_producingApplication.description=Producerende applicatie dod_dod5015.property.dod_producingApplication.description=Producerende applicatie
dod_dod5015.property.dod_producingApplicationVersion.title=Versie producerende applicatie dod_dod5015.property.dod_producingApplicationVersion.title=Versie producerende applicatie
dod_dod5015.property.dod_producingApplicationVersion.description=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.title=PDF-versie
dod_dod5015.property.dod_pdfVersion.description=PDF-versie dod_dod5015.property.dod_pdfVersion.description=PDF-versie
dod_dod5015.property.dod_creatingApplication.title=Producerende applicatie dod_dod5015.property.dod_creatingApplication.title=Producerende applicatie
dod_dod5015.property.dod_creatingApplication.description=Producerende applicatie dod_dod5015.property.dod_creatingApplication.description=Producerende applicatie
dod_dod5015.property.dod_documentSecuritySettings.title=Documentbeveiligingsinstellingen dod_dod5015.property.dod_documentSecuritySettings.title=Documentbeveiligingsinstellingen
dod_dod5015.property.dod_documentSecuritySettings.description=Documentbeveiligingsinstellingen dod_dod5015.property.dod_documentSecuritySettings.description=Documentbeveiligingsinstellingen
dod_dod5015.aspect.dod_digitalPhotographRecord.title=Digitale fotorecord dod_dod5015.aspect.dod_digitalPhotographRecord.title=Digitale fotorecord
dod_dod5015.aspect.dod_digitalPhotographRecord.description=Digitale fotorecord dod_dod5015.aspect.dod_digitalPhotographRecord.description=Digitale fotorecord
dod_dod5015.property.dod_caption.title=Bijschrift dod_dod5015.property.dod_caption.title=Bijschrift
dod_dod5015.property.dod_caption.description=Bijschrift dod_dod5015.property.dod_caption.description=Bijschrift
dod_dod5015.property.dod_photographer.title=Fotograaf dod_dod5015.property.dod_photographer.title=Fotograaf
dod_dod5015.property.dod_photographer.description=Fotograaf dod_dod5015.property.dod_photographer.description=Fotograaf
dod_dod5015.property.dod_copyright.title=Auteursrecht dod_dod5015.property.dod_copyright.title=Auteursrecht
dod_dod5015.property.dod_copyright.description=Auteursrecht dod_dod5015.property.dod_copyright.description=Auteursrecht
dod_dod5015.property.dod_bitDepth.title=Bitdiepte dod_dod5015.property.dod_bitDepth.title=Bitdiepte
dod_dod5015.property.dod_bitDepth.description=Bitdiepte dod_dod5015.property.dod_bitDepth.description=Bitdiepte
dod_dod5015.property.dod_imageSizeX.title=Beeldgrootte X dod_dod5015.property.dod_imageSizeX.title=Beeldgrootte X
dod_dod5015.property.dod_imageSizeX.description=Beeldgrootte X dod_dod5015.property.dod_imageSizeX.description=Beeldgrootte X
dod_dod5015.property.dod_imageSizeY.title=Beeldgrootte Y dod_dod5015.property.dod_imageSizeY.title=Beeldgrootte Y
dod_dod5015.property.dod_imageSizeY.description=Beeldgrootte Y dod_dod5015.property.dod_imageSizeY.description=Beeldgrootte Y
dod_dod5015.property.dod_imageSource.title=Beeldbron dod_dod5015.property.dod_imageSource.title=Beeldbron
dod_dod5015.property.dod_imageSource.description=Beeldbron dod_dod5015.property.dod_imageSource.description=Beeldbron
dod_dod5015.property.dod_compression.title=Compressie dod_dod5015.property.dod_compression.title=Compressie
dod_dod5015.property.dod_compression.description=Compressie dod_dod5015.property.dod_compression.description=Compressie
dod_dod5015.property.dod_iccIcmProfile.title=ICC-/ICM-profiel dod_dod5015.property.dod_iccIcmProfile.title=ICC-/ICM-profiel
dod_dod5015.property.dod_iccIcmProfile.description=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.title=EXIF-informatie
dod_dod5015.property.dod_exifInformation.description=EXIF-informatie dod_dod5015.property.dod_exifInformation.description=EXIF-informatie
dod_dod5015.aspect.dod_webRecord.title=Web-record dod_dod5015.aspect.dod_webRecord.title=Web-record
dod_dod5015.aspect.dod_webRecord.description=Web-record dod_dod5015.aspect.dod_webRecord.description=Web-record
dod_dod5015.property.dod_webFileName.title=Web-bestandsnaam dod_dod5015.property.dod_webFileName.title=Web-bestandsnaam
dod_dod5015.property.dod_webFileName.description=Web-bestandsnaam dod_dod5015.property.dod_webFileName.description=Web-bestandsnaam
dod_dod5015.property.dod_webPlatform.title=Web-platform dod_dod5015.property.dod_webPlatform.title=Web-platform
dod_dod5015.property.dod_webPlatform.description=Web-platform dod_dod5015.property.dod_webPlatform.description=Web-platform
dod_dod5015.property.dod_webSiteName.title=Websitenaam dod_dod5015.property.dod_webSiteName.title=Websitenaam
dod_dod5015.property.dod_webSiteName.description=Websitenaam dod_dod5015.property.dod_webSiteName.description=Websitenaam
dod_dod5015.property.dod_webSiteURL.title=Websiteadres dod_dod5015.property.dod_webSiteURL.title=Websiteadres
dod_dod5015.property.dod_webSiteURL.description=Websiteadres dod_dod5015.property.dod_webSiteURL.description=Websiteadres
dod_dod5015.property.dod_captureMethod.title=Methode van vastleggen dod_dod5015.property.dod_captureMethod.title=Methode van vastleggen
dod_dod5015.property.dod_captureMethod.description=Methode van vastleggen dod_dod5015.property.dod_captureMethod.description=Methode van vastleggen
dod_dod5015.property.dod_captureDate.title=Vastlegdatum dod_dod5015.property.dod_captureDate.title=Vastlegdatum
dod_dod5015.property.dod_captureDate.description=Vastlegdatum dod_dod5015.property.dod_captureDate.description=Vastlegdatum
dod_dod5015.property.dod_contact.title=Contact dod_dod5015.property.dod_contact.title=Contact
dod_dod5015.property.dod_contact.description=Contact dod_dod5015.property.dod_contact.description=Contact
dod_dod5015.property.dod_contentManagementSystem.title=Contentmanagementsysteem dod_dod5015.property.dod_contentManagementSystem.title=Contentmanagementsysteem
dod_dod5015.property.dod_contentManagementSystem.description=Contentmanagementsysteem dod_dod5015.property.dod_contentManagementSystem.description=Contentmanagementsysteem

View File

@@ -1,98 +1,98 @@
dod_dod5015.description=Modelo de conte\u00fado DOD5015 dod_dod5015.description=Modelo de conte\u00fado DOD5015
dod_dod5015.type.dod_site.title=Site DOD5015 dod_dod5015.type.dod_site.title=Site DOD5015
dod_dod5015.type.dod_site.description=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.title=Plano de arquivo DOD5015
dod_dod5015.type.dod_filePlan.description=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.title=S\u00e9rie de documento arquiv\u00edstico (obsoleta)
dod_dod5015.type.dod_recordSeries.description=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.title=Documento arquiv\u00edstico DOD5015
dod_dod5015.aspect.dod_dod5015record.description=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.title=Data de publica\u00e7\u00e3o
dod_dod5015.property.dod_publicationDate.decription=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.title=Originador
dod_dod5015.property.dod_originator.decription=Originador dod_dod5015.property.dod_originator.decription=Originador
dod_dod5015.property.dod_originatingOrganization.title=Organiza\u00e7\u00e3o de origem 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_originatingOrganization.decription=Organiza\u00e7\u00e3o de origem
dod_dod5015.property.dod_mediaType.title=Tipo de m\u00eddia dod_dod5015.property.dod_mediaType.title=Tipo de m\u00eddia
dod_dod5015.property.dod_mediaType.decription=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.title=Formato
dod_dod5015.property.dod_format.decription=Formato dod_dod5015.property.dod_format.decription=Formato
dod_dod5015.property.dod_dateReceived.title=Data de recebimento dod_dod5015.property.dod_dateReceived.title=Data de recebimento
dod_dod5015.property.dod_dateReceived.decription=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.title=Destinat\u00e1rio
dod_dod5015.property.dod_address.decription=Destinat\u00e1rio dod_dod5015.property.dod_address.decription=Destinat\u00e1rio
dod_dod5015.property.dod_otherAddress.title=Outro destinat\u00e1rio dod_dod5015.property.dod_otherAddress.title=Outro destinat\u00e1rio
dod_dod5015.property.dod_otherAddress.decription=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.title=Documento arquiv\u00edstico escaneado
dod_dod5015.aspect.dod_scannedRecord.description=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.title=Formato da imagem
dod_dod5015.property.dod_scannedFormat.description=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.title=Vers\u00e3o e formato da imagem
dod_dod5015.property.dod_scannedFormatVersion.description=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.title=Resolu\u00e7\u00e3o da imagem X
dod_dod5015.property.dod_resolutionX.description=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.title=Resolu\u00e7\u00e3o da imagem Y
dod_dod5015.property.dod_resolutionY.description=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.title=Intensidade de bits escaneada
dod_dod5015.property.dod_scannedBitDepth.description=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.title=Arquivo PDF
dod_dod5015.aspect.dod_pdfRecord.description=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.title=Aplicativo de produ\u00e7\u00e3o
dod_dod5015.property.dod_producingApplication.description=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.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_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.title=Vers\u00e3o do PDF
dod_dod5015.property.dod_pdfVersion.description=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.title=Criando aplicativo
dod_dod5015.property.dod_creatingApplication.description=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.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.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.title=Documento arquiv\u00edstico fotogr\u00e1fico digital
dod_dod5015.aspect.dod_digitalPhotographRecord.description=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.title=Legenda
dod_dod5015.property.dod_caption.description=Legenda dod_dod5015.property.dod_caption.description=Legenda
dod_dod5015.property.dod_photographer.title=Fot\u00f3grafo dod_dod5015.property.dod_photographer.title=Fot\u00f3grafo
dod_dod5015.property.dod_photographer.description=Fot\u00f3grafo dod_dod5015.property.dod_photographer.description=Fot\u00f3grafo
dod_dod5015.property.dod_copyright.title=Copyright dod_dod5015.property.dod_copyright.title=Copyright
dod_dod5015.property.dod_copyright.description=Copyright dod_dod5015.property.dod_copyright.description=Copyright
dod_dod5015.property.dod_bitDepth.title=Intensidade de bit dod_dod5015.property.dod_bitDepth.title=Intensidade de bit
dod_dod5015.property.dod_bitDepth.description=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.title=Tamanho da imagem X
dod_dod5015.property.dod_imageSizeX.description=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.title=Tamanho da imagem Y
dod_dod5015.property.dod_imageSizeY.description=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.title=Fonte da imagem
dod_dod5015.property.dod_imageSource.description=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.title=Compress\u00e3o
dod_dod5015.property.dod_compression.description=Compress\u00e3o dod_dod5015.property.dod_compression.description=Compress\u00e3o
dod_dod5015.property.dod_iccIcmProfile.title=Perfil ICC/ICM dod_dod5015.property.dod_iccIcmProfile.title=Perfil ICC/ICM
dod_dod5015.property.dod_iccIcmProfile.description=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.title=Informa\u00e7\u00f5es EXIF
dod_dod5015.property.dod_exifInformation.description=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.title=Documento arquiv\u00edstico da Web
dod_dod5015.aspect.dod_webRecord.description=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.title=Nome do arquivo da Web
dod_dod5015.property.dod_webFileName.description=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.title=Plataforma da Web
dod_dod5015.property.dod_webPlatform.description=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.title=Nome do site
dod_dod5015.property.dod_webSiteName.description=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.title=URL do site
dod_dod5015.property.dod_webSiteURL.description=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.title=M\u00e9todo de captura
dod_dod5015.property.dod_captureMethod.description=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.title=Data de captura
dod_dod5015.property.dod_captureDate.description=Data de captura dod_dod5015.property.dod_captureDate.description=Data de captura
dod_dod5015.property.dod_contact.title=Contato dod_dod5015.property.dod_contact.title=Contato
dod_dod5015.property.dod_contact.description=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.title=Sistema de gerenciamento de conte\u00fado
dod_dod5015.property.dod_contentManagementSystem.description=Sistema de gerenciamento de conte\u00fado dod_dod5015.property.dod_contentManagementSystem.description=Sistema de gerenciamento de conte\u00fado

View File

@@ -1,98 +1,98 @@
dod_dod5015.description=\u041c\u043e\u0434\u0435\u043b\u044c \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 DOD5015 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.title=\u0421\u0430\u0439\u0442 DOD5015
dod_dod5015.type.dod_site.description=\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.title=\u0410\u0440\u0445\u0438\u0432 DOD5015
dod_dod5015.type.dod_filePlan.description=\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.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.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.title=\u0417\u0430\u043f\u0438\u0441\u044c DOD5015
dod_dod5015.aspect.dod_dod5015record.description=\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.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_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.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_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.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_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.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_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.title=\u0424\u043e\u0440\u043c\u0430\u0442
dod_dod5015.property.dod_format.decription=\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.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_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.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_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.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.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.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.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.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_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.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_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.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_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.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_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.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.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.title=\u0417\u0430\u043f\u0438\u0441\u044c PDF
dod_dod5015.aspect.dod_pdfRecord.description=\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.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_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.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_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.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_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.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_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.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.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.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.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.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_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.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_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.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_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.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_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.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_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.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_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.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_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.title=\u0421\u0436\u0430\u0442\u0438\u0435
dod_dod5015.property.dod_compression.description=\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.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_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.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.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.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.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.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_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.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_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.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_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.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_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.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_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.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_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.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_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.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.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

View File

@@ -1,98 +1,98 @@
dod_dod5015.description=DOD5015 \u5185\u5bb9\u6a21\u578b dod_dod5015.description=DOD5015 \u5185\u5bb9\u6a21\u578b
dod_dod5015.type.dod_site.title=DOD5015 \u7ad9\u70b9 dod_dod5015.type.dod_site.title=DOD5015 \u7ad9\u70b9
dod_dod5015.type.dod_site.description=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.title=DOD5015 \u5f52\u7c7b\u65b9\u6848
dod_dod5015.type.dod_filePlan.description=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.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.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.title=DOD5015 \u8bb0\u5f55
dod_dod5015.aspect.dod_dod5015record.description=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.title=\u53d1\u5e03\u65e5\u671f
dod_dod5015.property.dod_publicationDate.decription=\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.title=\u5efa\u7acb\u8005
dod_dod5015.property.dod_originator.decription=\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.title=\u8d77\u59cb\u7ec4\u7ec7
dod_dod5015.property.dod_originatingOrganization.decription=\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.title=\u5a92\u4f53\u7c7b\u578b
dod_dod5015.property.dod_mediaType.decription=\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.title=\u683c\u5f0f
dod_dod5015.property.dod_format.decription=\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.title=\u63a5\u6536\u65e5\u671f
dod_dod5015.property.dod_dateReceived.decription=\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.title=\u6536\u4ef6\u4eba
dod_dod5015.property.dod_address.decription=\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.title=\u5176\u4ed6\u6536\u4ef6\u4eba
dod_dod5015.property.dod_otherAddress.decription=\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.title=\u626b\u63cf\u7684\u8bb0\u5f55
dod_dod5015.aspect.dod_scannedRecord.description=\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.title=\u56fe\u50cf\u683c\u5f0f
dod_dod5015.property.dod_scannedFormat.description=\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.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_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.title=\u56fe\u50cf\u5206\u8fa8\u7387 X
dod_dod5015.property.dod_resolutionX.description=\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.title=\u56fe\u50cf\u5206\u8fa8\u7387 Y
dod_dod5015.property.dod_resolutionY.description=\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.title=\u626b\u63cf\u7684\u4f4d\u6df1
dod_dod5015.property.dod_scannedBitDepth.description=\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.title=PDF \u8bb0\u5f55
dod_dod5015.aspect.dod_pdfRecord.description=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.title=\u751f\u4ea7\u5e94\u7528\u7a0b\u5e8f
dod_dod5015.property.dod_producingApplication.description=\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.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_producingApplicationVersion.description=\u751f\u4ea7\u5e94\u7528\u7a0b\u5e8f\u7248\u672c
dod_dod5015.property.dod_pdfVersion.title=PDF \u7248\u672c dod_dod5015.property.dod_pdfVersion.title=PDF \u7248\u672c
dod_dod5015.property.dod_pdfVersion.description=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.title=\u521b\u5efa\u5e94\u7528\u7a0b\u5e8f
dod_dod5015.property.dod_creatingApplication.description=\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.title=\u6587\u6863\u5b89\u5168\u8bbe\u7f6e
dod_dod5015.property.dod_documentSecuritySettings.description=\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.title=\u6570\u7801\u7167\u7247\u8bb0\u5f55
dod_dod5015.aspect.dod_digitalPhotographRecord.description=\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.title=\u6807\u9898
dod_dod5015.property.dod_caption.description=\u6807\u9898 dod_dod5015.property.dod_caption.description=\u6807\u9898
dod_dod5015.property.dod_photographer.title=\u6444\u5f71\u5e08 dod_dod5015.property.dod_photographer.title=\u6444\u5f71\u5e08
dod_dod5015.property.dod_photographer.description=\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.title=\u7248\u6743
dod_dod5015.property.dod_copyright.description=\u7248\u6743 dod_dod5015.property.dod_copyright.description=\u7248\u6743
dod_dod5015.property.dod_bitDepth.title=\u4f4d\u6df1 dod_dod5015.property.dod_bitDepth.title=\u4f4d\u6df1
dod_dod5015.property.dod_bitDepth.description=\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.title=\u56fe\u50cf\u5c3a\u5bf8 X
dod_dod5015.property.dod_imageSizeX.description=\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.title=\u56fe\u50cf\u5c3a\u5bf8 Y
dod_dod5015.property.dod_imageSizeY.description=\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.title=\u56fe\u50cf\u6e90
dod_dod5015.property.dod_imageSource.description=\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.title=\u538b\u7f29
dod_dod5015.property.dod_compression.description=\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.title=ICC/ICM \u914d\u7f6e\u6587\u4ef6
dod_dod5015.property.dod_iccIcmProfile.description=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.title=EXIF \u4fe1\u606f
dod_dod5015.property.dod_exifInformation.description=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.title=Web \u8bb0\u5f55
dod_dod5015.aspect.dod_webRecord.description=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.title=Web \u6587\u4ef6\u540d
dod_dod5015.property.dod_webFileName.description=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.title=Web \u5e73\u53f0
dod_dod5015.property.dod_webPlatform.description=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.title=\u7f51\u7ad9\u540d\u79f0
dod_dod5015.property.dod_webSiteName.description=\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.title=\u7f51\u7ad9 URL
dod_dod5015.property.dod_webSiteURL.description=\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.title=\u6355\u6349\u65b9\u6cd5
dod_dod5015.property.dod_captureMethod.description=\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.title=\u6355\u6349\u65e5\u671f
dod_dod5015.property.dod_captureDate.description=\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.title=\u8054\u7cfb\u4eba
dod_dod5015.property.dod_contact.description=\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.title=\u5185\u5bb9\u7ba1\u7406\u7cfb\u7edf
dod_dod5015.property.dod_contentManagementSystem.description=\u5185\u5bb9\u7ba1\u7406\u7cfb\u7edf dod_dod5015.property.dod_contentManagementSystem.description=\u5185\u5bb9\u7ba1\u7406\u7cfb\u7edf

View File

@@ -1,8 +1,8 @@
# Classified Records Capabilities # Classified Records Capabilities
capability.group.classifiedRecords.title=Classified Records capability.group.classifiedRecords.title=Classified Records
capability.UpdateClassificationDates.title=Update Classification Dates capability.UpdateClassificationDates.title=Update Classification Dates
capability.CreateModifyDestroyClassificationGuides.title=Create Modify Destroy Classification Guides capability.CreateModifyDestroyClassificationGuides.title=Create Modify Destroy Classification Guides
capability.UpgradeDowngradeAndDeclassifyRecords.title=Upgrade Downgrade and Declassify Records capability.UpgradeDowngradeAndDeclassifyRecords.title=Upgrade Downgrade and Declassify Records
capability.UpdateExemptionCategories.title=Update Exemption Categories capability.UpdateExemptionCategories.title=Update Exemption Categories
capability.MapClassificationGuideMetadata.title=Map Classification Guide Metadata capability.MapClassificationGuideMetadata.title=Map Classification Guide Metadata
capability.CreateModifyDestroyTimeframes.title=Create Modify Destroy Time Frames capability.CreateModifyDestroyTimeframes.title=Create Modify Destroy Time Frames

View File

@@ -1,8 +1,8 @@
# Classified Records Capabilities # Classified Records Capabilities
capability.group.classifiedRecords.title=Klassifizierte Records capability.group.classifiedRecords.title=Klassifizierte Records
capability.UpdateClassificationDates.title=Klassifizierungsdaten aktualisieren capability.UpdateClassificationDates.title=Klassifizierungsdaten aktualisieren
capability.CreateModifyDestroyClassificationGuides.title=Klassifizierungsleitfaden erstellen/\u00e4ndern/vernichten capability.CreateModifyDestroyClassificationGuides.title=Klassifizierungsleitfaden erstellen/\u00e4ndern/vernichten
capability.UpgradeDowngradeAndDeclassifyRecords.title=Records h\u00f6her-/herunterstufen und ihre Klassifizierung aufheben capability.UpgradeDowngradeAndDeclassifyRecords.title=Records h\u00f6her-/herunterstufen und ihre Klassifizierung aufheben
capability.UpdateExemptionCategories.title=Ausnahmekategorien aktualisieren capability.UpdateExemptionCategories.title=Ausnahmekategorien aktualisieren
capability.MapClassificationGuideMetadata.title=Metadaten f\u00fcr Klassifizierungsleitfaden zuordnen capability.MapClassificationGuideMetadata.title=Metadaten f\u00fcr Klassifizierungsleitfaden zuordnen
capability.CreateModifyDestroyTimeframes.title=Zeitrahmen erstellen/\u00e4ndern/vernichten capability.CreateModifyDestroyTimeframes.title=Zeitrahmen erstellen/\u00e4ndern/vernichten

View File

@@ -1,8 +1,8 @@
# Classified Records Capabilities # Classified Records Capabilities
capability.group.classifiedRecords.title=Documentos de archivo clasificados capability.group.classifiedRecords.title=Documentos de archivo clasificados
capability.UpdateClassificationDates.title=Actualizar fechas de clasificaci\u00f3n capability.UpdateClassificationDates.title=Actualizar fechas de clasificaci\u00f3n
capability.CreateModifyDestroyClassificationGuides.title=Crear Modificar Destruir gu\u00edas 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.UpgradeDowngradeAndDeclassifyRecords.title=Actualizar, degradar y desclasificar documentos de archivo
capability.UpdateExemptionCategories.title=Actualizar categor\u00edas de exenci\u00f3n capability.UpdateExemptionCategories.title=Actualizar categor\u00edas de exenci\u00f3n
capability.MapClassificationGuideMetadata.title=Asignar metadatos de gu\u00eda de clasificaci\u00f3n capability.MapClassificationGuideMetadata.title=Asignar metadatos de gu\u00eda de clasificaci\u00f3n
capability.CreateModifyDestroyTimeframes.title=Crear Modificar Destruir plazos de tiempo capability.CreateModifyDestroyTimeframes.title=Crear Modificar Destruir plazos de tiempo

View File

@@ -1,8 +1,8 @@
# Classified Records Capabilities # Classified Records Capabilities
capability.group.classifiedRecords.title=Document d'archives class\u00e9s capability.group.classifiedRecords.title=Document d'archives class\u00e9s
capability.UpdateClassificationDates.title=Mettre \u00e0 jour les dates de classement capability.UpdateClassificationDates.title=Mettre \u00e0 jour les dates de classement
capability.CreateModifyDestroyClassificationGuides.title=Cr\u00e9er Modifier D\u00e9truire des guides 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.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.UpdateExemptionCategories.title=Mettre \u00e0 jour les cat\u00e9gories d'exemption
capability.MapClassificationGuideMetadata.title=Mapper les m\u00e9tadonn\u00e9es de guides de classement capability.MapClassificationGuideMetadata.title=Mapper les m\u00e9tadonn\u00e9es de guides de classement
capability.CreateModifyDestroyTimeframes.title=Cr\u00e9er Modifier D\u00e9truire des d\u00e9lais capability.CreateModifyDestroyTimeframes.title=Cr\u00e9er Modifier D\u00e9truire des d\u00e9lais

View File

@@ -1,8 +1,8 @@
# Classified Records Capabilities # Classified Records Capabilities
capability.group.classifiedRecords.title=Record classificati capability.group.classifiedRecords.title=Record classificati
capability.UpdateClassificationDates.title=Aggiorna date di classificazione capability.UpdateClassificationDates.title=Aggiorna date di classificazione
capability.CreateModifyDestroyClassificationGuides.title=Crea Modifica Elimina definitivamente guide di classificazione capability.CreateModifyDestroyClassificationGuides.title=Crea Modifica Elimina definitivamente guide di classificazione
capability.UpgradeDowngradeAndDeclassifyRecords.title=Upgrade Downgrade e Declassifica record capability.UpgradeDowngradeAndDeclassifyRecords.title=Upgrade Downgrade e Declassifica record
capability.UpdateExemptionCategories.title=Aggiorna categorie di esenzione capability.UpdateExemptionCategories.title=Aggiorna categorie di esenzione
capability.MapClassificationGuideMetadata.title=Esegui il mapping dei metadati della guida di classificazione capability.MapClassificationGuideMetadata.title=Esegui il mapping dei metadati della guida di classificazione
capability.CreateModifyDestroyTimeframes.title=Crea Modifica Elimina definitivamente intervalli di tempo capability.CreateModifyDestroyTimeframes.title=Crea Modifica Elimina definitivamente intervalli di tempo

View File

@@ -1,8 +1,8 @@
# Classified Records Capabilities # Classified Records Capabilities
capability.group.classifiedRecords.title=\u5206\u985e\u6e08\u307f\u30ec\u30b3\u30fc\u30c9 capability.group.classifiedRecords.title=\u5206\u985e\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
capability.UpdateClassificationDates.title=\u5206\u985e\u65e5\u306e\u66f4\u65b0 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.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.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.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.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 capability.CreateModifyDestroyTimeframes.title=\u30bf\u30a4\u30e0\u30d5\u30ec\u30fc\u30e0\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4

View File

@@ -1,8 +1,8 @@
# Classified Records Capabilities # Classified Records Capabilities
capability.group.classifiedRecords.title=Klassifiserte oppf\u00f8ringer capability.group.classifiedRecords.title=Klassifiserte oppf\u00f8ringer
capability.UpdateClassificationDates.title=Oppdater klassifiseringdatoer capability.UpdateClassificationDates.title=Oppdater klassifiseringdatoer
capability.CreateModifyDestroyClassificationGuides.title=Opprett Endre Destruer klassifiseringeveiledninger capability.CreateModifyDestroyClassificationGuides.title=Opprett Endre Destruer klassifiseringeveiledninger
capability.UpgradeDowngradeAndDeclassifyRecords.title=Oppgrader, last ned og deklassifiser oppf\u00f8ringer capability.UpgradeDowngradeAndDeclassifyRecords.title=Oppgrader, last ned og deklassifiser oppf\u00f8ringer
capability.UpdateExemptionCategories.title=Oppdater unntakskategorier capability.UpdateExemptionCategories.title=Oppdater unntakskategorier
capability.MapClassificationGuideMetadata.title=Koble klassifiseringsveiledning metadata capability.MapClassificationGuideMetadata.title=Koble klassifiseringsveiledning metadata
capability.CreateModifyDestroyTimeframes.title=Opprett Endre Destruer tidsrammer capability.CreateModifyDestroyTimeframes.title=Opprett Endre Destruer tidsrammer

View File

@@ -1,8 +1,8 @@
# Classified Records Capabilities # Classified Records Capabilities
capability.group.classifiedRecords.title=Niet geclassificeerde records capability.group.classifiedRecords.title=Niet geclassificeerde records
capability.UpdateClassificationDates.title=Classificatiedata bijwerken capability.UpdateClassificationDates.title=Classificatiedata bijwerken
capability.CreateModifyDestroyClassificationGuides.title=Classificatiegidsen maken aanpassen vernietigen capability.CreateModifyDestroyClassificationGuides.title=Classificatiegidsen maken aanpassen vernietigen
capability.UpgradeDowngradeAndDeclassifyRecords.title=Records upgraden, downgraden en declassificeren capability.UpgradeDowngradeAndDeclassifyRecords.title=Records upgraden, downgraden en declassificeren
capability.UpdateExemptionCategories.title=Uitzonderingscategorie\u00ebn bijwerken capability.UpdateExemptionCategories.title=Uitzonderingscategorie\u00ebn bijwerken
capability.MapClassificationGuideMetadata.title=Metagegevens classificatiegids toewijzen capability.MapClassificationGuideMetadata.title=Metagegevens classificatiegids toewijzen
capability.CreateModifyDestroyTimeframes.title=Tijdsperiodes maken aanpassen vernietigen capability.CreateModifyDestroyTimeframes.title=Tijdsperiodes maken aanpassen vernietigen

View File

@@ -1,8 +1,8 @@
# Classified Records Capabilities # Classified Records Capabilities
capability.group.classifiedRecords.title=Documentos arquiv\u00edsticos classificados capability.group.classifiedRecords.title=Documentos arquiv\u00edsticos classificados
capability.UpdateClassificationDates.title=Atualizar datas de classifica\u00e7\u00e3o capability.UpdateClassificationDates.title=Atualizar datas de classifica\u00e7\u00e3o
capability.CreateModifyDestroyClassificationGuides.title=Criar Modificar Destruir guias 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.UpgradeDowngradeAndDeclassifyRecords.title=Atualizar Downgrade e Desclassificar documentos arquiv\u00edsticos
capability.UpdateExemptionCategories.title=Atualizar categorias de isen\u00e7\u00e3o capability.UpdateExemptionCategories.title=Atualizar categorias de isen\u00e7\u00e3o
capability.MapClassificationGuideMetadata.title=Mapear metadados do guia de classifica\u00e7\u00e3o capability.MapClassificationGuideMetadata.title=Mapear metadados do guia de classifica\u00e7\u00e3o
capability.CreateModifyDestroyTimeframes.title=Criar Modificar Destruir per\u00edodos de tempo capability.CreateModifyDestroyTimeframes.title=Criar Modificar Destruir per\u00edodos de tempo

View File

@@ -1,8 +1,8 @@
# Classified Records Capabilities # 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.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.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.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.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.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.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 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

View File

@@ -1,8 +1,8 @@
# Classified Records Capabilities # Classified Records Capabilities
capability.group.classifiedRecords.title=\u5206\u7c7b\u7684\u8bb0\u5f55 capability.group.classifiedRecords.title=\u5206\u7c7b\u7684\u8bb0\u5f55
capability.UpdateClassificationDates.title=\u66f4\u65b0\u5206\u7c7b\u65e5\u671f capability.UpdateClassificationDates.title=\u66f4\u65b0\u5206\u7c7b\u65e5\u671f
capability.CreateModifyDestroyClassificationGuides.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u5206\u7c7b\u6307\u5357 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.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.UpdateExemptionCategories.title=\u66f4\u65b0\u8c41\u514d\u7c7b\u522b
capability.MapClassificationGuideMetadata.title=\u6620\u5c04\u5206\u7c7b\u6307\u5357\u5143\u6570\u636e 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 capability.CreateModifyDestroyTimeframes.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u65f6\u95f4\u8303\u56f4

View File

@@ -1,265 +1,265 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans> <beans>
<!-- extend node service security to report capability details on failure --> <!-- extend node service security to report capability details on failure -->
<bean id="rm.NodeService_security" abstract="true" class="org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityInterceptor"/> <bean id="rm.NodeService_security" abstract="true" class="org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityInterceptor"/>
<bean class="org.alfresco.util.BeanExtender"> <bean class="org.alfresco.util.BeanExtender">
<property name="beanName" value="NodeService_security" /> <property name="beanName" value="NodeService_security" />
<property name="extendingBeanName" value="rm.NodeService_security" /> <property name="extendingBeanName" value="rm.NodeService_security" />
</bean> </bean>
<!-- extended file folder bean definition --> <!-- extended file folder bean definition -->
<bean id="rm.fileFolderService" abstract="true" class="org.alfresco.repo.model.filefolder.ExtendedFileFolderServiceImpl"> <bean id="rm.fileFolderService" abstract="true" class="org.alfresco.repo.model.filefolder.ExtendedFileFolderServiceImpl">
<property name="recordService" ref="RecordService" /> <property name="recordService" ref="RecordService" />
</bean> </bean>
<bean class="org.alfresco.util.BeanExtender"> <bean class="org.alfresco.util.BeanExtender">
<property name="beanName" value="fileFolderService" /> <property name="beanName" value="fileFolderService" />
<property name="extendingBeanName" value="rm.fileFolderService" /> <property name="extendingBeanName" value="rm.fileFolderService" />
</bean> </bean>
<!-- extend file folder service security to report capability details on failure --> <!-- extend file folder service security to report capability details on failure -->
<bean id="rm.FileFolderService_security" abstract="true" class="org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityInterceptor"/> <bean id="rm.FileFolderService_security" abstract="true" class="org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityInterceptor"/>
<bean class="org.alfresco.util.BeanExtender"> <bean class="org.alfresco.util.BeanExtender">
<property name="beanName" value="FileFolderService_security" /> <property name="beanName" value="FileFolderService_security" />
<property name="extendingBeanName" value="rm.FileFolderService_security" /> <property name="extendingBeanName" value="rm.FileFolderService_security" />
</bean> </bean>
<!-- Extended permission service interface --> <!-- Extended permission service interface -->
<bean id="ExtendedPermissionService" class="org.springframework.aop.framework.ProxyFactoryBean"> <bean id="ExtendedPermissionService" class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="proxyInterfaces"> <property name="proxyInterfaces">
<value>org.alfresco.repo.security.permissions.impl.ExtendedPermissionService</value> <value>org.alfresco.repo.security.permissions.impl.ExtendedPermissionService</value>
</property> </property>
<property name="target"> <property name="target">
<ref bean="permissionServiceImpl"/> <ref bean="permissionServiceImpl"/>
</property> </property>
<property name="interceptorNames"> <property name="interceptorNames">
<list> <list>
<idref bean="PermissionService_transaction"/> <idref bean="PermissionService_transaction"/>
<idref bean="AuditMethodInterceptor"/> <idref bean="AuditMethodInterceptor"/>
<idref bean="exceptionTranslator"/> <idref bean="exceptionTranslator"/>
<idref bean="ExtendedPermissionService_security"/> <idref bean="ExtendedPermissionService_security"/>
</list> </list>
</property> </property>
</bean> </bean>
<!-- Extended permissions service security bean --> <!-- Extended permissions service security bean -->
<bean id="ExtendedPermissionService_security" class="org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityInterceptor"> <bean id="ExtendedPermissionService_security" class="org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityInterceptor">
<property name="authenticationManager"><ref bean="authenticationManager"/></property> <property name="authenticationManager"><ref bean="authenticationManager"/></property>
<property name="accessDecisionManager"><ref bean="accessDecisionManager"/></property> <property name="accessDecisionManager"><ref bean="accessDecisionManager"/></property>
<property name="afterInvocationManager"><ref bean="afterInvocationManager"/></property> <property name="afterInvocationManager"><ref bean="afterInvocationManager"/></property>
<property name="objectDefinitionSource"> <property name="objectDefinitionSource">
<value> <value>
org.alfresco.service.cmr.security.PermissionService.getOwnerAuthority=ACL_ALLOW org.alfresco.service.cmr.security.PermissionService.getOwnerAuthority=ACL_ALLOW
org.alfresco.service.cmr.security.PermissionService.getAllAuthorities=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.getAllPermission=ACL_ALLOW
org.alfresco.service.cmr.security.PermissionService.getPermissions=ACL_NODE.0.sys:base.ReadPermissions 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.getAllSetPermissions=ACL_NODE.0.sys:base.ReadPermissions
org.alfresco.service.cmr.security.PermissionService.getSettablePermissions=ACL_ALLOW org.alfresco.service.cmr.security.PermissionService.getSettablePermissions=ACL_ALLOW
org.alfresco.service.cmr.security.PermissionService.hasPermission=ACL_ALLOW org.alfresco.service.cmr.security.PermissionService.hasPermission=ACL_ALLOW
org.alfresco.service.cmr.security.PermissionService.getReaders=ACL_METHOD.ROLE_ADMINISTRATOR 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.getWriters=ACL_METHOD.ROLE_ADMINISTRATOR
org.alfresco.repo.security.permissions.impl.ExtendedPermissionService.getReadersAndWriters=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.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.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.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.setInheritParentPermissions=ACL_NODE.0.sys:base.ChangePermissions
org.alfresco.service.cmr.security.PermissionService.getInheritParentPermissions=ACL_ALLOW 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.clearPermission=ACL_NODE.0.sys:base.ChangePermissions
org.alfresco.service.cmr.security.PermissionService.*=ACL_DENY org.alfresco.service.cmr.security.PermissionService.*=ACL_DENY
</value> </value>
</property> </property>
</bean> </bean>
<!-- Writers permission cache --> <!-- Writers permission cache -->
<bean name="writersSharedCache" factory-bean="cacheFactory" factory-method="createCache"> <bean name="writersSharedCache" factory-bean="cacheFactory" factory-method="createCache">
<constructor-arg value="cache.writersSharedCache"/> <constructor-arg value="cache.writersSharedCache"/>
</bean> </bean>
<bean name="writersCache" class="org.alfresco.repo.cache.TransactionalCache"> <bean name="writersCache" class="org.alfresco.repo.cache.TransactionalCache">
<property name="sharedCache"> <property name="sharedCache">
<ref bean="writersSharedCache" /> <ref bean="writersSharedCache" />
</property> </property>
<property name="name"> <property name="name">
<value>org.alfresco.writersTransactionalCache</value> <value>org.alfresco.writersTransactionalCache</value>
</property> </property>
<property name="maxCacheSize" value="10000" /> <property name="maxCacheSize" value="10000" />
<property name="mutable" value="true" /> <property name="mutable" value="true" />
<property name="disableSharedCache" value="${system.cache.disableMutableSharedCaches}" /> <property name="disableSharedCache" value="${system.cache.disableMutableSharedCaches}" />
</bean> </bean>
<!-- Permission processor registry --> <!-- Permission processor registry -->
<bean id="permissionProcessorRegistry" class='org.alfresco.repo.security.permissions.processor.PermissionProcessorRegistry'/> <bean id="permissionProcessorRegistry" class='org.alfresco.repo.security.permissions.processor.PermissionProcessorRegistry'/>
<!-- Permission pre-processor base bean --> <!-- Permission pre-processor base bean -->
<bean id="parentPermissionPreProcessor" init-method="init" abstract="true"> <bean id="parentPermissionPreProcessor" init-method="init" abstract="true">
<property name="permissionProcessorRegistry" ref="permissionProcessorRegistry"/> <property name="permissionProcessorRegistry" ref="permissionProcessorRegistry"/>
</bean> </bean>
<!-- Permission post-processor base bean --> <!-- Permission post-processor base bean -->
<bean id="parentPermissionPostProcessor" init-method="init" abstract="true"> <bean id="parentPermissionPostProcessor" init-method="init" abstract="true">
<property name="permissionProcessorRegistry" ref="permissionProcessorRegistry"/> <property name="permissionProcessorRegistry" ref="permissionProcessorRegistry"/>
</bean> </bean>
<!-- Extended permission service implementation bean --> <!-- Extended permission service implementation bean -->
<bean id="rm.permissionServiceImpl" abstract="true" class="org.alfresco.repo.security.permissions.impl.ExtendedPermissionServiceImpl"> <bean id="rm.permissionServiceImpl" abstract="true" class="org.alfresco.repo.security.permissions.impl.ExtendedPermissionServiceImpl">
<property name="writersCache" ref="writersCache"/> <property name="writersCache" ref="writersCache"/>
<property name="filePlanService" ref="filePlanService" /> <property name="filePlanService" ref="filePlanService" />
<property name="permissionProcessorRegistry" ref="permissionProcessorRegistry"/> <property name="permissionProcessorRegistry" ref="permissionProcessorRegistry"/>
<property name="dynamicAuthorities"> <property name="dynamicAuthorities">
<list> <list>
<ref bean="ownerDynamicAuthority" /> <ref bean="ownerDynamicAuthority" />
<ref bean="lockOwnerDynamicAuthority" /> <ref bean="lockOwnerDynamicAuthority" />
<ref bean="extendedWriterDynamicAuthority" /> <ref bean="extendedWriterDynamicAuthority" />
<ref bean="extendedReaderDynamicAuthority" /> <ref bean="extendedReaderDynamicAuthority" />
</list> </list>
</property> </property>
</bean> </bean>
<bean class="org.alfresco.util.BeanExtender"> <bean class="org.alfresco.util.BeanExtender">
<property name="beanName" value="permissionServiceImpl"/> <property name="beanName" value="permissionServiceImpl"/>
<property name="extendingBeanName" value="rm.permissionServiceImpl"/> <property name="extendingBeanName" value="rm.permissionServiceImpl"/>
</bean> </bean>
<!-- In-place reader and writer dynamic authorites --> <!-- In-place reader and writer dynamic authorites -->
<bean id="extendedReaderDynamicAuthority" class="org.alfresco.module.org_alfresco_module_rm.security.ExtendedReaderDynamicAuthority" /> <bean id="extendedReaderDynamicAuthority" class="org.alfresco.module.org_alfresco_module_rm.security.ExtendedReaderDynamicAuthority" />
<bean id="extendedWriterDynamicAuthority" class="org.alfresco.module.org_alfresco_module_rm.security.ExtendedWriterDynamicAuthority" /> <bean id="extendedWriterDynamicAuthority" class="org.alfresco.module.org_alfresco_module_rm.security.ExtendedWriterDynamicAuthority" />
<!-- Action Service --> <!-- Action Service -->
<bean id="actionService" class="org.alfresco.repo.action.ExtendedActionServiceImpl" init-method="init"> <bean id="actionService" class="org.alfresco.repo.action.ExtendedActionServiceImpl" init-method="init">
<property name="filePlanService" ref="FilePlanService" /> <property name="filePlanService" ref="FilePlanService" />
<property name="policyComponent"> <property name="policyComponent">
<ref bean="policyComponent" /> <ref bean="policyComponent" />
</property> </property>
<property name="nodeService"> <property name="nodeService">
<ref bean="NodeService" /> <ref bean="NodeService" />
</property> </property>
<property name="searchService"> <property name="searchService">
<ref bean="ADMSearchService" /> <ref bean="ADMSearchService" />
</property> </property>
<property name="authenticationContext"> <property name="authenticationContext">
<ref bean="authenticationContext" /> <ref bean="authenticationContext" />
</property> </property>
<property name="actionTrackingService"> <property name="actionTrackingService">
<ref bean="actionTrackingService" /> <ref bean="actionTrackingService" />
</property> </property>
<property name="dictionaryService"> <property name="dictionaryService">
<ref bean="DictionaryService" /> <ref bean="DictionaryService" />
</property> </property>
<property name="monitor"> <property name="monitor">
<ref bean="actionServiceMonitor"/> <ref bean="actionServiceMonitor"/>
</property> </property>
<property name="asynchronousActionExecutionQueues"> <property name="asynchronousActionExecutionQueues">
<map> <map>
<!-- This is the default async queue --> <!-- This is the default async queue -->
<entry key=""> <entry key="">
<ref bean="defaultAsynchronousActionExecutionQueue"/> <ref bean="defaultAsynchronousActionExecutionQueue"/>
</entry> </entry>
<entry key="deployment"> <entry key="deployment">
<ref bean="deploymentAsynchronousActionExecutionQueue"/> <ref bean="deploymentAsynchronousActionExecutionQueue"/>
</entry> </entry>
</map> </map>
</property> </property>
</bean> </bean>
<bean id="parameterProcessorComponent" class="org.alfresco.repo.action.parameter.ParameterProcessorComponent"/> <bean id="parameterProcessorComponent" class="org.alfresco.repo.action.parameter.ParameterProcessorComponent"/>
<bean id="baseParamenterProcessor" abstract="true" init-method="init"> <bean id="baseParamenterProcessor" abstract="true" init-method="init">
<property name="parameterProcessorComponent" ref="parameterProcessorComponent"/> <property name="parameterProcessorComponent" ref="parameterProcessorComponent"/>
</bean> </bean>
<bean id="nodeParameterProcessor" parent="baseParamenterProcessor" class="org.alfresco.repo.action.parameter.NodeParameterProcessor" > <bean id="nodeParameterProcessor" parent="baseParamenterProcessor" class="org.alfresco.repo.action.parameter.NodeParameterProcessor" >
<property name="name" value="node" /> <property name="name" value="node" />
<property name="nodeService" ref="NodeService" /> <property name="nodeService" ref="NodeService" />
<property name="dictionaryService" ref="DictionaryService" /> <property name="dictionaryService" ref="DictionaryService" />
<property name="namespaceService" ref="NamespaceService" /> <property name="namespaceService" ref="NamespaceService" />
<property name="recordsManagementAdminService" ref="recordsManagementAdminService" /> <property name="recordsManagementAdminService" ref="recordsManagementAdminService" />
<property name="maximumNumberSuggestions"> <property name="maximumNumberSuggestions">
<value>${rm.autocompletesuggestion.maxsuggestions.node}</value> <value>${rm.autocompletesuggestion.maxsuggestions.node}</value>
</property> </property>
</bean> </bean>
<!-- Bootstrap node parameter processor --> <!-- Bootstrap node parameter processor -->
<bean id="nodeParameterSuggesterBootstrap" class="org.alfresco.repo.action.parameter.NodeParameterSuggesterBootstrap" > <bean id="nodeParameterSuggesterBootstrap" class="org.alfresco.repo.action.parameter.NodeParameterSuggesterBootstrap" >
<property name="namespaceService" ref="namespaceService"/> <property name="namespaceService" ref="namespaceService"/>
<property name="nodeParameterProcessor" ref="nodeParameterProcessor"/> <property name="nodeParameterProcessor" ref="nodeParameterProcessor"/>
<property name="nodeParameterProcessorAspects"> <property name="nodeParameterProcessorAspects">
<value>${rm.autocompletesuggestion.nodeParameterSuggester.aspectsAndTypes}</value> <value>${rm.autocompletesuggestion.nodeParameterSuggester.aspectsAndTypes}</value>
</property> </property>
</bean> </bean>
<bean id="dateParameterProcessor" parent="baseParamenterProcessor" class="org.alfresco.repo.action.parameter.DateParameterProcessor"> <bean id="dateParameterProcessor" parent="baseParamenterProcessor" class="org.alfresco.repo.action.parameter.DateParameterProcessor">
<property name="name" value="date" /> <property name="name" value="date" />
<property name="maximumNumberSuggestions"> <property name="maximumNumberSuggestions">
<value>${rm.autocompletesuggestion.maxsuggestions.date}</value> <value>${rm.autocompletesuggestion.maxsuggestions.date}</value>
</property> </property>
</bean> </bean>
<bean id="messageParameterProcessor" parent="baseParamenterProcessor" class="org.alfresco.repo.action.parameter.MessageParameterProcessor"> <bean id="messageParameterProcessor" parent="baseParamenterProcessor" class="org.alfresco.repo.action.parameter.MessageParameterProcessor">
<property name="name" value="message" /> <property name="name" value="message" />
</bean> </bean>
<!-- Rule Service --> <!-- Rule Service -->
<bean id="ruleService" class="org.alfresco.repo.rule.ExtendedRuleServiceImpl" init-method="init"> <bean id="ruleService" class="org.alfresco.repo.rule.ExtendedRuleServiceImpl" init-method="init">
<property name="nodeService" ref="NodeService"/> <property name="nodeService" ref="NodeService"/>
<property name="nodeService2" ref="NodeService"/> <property name="nodeService2" ref="NodeService"/>
<property name="runtimeNodeService" ref="nodeService"/> <property name="runtimeNodeService" ref="nodeService"/>
<property name="copyService" ref="copyService"/> <property name="copyService" ref="copyService"/>
<property name="actionService" ref="ActionService"/> <property name="actionService" ref="ActionService"/>
<property name="runtimeActionService" ref="actionService"/> <property name="runtimeActionService" ref="actionService"/>
<property name="dictionaryService" ref="dictionaryService"/> <property name="dictionaryService" ref="dictionaryService"/>
<property name="policyComponent" ref="policyComponent"/> <property name="policyComponent" ref="policyComponent"/>
<property name="permissionService" ref="permissionService"/> <property name="permissionService" ref="permissionService"/>
<property name="nodeRulesCache" ref="nodeRulesCache"/> <property name="nodeRulesCache" ref="nodeRulesCache"/>
<property name="rulesDisabled"> <property name="rulesDisabled">
<value>false</value> <value>false</value>
</property> </property>
<!-- Since RM 2.1 --> <!-- Since RM 2.1 -->
<property name="filePlanService" ref="FilePlanService" /> <property name="filePlanService" ref="FilePlanService" />
<property name="runAsAdmin"> <property name="runAsAdmin">
<value>${rm.rule.runasadmin}</value> <value>${rm.rule.runasadmin}</value>
</property> </property>
<property name="recordService" ref="RecordService" /> <property name="recordService" ref="RecordService" />
</bean> </bean>
<bean id="FormService_security" class="org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityInterceptor"> <bean id="FormService_security" class="org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityInterceptor">
<property name="authenticationManager"><ref bean="authenticationManager"/></property> <property name="authenticationManager"><ref bean="authenticationManager"/></property>
<property name="accessDecisionManager"><ref bean="accessDecisionManager"/></property> <property name="accessDecisionManager"><ref bean="accessDecisionManager"/></property>
<property name="afterInvocationManager"><ref bean="afterInvocationManager"/></property> <property name="afterInvocationManager"><ref bean="afterInvocationManager"/></property>
<property name="objectDefinitionSource"> <property name="objectDefinitionSource">
<value> <value>
org.alfresco.repo.forms.FormService.getForm=ACL_ALLOW org.alfresco.repo.forms.FormService.getForm=ACL_ALLOW
org.alfresco.repo.forms.FormService.saveForm=ACL_ALLOW org.alfresco.repo.forms.FormService.saveForm=ACL_ALLOW
org.alfresco.repo.forms.FormService.*=ACL_DENY org.alfresco.repo.forms.FormService.*=ACL_DENY
</value> </value>
</property> </property>
</bean> </bean>
<bean id="searchScript" parent="baseJavaScriptExtension" class="org.alfresco.repo.jscript.ExtendedSearch"> <bean id="searchScript" parent="baseJavaScriptExtension" class="org.alfresco.repo.jscript.ExtendedSearch">
<property name="extensionName"> <property name="extensionName">
<value>search</value> <value>search</value>
</property> </property>
<property name="searchSubsystemSwitchableApplicationContextFactory"> <property name="searchSubsystemSwitchableApplicationContextFactory">
<ref bean="Search" /> <ref bean="Search" />
</property> </property>
<property name="serviceRegistry"> <property name="serviceRegistry">
<ref bean="ServiceRegistry"/> <ref bean="ServiceRegistry"/>
</property> </property>
<property name="repositoryHelper"> <property name="repositoryHelper">
<ref bean="repositoryHelper"/> <ref bean="repositoryHelper"/>
</property> </property>
<property name="storeUrl"> <property name="storeUrl">
<value>${spaces.store}</value> <value>${spaces.store}</value>
</property> </property>
</bean> </bean>
<bean id="on-delete-child-association-trigger" class="org.alfresco.repo.rule.ruletrigger.ExtendedBeforeDeleteChildAssociationRuleTrigger" parent="rule-trigger-base"> <bean id="on-delete-child-association-trigger" class="org.alfresco.repo.rule.ruletrigger.ExtendedBeforeDeleteChildAssociationRuleTrigger" parent="rule-trigger-base">
<property name="executeRuleImmediately"> <property name="executeRuleImmediately">
<value>true</value> <value>true</value>
</property> </property>
</bean> </bean>
</beans> </beans>

View File

@@ -1,59 +1,59 @@
# #
# Warnings # Warnings
# #
log4j.logger.org.alfresco.module.org_alfresco_module_rm.caveat=warn log4j.logger.org.alfresco.module.org_alfresco_module_rm.caveat=warn
log4j.logger.org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityPostProcessor=warn log4j.logger.org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityPostProcessor=warn
# #
# Module patches # Module patches
# #
log4j.logger.org.alfresco.module.org_alfresco_module_rm.patch=info 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 # Set to 'debug' to see details of capability failures when AccessDenied is thrown. May be
# removed to enhance performance. # removed to enhance performance.
# #
log4j.logger.org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityInterceptor=debug log4j.logger.org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityInterceptor=debug
# #
# RM permission 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.RMEntryVoter=debug
#log4j.logger.org.alfresco.module.org_alfresco_module_rm.capability.RMAfterInvocationProvider=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 #log4j.logger.org.alfresco.module.org_alfresco_module_rm.capability.declarative=debug
# #
# RM Audit service debug # RM Audit service debug
# #
#log4j.logger.org.alfresco.module.org_alfresco_module_rm.audit.RecordsManagementAuditService=debug #log4j.logger.org.alfresco.module.org_alfresco_module_rm.audit.RecordsManagementAuditService=debug
# #
# Job debug # Job debug
# #
#log4j.logger.org.alfresco.module.org_alfresco_module_rm.job=debug #log4j.logger.org.alfresco.module.org_alfresco_module_rm.job=debug
# #
# Script logging level # Script logging level
# #
log4j.logger.org.alfresco.repo.jscript.ScriptLogger=error log4j.logger.org.alfresco.repo.jscript.ScriptLogger=error
# #
# Behaviour debug # Behaviour debug
# #
log4j.logger.org.alfresco.repo.policy.annotation.AnnotatedBehaviourPostProcessor=info log4j.logger.org.alfresco.repo.policy.annotation.AnnotatedBehaviourPostProcessor=info
log4j.logger.org.alfresco.module.org_alfresco_module_rm.behaviour.BaseBehaviourBean=info log4j.logger.org.alfresco.module.org_alfresco_module_rm.behaviour.BaseBehaviourBean=info
# #
# Patch debug # Patch debug
# #
log4j.logger.org.alfresco.module.org_alfresco_module_rm.patch=info log4j.logger.org.alfresco.module.org_alfresco_module_rm.patch=info
# #
# RM Audit service debug # RM Audit service debug
# #
#log4j.logger.org.alfresco.module.org_alfresco_module_rm.audit.RecordsManagementAuditService=debug #log4j.logger.org.alfresco.module.org_alfresco_module_rm.audit.RecordsManagementAuditService=debug
# #
# Job debug # Job debug
# #
#log4j.logger.org.alfresco.module.org_alfresco_module_rm.job=debug #log4j.logger.org.alfresco.module.org_alfresco_module_rm.job=debug
log4j.logger.org.alfresco.repo.web.scripts.roles.DynamicAuthoritiesGet=info log4j.logger.org.alfresco.repo.web.scripts.roles.DynamicAuthoritiesGet=info

View File

@@ -1,42 +1,42 @@
rm.action.not-defined=The records management action {0} hasn't been defined. 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.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.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.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-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.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-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.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.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-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.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.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.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.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.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.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.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.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.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-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.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.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.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-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.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.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.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.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-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-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.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-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.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.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.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.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.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.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.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.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.record-folder-create=You can't create a record folder in another record folder.

View File

@@ -1,42 +1,42 @@
rm.action.not-defined=Die Records Management Aktion {0} wurde nicht definiert. 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.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.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.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-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.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-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.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.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-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.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.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.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.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.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.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.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.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.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-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.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.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.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-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.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.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.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.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-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-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.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-already-transfer=Datei, Ordner oder Kategorie wird bereits \u00fcbertragen.
rm.action.node-not-transfer=Datei, Ordner oder Kategorie ist kein \u00dcbertragungsobjekt. 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.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.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.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.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.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.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.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.record-folder-create=Ein Record-Ordner kann nicht in einem anderen Record-Ordner erstellt werden.

View File

@@ -1,42 +1,42 @@
rm.action.not-defined=No se ha definido la acci\u00f3n de Records Management ''{0}''. 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.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.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.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-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.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-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.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.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-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.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.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.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.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.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.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.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.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.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-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.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.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.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-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.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.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.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.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-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-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.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-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.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.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.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.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.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.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.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.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.record-folder-create=No puede crear una carpeta de documentos de archivo en otra carpeta de documentos de archivo.

View File

@@ -1,42 +1,42 @@
rm.action.not-defined=L''action de gestion des archives {0} n''a pas \u00e9t\u00e9 d\u00e9finie. 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.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.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.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-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.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-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.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.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-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.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.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.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.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.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.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.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.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.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-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.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.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.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-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.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.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.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.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-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-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.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-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.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.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.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.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.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.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.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.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.record-folder-create=Impossible de cr\u00e9er un dossier d'archives dans un autre dossier d'archives.

View File

@@ -1,42 +1,42 @@
rm.action.not-defined=L''azione di gestione dei record {0} non \u00e8 stata definita. 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.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.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.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-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.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-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.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.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-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.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.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.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.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.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.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.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.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.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-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.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.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.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-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.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.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.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.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-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-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.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-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.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.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.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.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.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.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.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.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.record-folder-create=Impossibile creare una cartella di record in un'altra cartella di record.

View File

@@ -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.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.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.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.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-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.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-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.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.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-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.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.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.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.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.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.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.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.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.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-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.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.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.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-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.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.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.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.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-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-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.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-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.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.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.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.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.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.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.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.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.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

View File

@@ -1,42 +1,42 @@
rm.action.not-defined=Oppf\u00f8ringsh\u00e5ndteringshandlingen {0} er ikke definert. 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.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.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.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-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.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-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.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.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-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.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.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.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.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.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.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.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.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.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-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.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.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.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-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.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.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.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.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-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-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.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-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.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.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.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.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.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.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.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.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.record-folder-create=En oppf\u00f8ringsmappen kan ikke opprettes i en annen oppf\u00f8ringsmappe.

View File

@@ -1,42 +1,42 @@
rm.action.not-defined=De Records Management-actie {0} is niet gedefinieerd. 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.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.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.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-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.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-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.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.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-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.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.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.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.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.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.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.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.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.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-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.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.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.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-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.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.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.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.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-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-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.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-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.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.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.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.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.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.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.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.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.record-folder-create=U kunt geen archiefmap in een andere archiefmap maken.

View File

@@ -1,42 +1,42 @@
rm.action.not-defined=A a\u00e7\u00e3o {0} do Records Management n\u00e3o foi definida. 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.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.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.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-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.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-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.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.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-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.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.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.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.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.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.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.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.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.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-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.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.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.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-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.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.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.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.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-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-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.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-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.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.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.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.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.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.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.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.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.record-folder-create=N\u00e3o \u00e9 poss\u00edvel criar uma pasta de documento arquiv\u00edstico em outra pasta de documento arquiv\u00edstico.

View File

@@ -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.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.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.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.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-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.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-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.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.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-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.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.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.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.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.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.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.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.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.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-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.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.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.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-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.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.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.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.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-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-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.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-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.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.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.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.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.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.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.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.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.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.

View File

@@ -1,42 +1,42 @@
rm.action.not-defined=\u5c1a\u672a\u5b9a\u4e49\u8bb0\u5f55\u7ba1\u7406\u64cd\u4f5c {0}\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.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.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.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-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.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-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.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.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-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.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.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.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.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.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.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.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.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.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-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.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.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.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-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.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.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.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.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-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-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.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-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.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.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.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.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.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.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.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.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.record-folder-create=\u60a8\u65e0\u6cd5\u5728\u53e6\u4e00\u4e2a\u8bb0\u5f55\u6587\u4ef6\u5939\u4e2d\u521b\u5efa\u8bb0\u5f55\u6587\u4ef6\u5939\u3002

View File

@@ -1,211 +1,211 @@
# #
# i18n for Records Management Action Conditions # i18n for Records Management Action Conditions
# #
# Are classified # Are classified
isClassified.title=Classified by Retention Schedule isClassified.title=Classified by Retention Schedule
isClassified.description=Records or record folders been classified by a retention schedule isClassified.description=Records or record folders been classified by a retention schedule
# Are cutoff # Are cutoff
isCutoff.title=Cut Off isCutoff.title=Cut Off
isCutoff.description=Records or record folders are cut off isCutoff.description=Records or record folders are cut off
# Are declared # Are declared
isDeclared.title=Record Completed isDeclared.title=Record Completed
isDeclared.description=Record is complete isDeclared.description=Record is complete
# Is on hold # Is on hold
isFrozen.title=On Hold isFrozen.title=On Hold
isFrozen.description=Record or record folder on hold isFrozen.description=Record or record folder on hold
# Are filed # Are filed
isRecordFiled.title=Record Filed isRecordFiled.title=Record Filed
isRecordFiled.description=Record is filed isRecordFiled.description=Record is filed
# Are closed record folders # Are closed record folders
isRecordFolderClosed.title=Record Folder Closed isRecordFolderClosed.title=Record Folder Closed
isRecordFolderClosed.description=Record folder is closed isRecordFolderClosed.description=Record folder is closed
# Are vital # Are vital
isVital.title=Vital Record isVital.title=Vital Record
isVital.description=Record or record folder is a vital record isVital.description=Record or record folder is a vital record
# Have Rentention Action # Have Rentention Action
hasDispositionAction.title=Has Retention Action hasDispositionAction.title=Has Retention Action
hasDispositionAction.description=Records and folders have the specified associated retention action at the specified relative position hasDispositionAction.description=Records and folders have the specified associated retention action at the specified relative position
# Are kind # Are kind
isKind.title=Type of Records Management Item isKind.title=Type of Records Management Item
isKind.description=Items are a file plan component kind isKind.description=Items are a file plan component kind
isKind.kind.display-label=Kind isKind.kind.display-label=Kind
# Are Record Type # Are Record Type
isRecordType.title=Has Record Type isRecordType.title=Has Record Type
isRecordType.description=Records have a specified record type isRecordType.description=Records have a specified record type
# #
# i18n for Records Management Actions # i18n for Records Management Actions
# #
# Declare As Record # Declare As Record
create-record.title=Declare as Record create-record.title=Declare as Record
create-record.description=Declares file as a record create-record.description=Declares file as a record
create-record.file-plan.display-label=File Plan create-record.file-plan.display-label=File Plan
create-record.hide-record.display-label=Hide Record create-record.hide-record.display-label=Hide Record
# Declare As Version Record # Declare As Version Record
declare-as-version-record.title=Declare Version as 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.description=Declares this version of the file as a record
declare-as-version-record.file-plan.display-label=File Plan declare-as-version-record.file-plan.display-label=File Plan
# Complete record # Complete record
declareRecord.title=Complete Record declareRecord.title=Complete Record
declareRecord.description=Completes a record declareRecord.description=Completes a record
# Reopens record # Reopens record
undeclareRecord.title=Reopen Record undeclareRecord.title=Reopen Record
undeclareRecord.description=Reopens a record undeclareRecord.description=Reopens a record
# Open record folder # Open record folder
openRecordFolder.title=Open Record Folder openRecordFolder.title=Open Record Folder
openRecordFolder.description=Opens a record folder openRecordFolder.description=Opens a record folder
# Close record folder # Close record folder
closeRecordFolder.title=Close Record Folder closeRecordFolder.title=Close Record Folder
closeRecordFolder.description=Closes a Record Folder closeRecordFolder.description=Closes a Record Folder
# Complete event # Complete event
completeEvent.title=Complete Event completeEvent.title=Complete Event
completeEvent.description=Completes an event completeEvent.description=Completes an event
completeEvent.eventName.display-label=Event completeEvent.eventName.display-label=Event
# Freeze # Freeze
freeze.title=Freeze freeze.title=Freeze
freeze.description=Freezes a record freeze.description=Freezes a record
freeze.reason.display-label=Reason freeze.reason.display-label=Reason
# Unfreeze # Unfreeze
unfreeze.title=Unfreeze unfreeze.title=Unfreeze
unfreeze.description=Unfreezes a record unfreeze.description=Unfreezes a record
# File to # File to
fileTo.title=File to fileTo.title=File to
fileTo.description=Files a record to the specified record folder fileTo.description=Files a record to the specified record folder
fileTo.path.display-label=Path to Record Folder fileTo.path.display-label=Path to Record Folder
fileTo.createRecordPath.display-label=Create Record Path fileTo.createRecordPath.display-label=Create Record Path
# Copy to # Copy to
copyTo.title=Copy to copyTo.title=Copy to
copyTo.description=Copies a record to the specified record folder copyTo.description=Copies a record to the specified record folder
copyTo.path.display-label=Path to Record Folder copyTo.path.display-label=Path to Record Folder
copyTo.createRecordPath.display-label=Create Record Path copyTo.createRecordPath.display-label=Create Record Path
# Move to # Move to
moveTo.title=Move to moveTo.title=Move to
moveTo.description=Moves a record to the specified record folder moveTo.description=Moves a record to the specified record folder
moveTo.path.display-label=Path to Record Folder moveTo.path.display-label=Path to Record Folder
moveTo.createRecordPath.display-label=Create Record Path moveTo.createRecordPath.display-label=Create Record Path
# Link to # Link to
linkTo.title=Link to linkTo.title=Link to
linkTo.description=Links a record to the specified record folder linkTo.description=Links a record to the specified record folder
linkTo.path.display-label=Path to Record Folder linkTo.path.display-label=Path to Record Folder
linkTo.createRecordPath.display-label=Create Record Path linkTo.createRecordPath.display-label=Create Record Path
# Reject # Reject
reject.title=Reject reject.title=Reject
reject.description=Rejects a record and moves the file to its original location reject.description=Rejects a record and moves the file to its original location
reject.reason.display-label=Reject Reason reject.reason.display-label=Reject Reason
# Request Information # Request Information
requestInfo.title=Request Information requestInfo.title=Request Information
requestInfo.description=Starts a workflow for requesting more information for a record requestInfo.description=Starts a workflow for requesting more information for a record
# Execute script # Execute script
executeScript.title=Execute Script executeScript.title=Execute Script
executeScript.description=Execute a script executeScript.description=Execute a script
executeScript.script-ref.display-label=Script executeScript.script-ref.display-label=Script
# Send Email # Send Email
sendEmail.title=Send Email sendEmail.title=Send Email
sendEmail.description=Send an email sendEmail.description=Send an email
# Set Property # Set Property
setPropertyValue.title=Set Property Value setPropertyValue.title=Set Property Value
setPropertyValue.description=Set a property value setPropertyValue.description=Set a property value
# Edit Hold Reason # Edit Hold Reason
editHoldReason.title=Edit Hold Reason editHoldReason.title=Edit Hold Reason
editHoldReason.description=Edit the hold reason editHoldReason.description=Edit the hold reason
# Relinquish Hold # Relinquish Hold
relinquishHold.title=Relinquish Hold relinquishHold.title=Relinquish Hold
relinquishHold.description=Relinquish the hold relinquishHold.description=Relinquish the hold
# Edit Review As Of Date # Edit Review As Of Date
editReviewAsOfDate.title=Edit Review As Of Date editReviewAsOfDate.title=Edit Review As Of Date
editReviewAsOfDate.description=Edit review as of date editReviewAsOfDate.description=Edit review as of date
# Edit Disposition Action As Of Date # Edit Disposition Action As Of Date
editDispositionActionAsOfDate.title=Edit Retention Action As Of Date editDispositionActionAsOfDate.title=Edit Retention Action As Of Date
editDispositionActionAsOfDate.description=Edit the retention action as of date editDispositionActionAsOfDate.description=Edit the retention action as of date
# Broadcast Vital Record Definition # Broadcast Vital Record Definition
broadcastVitalRecordDefinition.title=Broadcast Vital Record Definition broadcastVitalRecordDefinition.title=Broadcast Vital Record Definition
broadcastVitalRecordDefinition.description=Broadcast the vital record definition broadcastVitalRecordDefinition.description=Broadcast the vital record definition
# Broadcast Disposition Action Definition Update # Broadcast Disposition Action Definition Update
broadcastDispositionActionDefinitionUpdate.title=Broadcast Retention Action Definition Update broadcastDispositionActionDefinitionUpdate.title=Broadcast Retention Action Definition Update
broadcastDispositionActionDefinitionUpdate.description=Broadcast retention action definition update broadcastDispositionActionDefinitionUpdate.description=Broadcast retention action definition update
# Undo Event # Undo Event
undoEvent.title=Undo Event undoEvent.title=Undo Event
undoEvent.description=Undo event undoEvent.description=Undo event
# Transfer Complete # Transfer Complete
transferComplete.title=Transfer Complete transferComplete.title=Transfer Complete
transferComplete.description=Transfer complete transferComplete.description=Transfer complete
# Accession Complete # Accession Complete
accessionComplete.title=Accession Complete accessionComplete.title=Accession Complete
accessionComplete.description=Accession complete accessionComplete.description=Accession complete
# Split Email # Split Email
splitEmail.title=Split Email splitEmail.title=Split Email
splitEmail.description=Split email splitEmail.description=Split email
# Create Rentention Schedule # Create Rentention Schedule
createDispositionSchedule.title=Create Retention Schedule createDispositionSchedule.title=Create Retention Schedule
createDispositionSchedule.description=Create retention schedule createDispositionSchedule.description=Create retention schedule
# File Destruction Report # File Destruction Report
fileDestructionReport.title=File Destruction Report fileDestructionReport.title=File Destruction Report
fileDestructionReport.description=File destruction report fileDestructionReport.description=File destruction report
# Cut off # Cut off
cutoff.title=Cut Off cutoff.title=Cut Off
cutoff.description=Cut off cutoff.description=Cut off
# Destroy # Destroy
destroy.title=Destroy destroy.title=Destroy
destroy.description=Destroy destroy.description=Destroy
# Reviewed # Reviewed
reviewed.title=Reviewed reviewed.title=Reviewed
reviewed.description=Reviewed reviewed.description=Reviewed
# Hide Record # Hide Record
hide-record.title=Hide Record hide-record.title=Hide Record
hide-record.description=Hide record hide-record.description=Hide record
# Transfer # Transfer
transfer.title=Transfer transfer.title=Transfer
transfer.description=Transfer transfer.description=Transfer
# Uncut off # Uncut off
unCutoff.title=Undo Cut Off unCutoff.title=Undo Cut Off
unCutoff.description=Undo cut off unCutoff.description=Undo cut off
# Accession # Accession
accession.title=Accession accession.title=Accession
accession.description=Accession accession.description=Accession
# Retain # Retain
retain.title=Retain retain.title=Retain
retain.description=Retain retain.description=Retain
# Add Record Types # Add Record Types
addRecordTypes.title=Add Record Types addRecordTypes.title=Add Record Types
addRecordTypes.description=Adds the selected type(s) to the record addRecordTypes.description=Adds the selected type(s) to the record
# File report # File report
fileReport.title=File Report fileReport.title=File Report
fileReport.description=File report fileReport.description=File report
# Delete Hold # Delete Hold
deleteHold.title=Delete Hold deleteHold.title=Delete Hold
deleteHold.description=Delete hold deleteHold.description=Delete hold
# Move DM record # Move DM record
move-dm-record.title=Move Record move-dm-record.title=Move Record
move-dm-record.description=Move record move-dm-record.description=Move record
# Unlink from # Unlink from
unlinkFrom.title=Unlink from unlinkFrom.title=Unlink from
unlinkFrom.description=Unlink from unlinkFrom.description=Unlink from
# Recordable version config # Recordable version config
recordable-version-config.title=Auto-Declare Options recordable-version-config.title=Auto-Declare Options
recordable-version-config.description=Auto-Declare Options recordable-version-config.description=Auto-Declare Options
recordable-version-config.version.display-label=Automatically declare versions as records recordable-version-config.version.display-label=Automatically declare versions as records
# Action parameter constraints # Action parameter constraints
rm-ac-is-kind-kinds.record_category=Record Category rm-ac-is-kind-kinds.record_category=Record Category
rm-ac-is-kind-kinds.record_folder=Record Folder rm-ac-is-kind-kinds.record_folder=Record Folder
rm-ac-is-kind-kinds.record=Record rm-ac-is-kind-kinds.record=Record
rm-ac-disposition-action-relative-positions.next=Next rm-ac-disposition-action-relative-positions.next=Next
rm-ac-disposition-action-relative-positions.previous=Previous rm-ac-disposition-action-relative-positions.previous=Previous
rm-ac-disposition-action-relative-positions.any=Any rm-ac-disposition-action-relative-positions.any=Any
ac-versions.none=Never ac-versions.none=Never
ac-versions.major_only=For major versions only ac-versions.major_only=For major versions only
ac-versions.all=For all major and minor versions ac-versions.all=For all major and minor versions

View File

@@ -1,211 +1,211 @@
# #
# i18n for Records Management Action Conditions # i18n for Records Management Action Conditions
# #
# Are classified # Are classified
isClassified.title=Nach Aufbewahrungsplan klassifiziert isClassified.title=Nach Aufbewahrungsplan klassifiziert
isClassified.description=Records oder Record-Ordner wurden nach einem Aufbewahrungsplan klassifiziert. isClassified.description=Records oder Record-Ordner wurden nach einem Aufbewahrungsplan klassifiziert.
# Are cutoff # Are cutoff
isCutoff.title=Trennen isCutoff.title=Trennen
isCutoff.description=Records oder Record-Ordner sind getrennt. isCutoff.description=Records oder Record-Ordner sind getrennt.
# Are declared # Are declared
isDeclared.title=Record abgeschlossen isDeclared.title=Record abgeschlossen
isDeclared.description=Record ist abgeschlossen. isDeclared.description=Record ist abgeschlossen.
# Is on hold # Is on hold
isFrozen.title=Gesperrt isFrozen.title=Gesperrt
isFrozen.description=Record oder Record-Ordner ist gesperrt. isFrozen.description=Record oder Record-Ordner ist gesperrt.
# Are filed # Are filed
isRecordFiled.title=Record abgelegt isRecordFiled.title=Record abgelegt
isRecordFiled.description=Record ist angelegt. isRecordFiled.description=Record ist angelegt.
# Are closed record folders # Are closed record folders
isRecordFolderClosed.title=Record-Ordner geschlossen isRecordFolderClosed.title=Record-Ordner geschlossen
isRecordFolderClosed.description=Record-Ordner ist geschlossen. isRecordFolderClosed.description=Record-Ordner ist geschlossen.
# Are vital # Are vital
isVital.title=Besonders relevanter Record isVital.title=Besonders relevanter Record
isVital.description=Record oder Record-Ordner ist ein besonders relevanter Record. isVital.description=Record oder Record-Ordner ist ein besonders relevanter Record.
# Have Rentention Action # Have Rentention Action
hasDispositionAction.title=Hat Aufbewahrungsaktion hasDispositionAction.title=Hat Aufbewahrungsaktion
hasDispositionAction.description=Records und Ordner verf\u00fcgen \u00fcber die angegebene zugeordnete Aufbewahrungsaktion an der angegebenen relativen Position. hasDispositionAction.description=Records und Ordner verf\u00fcgen \u00fcber die angegebene zugeordnete Aufbewahrungsaktion an der angegebenen relativen Position.
# Are kind # Are kind
isKind.title=Typ des Records Management Elements isKind.title=Typ des Records Management Elements
isKind.description=Elemente sind vom Typ Ablageplan-Komponente. isKind.description=Elemente sind vom Typ Ablageplan-Komponente.
isKind.kind.display-label=Art isKind.kind.display-label=Art
# Are Record Type # Are Record Type
isRecordType.title=Hat Record-Typ isRecordType.title=Hat Record-Typ
isRecordType.description=Records verf\u00fcgen \u00fcber einen angegebenen Record-Typ. isRecordType.description=Records verf\u00fcgen \u00fcber einen angegebenen Record-Typ.
# #
# i18n for Records Management Actions # i18n for Records Management Actions
# #
# Declare As Record # Declare As Record
create-record.title=Als Record deklarieren create-record.title=Als Record deklarieren
create-record.description=Deklariert die Datei als Record create-record.description=Deklariert die Datei als Record
create-record.file-plan.display-label=Ablageplan create-record.file-plan.display-label=Ablageplan
create-record.hide-record.display-label=Record ausblenden create-record.hide-record.display-label=Record ausblenden
# Declare As Version Record # Declare As Version Record
declare-as-version-record.title=Version als Record deklarieren 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.description=Deklariert diese Version der Datei als Record
declare-as-version-record.file-plan.display-label=Ablageplan declare-as-version-record.file-plan.display-label=Ablageplan
# Complete record # Complete record
declareRecord.title=Record abschlie\u00dfen declareRecord.title=Record abschlie\u00dfen
declareRecord.description=Schlie\u00dft einen Record ab declareRecord.description=Schlie\u00dft einen Record ab
# Reopens record # Reopens record
undeclareRecord.title=Record neu \u00f6ffnen undeclareRecord.title=Record neu \u00f6ffnen
undeclareRecord.description=\u00d6ffnet einen Record neu undeclareRecord.description=\u00d6ffnet einen Record neu
# Open record folder # Open record folder
openRecordFolder.title=Record-Ordner \u00f6ffnen openRecordFolder.title=Record-Ordner \u00f6ffnen
openRecordFolder.description=\u00d6ffnet einen Record-Ordner openRecordFolder.description=\u00d6ffnet einen Record-Ordner
# Close record folder # Close record folder
closeRecordFolder.title=Record-Ordner schlie\u00dfen closeRecordFolder.title=Record-Ordner schlie\u00dfen
closeRecordFolder.description=Schlie\u00dft einen Record-Ordner closeRecordFolder.description=Schlie\u00dft einen Record-Ordner
# Complete event # Complete event
completeEvent.title=Ereignis abschlie\u00dfen completeEvent.title=Ereignis abschlie\u00dfen
completeEvent.description=Schlie\u00dft ein Ereignis ab completeEvent.description=Schlie\u00dft ein Ereignis ab
completeEvent.eventName.display-label=Ereignis completeEvent.eventName.display-label=Ereignis
# Freeze # Freeze
freeze.title=Fixieren freeze.title=Fixieren
freeze.description=Fixiert einen Record freeze.description=Fixiert einen Record
freeze.reason.display-label=Grund freeze.reason.display-label=Grund
# Unfreeze # Unfreeze
unfreeze.title=Fixierung aufheben unfreeze.title=Fixierung aufheben
unfreeze.description=Hebt die Fixierung eines Record auf unfreeze.description=Hebt die Fixierung eines Record auf
# File to # File to
fileTo.title=Ablegen unter fileTo.title=Ablegen unter
fileTo.description=Legt einen Record in einem bestimmten Record-Ordner ab fileTo.description=Legt einen Record in einem bestimmten Record-Ordner ab
fileTo.path.display-label=Pfad zum Record-Ordner fileTo.path.display-label=Pfad zum Record-Ordner
fileTo.createRecordPath.display-label=Record-Pfad erstellen fileTo.createRecordPath.display-label=Record-Pfad erstellen
# Copy to # Copy to
copyTo.title=Kopieren nach copyTo.title=Kopieren nach
copyTo.description=Kopiert einen Record in einen bestimmten Record-Ordner copyTo.description=Kopiert einen Record in einen bestimmten Record-Ordner
copyTo.path.display-label=Pfad zum Record-Ordner copyTo.path.display-label=Pfad zum Record-Ordner
copyTo.createRecordPath.display-label=Record-Pfad erstellen copyTo.createRecordPath.display-label=Record-Pfad erstellen
# Move to # Move to
moveTo.title=Verschieben nach moveTo.title=Verschieben nach
moveTo.description=Verschiebt einen Record in einen bestimmten Record-Ordner moveTo.description=Verschiebt einen Record in einen bestimmten Record-Ordner
moveTo.path.display-label=Pfad zum Record-Ordner moveTo.path.display-label=Pfad zum Record-Ordner
moveTo.createRecordPath.display-label=Record-Pfad erstellen moveTo.createRecordPath.display-label=Record-Pfad erstellen
# Link to # Link to
linkTo.title=Link zu linkTo.title=Link zu
linkTo.description=Verkn\u00fcpft einen Record mit einem bestimmten Record-Ordner linkTo.description=Verkn\u00fcpft einen Record mit einem bestimmten Record-Ordner
linkTo.path.display-label=Pfad zum Record-Ordner linkTo.path.display-label=Pfad zum Record-Ordner
linkTo.createRecordPath.display-label=Record-Pfad erstellen linkTo.createRecordPath.display-label=Record-Pfad erstellen
# Reject # Reject
reject.title=Ablehnen reject.title=Ablehnen
reject.description=Lehnt einen Record ab und verschiebt die Datei an ihren urspr\u00fcnglichen Speicherort reject.description=Lehnt einen Record ab und verschiebt die Datei an ihren urspr\u00fcnglichen Speicherort
reject.reason.display-label=Ablehnungsgrund reject.reason.display-label=Ablehnungsgrund
# Request Information # Request Information
requestInfo.title=Informationen anfordern requestInfo.title=Informationen anfordern
requestInfo.description=Startet einen Workflow zur Anforderung weiterer Informationen zu einem Record. requestInfo.description=Startet einen Workflow zur Anforderung weiterer Informationen zu einem Record.
# Execute script # Execute script
executeScript.title=Skript ausf\u00fchren executeScript.title=Skript ausf\u00fchren
executeScript.description=F\u00fchrt ein Skript aus executeScript.description=F\u00fchrt ein Skript aus
executeScript.script-ref.display-label=Skript executeScript.script-ref.display-label=Skript
# Send Email # Send Email
sendEmail.title=E-Mail senden sendEmail.title=E-Mail senden
sendEmail.description=Sendet eine E-Mail sendEmail.description=Sendet eine E-Mail
# Set Property # Set Property
setPropertyValue.title=Wert einer Eigenschaft setzen setPropertyValue.title=Wert einer Eigenschaft setzen
setPropertyValue.description=Setzt den Wert einer Eigenschaft setPropertyValue.description=Setzt den Wert einer Eigenschaft
# Edit Hold Reason # Edit Hold Reason
editHoldReason.title=Sperrgrund bearbeiten editHoldReason.title=Sperrgrund bearbeiten
editHoldReason.description=Bearbeitet den Sperrgrund editHoldReason.description=Bearbeitet den Sperrgrund
# Relinquish Hold # Relinquish Hold
relinquishHold.title=Sperre aufheben relinquishHold.title=Sperre aufheben
relinquishHold.description=Hebt eine Sperre auf relinquishHold.description=Hebt eine Sperre auf
# Edit Review As Of Date # Edit Review As Of Date
editReviewAsOfDate.title=Startdatum der \u00dcberpr\u00fcfung bearbeiten editReviewAsOfDate.title=Startdatum der \u00dcberpr\u00fcfung bearbeiten
editReviewAsOfDate.description=Bearbeitet das Startdatum der \u00dcberpr\u00fcfung editReviewAsOfDate.description=Bearbeitet das Startdatum der \u00dcberpr\u00fcfung
# Edit Disposition Action As Of Date # Edit Disposition Action As Of Date
editDispositionActionAsOfDate.title=Startdatum der Aufbewahrungsaktion bearbeiten editDispositionActionAsOfDate.title=Startdatum der Aufbewahrungsaktion bearbeiten
editDispositionActionAsOfDate.description=Bearbeitet das Startdatum der Aufbewahrungsaktion editDispositionActionAsOfDate.description=Bearbeitet das Startdatum der Aufbewahrungsaktion
# Broadcast Vital Record Definition # Broadcast Vital Record Definition
broadcastVitalRecordDefinition.title=Definition f\u00fcr besonders relevanten Record senden broadcastVitalRecordDefinition.title=Definition f\u00fcr besonders relevanten Record senden
broadcastVitalRecordDefinition.description=Sendet die Definition f\u00fcr einen besonders relevanten Record broadcastVitalRecordDefinition.description=Sendet die Definition f\u00fcr einen besonders relevanten Record
# Broadcast Disposition Action Definition Update # Broadcast Disposition Action Definition Update
broadcastDispositionActionDefinitionUpdate.title=Aktualisierung der Definition der Aufbewahrungsaktion senden broadcastDispositionActionDefinitionUpdate.title=Aktualisierung der Definition der Aufbewahrungsaktion senden
broadcastDispositionActionDefinitionUpdate.description=Sendet die Aktualisierung der Definition der Aufbewahrungsaktion broadcastDispositionActionDefinitionUpdate.description=Sendet die Aktualisierung der Definition der Aufbewahrungsaktion
# Undo Event # Undo Event
undoEvent.title=Ereignis r\u00fcckg\u00e4ngig machen undoEvent.title=Ereignis r\u00fcckg\u00e4ngig machen
undoEvent.description=Ereignis r\u00fcckg\u00e4ngig machen undoEvent.description=Ereignis r\u00fcckg\u00e4ngig machen
# Transfer Complete # Transfer Complete
transferComplete.title=\u00dcbertragung abgeschlossen transferComplete.title=\u00dcbertragung abgeschlossen
transferComplete.description=\u00dcbertragung abgeschlossen transferComplete.description=\u00dcbertragung abgeschlossen
# Accession Complete # Accession Complete
accessionComplete.title=Aufnahme abgeschlossen accessionComplete.title=Aufnahme abgeschlossen
accessionComplete.description=Aufnahme abgeschlossen accessionComplete.description=Aufnahme abgeschlossen
# Split Email # Split Email
splitEmail.title=E-Mail teilen splitEmail.title=E-Mail teilen
splitEmail.description=E-Mail teilen splitEmail.description=E-Mail teilen
# Create Rentention Schedule # Create Rentention Schedule
createDispositionSchedule.title=Aufbewahrungsplan erstellen createDispositionSchedule.title=Aufbewahrungsplan erstellen
createDispositionSchedule.description=Erstellt einen Aufbewahrungsplan createDispositionSchedule.description=Erstellt einen Aufbewahrungsplan
# File Destruction Report # File Destruction Report
fileDestructionReport.title=Vernichtungsprotokoll ablegen fileDestructionReport.title=Vernichtungsprotokoll ablegen
fileDestructionReport.description=Vernichtungsprotokoll ablegen fileDestructionReport.description=Vernichtungsprotokoll ablegen
# Cut off # Cut off
cutoff.title=Trennen cutoff.title=Trennen
cutoff.description=Trennen cutoff.description=Trennen
# Destroy # Destroy
destroy.title=Vernichten destroy.title=Vernichten
destroy.description=Vernichten destroy.description=Vernichten
# Reviewed # Reviewed
reviewed.title=\u00dcberpr\u00fcft reviewed.title=\u00dcberpr\u00fcft
reviewed.description=\u00dcberpr\u00fcft reviewed.description=\u00dcberpr\u00fcft
# Hide Record # Hide Record
hide-record.title=Record ausblenden hide-record.title=Record ausblenden
hide-record.description=Record ausblenden hide-record.description=Record ausblenden
# Transfer # Transfer
transfer.title=\u00dcbertragen transfer.title=\u00dcbertragen
transfer.description=\u00dcbertragen transfer.description=\u00dcbertragen
# Uncut off # Uncut off
unCutoff.title=Trennung aufheben unCutoff.title=Trennung aufheben
unCutoff.description=Trennung aufheben unCutoff.description=Trennung aufheben
# Accession # Accession
accession.title=Aufnahme accession.title=Aufnahme
accession.description=Aufnahme accession.description=Aufnahme
# Retain # Retain
retain.title=Aufbewahren retain.title=Aufbewahren
retain.description=Aufbewahren retain.description=Aufbewahren
# Add Record Types # Add Record Types
addRecordTypes.title=Record-Typen hinzuf\u00fcgen addRecordTypes.title=Record-Typen hinzuf\u00fcgen
addRecordTypes.description=F\u00fcgt ausgew\u00e4hlte Typen zum Record hinzu addRecordTypes.description=F\u00fcgt ausgew\u00e4hlte Typen zum Record hinzu
# File report # File report
fileReport.title=Bericht ablegen fileReport.title=Bericht ablegen
fileReport.description=Bericht ablegen fileReport.description=Bericht ablegen
# Delete Hold # Delete Hold
deleteHold.title=Sperrbereich l\u00f6schen deleteHold.title=Sperrbereich l\u00f6schen
deleteHold.description=Sperrbereich l\u00f6schen deleteHold.description=Sperrbereich l\u00f6schen
# Move DM record # Move DM record
move-dm-record.title=Record verschieben move-dm-record.title=Record verschieben
move-dm-record.description=Record verschieben move-dm-record.description=Record verschieben
# Unlink from # Unlink from
unlinkFrom.title=Verkn\u00fcpfung aufheben von unlinkFrom.title=Verkn\u00fcpfung aufheben von
unlinkFrom.description=Verkn\u00fcpfung aufheben von unlinkFrom.description=Verkn\u00fcpfung aufheben von
# Recordable version config # Recordable version config
recordable-version-config.title=Optionen f\u00fcr automatische Deklaration recordable-version-config.title=Optionen f\u00fcr automatische Deklaration
recordable-version-config.description=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 recordable-version-config.version.display-label=Versionen automatisch als Record deklarieren
# Action parameter constraints # Action parameter constraints
rm-ac-is-kind-kinds.record_category=Record-Kategorie rm-ac-is-kind-kinds.record_category=Record-Kategorie
rm-ac-is-kind-kinds.record_folder=Record-Ordner rm-ac-is-kind-kinds.record_folder=Record-Ordner
rm-ac-is-kind-kinds.record=Record rm-ac-is-kind-kinds.record=Record
rm-ac-disposition-action-relative-positions.next=Weiter rm-ac-disposition-action-relative-positions.next=Weiter
rm-ac-disposition-action-relative-positions.previous=Vorherige rm-ac-disposition-action-relative-positions.previous=Vorherige
rm-ac-disposition-action-relative-positions.any=Jede rm-ac-disposition-action-relative-positions.any=Jede
ac-versions.none=Nie ac-versions.none=Nie
ac-versions.major_only=Nur f\u00fcr Hauptversionen ac-versions.major_only=Nur f\u00fcr Hauptversionen
ac-versions.all=F\u00fcr alle Haupt- und Nebenversionen ac-versions.all=F\u00fcr alle Haupt- und Nebenversionen

View File

@@ -1,211 +1,211 @@
# #
# i18n for Records Management Action Conditions # i18n for Records Management Action Conditions
# #
# Are classified # Are classified
isClassified.title=Clasificado por planificaci\u00f3n de retenci\u00f3n 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 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 # Are cutoff
isCutoff.title=Interrumpir isCutoff.title=Interrumpir
isCutoff.description=Los documentos de archivo o las carpetas de documentos de archivo est\u00e1n interrumpidos isCutoff.description=Los documentos de archivo o las carpetas de documentos de archivo est\u00e1n interrumpidos
# Are declared # Are declared
isDeclared.title=Documento de archivo completado isDeclared.title=Documento de archivo completado
isDeclared.description=Documento de archivo completo isDeclared.description=Documento de archivo completo
# Is on hold # Is on hold
isFrozen.title=En espera isFrozen.title=En espera
isFrozen.description=Documento de archivo o carpeta de documentos de archivo en espera isFrozen.description=Documento de archivo o carpeta de documentos de archivo en espera
# Are filed # Are filed
isRecordFiled.title=Documento de archivo archivado isRecordFiled.title=Documento de archivo archivado
isRecordFiled.description=El documento de archivo se ha archivado isRecordFiled.description=El documento de archivo se ha archivado
# Are closed record folders # Are closed record folders
isRecordFolderClosed.title=Carpeta de documentos de archivo cerrada isRecordFolderClosed.title=Carpeta de documentos de archivo cerrada
isRecordFolderClosed.description=La carpeta de documentos de archivo est\u00e1 cerrada isRecordFolderClosed.description=La carpeta de documentos de archivo est\u00e1 cerrada
# Are vital # Are vital
isVital.title=Documento de archivo 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 isVital.description=El documento de archivo o la carpeta de documentos de archivo es un documento de archivo vital
# Have Rentention Action # Have Rentention Action
hasDispositionAction.title=Tiene acci\u00f3n de retenci\u00f3n 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 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 # Are kind
isKind.title=Tipo de elemento de Records Management isKind.title=Tipo de elemento de Records Management
isKind.description=Los elementos son una clase de componente del plan de ficheros isKind.description=Los elementos son una clase de componente del plan de ficheros
isKind.kind.display-label=Clase isKind.kind.display-label=Clase
# Are Record Type # Are Record Type
isRecordType.title=Tiene tipo de documento de archivo isRecordType.title=Tiene tipo de documento de archivo
isRecordType.description=Los documentos de archivo tienen un tipo de documento de archivo especificado isRecordType.description=Los documentos de archivo tienen un tipo de documento de archivo especificado
# #
# i18n for Records Management Actions # i18n for Records Management Actions
# #
# Declare As Record # Declare As Record
create-record.title=Declarar como documento de archivo create-record.title=Declarar como documento de archivo
create-record.description=Declara el fichero como un 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.file-plan.display-label=Plan de ficheros
create-record.hide-record.display-label=Ocultar documento de archivo create-record.hide-record.display-label=Ocultar documento de archivo
# Declare As Version Record # Declare As Version Record
declare-as-version-record.title=Declarar la versi\u00f3n como documento de archivo 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.description=Declara esta versi\u00f3n del fichero como un documento de archivo
declare-as-version-record.file-plan.display-label=Plan de ficheros declare-as-version-record.file-plan.display-label=Plan de ficheros
# Complete record # Complete record
declareRecord.title=Documento de archivo completo declareRecord.title=Documento de archivo completo
declareRecord.description=Completa un documento de archivo declareRecord.description=Completa un documento de archivo
# Reopens record # Reopens record
undeclareRecord.title=Reabrir documento de archivo undeclareRecord.title=Reabrir documento de archivo
undeclareRecord.description=Reabre un documento de archivo undeclareRecord.description=Reabre un documento de archivo
# Open record folder # Open record folder
openRecordFolder.title=Abrir carpeta de documentos de archivo openRecordFolder.title=Abrir carpeta de documentos de archivo
openRecordFolder.description=Abre una carpeta de documentos de archivo openRecordFolder.description=Abre una carpeta de documentos de archivo
# Close record folder # Close record folder
closeRecordFolder.title=Cerrar carpeta de documentos de archivo closeRecordFolder.title=Cerrar carpeta de documentos de archivo
closeRecordFolder.description=Cierra una carpeta de documentos de archivo closeRecordFolder.description=Cierra una carpeta de documentos de archivo
# Complete event # Complete event
completeEvent.title=Completar evento completeEvent.title=Completar evento
completeEvent.description=Completa un evento completeEvent.description=Completa un evento
completeEvent.eventName.display-label=Evento completeEvent.eventName.display-label=Evento
# Freeze # Freeze
freeze.title=Congelar freeze.title=Congelar
freeze.description=Congela un documento de archivo freeze.description=Congela un documento de archivo
freeze.reason.display-label=Raz\u00f3n freeze.reason.display-label=Raz\u00f3n
# Unfreeze # Unfreeze
unfreeze.title=Descongelar unfreeze.title=Descongelar
unfreeze.description=Descongela un documento de archivo unfreeze.description=Descongela un documento de archivo
# File to # File to
fileTo.title=Archivar en fileTo.title=Archivar en
fileTo.description=Archiva un documento de archivo en la carpeta de documentos de archivo especificada 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.path.display-label=Ruta a la carpeta de documentos de archivo
fileTo.createRecordPath.display-label=Crear ruta de documentos de archivo fileTo.createRecordPath.display-label=Crear ruta de documentos de archivo
# Copy to # Copy to
copyTo.title=Copiar a copyTo.title=Copiar a
copyTo.description=Copia un documento de archivo en la carpeta de documentos de archivo especificada 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.path.display-label=Ruta a la carpeta de documentos de archivo
copyTo.createRecordPath.display-label=Crear ruta de documentos de archivo copyTo.createRecordPath.display-label=Crear ruta de documentos de archivo
# Move to # Move to
moveTo.title=Mover a moveTo.title=Mover a
moveTo.description=Mueve un documento de archivo a la carpeta de documentos de archivo especificada 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.path.display-label=Ruta a la carpeta de documentos de archivo
moveTo.createRecordPath.display-label=Crear ruta de documentos de archivo moveTo.createRecordPath.display-label=Crear ruta de documentos de archivo
# Link to # Link to
linkTo.title=Enlace a linkTo.title=Enlace a
linkTo.description=Enlaza un documento de archivo a la carpeta de documentos de archivo especificada 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.path.display-label=Ruta a la carpeta de documentos de archivo
linkTo.createRecordPath.display-label=Crear ruta de documentos de archivo linkTo.createRecordPath.display-label=Crear ruta de documentos de archivo
# Reject # Reject
reject.title=Rechazar reject.title=Rechazar
reject.description=Rechaza un documento de archivo y mueve el fichero a su ubicaci\u00f3n original reject.description=Rechaza un documento de archivo y mueve el fichero a su ubicaci\u00f3n original
reject.reason.display-label=Rechazar raz\u00f3n reject.reason.display-label=Rechazar raz\u00f3n
# Request Information # Request Information
requestInfo.title=Solicitar informaci\u00f3n requestInfo.title=Solicitar informaci\u00f3n
requestInfo.description=Inicia un flujo de trabajo para solicitar m\u00e1s informaci\u00f3n para un documento de archivo requestInfo.description=Inicia un flujo de trabajo para solicitar m\u00e1s informaci\u00f3n para un documento de archivo
# Execute script # Execute script
executeScript.title=Ejecutar script executeScript.title=Ejecutar script
executeScript.description=Ejecuta un script executeScript.description=Ejecuta un script
executeScript.script-ref.display-label=Script executeScript.script-ref.display-label=Script
# Send Email # Send Email
sendEmail.title=Env\u00edar correo electr\u00f3nico sendEmail.title=Env\u00edar correo electr\u00f3nico
sendEmail.description=Env\u00eda un correo electr\u00f3nico sendEmail.description=Env\u00eda un correo electr\u00f3nico
# Set Property # Set Property
setPropertyValue.title=Establecer valor de la propiedad setPropertyValue.title=Establecer valor de la propiedad
setPropertyValue.description=Establece un valor de la propiedad setPropertyValue.description=Establece un valor de la propiedad
# Edit Hold Reason # Edit Hold Reason
editHoldReason.title=Editar raz\u00f3n de bloqueo editHoldReason.title=Editar raz\u00f3n de bloqueo
editHoldReason.description=Edita la raz\u00f3n de bloqueo editHoldReason.description=Edita la raz\u00f3n de bloqueo
# Relinquish Hold # Relinquish Hold
relinquishHold.title=Eliminar bloqueo relinquishHold.title=Eliminar bloqueo
relinquishHold.description=Elimina el bloqueo relinquishHold.description=Elimina el bloqueo
# Edit Review As Of Date # Edit Review As Of Date
editReviewAsOfDate.title=Editar fecha de inicio de revisi\u00f3n editReviewAsOfDate.title=Editar fecha de inicio de revisi\u00f3n
editReviewAsOfDate.description=Editar fecha de inicio de revisi\u00f3n editReviewAsOfDate.description=Editar fecha de inicio de revisi\u00f3n
# Edit Disposition Action As Of Date # Edit Disposition Action As Of Date
editDispositionActionAsOfDate.title=Editar fecha de inicio de acci\u00f3n de disposici\u00f3n 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 editDispositionActionAsOfDate.description=Editar fecha de inicio de la acci\u00f3n de retenci\u00f3n
# Broadcast Vital Record Definition # Broadcast Vital Record Definition
broadcastVitalRecordDefinition.title=Difundir definici\u00f3n de documento de archivo vital broadcastVitalRecordDefinition.title=Difundir definici\u00f3n de documento de archivo vital
broadcastVitalRecordDefinition.description=Difunde la definici\u00f3n de documento de archivo vital broadcastVitalRecordDefinition.description=Difunde la definici\u00f3n de documento de archivo vital
# Broadcast Disposition Action Definition Update # Broadcast Disposition Action Definition Update
broadcastDispositionActionDefinitionUpdate.title=Difundir actualizaci\u00f3n de definici\u00f3n de acciones de retenci\u00f3n 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 broadcastDispositionActionDefinitionUpdate.description=Difunde actualizaci\u00f3n de definici\u00f3n de acciones de retenci\u00f3n
# Undo Event # Undo Event
undoEvent.title=Deshacer evento undoEvent.title=Deshacer evento
undoEvent.description=Deshace evento undoEvent.description=Deshace evento
# Transfer Complete # Transfer Complete
transferComplete.title=Transferencia completa transferComplete.title=Transferencia completa
transferComplete.description=Transferencia completa transferComplete.description=Transferencia completa
# Accession Complete # Accession Complete
accessionComplete.title=Adhesi\u00f3n completa accessionComplete.title=Adhesi\u00f3n completa
accessionComplete.description=Adhesi\u00f3n completa accessionComplete.description=Adhesi\u00f3n completa
# Split Email # Split Email
splitEmail.title=Separar correo electr\u00f3nico splitEmail.title=Separar correo electr\u00f3nico
splitEmail.description=Separa correo electr\u00f3nico splitEmail.description=Separa correo electr\u00f3nico
# Create Rentention Schedule # Create Rentention Schedule
createDispositionSchedule.title=Crear planificaci\u00f3n de retenci\u00f3n createDispositionSchedule.title=Crear planificaci\u00f3n de retenci\u00f3n
createDispositionSchedule.description=Crea planificaci\u00f3n de retenci\u00f3n createDispositionSchedule.description=Crea planificaci\u00f3n de retenci\u00f3n
# File Destruction Report # File Destruction Report
fileDestructionReport.title=Archivar informe de destrucci\u00f3n fileDestructionReport.title=Archivar informe de destrucci\u00f3n
fileDestructionReport.description=Archiva informe de destrucci\u00f3n fileDestructionReport.description=Archiva informe de destrucci\u00f3n
# Cut off # Cut off
cutoff.title=Interrumpir cutoff.title=Interrumpir
cutoff.description=Interrumpe cutoff.description=Interrumpe
# Destroy # Destroy
destroy.title=Destruir destroy.title=Destruir
destroy.description=Destruye destroy.description=Destruye
# Reviewed # Reviewed
reviewed.title=Revisado reviewed.title=Revisado
reviewed.description=Revisado reviewed.description=Revisado
# Hide Record # Hide Record
hide-record.title=Ocultar documento de archivo hide-record.title=Ocultar documento de archivo
hide-record.description=Oculta documento de archivo hide-record.description=Oculta documento de archivo
# Transfer # Transfer
transfer.title=Transferencia transfer.title=Transferencia
transfer.description=Transferencia transfer.description=Transferencia
# Uncut off # Uncut off
unCutoff.title=Deshacer interrupci\u00f3n unCutoff.title=Deshacer interrupci\u00f3n
unCutoff.description=Deshace interrupci\u00f3n unCutoff.description=Deshace interrupci\u00f3n
# Accession # Accession
accession.title=Adhesi\u00f3n accession.title=Adhesi\u00f3n
accession.description=Adhesi\u00f3n accession.description=Adhesi\u00f3n
# Retain # Retain
retain.title=Retener retain.title=Retener
retain.description=Retiene retain.description=Retiene
# Add Record Types # Add Record Types
addRecordTypes.title=A\u00f1adir tipos de documento de archivo addRecordTypes.title=A\u00f1adir tipos de documento de archivo
addRecordTypes.description=A\u00f1ade los tipos seleccionados al documento de archivo addRecordTypes.description=A\u00f1ade los tipos seleccionados al documento de archivo
# File report # File report
fileReport.title=Archivar informe fileReport.title=Archivar informe
fileReport.description=Archiva informe fileReport.description=Archiva informe
# Delete Hold # Delete Hold
deleteHold.title=Eliminar bloqueo deleteHold.title=Eliminar bloqueo
deleteHold.description=Elimina bloqueo deleteHold.description=Elimina bloqueo
# Move DM record # Move DM record
move-dm-record.title=Mover documento de archivo move-dm-record.title=Mover documento de archivo
move-dm-record.description=Mueve documento de archivo move-dm-record.description=Mueve documento de archivo
# Unlink from # Unlink from
unlinkFrom.title=Desvincular de unlinkFrom.title=Desvincular de
unlinkFrom.description=Desvincula de unlinkFrom.description=Desvincula de
# Recordable version config # Recordable version config
recordable-version-config.title=Opciones de declaraci\u00f3n autom\u00e1tica recordable-version-config.title=Opciones de declaraci\u00f3n autom\u00e1tica
recordable-version-config.description=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 recordable-version-config.version.display-label=Declarar autom\u00e1ticamente versiones como documentos de archivo
# Action parameter constraints # Action parameter constraints
rm-ac-is-kind-kinds.record_category=Categor\u00eda de documentos de archivo 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_folder=Carpeta de documentos de archivo
rm-ac-is-kind-kinds.record=Documento 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.next=Siguiente
rm-ac-disposition-action-relative-positions.previous=Anterior rm-ac-disposition-action-relative-positions.previous=Anterior
rm-ac-disposition-action-relative-positions.any=Cualquiera rm-ac-disposition-action-relative-positions.any=Cualquiera
ac-versions.none=Nunca ac-versions.none=Nunca
ac-versions.major_only=Solo para versiones mayores ac-versions.major_only=Solo para versiones mayores
ac-versions.all=Para todas las versiones mayores y menores ac-versions.all=Para todas las versiones mayores y menores

View File

@@ -1,211 +1,211 @@
# #
# i18n for Records Management Action Conditions # i18n for Records Management Action Conditions
# #
# Are classified # Are classified
isClassified.title=Class\u00e9 par r\u00e8gle de r\u00e9tention 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 isClassified.description=Les documents d'archives ou dossiers d'archives sont class\u00e9s par une r\u00e8gle de r\u00e9tention
# Are cutoff # Are cutoff
isCutoff.title=D\u00e9classer isCutoff.title=D\u00e9classer
isCutoff.description=Les documents d'archives ou dossiers d'archives sont d\u00e9class\u00e9s isCutoff.description=Les documents d'archives ou dossiers d'archives sont d\u00e9class\u00e9s
# Are declared # Are declared
isDeclared.title=Document d'archives termin\u00e9 isDeclared.title=Document d'archives termin\u00e9
isDeclared.description=Le document d'archives est termin\u00e9 isDeclared.description=Le document d'archives est termin\u00e9
# Is on hold # Is on hold
isFrozen.title=Suspendu isFrozen.title=Suspendu
isFrozen.description=Le document d'archives ou le dossier d'archives est suspendu isFrozen.description=Le document d'archives ou le dossier d'archives est suspendu
# Are filed # Are filed
isRecordFiled.title=Document d'archives archiv\u00e9 isRecordFiled.title=Document d'archives archiv\u00e9
isRecordFiled.description=Le document d'archives est archiv\u00e9 isRecordFiled.description=Le document d'archives est archiv\u00e9
# Are closed record folders # Are closed record folders
isRecordFolderClosed.title=Dossier d'archives ferm\u00e9 isRecordFolderClosed.title=Dossier d'archives ferm\u00e9
isRecordFolderClosed.description=Le dossier d'archives est ferm\u00e9 isRecordFolderClosed.description=Le dossier d'archives est ferm\u00e9
# Are vital # Are vital
isVital.title=Document d'archives essentiel isVital.title=Document d'archives essentiel
isVital.description=Le document d'archives ou le dossier d'archives est essentiel isVital.description=Le document d'archives ou le dossier d'archives est essentiel
# Have Rentention Action # Have Rentention Action
hasDispositionAction.title=A une action de r\u00e9tention 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 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 # Are kind
isKind.title=Type d'\u00e9l\u00e9ment de gestion des archives 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.description=Les \u00e9l\u00e9ments sont un type de composant du plan de classification
isKind.kind.display-label=Type isKind.kind.display-label=Type
# Are Record Type # Are Record Type
isRecordType.title=A le type de document d'archives isRecordType.title=A le type de document d'archives
isRecordType.description=Les documents d'archives ont un type de document d'archives d\u00e9fini isRecordType.description=Les documents d'archives ont un type de document d'archives d\u00e9fini
# #
# i18n for Records Management Actions # i18n for Records Management Actions
# #
# Declare As Record # Declare As Record
create-record.title=D\u00e9clarer comme document d'archives create-record.title=D\u00e9clarer comme document d'archives
create-record.description=D\u00e9clare un fichier 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.file-plan.display-label=Plan de classification
create-record.hide-record.display-label=Masquer le document d'archives create-record.hide-record.display-label=Masquer le document d'archives
# Declare As Version Record # Declare As Version Record
declare-as-version-record.title=D\u00e9clarer la version comme document d'archives 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.description=D\u00e9clare cette version du fichier comme document d'archives
declare-as-version-record.file-plan.display-label=Plan de classification declare-as-version-record.file-plan.display-label=Plan de classification
# Complete record # Complete record
declareRecord.title=Compl\u00e9ter un document d'archives declareRecord.title=Compl\u00e9ter un document d'archives
declareRecord.description=Compl\u00e8te un document d'archives declareRecord.description=Compl\u00e8te un document d'archives
# Reopens record # Reopens record
undeclareRecord.title=Rouvrir un document d'archives undeclareRecord.title=Rouvrir un document d'archives
undeclareRecord.description=Rouvre un document d'archives undeclareRecord.description=Rouvre un document d'archives
# Open record folder # Open record folder
openRecordFolder.title=Ouvrir un dossier d'archives openRecordFolder.title=Ouvrir un dossier d'archives
openRecordFolder.description=Ouvre un dossier d'archives openRecordFolder.description=Ouvre un dossier d'archives
# Close record folder # Close record folder
closeRecordFolder.title=Fermer un dossier d'archives closeRecordFolder.title=Fermer un dossier d'archives
closeRecordFolder.description=Ferme un dossier d'archives closeRecordFolder.description=Ferme un dossier d'archives
# Complete event # Complete event
completeEvent.title=Compl\u00e9ter un \u00e9v\u00e9nement completeEvent.title=Compl\u00e9ter un \u00e9v\u00e9nement
completeEvent.description=Compl\u00e8te un \u00e9v\u00e9nement completeEvent.description=Compl\u00e8te un \u00e9v\u00e9nement
completeEvent.eventName.display-label=Ev\u00e9nement completeEvent.eventName.display-label=Ev\u00e9nement
# Freeze # Freeze
freeze.title=Geler freeze.title=Geler
freeze.description=G\u00e8le un document d'archives freeze.description=G\u00e8le un document d'archives
freeze.reason.display-label=Motif freeze.reason.display-label=Motif
# Unfreeze # Unfreeze
unfreeze.title=D\u00e9geler unfreeze.title=D\u00e9geler
unfreeze.description=D\u00e9g\u00e8le un document d'archives unfreeze.description=D\u00e9g\u00e8le un document d'archives
# File to # File to
fileTo.title=Archiver dans fileTo.title=Archiver dans
fileTo.description=Archive un document d'archives dans le dossier d'archives d\u00e9fini fileTo.description=Archive un document d'archives dans le dossier d'archives d\u00e9fini
fileTo.path.display-label=Chemin de dossier d'archives fileTo.path.display-label=Chemin de dossier d'archives
fileTo.createRecordPath.display-label=Cr\u00e9er un chemin d'acc\u00e8s du document d'archives fileTo.createRecordPath.display-label=Cr\u00e9er un chemin d'acc\u00e8s du document d'archives
# Copy to # Copy to
copyTo.title=Copier vers... copyTo.title=Copier vers...
copyTo.description=Copie un document d'archives vers le dossier d'archives d\u00e9fini copyTo.description=Copie un document d'archives vers le dossier d'archives d\u00e9fini
copyTo.path.display-label=Chemin de dossier d'archives copyTo.path.display-label=Chemin de dossier d'archives
copyTo.createRecordPath.display-label=Cr\u00e9er un chemin d'acc\u00e8s du document d'archives copyTo.createRecordPath.display-label=Cr\u00e9er un chemin d'acc\u00e8s du document d'archives
# Move to # Move to
moveTo.title=D\u00e9placer vers... moveTo.title=D\u00e9placer vers...
moveTo.description=D\u00e9place un document d'archives vers le dossier d'archives d\u00e9fini 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.path.display-label=Chemin de dossier d'archives
moveTo.createRecordPath.display-label=Cr\u00e9er un chemin d'acc\u00e8s du document d'archives moveTo.createRecordPath.display-label=Cr\u00e9er un chemin d'acc\u00e8s du document d'archives
# Link to # Link to
linkTo.title=Lier \u00e0 linkTo.title=Lier \u00e0
linkTo.description=Lie un document d'archives vers le dossier d'archives d\u00e9fini linkTo.description=Lie un document d'archives vers le dossier d'archives d\u00e9fini
linkTo.path.display-label=Chemin de dossier d'archives linkTo.path.display-label=Chemin de dossier d'archives
linkTo.createRecordPath.display-label=Cr\u00e9er un chemin d'acc\u00e8s du document d'archives linkTo.createRecordPath.display-label=Cr\u00e9er un chemin d'acc\u00e8s du document d'archives
# Reject # Reject
reject.title=Rejeter reject.title=Rejeter
reject.description=Rejette un document d'archives et place le fichier dans son emplacement d'origine reject.description=Rejette un document d'archives et place le fichier dans son emplacement d'origine
reject.reason.display-label=Motif du rejet reject.reason.display-label=Motif du rejet
# Request Information # Request Information
requestInfo.title=Demander des informations requestInfo.title=Demander des informations
requestInfo.description=D\u00e9marre un workflow pour demander plus d'informations sur un document d'archives requestInfo.description=D\u00e9marre un workflow pour demander plus d'informations sur un document d'archives
# Execute script # Execute script
executeScript.title=Ex\u00e9cuter le script executeScript.title=Ex\u00e9cuter le script
executeScript.description=Ex\u00e9cuter un script executeScript.description=Ex\u00e9cuter un script
executeScript.script-ref.display-label=Script executeScript.script-ref.display-label=Script
# Send Email # Send Email
sendEmail.title=Envoyer un e-mail sendEmail.title=Envoyer un e-mail
sendEmail.description=Envoyer un e-mail sendEmail.description=Envoyer un e-mail
# Set Property # Set Property
setPropertyValue.title=D\u00e9finir la valeur de la propri\u00e9t\u00e9 setPropertyValue.title=D\u00e9finir la valeur de la propri\u00e9t\u00e9
setPropertyValue.description=D\u00e9finir une valeur de propri\u00e9t\u00e9 setPropertyValue.description=D\u00e9finir une valeur de propri\u00e9t\u00e9
# Edit Hold Reason # Edit Hold Reason
editHoldReason.title=Modifier le motif de suspension editHoldReason.title=Modifier le motif de suspension
editHoldReason.description=Modifier le motif de suspension editHoldReason.description=Modifier le motif de suspension
# Relinquish Hold # Relinquish Hold
relinquishHold.title=Lever la suspension relinquishHold.title=Lever la suspension
relinquishHold.description=Lever la suspension relinquishHold.description=Lever la suspension
# Edit Review As Of Date # Edit Review As Of Date
editReviewAsOfDate.title=Modifier la date de d\u00e9but de la r\u00e9vision editReviewAsOfDate.title=Modifier la date de d\u00e9but de la r\u00e9vision
editReviewAsOfDate.description=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 # Edit Disposition Action As Of Date
editDispositionActionAsOfDate.title=Modifier la date de d\u00e9but de l'action de r\u00e9tention 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 editDispositionActionAsOfDate.description=Modifier la date de d\u00e9but de l'action de r\u00e9tention
# Broadcast Vital Record Definition # Broadcast Vital Record Definition
broadcastVitalRecordDefinition.title=D\u00e9finition du document d'archives essentiel diffus\u00e9e broadcastVitalRecordDefinition.title=D\u00e9finition du document d'archives essentiel diffus\u00e9e
broadcastVitalRecordDefinition.description=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 # Broadcast Disposition Action Definition Update
broadcastDispositionActionDefinitionUpdate.title=Mise \u00e0 jour de la d\u00e9finition de l'action de r\u00e9tention diffus\u00e9e 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 broadcastDispositionActionDefinitionUpdate.description=Mise \u00e0 jour de la d\u00e9finition de l'action de r\u00e9tention diffus\u00e9e
# Undo Event # Undo Event
undoEvent.title=Annuler l'\u00e9v\u00e9nement undoEvent.title=Annuler l'\u00e9v\u00e9nement
undoEvent.description=Annuler l'\u00e9v\u00e9nement undoEvent.description=Annuler l'\u00e9v\u00e9nement
# Transfer Complete # Transfer Complete
transferComplete.title=Transfert termin\u00e9 transferComplete.title=Transfert termin\u00e9
transferComplete.description=Transfert termin\u00e9 transferComplete.description=Transfert termin\u00e9
# Accession Complete # Accession Complete
accessionComplete.title=Versement \u00e0 un autre organisme termin\u00e9 accessionComplete.title=Versement \u00e0 un autre organisme termin\u00e9
accessionComplete.description=Versement \u00e0 un autre organisme termin\u00e9 accessionComplete.description=Versement \u00e0 un autre organisme termin\u00e9
# Split Email # Split Email
splitEmail.title=Partager l'e-mail splitEmail.title=Partager l'e-mail
splitEmail.description=Partager l'e-mail splitEmail.description=Partager l'e-mail
# Create Rentention Schedule # Create Rentention Schedule
createDispositionSchedule.title=Cr\u00e9er une r\u00e8gle de r\u00e9tention createDispositionSchedule.title=Cr\u00e9er une r\u00e8gle de r\u00e9tention
createDispositionSchedule.description=Cr\u00e9er une r\u00e8gle de r\u00e9tention createDispositionSchedule.description=Cr\u00e9er une r\u00e8gle de r\u00e9tention
# File Destruction Report # File Destruction Report
fileDestructionReport.title=Rapport de destruction de fichier fileDestructionReport.title=Rapport de destruction de fichier
fileDestructionReport.description=Rapport de destruction de fichier fileDestructionReport.description=Rapport de destruction de fichier
# Cut off # Cut off
cutoff.title=D\u00e9classer cutoff.title=D\u00e9classer
cutoff.description=D\u00e9classer cutoff.description=D\u00e9classer
# Destroy # Destroy
destroy.title=D\u00e9truire destroy.title=D\u00e9truire
destroy.description=D\u00e9truire destroy.description=D\u00e9truire
# Reviewed # Reviewed
reviewed.title=V\u00e9rifi\u00e9 reviewed.title=V\u00e9rifi\u00e9
reviewed.description=V\u00e9rifi\u00e9 reviewed.description=V\u00e9rifi\u00e9
# Hide Record # Hide Record
hide-record.title=Masquer le document d'archives hide-record.title=Masquer le document d'archives
hide-record.description=Masquer le document d'archives hide-record.description=Masquer le document d'archives
# Transfer # Transfer
transfer.title=Transf\u00e9rer transfer.title=Transf\u00e9rer
transfer.description=Transf\u00e9rer transfer.description=Transf\u00e9rer
# Uncut off # Uncut off
unCutoff.title=Annuler le d\u00e9classement unCutoff.title=Annuler le d\u00e9classement
unCutoff.description=Annuler le d\u00e9classement unCutoff.description=Annuler le d\u00e9classement
# Accession # Accession
accession.title=Versement \u00e0 un autre organisme accession.title=Versement \u00e0 un autre organisme
accession.description=Versement \u00e0 un autre organisme accession.description=Versement \u00e0 un autre organisme
# Retain # Retain
retain.title=Retenir retain.title=Retenir
retain.description=Retenir retain.description=Retenir
# Add Record Types # Add Record Types
addRecordTypes.title=Ajouter des types de document d'archives addRecordTypes.title=Ajouter des types de document d'archives
addRecordTypes.description=Ajoute le(s) type(s) s\u00e9lectionn\u00e9(s) au document d'archives addRecordTypes.description=Ajoute le(s) type(s) s\u00e9lectionn\u00e9(s) au document d'archives
# File report # File report
fileReport.title=Archiver le rapport fileReport.title=Archiver le rapport
fileReport.description=Archiver le rapport fileReport.description=Archiver le rapport
# Delete Hold # Delete Hold
deleteHold.title=Supprimer la suspension deleteHold.title=Supprimer la suspension
deleteHold.description=Supprimer la suspension deleteHold.description=Supprimer la suspension
# Move DM record # Move DM record
move-dm-record.title=D\u00e9placer le document d'archives move-dm-record.title=D\u00e9placer le document d'archives
move-dm-record.description=D\u00e9placer le document d'archives move-dm-record.description=D\u00e9placer le document d'archives
# Unlink from # Unlink from
unlinkFrom.title=Supprimer le lien de unlinkFrom.title=Supprimer le lien de
unlinkFrom.description=Supprimer le lien de unlinkFrom.description=Supprimer le lien de
# Recordable version config # Recordable version config
recordable-version-config.title=Options de d\u00e9claration automatique recordable-version-config.title=Options de d\u00e9claration automatique
recordable-version-config.description=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 recordable-version-config.version.display-label=D\u00e9clarer automatiquement les versions comme documents d'archives
# Action parameter constraints # Action parameter constraints
rm-ac-is-kind-kinds.record_category=Cat\u00e9gorie de document d'archives 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_folder=Dossier d'archives
rm-ac-is-kind-kinds.record=Document 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.next=Suivant
rm-ac-disposition-action-relative-positions.previous=Pr\u00e9c\u00e9dent rm-ac-disposition-action-relative-positions.previous=Pr\u00e9c\u00e9dent
rm-ac-disposition-action-relative-positions.any=N'importe lequel rm-ac-disposition-action-relative-positions.any=N'importe lequel
ac-versions.none=Jamais ac-versions.none=Jamais
ac-versions.major_only=Uniquement les versions majeures ac-versions.major_only=Uniquement les versions majeures
ac-versions.all=Versions majeures et mineures ac-versions.all=Versions majeures et mineures

View File

@@ -1,211 +1,211 @@
# #
# i18n for Records Management Action Conditions # i18n for Records Management Action Conditions
# #
# Are classified # Are classified
isClassified.title=Classificato in base al programma di conservazione 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 isClassified.description=I record o le cartelle di record sono stati classificati in base al programma di conservazione
# Are cutoff # Are cutoff
isCutoff.title=Cut off isCutoff.title=Cut off
isCutoff.description=Record o cartelle di record separati isCutoff.description=Record o cartelle di record separati
# Are declared # Are declared
isDeclared.title=Record completati isDeclared.title=Record completati
isDeclared.description=Il record \u00e8 completo isDeclared.description=Il record \u00e8 completo
# Is on hold # Is on hold
isFrozen.title=Sospeso isFrozen.title=Sospeso
isFrozen.description=Il record o la cartella di record sono in sospeso isFrozen.description=Il record o la cartella di record sono in sospeso
# Are filed # Are filed
isRecordFiled.title=Record archiviato isRecordFiled.title=Record archiviato
isRecordFiled.description=Il record \u00e8 archiviato isRecordFiled.description=Il record \u00e8 archiviato
# Are closed record folders # Are closed record folders
isRecordFolderClosed.title=Cartella di record chiusa isRecordFolderClosed.title=Cartella di record chiusa
isRecordFolderClosed.description=La cartella di record \u00e8 chiusa isRecordFolderClosed.description=La cartella di record \u00e8 chiusa
# Are vital # Are vital
isVital.title=Record fondamentale isVital.title=Record fondamentale
isVital.description=Il record o la cartella di record sono record fondamentali isVital.description=Il record o la cartella di record sono record fondamentali
# Have Rentention Action # Have Rentention Action
hasDispositionAction.title=Con azione di conservazione 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 hasDispositionAction.description=I record e le cartelle hanno ottenuto la relativa azione di conservazione specificata alla relativa posizione specificata
# Are kind # Are kind
isKind.title=Tipo di elemento di Records Management isKind.title=Tipo di elemento di Records Management
isKind.description=Gli elementi sono del tipo componente piano file isKind.description=Gli elementi sono del tipo componente piano file
isKind.kind.display-label=Tipo isKind.kind.display-label=Tipo
# Are Record Type # Are Record Type
isRecordType.title=Con tipo di record isRecordType.title=Con tipo di record
isRecordType.description=I record hanno un tipo di record specificato isRecordType.description=I record hanno un tipo di record specificato
# #
# i18n for Records Management Actions # i18n for Records Management Actions
# #
# Declare As Record # Declare As Record
create-record.title=Dichiara come record create-record.title=Dichiara come record
create-record.description=Dichiara file come record create-record.description=Dichiara file come record
create-record.file-plan.display-label=Piano file create-record.file-plan.display-label=Piano file
create-record.hide-record.display-label=Nascondi record create-record.hide-record.display-label=Nascondi record
# Declare As Version Record # Declare As Version Record
declare-as-version-record.title=Dichiara versione come 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.description=Dichiara questa versione del file come record
declare-as-version-record.file-plan.display-label=Piano file declare-as-version-record.file-plan.display-label=Piano file
# Complete record # Complete record
declareRecord.title=Completa record declareRecord.title=Completa record
declareRecord.description=Completa un record. declareRecord.description=Completa un record.
# Reopens record # Reopens record
undeclareRecord.title=Riapri record undeclareRecord.title=Riapri record
undeclareRecord.description=Riapre un record undeclareRecord.description=Riapre un record
# Open record folder # Open record folder
openRecordFolder.title=Apri cartella di record openRecordFolder.title=Apri cartella di record
openRecordFolder.description=Apre una cartella di record openRecordFolder.description=Apre una cartella di record
# Close record folder # Close record folder
closeRecordFolder.title=Chiudi cartella di record closeRecordFolder.title=Chiudi cartella di record
closeRecordFolder.description=Chiude una cartella di record closeRecordFolder.description=Chiude una cartella di record
# Complete event # Complete event
completeEvent.title=Completa evento completeEvent.title=Completa evento
completeEvent.description=Completa un evento completeEvent.description=Completa un evento
completeEvent.eventName.display-label=Evento completeEvent.eventName.display-label=Evento
# Freeze # Freeze
freeze.title=Blocca freeze.title=Blocca
freeze.description=Blocca un record freeze.description=Blocca un record
freeze.reason.display-label=Motivo freeze.reason.display-label=Motivo
# Unfreeze # Unfreeze
unfreeze.title=Sblocca unfreeze.title=Sblocca
unfreeze.description=Sblocca un record unfreeze.description=Sblocca un record
# File to # File to
fileTo.title=Archivia in fileTo.title=Archivia in
fileTo.description=Archivia un record nella cartella di record specificata fileTo.description=Archivia un record nella cartella di record specificata
fileTo.path.display-label=Indirizza nella cartella di record fileTo.path.display-label=Indirizza nella cartella di record
fileTo.createRecordPath.display-label=Crea percorso del record fileTo.createRecordPath.display-label=Crea percorso del record
# Copy to # Copy to
copyTo.title=Copia in copyTo.title=Copia in
copyTo.description=Copia un record nella cartella di record specificata copyTo.description=Copia un record nella cartella di record specificata
copyTo.path.display-label=Indirizza nella cartella di record copyTo.path.display-label=Indirizza nella cartella di record
copyTo.createRecordPath.display-label=Crea percorso del record copyTo.createRecordPath.display-label=Crea percorso del record
# Move to # Move to
moveTo.title=Sposta in moveTo.title=Sposta in
moveTo.description=Sposta un record nella cartella di record specificata moveTo.description=Sposta un record nella cartella di record specificata
moveTo.path.display-label=Indirizza nella cartella di record moveTo.path.display-label=Indirizza nella cartella di record
moveTo.createRecordPath.display-label=Crea percorso del record moveTo.createRecordPath.display-label=Crea percorso del record
# Link to # Link to
linkTo.title=Collega a linkTo.title=Collega a
linkTo.description=Collega un record alla cartella di record specificata linkTo.description=Collega un record alla cartella di record specificata
linkTo.path.display-label=Indirizza nella cartella di record linkTo.path.display-label=Indirizza nella cartella di record
linkTo.createRecordPath.display-label=Crea percorso del record linkTo.createRecordPath.display-label=Crea percorso del record
# Reject # Reject
reject.title=Respingi reject.title=Respingi
reject.description=Respinge un record e sposta il file nella sua posizione originale reject.description=Respinge un record e sposta il file nella sua posizione originale
reject.reason.display-label=Respingi motivo reject.reason.display-label=Respingi motivo
# Request Information # Request Information
requestInfo.title=Richiedi informazioni requestInfo.title=Richiedi informazioni
requestInfo.description=Avvia un flusso di lavoro per richiedere pi\u00f9 informazioni per un record requestInfo.description=Avvia un flusso di lavoro per richiedere pi\u00f9 informazioni per un record
# Execute script # Execute script
executeScript.title=Esegui script executeScript.title=Esegui script
executeScript.description=Esegui uno script executeScript.description=Esegui uno script
executeScript.script-ref.display-label=Script executeScript.script-ref.display-label=Script
# Send Email # Send Email
sendEmail.title=Invia e-mail sendEmail.title=Invia e-mail
sendEmail.description=Invia un'e-mail sendEmail.description=Invia un'e-mail
# Set Property # Set Property
setPropertyValue.title=Imposta valore di propriet\u00e0 setPropertyValue.title=Imposta valore di propriet\u00e0
setPropertyValue.description=Imposta un valore di propriet\u00e0 setPropertyValue.description=Imposta un valore di propriet\u00e0
# Edit Hold Reason # Edit Hold Reason
editHoldReason.title=Modifica motivo sospensione editHoldReason.title=Modifica motivo sospensione
editHoldReason.description=Modifica il motivo della sospensione editHoldReason.description=Modifica il motivo della sospensione
# Relinquish Hold # Relinquish Hold
relinquishHold.title=Lascia sospensione relinquishHold.title=Lascia sospensione
relinquishHold.description=Lascia la sospensione relinquishHold.description=Lascia la sospensione
# Edit Review As Of Date # Edit Review As Of Date
editReviewAsOfDate.title=Modifica data di inizio esame editReviewAsOfDate.title=Modifica data di inizio esame
editReviewAsOfDate.description=Modifica data di inizio esame editReviewAsOfDate.description=Modifica data di inizio esame
# Edit Disposition Action As Of Date # Edit Disposition Action As Of Date
editDispositionActionAsOfDate.title=Modifica data di inizio azione di conservazione editDispositionActionAsOfDate.title=Modifica data di inizio azione di conservazione
editDispositionActionAsOfDate.description=Modifica la data di inizio azione di conservazione editDispositionActionAsOfDate.description=Modifica la data di inizio azione di conservazione
# Broadcast Vital Record Definition # Broadcast Vital Record Definition
broadcastVitalRecordDefinition.title=Trasmetti definizione di record fondamentale broadcastVitalRecordDefinition.title=Trasmetti definizione di record fondamentale
broadcastVitalRecordDefinition.description=Trasmetti la definizione di record fondamentale broadcastVitalRecordDefinition.description=Trasmetti la definizione di record fondamentale
# Broadcast Disposition Action Definition Update # Broadcast Disposition Action Definition Update
broadcastDispositionActionDefinitionUpdate.title=Trasmetti aggiornamento definizione di azione di conservazione broadcastDispositionActionDefinitionUpdate.title=Trasmetti aggiornamento definizione di azione di conservazione
broadcastDispositionActionDefinitionUpdate.description=Trasmetti aggiornamento definizione di azione di conservazione broadcastDispositionActionDefinitionUpdate.description=Trasmetti aggiornamento definizione di azione di conservazione
# Undo Event # Undo Event
undoEvent.title=Annulla evento undoEvent.title=Annulla evento
undoEvent.description=Annulla evento undoEvent.description=Annulla evento
# Transfer Complete # Transfer Complete
transferComplete.title=Trasferimento completato transferComplete.title=Trasferimento completato
transferComplete.description=Trasferimento completato transferComplete.description=Trasferimento completato
# Accession Complete # Accession Complete
accessionComplete.title=Trasferimento ad altri completato accessionComplete.title=Trasferimento ad altri completato
accessionComplete.description=Trasferimento ad altri completato accessionComplete.description=Trasferimento ad altri completato
# Split Email # Split Email
splitEmail.title=Dividi e-mail splitEmail.title=Dividi e-mail
splitEmail.description=Dividi e-mail splitEmail.description=Dividi e-mail
# Create Rentention Schedule # Create Rentention Schedule
createDispositionSchedule.title=Crea Programma di conservazione createDispositionSchedule.title=Crea Programma di conservazione
createDispositionSchedule.description=Crea Programma di conservazione createDispositionSchedule.description=Crea Programma di conservazione
# File Destruction Report # File Destruction Report
fileDestructionReport.title=Archivia rapporto di eliminazione definitiva fileDestructionReport.title=Archivia rapporto di eliminazione definitiva
fileDestructionReport.description=Archivia rapporto di eliminazione definitiva fileDestructionReport.description=Archivia rapporto di eliminazione definitiva
# Cut off # Cut off
cutoff.title=Cut off cutoff.title=Cut off
cutoff.description=Cut off cutoff.description=Cut off
# Destroy # Destroy
destroy.title=Elimina definitivamente destroy.title=Elimina definitivamente
destroy.description=Elimina definitivamente destroy.description=Elimina definitivamente
# Reviewed # Reviewed
reviewed.title=Esaminato reviewed.title=Esaminato
reviewed.description=Esaminato reviewed.description=Esaminato
# Hide Record # Hide Record
hide-record.title=Nascondi record hide-record.title=Nascondi record
hide-record.description=Nascondi record hide-record.description=Nascondi record
# Transfer # Transfer
transfer.title=Trasferisci transfer.title=Trasferisci
transfer.description=Trasferisci transfer.description=Trasferisci
# Uncut off # Uncut off
unCutoff.title=Annulla cut off unCutoff.title=Annulla cut off
unCutoff.description=Annulla cut off unCutoff.description=Annulla cut off
# Accession # Accession
accession.title=Trasferimento ad altri accession.title=Trasferimento ad altri
accession.description=Trasferimento ad altri accession.description=Trasferimento ad altri
# Retain # Retain
retain.title=Conserva retain.title=Conserva
retain.description=Conserva retain.description=Conserva
# Add Record Types # Add Record Types
addRecordTypes.title=Aggiungi tipi di record addRecordTypes.title=Aggiungi tipi di record
addRecordTypes.description=Aggiunge i tipi selezionati al record addRecordTypes.description=Aggiunge i tipi selezionati al record
# File report # File report
fileReport.title=Archivia rapporto fileReport.title=Archivia rapporto
fileReport.description=Archivia rapporto fileReport.description=Archivia rapporto
# Delete Hold # Delete Hold
deleteHold.title=Annulla sospensione deleteHold.title=Annulla sospensione
deleteHold.description=Annulla sospensione deleteHold.description=Annulla sospensione
# Move DM record # Move DM record
move-dm-record.title=Sposta record move-dm-record.title=Sposta record
move-dm-record.description=Sposta record move-dm-record.description=Sposta record
# Unlink from # Unlink from
unlinkFrom.title=Scollega da unlinkFrom.title=Scollega da
unlinkFrom.description=Scollega da unlinkFrom.description=Scollega da
# Recordable version config # Recordable version config
recordable-version-config.title=Opzioni di dichiarazione automatica recordable-version-config.title=Opzioni di dichiarazione automatica
recordable-version-config.description=Opzioni di dichiarazione automatica recordable-version-config.description=Opzioni di dichiarazione automatica
recordable-version-config.version.display-label=Dichiara automaticamente versioni come record recordable-version-config.version.display-label=Dichiara automaticamente versioni come record
# Action parameter constraints # Action parameter constraints
rm-ac-is-kind-kinds.record_category=Categoria record 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_folder=Cartella di record
rm-ac-is-kind-kinds.record=Record rm-ac-is-kind-kinds.record=Record
rm-ac-disposition-action-relative-positions.next=Successivo rm-ac-disposition-action-relative-positions.next=Successivo
rm-ac-disposition-action-relative-positions.previous=Precedente rm-ac-disposition-action-relative-positions.previous=Precedente
rm-ac-disposition-action-relative-positions.any=Qualsiasi rm-ac-disposition-action-relative-positions.any=Qualsiasi
ac-versions.none=Mai ac-versions.none=Mai
ac-versions.major_only=Solo per versioni maggiori ac-versions.major_only=Solo per versioni maggiori
ac-versions.all=Per tutte le versioni maggiori e minori ac-versions.all=Per tutte le versioni maggiori e minori

View File

@@ -1,211 +1,211 @@
# #
# i18n for Records Management Action Conditions # i18n for Records Management Action Conditions
# #
# Are classified # Are classified
isClassified.title=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u306b\u3088\u308a\u5206\u985e\u6e08\u307f 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 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 # Are cutoff
isCutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5 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 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 # Are declared
isDeclared.title=\u5b8c\u4e86\u6e08\u307f\u30ec\u30b3\u30fc\u30c9 isDeclared.title=\u5b8c\u4e86\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
isDeclared.description=\u30ec\u30b3\u30fc\u30c9\u306f\u5b8c\u4e86\u3057\u3066\u3044\u307e\u3059 isDeclared.description=\u30ec\u30b3\u30fc\u30c9\u306f\u5b8c\u4e86\u3057\u3066\u3044\u307e\u3059
# Is on hold # Is on hold
isFrozen.title=\u30db\u30fc\u30eb\u30c9\u4e2d 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 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 # Are filed
isRecordFiled.title=\u6574\u7406\u4fdd\u7ba1\u6e08\u307f\u30ec\u30b3\u30fc\u30c9 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 isRecordFiled.description=\u30ec\u30b3\u30fc\u30c9\u306f\u6574\u7406\u4fdd\u7ba1\u3055\u308c\u3066\u3044\u307e\u3059
# Are closed record folders # Are closed record folders
isRecordFolderClosed.title=\u9589\u3058\u3089\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0 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 isRecordFolderClosed.description=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306f\u9589\u3058\u3089\u308c\u3066\u3044\u307e\u3059
# Are vital # Are vital
isVital.title=\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9 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 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 # Have Rentention Action
hasDispositionAction.title=\u4fdd\u7ba1\u51e6\u7406\u3042\u308a 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 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 # Are kind
isKind.title=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30a2\u30a4\u30c6\u30e0\u306e\u30bf\u30a4\u30d7 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.description=\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u306e\u4e00\u90e8\u3092\u306a\u3059\u30a2\u30a4\u30c6\u30e0
isKind.kind.display-label=\u7a2e\u985e isKind.kind.display-label=\u7a2e\u985e
# Are Record Type # Are Record Type
isRecordType.title=\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7\u3042\u308a 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 isRecordType.description=\u7279\u5b9a\u306e\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7\u3092\u6301\u3064\u30ec\u30b3\u30fc\u30c9
# #
# i18n for Records Management Actions # i18n for Records Management Actions
# #
# Declare As Record # Declare As Record
create-record.title=\u30ec\u30b3\u30fc\u30c9\u3068\u3057\u3066\u5ba3\u8a00\u3059\u308b 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.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.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 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
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.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.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 declare-as-version-record.file-plan.display-label=\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3
# Complete record # Complete record
declareRecord.title=\u30ec\u30b3\u30fc\u30c9\u306e\u5b8c\u4e86 declareRecord.title=\u30ec\u30b3\u30fc\u30c9\u306e\u5b8c\u4e86
declareRecord.description=\u30ec\u30b3\u30fc\u30c9\u3092\u5b8c\u4e86\u3057\u307e\u3059 declareRecord.description=\u30ec\u30b3\u30fc\u30c9\u3092\u5b8c\u4e86\u3057\u307e\u3059
# Reopens record # Reopens record
undeclareRecord.title=\u30ec\u30b3\u30fc\u30c9\u3092\u518d\u5ea6\u958b\u304f undeclareRecord.title=\u30ec\u30b3\u30fc\u30c9\u3092\u518d\u5ea6\u958b\u304f
undeclareRecord.description=\u30ec\u30b3\u30fc\u30c9\u3092\u518d\u5ea6\u958b\u304d\u307e\u3059 undeclareRecord.description=\u30ec\u30b3\u30fc\u30c9\u3092\u518d\u5ea6\u958b\u304d\u307e\u3059
# Open record folder # Open record folder
openRecordFolder.title=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u958b\u304f 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 openRecordFolder.description=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u958b\u304d\u307e\u3059
# Close record folder # Close record folder
closeRecordFolder.title=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u9589\u3058\u308b 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 closeRecordFolder.description=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u9589\u3058\u307e\u3059
# Complete event # Complete event
completeEvent.title=\u30a4\u30d9\u30f3\u30c8\u306e\u5b8c\u4e86 completeEvent.title=\u30a4\u30d9\u30f3\u30c8\u306e\u5b8c\u4e86
completeEvent.description=\u30a4\u30d9\u30f3\u30c8\u3092\u5b8c\u4e86\u3057\u307e\u3059 completeEvent.description=\u30a4\u30d9\u30f3\u30c8\u3092\u5b8c\u4e86\u3057\u307e\u3059
completeEvent.eventName.display-label=\u30a4\u30d9\u30f3\u30c8 completeEvent.eventName.display-label=\u30a4\u30d9\u30f3\u30c8
# Freeze # Freeze
freeze.title=\u51cd\u7d50 freeze.title=\u51cd\u7d50
freeze.description=\u30ec\u30b3\u30fc\u30c9\u3092\u51cd\u7d50\u3057\u307e\u3059 freeze.description=\u30ec\u30b3\u30fc\u30c9\u3092\u51cd\u7d50\u3057\u307e\u3059
freeze.reason.display-label=\u7406\u7531 freeze.reason.display-label=\u7406\u7531
# Unfreeze # Unfreeze
unfreeze.title=\u51cd\u7d50\u89e3\u9664 unfreeze.title=\u51cd\u7d50\u89e3\u9664
unfreeze.description=\u30ec\u30b3\u30fc\u30c9\u306e\u51cd\u7d50\u3092\u89e3\u9664\u3057\u307e\u3059 unfreeze.description=\u30ec\u30b3\u30fc\u30c9\u306e\u51cd\u7d50\u3092\u89e3\u9664\u3057\u307e\u3059
# File to # File to
fileTo.title=\u6574\u7406\u4fdd\u7ba1\u5148 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.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.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 fileTo.createRecordPath.display-label=\u30ec\u30b3\u30fc\u30c9\u30d1\u30b9\u306e\u4f5c\u6210
# Copy to # Copy to
copyTo.title=\u30b3\u30d4\u30fc\u5148 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.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.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 copyTo.createRecordPath.display-label=\u30ec\u30b3\u30fc\u30c9\u30d1\u30b9\u306e\u4f5c\u6210
# Move to # Move to
moveTo.title=\u79fb\u52d5\u5148 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.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.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 moveTo.createRecordPath.display-label=\u30ec\u30b3\u30fc\u30c9\u30d1\u30b9\u306e\u4f5c\u6210
# Link to # Link to
linkTo.title=\u30ea\u30f3\u30af\u5148 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.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.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 linkTo.createRecordPath.display-label=\u30ec\u30b3\u30fc\u30c9\u30d1\u30b9\u306e\u4f5c\u6210
# Reject # Reject
reject.title=\u5374\u4e0b 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.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 reject.reason.display-label=\u5374\u4e0b\u306e\u7406\u7531
# Request Information # Request Information
requestInfo.title=\u60c5\u5831\u306e\u30ea\u30af\u30a8\u30b9\u30c8 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 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 # Execute script
executeScript.title=\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c executeScript.title=\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c
executeScript.description=\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059 executeScript.description=\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059
executeScript.script-ref.display-label=\u30b9\u30af\u30ea\u30d7\u30c8 executeScript.script-ref.display-label=\u30b9\u30af\u30ea\u30d7\u30c8
# Send Email # Send Email
sendEmail.title=E \u30e1\u30fc\u30eb\u306e\u9001\u4fe1 sendEmail.title=E \u30e1\u30fc\u30eb\u306e\u9001\u4fe1
sendEmail.description=E \u30e1\u30fc\u30eb\u3092\u9001\u4fe1\u3057\u307e\u3059 sendEmail.description=E \u30e1\u30fc\u30eb\u3092\u9001\u4fe1\u3057\u307e\u3059
# Set Property # Set Property
setPropertyValue.title=\u30d7\u30ed\u30d1\u30c6\u30a3\u5024\u306e\u8a2d\u5b9a 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 setPropertyValue.description=\u30d7\u30ed\u30d1\u30c6\u30a3\u306e\u5024\u3092\u8a2d\u5b9a\u3057\u307e\u3059
# Edit Hold Reason # Edit Hold Reason
editHoldReason.title=\u30db\u30fc\u30eb\u30c9\u7406\u7531\u306e\u7de8\u96c6 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 editHoldReason.description=\u30db\u30fc\u30eb\u30c9\u306e\u7406\u7531\u3092\u7de8\u96c6\u3057\u307e\u3059
# Relinquish Hold # Relinquish Hold
relinquishHold.title=\u30db\u30fc\u30eb\u30c9\u306e\u89e3\u9664 relinquishHold.title=\u30db\u30fc\u30eb\u30c9\u306e\u89e3\u9664
relinquishHold.description=\u30db\u30fc\u30eb\u30c9\u3092\u89e3\u9664\u3057\u307e\u3059 relinquishHold.description=\u30db\u30fc\u30eb\u30c9\u3092\u89e3\u9664\u3057\u307e\u3059
# Edit Review As Of Date # Edit Review As Of Date
editReviewAsOfDate.title=\u30ec\u30d3\u30e5\u30fc\u5b9f\u884c\u65e5\u306e\u7de8\u96c6 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 editReviewAsOfDate.description=\u30ec\u30d3\u30e5\u30fc\u5b9f\u884c\u65e5\u3092\u7de8\u96c6\u3057\u307e\u3059
# Edit Disposition Action As Of Date # Edit Disposition Action As Of Date
editDispositionActionAsOfDate.title=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9f\u884c\u65e5\u3092\u7de8\u96c6 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 editDispositionActionAsOfDate.description=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9f\u884c\u65e5\u3092\u7de8\u96c6\u3057\u307e\u3059
# Broadcast Vital Record Definition # 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.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 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 # 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.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 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 # Undo Event
undoEvent.title=\u30a4\u30d9\u30f3\u30c8\u3092\u5143\u306b\u623b\u3059 undoEvent.title=\u30a4\u30d9\u30f3\u30c8\u3092\u5143\u306b\u623b\u3059
undoEvent.description=\u30a4\u30d9\u30f3\u30c8\u3092\u5143\u306b\u623b\u3057\u307e\u3059 undoEvent.description=\u30a4\u30d9\u30f3\u30c8\u3092\u5143\u306b\u623b\u3057\u307e\u3059
# Transfer Complete # Transfer Complete
transferComplete.title=\u8ee2\u9001\u5b8c\u4e86 transferComplete.title=\u8ee2\u9001\u5b8c\u4e86
transferComplete.description=\u8ee2\u9001\u5b8c\u4e86 transferComplete.description=\u8ee2\u9001\u5b8c\u4e86
# Accession Complete # Accession Complete
accessionComplete.title=\u53d7\u8afe\u5b8c\u4e86 accessionComplete.title=\u53d7\u8afe\u5b8c\u4e86
accessionComplete.description=\u53d7\u8afe\u5b8c\u4e86 accessionComplete.description=\u53d7\u8afe\u5b8c\u4e86
# Split Email # Split Email
splitEmail.title=E \u30e1\u30fc\u30eb\u306e\u5206\u96e2 splitEmail.title=E \u30e1\u30fc\u30eb\u306e\u5206\u96e2
splitEmail.description=E \u30e1\u30fc\u30eb\u3092\u5206\u96e2\u3057\u307e\u3059 splitEmail.description=E \u30e1\u30fc\u30eb\u3092\u5206\u96e2\u3057\u307e\u3059
# Create Rentention Schedule # Create Rentention Schedule
createDispositionSchedule.title=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u306e\u4f5c\u6210 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 createDispositionSchedule.description=\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3092\u4f5c\u6210\u3057\u307e\u3059
# File Destruction Report # File Destruction Report
fileDestructionReport.title=\u7834\u68c4\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1 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 fileDestructionReport.description=\u7834\u68c4\u30ec\u30dd\u30fc\u30c8\u3092\u6574\u7406\u4fdd\u7ba1\u3057\u307e\u3059
# Cut off # Cut off
cutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5 cutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5
cutoff.description=\u30ab\u30c3\u30c8\u30aa\u30d5 cutoff.description=\u30ab\u30c3\u30c8\u30aa\u30d5
# Destroy # Destroy
destroy.title=\u7834\u68c4 destroy.title=\u7834\u68c4
destroy.description=\u7834\u68c4 destroy.description=\u7834\u68c4
# Reviewed # Reviewed
reviewed.title=\u30ec\u30d3\u30e5\u30fc\u6e08\u307f reviewed.title=\u30ec\u30d3\u30e5\u30fc\u6e08\u307f
reviewed.description=\u30ec\u30d3\u30e5\u30fc\u6e08\u307f reviewed.description=\u30ec\u30d3\u30e5\u30fc\u6e08\u307f
# Hide Record # Hide Record
hide-record.title=\u30ec\u30b3\u30fc\u30c9\u3092\u975e\u8868\u793a\u306b\u3059\u308b 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 hide-record.description=\u30ec\u30b3\u30fc\u30c9\u3092\u975e\u8868\u793a\u306b\u3057\u307e\u3059
# Transfer # Transfer
transfer.title=\u8ee2\u9001 transfer.title=\u8ee2\u9001
transfer.description=\u8ee2\u9001 transfer.description=\u8ee2\u9001
# Uncut off # Uncut off
unCutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5\u3092\u53d6\u308a\u6d88\u3059 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 unCutoff.description=\u30ab\u30c3\u30c8\u30aa\u30d5\u3092\u53d6\u308a\u6d88\u3057\u307e\u3059
# Accession # Accession
accession.title=\u53d7\u8afe accession.title=\u53d7\u8afe
accession.description=\u53d7\u8afe accession.description=\u53d7\u8afe
# Retain # Retain
retain.title=\u4fdd\u7ba1 retain.title=\u4fdd\u7ba1
retain.description=\u4fdd\u7ba1 retain.description=\u4fdd\u7ba1
# Add Record Types # Add Record Types
addRecordTypes.title=\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7\u306e\u8ffd\u52a0 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 addRecordTypes.description=\u9078\u629e\u3057\u305f\u30bf\u30a4\u30d7\u3092\u30ec\u30b3\u30fc\u30c9\u306b\u8ffd\u52a0\u3057\u307e\u3059
# File report # File report
fileReport.title=\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1 fileReport.title=\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1
fileReport.description=\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1 fileReport.description=\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1
# Delete Hold # Delete Hold
deleteHold.title=\u30db\u30fc\u30eb\u30c9\u306e\u524a\u9664 deleteHold.title=\u30db\u30fc\u30eb\u30c9\u306e\u524a\u9664
deleteHold.description=\u30db\u30fc\u30eb\u30c9\u306e\u524a\u9664 deleteHold.description=\u30db\u30fc\u30eb\u30c9\u306e\u524a\u9664
# Move DM record # Move DM record
move-dm-record.title=\u30ec\u30b3\u30fc\u30c9\u306e\u79fb\u52d5 move-dm-record.title=\u30ec\u30b3\u30fc\u30c9\u306e\u79fb\u52d5
move-dm-record.description=\u30ec\u30b3\u30fc\u30c9\u306e\u79fb\u52d5 move-dm-record.description=\u30ec\u30b3\u30fc\u30c9\u306e\u79fb\u52d5
# Unlink from # Unlink from
unlinkFrom.title=\u30ea\u30f3\u30af\u306e\u89e3\u9664\u5143 unlinkFrom.title=\u30ea\u30f3\u30af\u306e\u89e3\u9664\u5143
unlinkFrom.description=\u30ea\u30f3\u30af\u306e\u89e3\u9664\u5143 unlinkFrom.description=\u30ea\u30f3\u30af\u306e\u89e3\u9664\u5143
# Recordable version config # Recordable version config
recordable-version-config.title=\u81ea\u52d5\u5ba3\u8a00\u30aa\u30d7\u30b7\u30e7\u30f3 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.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 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 # Action parameter constraints
rm-ac-is-kind-kinds.record_category=\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea 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_folder=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
rm-ac-is-kind-kinds.record=\u30ec\u30b3\u30fc\u30c9 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.next=\u6b21\u3078
rm-ac-disposition-action-relative-positions.previous=\u524d\u3078 rm-ac-disposition-action-relative-positions.previous=\u524d\u3078
rm-ac-disposition-action-relative-positions.any=\u4efb\u610f rm-ac-disposition-action-relative-positions.any=\u4efb\u610f
ac-versions.none=\u8a2d\u5b9a\u3057\u306a\u3044 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.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 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

View File

@@ -1,211 +1,211 @@
# #
# i18n for Records Management Action Conditions # i18n for Records Management Action Conditions
# #
# Are classified # Are classified
isClassified.title=Klassifisert etter retensjonsplanen isClassified.title=Klassifisert etter retensjonsplanen
isClassified.description=Oppf\u00f8ringer og oppf\u00f8ringsmapper klassifisert etter en retensjonsplan isClassified.description=Oppf\u00f8ringer og oppf\u00f8ringsmapper klassifisert etter en retensjonsplan
# Are cutoff # Are cutoff
isCutoff.title=Cut off isCutoff.title=Cut off
isCutoff.description=Cut off av oppf\u00f8ringer og oppf\u00f8ringsmapper. isCutoff.description=Cut off av oppf\u00f8ringer og oppf\u00f8ringsmapper.
# Are declared # Are declared
isDeclared.title=Oppf\u00f8ring fullf\u00f8rt isDeclared.title=Oppf\u00f8ring fullf\u00f8rt
isDeclared.description=Oppf\u00f8ring er fullf\u00f8rt isDeclared.description=Oppf\u00f8ring er fullf\u00f8rt
# Is on hold # Is on hold
isFrozen.title=P\u00e5 hold isFrozen.title=P\u00e5 hold
isFrozen.description=Oppf\u00f8ring eller oppf\u00f8ringsmappe p\u00e5 hold. isFrozen.description=Oppf\u00f8ring eller oppf\u00f8ringsmappe p\u00e5 hold.
# Are filed # Are filed
isRecordFiled.title=Oppf\u00f8ring registrert isRecordFiled.title=Oppf\u00f8ring registrert
isRecordFiled.description=Oppf\u00f8ring er registrert isRecordFiled.description=Oppf\u00f8ring er registrert
# Are closed record folders # Are closed record folders
isRecordFolderClosed.title=Oppf\u00f8ringsmappe lukket isRecordFolderClosed.title=Oppf\u00f8ringsmappe lukket
isRecordFolderClosed.description=Oppf\u00f8ringsmappe er lukket isRecordFolderClosed.description=Oppf\u00f8ringsmappe er lukket
# Are vital # Are vital
isVital.title=Sv\u00e6rt viktig oppf\u00f8ring isVital.title=Sv\u00e6rt viktig oppf\u00f8ring
isVital.description=Oppf\u00f8ring eller oppf\u00f8ringsmappe er en v\u00e6rt viktig oppf\u00f8ring isVital.description=Oppf\u00f8ring eller oppf\u00f8ringsmappe er en v\u00e6rt viktig oppf\u00f8ring
# Have Rentention Action # Have Rentention Action
hasDispositionAction.title=Har retensjonshandling hasDispositionAction.title=Har retensjonshandling
hasDispositionAction.description=Oppf\u00f8ringene og mappene har de spesifikke assosierte retensjonshandlingen p\u00e5 den spesifiserte relative posisjonen hasDispositionAction.description=Oppf\u00f8ringene og mappene har de spesifikke assosierte retensjonshandlingen p\u00e5 den spesifiserte relative posisjonen
# Are kind # Are kind
isKind.title=Type element ved oppf\u00f8ringsh\u00e5ndtering isKind.title=Type element ved oppf\u00f8ringsh\u00e5ndtering
isKind.description=Elementer er en type filplankomponent isKind.description=Elementer er en type filplankomponent
isKind.kind.display-label=Type isKind.kind.display-label=Type
# Are Record Type # Are Record Type
isRecordType.title=Har oppf\u00f8ringstype isRecordType.title=Har oppf\u00f8ringstype
isRecordType.description=Oppf\u00f8ringer har en bestemt oppf\u00f8ringstype isRecordType.description=Oppf\u00f8ringer har en bestemt oppf\u00f8ringstype
# #
# i18n for Records Management Actions # i18n for Records Management Actions
# #
# Declare As Record # Declare As Record
create-record.title=Erkl\u00e6r som oppf\u00f8ring create-record.title=Erkl\u00e6r som oppf\u00f8ring
create-record.description=Erkl\u00e6rer filen som oppf\u00f8ring create-record.description=Erkl\u00e6rer filen som oppf\u00f8ring
create-record.file-plan.display-label=Filplan create-record.file-plan.display-label=Filplan
create-record.hide-record.display-label=Skjul oppf\u00f8ring create-record.hide-record.display-label=Skjul oppf\u00f8ring
# Declare As Version Record # Declare As Version Record
declare-as-version-record.title=Erkl\u00e6r versjonen som oppf\u00f8ring 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.description=Erkl\u00e6rer denne versjonen av filen som er oppf\u00f8ring
declare-as-version-record.file-plan.display-label=Filplan declare-as-version-record.file-plan.display-label=Filplan
# Complete record # Complete record
declareRecord.title=Fullf\u00f8r oppf\u00f8ring declareRecord.title=Fullf\u00f8r oppf\u00f8ring
declareRecord.description=Fullf\u00f8rer en oppf\u00f8ring declareRecord.description=Fullf\u00f8rer en oppf\u00f8ring
# Reopens record # Reopens record
undeclareRecord.title=\u00c5pne oppf\u00f8ring p\u00e5 nytt undeclareRecord.title=\u00c5pne oppf\u00f8ring p\u00e5 nytt
undeclareRecord.description=\u00c5pner en oppf\u00f8ring p\u00e5 nytt undeclareRecord.description=\u00c5pner en oppf\u00f8ring p\u00e5 nytt
# Open record folder # Open record folder
openRecordFolder.title=\u00c5pne oppf\u00f8ringsmappe openRecordFolder.title=\u00c5pne oppf\u00f8ringsmappe
openRecordFolder.description=\u00c5pner en oppf\u00f8ringsmappe openRecordFolder.description=\u00c5pner en oppf\u00f8ringsmappe
# Close record folder # Close record folder
closeRecordFolder.title=Lukk oppf\u00f8ringsmappe closeRecordFolder.title=Lukk oppf\u00f8ringsmappe
closeRecordFolder.description=Lukker en oppf\u00f8ringsmappe closeRecordFolder.description=Lukker en oppf\u00f8ringsmappe
# Complete event # Complete event
completeEvent.title=Fullf\u00f8r hendelse completeEvent.title=Fullf\u00f8r hendelse
completeEvent.description=Fullf\u00f8rer en hendelse completeEvent.description=Fullf\u00f8rer en hendelse
completeEvent.eventName.display-label=Hendelse completeEvent.eventName.display-label=Hendelse
# Freeze # Freeze
freeze.title=Frys freeze.title=Frys
freeze.description=Fryser en oppf\u00f8ring freeze.description=Fryser en oppf\u00f8ring
freeze.reason.display-label=Grunn freeze.reason.display-label=Grunn
# Unfreeze # Unfreeze
unfreeze.title=T\u00f8 opp unfreeze.title=T\u00f8 opp
unfreeze.description=T\u00f8r opp en oppf\u00f8ring unfreeze.description=T\u00f8r opp en oppf\u00f8ring
# File to # File to
fileTo.title=Arkiver i fileTo.title=Arkiver i
fileTo.description=En oppf\u00f8ring arkiveres i en bestemt oppf\u00f8ringsmappe fileTo.description=En oppf\u00f8ring arkiveres i en bestemt oppf\u00f8ringsmappe
fileTo.path.display-label=Bane til oppf\u00f8ringsmappe fileTo.path.display-label=Bane til oppf\u00f8ringsmappe
fileTo.createRecordPath.display-label=Opprett oppf\u00f8ringsbane fileTo.createRecordPath.display-label=Opprett oppf\u00f8ringsbane
# Copy to # Copy to
copyTo.title=Kopier til copyTo.title=Kopier til
copyTo.description=En oppf\u00f8ring kopieres i en bestemt oppf\u00f8ringsmappe copyTo.description=En oppf\u00f8ring kopieres i en bestemt oppf\u00f8ringsmappe
copyTo.path.display-label=Bane til oppf\u00f8ringsmappe copyTo.path.display-label=Bane til oppf\u00f8ringsmappe
copyTo.createRecordPath.display-label=Opprett oppf\u00f8ringsbane copyTo.createRecordPath.display-label=Opprett oppf\u00f8ringsbane
# Move to # Move to
moveTo.title=Flytt til moveTo.title=Flytt til
moveTo.description=En oppf\u00f8ring flyttes til i en bestemt oppf\u00f8ringsmappe moveTo.description=En oppf\u00f8ring flyttes til i en bestemt oppf\u00f8ringsmappe
moveTo.path.display-label=Bane til oppf\u00f8ringsmappe moveTo.path.display-label=Bane til oppf\u00f8ringsmappe
moveTo.createRecordPath.display-label=Opprett oppf\u00f8ringsbane moveTo.createRecordPath.display-label=Opprett oppf\u00f8ringsbane
# Link to # Link to
linkTo.title=Koble til linkTo.title=Koble til
linkTo.description=En oppf\u00f8ring kobles til i en bestemt oppf\u00f8ringsmappe linkTo.description=En oppf\u00f8ring kobles til i en bestemt oppf\u00f8ringsmappe
linkTo.path.display-label=Bane til oppf\u00f8ringsmappe linkTo.path.display-label=Bane til oppf\u00f8ringsmappe
linkTo.createRecordPath.display-label=Opprett oppf\u00f8ringsbane linkTo.createRecordPath.display-label=Opprett oppf\u00f8ringsbane
# Reject # Reject
reject.title=Avvis reject.title=Avvis
reject.description=En oppf\u00f8ring avvises, og filen flyttes til det opprinnelige stedet reject.description=En oppf\u00f8ring avvises, og filen flyttes til det opprinnelige stedet
reject.reason.display-label=\u00c5rsak til avvisning reject.reason.display-label=\u00c5rsak til avvisning
# Request Information # Request Information
requestInfo.title=Be om informasjon requestInfo.title=Be om informasjon
requestInfo.description=Starter en arbeidsflyt for \u00e5 be om mer informasjon om en oppf\u00f8ring requestInfo.description=Starter en arbeidsflyt for \u00e5 be om mer informasjon om en oppf\u00f8ring
# Execute script # Execute script
executeScript.title=Kj\u00f8r skript executeScript.title=Kj\u00f8r skript
executeScript.description=Kj\u00f8r et skript. executeScript.description=Kj\u00f8r et skript.
executeScript.script-ref.display-label=Skript executeScript.script-ref.display-label=Skript
# Send Email # Send Email
sendEmail.title=Send e-post sendEmail.title=Send e-post
sendEmail.description=Send en e-post sendEmail.description=Send en e-post
# Set Property # Set Property
setPropertyValue.title=Still inn egenskapsverdi setPropertyValue.title=Still inn egenskapsverdi
setPropertyValue.description=Still inn en egenskapsverdi setPropertyValue.description=Still inn en egenskapsverdi
# Edit Hold Reason # Edit Hold Reason
editHoldReason.title=Rediger grunn til holdet editHoldReason.title=Rediger grunn til holdet
editHoldReason.description=Rediger grunnen til holdet editHoldReason.description=Rediger grunnen til holdet
# Relinquish Hold # Relinquish Hold
relinquishHold.title=Avslutt hold relinquishHold.title=Avslutt hold
relinquishHold.description=Avslutt holdet relinquishHold.description=Avslutt holdet
# Edit Review As Of Date # Edit Review As Of Date
editReviewAsOfDate.title=Rediger gjennomgang per datoen editReviewAsOfDate.title=Rediger gjennomgang per datoen
editReviewAsOfDate.description=Rediger gjennomgang per datoen editReviewAsOfDate.description=Rediger gjennomgang per datoen
# Edit Disposition Action As Of Date # Edit Disposition Action As Of Date
editDispositionActionAsOfDate.title=Rediger retensjonshandling per datoen editDispositionActionAsOfDate.title=Rediger retensjonshandling per datoen
editDispositionActionAsOfDate.description=Rediger retensjonshandlingen per datoen editDispositionActionAsOfDate.description=Rediger retensjonshandlingen per datoen
# Broadcast Vital Record Definition # Broadcast Vital Record Definition
broadcastVitalRecordDefinition.title=Kringkast definisjonen til sv\u00e6rt viktig oppf\u00f8ring broadcastVitalRecordDefinition.title=Kringkast definisjonen til sv\u00e6rt viktig oppf\u00f8ring
broadcastVitalRecordDefinition.description=Kringkast definisjonen til den sv\u00e6rt viktige oppf\u00f8ringen broadcastVitalRecordDefinition.description=Kringkast definisjonen til den sv\u00e6rt viktige oppf\u00f8ringen
# Broadcast Disposition Action Definition Update # Broadcast Disposition Action Definition Update
broadcastDispositionActionDefinitionUpdate.title=Kringkast oppdatering av definisjonen til retensjonshandling broadcastDispositionActionDefinitionUpdate.title=Kringkast oppdatering av definisjonen til retensjonshandling
broadcastDispositionActionDefinitionUpdate.description=Kringkast oppdatering av definisjonen til retensjonshandling broadcastDispositionActionDefinitionUpdate.description=Kringkast oppdatering av definisjonen til retensjonshandling
# Undo Event # Undo Event
undoEvent.title=Angre hendelse undoEvent.title=Angre hendelse
undoEvent.description=Angre hendelse undoEvent.description=Angre hendelse
# Transfer Complete # Transfer Complete
transferComplete.title=Overf\u00f8ring fullf\u00f8rt transferComplete.title=Overf\u00f8ring fullf\u00f8rt
transferComplete.description=Overf\u00f8ring fullf\u00f8rt transferComplete.description=Overf\u00f8ring fullf\u00f8rt
# Accession Complete # Accession Complete
accessionComplete.title=Tilgang fullf\u00f8rt accessionComplete.title=Tilgang fullf\u00f8rt
accessionComplete.description=Tilgang fullf\u00f8rt accessionComplete.description=Tilgang fullf\u00f8rt
# Split Email # Split Email
splitEmail.title=Delt e-post splitEmail.title=Delt e-post
splitEmail.description=Delt e-post splitEmail.description=Delt e-post
# Create Rentention Schedule # Create Rentention Schedule
createDispositionSchedule.title=Opprett retensjonsplan createDispositionSchedule.title=Opprett retensjonsplan
createDispositionSchedule.description=Opprett retensjonsplan createDispositionSchedule.description=Opprett retensjonsplan
# File Destruction Report # File Destruction Report
fileDestructionReport.title=Fildestruksjonsrapport fileDestructionReport.title=Fildestruksjonsrapport
fileDestructionReport.description=Fildestruksjonsrapport fileDestructionReport.description=Fildestruksjonsrapport
# Cut off # Cut off
cutoff.title=Cut off cutoff.title=Cut off
cutoff.description=Cut off cutoff.description=Cut off
# Destroy # Destroy
destroy.title=Destruer destroy.title=Destruer
destroy.description=Destruer destroy.description=Destruer
# Reviewed # Reviewed
reviewed.title=Gjennomg\u00e5tt reviewed.title=Gjennomg\u00e5tt
reviewed.description=Gjennomg\u00e5tt reviewed.description=Gjennomg\u00e5tt
# Hide Record # Hide Record
hide-record.title=Skjul oppf\u00f8ring hide-record.title=Skjul oppf\u00f8ring
hide-record.description=Skjul oppf\u00f8ring hide-record.description=Skjul oppf\u00f8ring
# Transfer # Transfer
transfer.title=Overf\u00f8r transfer.title=Overf\u00f8r
transfer.description=Overf\u00f8r transfer.description=Overf\u00f8r
# Uncut off # Uncut off
unCutoff.title=Angre cut off unCutoff.title=Angre cut off
unCutoff.description=Angre cut off unCutoff.description=Angre cut off
# Accession # Accession
accession.title=Tilgang accession.title=Tilgang
accession.description=Tilgang accession.description=Tilgang
# Retain # Retain
retain.title=Behold retain.title=Behold
retain.description=Behold retain.description=Behold
# Add Record Types # Add Record Types
addRecordTypes.title=Legg til oppf\u00f8ringstyper addRecordTypes.title=Legg til oppf\u00f8ringstyper
addRecordTypes.description=Legger valgt(e) type(r) til oppf\u00f8ringen addRecordTypes.description=Legger valgt(e) type(r) til oppf\u00f8ringen
# File report # File report
fileReport.title=Registrer rapport fileReport.title=Registrer rapport
fileReport.description=Registrer rapport fileReport.description=Registrer rapport
# Delete Hold # Delete Hold
deleteHold.title=Slett hold deleteHold.title=Slett hold
deleteHold.description=Slett hold deleteHold.description=Slett hold
# Move DM record # Move DM record
move-dm-record.title=Flytt oppf\u00f8ring move-dm-record.title=Flytt oppf\u00f8ring
move-dm-record.description=Flytt oppf\u00f8ring move-dm-record.description=Flytt oppf\u00f8ring
# Unlink from # Unlink from
unlinkFrom.title=Koble fra unlinkFrom.title=Koble fra
unlinkFrom.description=Koble fra unlinkFrom.description=Koble fra
# Recordable version config # Recordable version config
recordable-version-config.title=Alternativer med automatiske erkl\u00e6ringer recordable-version-config.title=Alternativer med automatiske erkl\u00e6ringer
recordable-version-config.description=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 recordable-version-config.version.display-label=Erkl\u00e6rer alternativene med automatiske erkl\u00e6ringer som oppf\u00f8ringer
# Action parameter constraints # Action parameter constraints
rm-ac-is-kind-kinds.record_category=Oppf\u00f8ringskategori rm-ac-is-kind-kinds.record_category=Oppf\u00f8ringskategori
rm-ac-is-kind-kinds.record_folder=Oppf\u00f8ringsmappe rm-ac-is-kind-kinds.record_folder=Oppf\u00f8ringsmappe
rm-ac-is-kind-kinds.record=Oppf\u00f8ring rm-ac-is-kind-kinds.record=Oppf\u00f8ring
rm-ac-disposition-action-relative-positions.next=Neste rm-ac-disposition-action-relative-positions.next=Neste
rm-ac-disposition-action-relative-positions.previous=Forrige rm-ac-disposition-action-relative-positions.previous=Forrige
rm-ac-disposition-action-relative-positions.any=Enhver rm-ac-disposition-action-relative-positions.any=Enhver
ac-versions.none=Aldri ac-versions.none=Aldri
ac-versions.major_only=Kun hovedversjoner ac-versions.major_only=Kun hovedversjoner
ac-versions.all=Til alle hovedversjoner og mindre versjoner ac-versions.all=Til alle hovedversjoner og mindre versjoner

View File

@@ -1,211 +1,211 @@
# #
# i18n for Records Management Action Conditions # i18n for Records Management Action Conditions
# #
# Are classified # Are classified
isClassified.title=Geclassificeerd op retentieschema isClassified.title=Geclassificeerd op retentieschema
isClassified.description=Records of archiefmappen zijn geclassificeerd op een retentieschema isClassified.description=Records of archiefmappen zijn geclassificeerd op een retentieschema
# Are cutoff # Are cutoff
isCutoff.title=Afsluiten isCutoff.title=Afsluiten
isCutoff.description=Records of archiefmappen zijn afgesloten isCutoff.description=Records of archiefmappen zijn afgesloten
# Are declared # Are declared
isDeclared.title=Record afgerond isDeclared.title=Record afgerond
isDeclared.description=Record is afgerond isDeclared.description=Record is afgerond
# Is on hold # Is on hold
isFrozen.title=In wachtstand isFrozen.title=In wachtstand
isFrozen.description=Record of archiefmap in wachtstand isFrozen.description=Record of archiefmap in wachtstand
# Are filed # Are filed
isRecordFiled.title=Record gearchiveerd isRecordFiled.title=Record gearchiveerd
isRecordFiled.description=Record is gearchiveerd isRecordFiled.description=Record is gearchiveerd
# Are closed record folders # Are closed record folders
isRecordFolderClosed.title=Archiefmap gesloten isRecordFolderClosed.title=Archiefmap gesloten
isRecordFolderClosed.description=Archiefmap is gesloten isRecordFolderClosed.description=Archiefmap is gesloten
# Are vital # Are vital
isVital.title=Vitale record isVital.title=Vitale record
isVital.description=Record of archiefmap is een vitale record isVital.description=Record of archiefmap is een vitale record
# Have Rentention Action # Have Rentention Action
hasDispositionAction.title=Heeft retentieactie hasDispositionAction.title=Heeft retentieactie
hasDispositionAction.description=Records en mappen hebben de opgegeven gekoppelde retentieactie op de opgegeven relatieve positie hasDispositionAction.description=Records en mappen hebben de opgegeven gekoppelde retentieactie op de opgegeven relatieve positie
# Are kind # Are kind
isKind.title=Type onderdeel Records Management isKind.title=Type onderdeel Records Management
isKind.description=Onderdelen zijn van een type ordeningsplancomponent isKind.description=Onderdelen zijn van een type ordeningsplancomponent
isKind.kind.display-label=Type isKind.kind.display-label=Type
# Are Record Type # Are Record Type
isRecordType.title=Heeft recordtype isRecordType.title=Heeft recordtype
isRecordType.description=Records hebben een opgegeven recordtype isRecordType.description=Records hebben een opgegeven recordtype
# #
# i18n for Records Management Actions # i18n for Records Management Actions
# #
# Declare As Record # Declare As Record
create-record.title=Declareren als record create-record.title=Declareren als record
create-record.description=Hiermee wordt een bestand gedeclareerd als een record create-record.description=Hiermee wordt een bestand gedeclareerd als een record
create-record.file-plan.display-label=Ordeningsplan create-record.file-plan.display-label=Ordeningsplan
create-record.hide-record.display-label=Record verbergen create-record.hide-record.display-label=Record verbergen
# Declare As Version Record # Declare As Version Record
declare-as-version-record.title=Versie declareren als 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.description=Hiermee wordt deze versie van het bestand gedeclareerd als een record
declare-as-version-record.file-plan.display-label=Ordeningsplan declare-as-version-record.file-plan.display-label=Ordeningsplan
# Complete record # Complete record
declareRecord.title=Record afronden declareRecord.title=Record afronden
declareRecord.description=Hiermee wordt een record afgerond declareRecord.description=Hiermee wordt een record afgerond
# Reopens record # Reopens record
undeclareRecord.title=Record heropenen undeclareRecord.title=Record heropenen
undeclareRecord.description=Hiermee wordt een record heropend undeclareRecord.description=Hiermee wordt een record heropend
# Open record folder # Open record folder
openRecordFolder.title=Archiefmap openen openRecordFolder.title=Archiefmap openen
openRecordFolder.description=Hiermee wordt een archiefmap geopend openRecordFolder.description=Hiermee wordt een archiefmap geopend
# Close record folder # Close record folder
closeRecordFolder.title=Archiefmap sluiten closeRecordFolder.title=Archiefmap sluiten
closeRecordFolder.description=Hiermee wordt een archiefmap gesloten closeRecordFolder.description=Hiermee wordt een archiefmap gesloten
# Complete event # Complete event
completeEvent.title=Gebeurtenis afronden completeEvent.title=Gebeurtenis afronden
completeEvent.description=Hiermee wordt een gebeurtenis afgerond completeEvent.description=Hiermee wordt een gebeurtenis afgerond
completeEvent.eventName.display-label=Gebeurtenis completeEvent.eventName.display-label=Gebeurtenis
# Freeze # Freeze
freeze.title=Bevriezen freeze.title=Bevriezen
freeze.description=Hiermee wordt een record bevroren freeze.description=Hiermee wordt een record bevroren
freeze.reason.display-label=Reden freeze.reason.display-label=Reden
# Unfreeze # Unfreeze
unfreeze.title=Bevriezen opheffen unfreeze.title=Bevriezen opheffen
unfreeze.description=Hiermee wordt de bevriezing van een record opgeheven unfreeze.description=Hiermee wordt de bevriezing van een record opgeheven
# File to # File to
fileTo.title=Archiveren in fileTo.title=Archiveren in
fileTo.description=Hiermee wordt een record gearchiveerd in de opgegeven archiefmap fileTo.description=Hiermee wordt een record gearchiveerd in de opgegeven archiefmap
fileTo.path.display-label=Pad naar archiefmap fileTo.path.display-label=Pad naar archiefmap
fileTo.createRecordPath.display-label=Recordpad maken fileTo.createRecordPath.display-label=Recordpad maken
# Copy to # Copy to
copyTo.title=Kopi\u00ebren naar copyTo.title=Kopi\u00ebren naar
copyTo.description=Hiermee wordt een record gekopieerd naar de opgegeven archiefmap copyTo.description=Hiermee wordt een record gekopieerd naar de opgegeven archiefmap
copyTo.path.display-label=Pad naar archiefmap copyTo.path.display-label=Pad naar archiefmap
copyTo.createRecordPath.display-label=Recordpad maken copyTo.createRecordPath.display-label=Recordpad maken
# Move to # Move to
moveTo.title=Verplaatsen naar moveTo.title=Verplaatsen naar
moveTo.description=Hiermee wordt een record verplaatst naar de opgegeven archiefmap moveTo.description=Hiermee wordt een record verplaatst naar de opgegeven archiefmap
moveTo.path.display-label=Pad naar archiefmap moveTo.path.display-label=Pad naar archiefmap
moveTo.createRecordPath.display-label=Recordpad maken moveTo.createRecordPath.display-label=Recordpad maken
# Link to # Link to
linkTo.title=Koppelen naar linkTo.title=Koppelen naar
linkTo.description=Hiermee wordt een record gekoppeld naar de opgegeven archiefmap linkTo.description=Hiermee wordt een record gekoppeld naar de opgegeven archiefmap
linkTo.path.display-label=Pad naar archiefmap linkTo.path.display-label=Pad naar archiefmap
linkTo.createRecordPath.display-label=Recordpad maken linkTo.createRecordPath.display-label=Recordpad maken
# Reject # Reject
reject.title=Afwijzen reject.title=Afwijzen
reject.description=Hiermee wordt een record afgewezen en wordt het document naar de originele locatie verplaatst reject.description=Hiermee wordt een record afgewezen en wordt het document naar de originele locatie verplaatst
reject.reason.display-label=Reden voor afwijzing reject.reason.display-label=Reden voor afwijzing
# Request Information # Request Information
requestInfo.title=Informatie aanvragen requestInfo.title=Informatie aanvragen
requestInfo.description=Hiermee wordt een workflow gestart voor het aanvragen van meer informatie over een record. requestInfo.description=Hiermee wordt een workflow gestart voor het aanvragen van meer informatie over een record.
# Execute script # Execute script
executeScript.title=Script uitvoeren executeScript.title=Script uitvoeren
executeScript.description=Een script uitvoeren executeScript.description=Een script uitvoeren
executeScript.script-ref.display-label=Script executeScript.script-ref.display-label=Script
# Send Email # Send Email
sendEmail.title=E-mail verzenden sendEmail.title=E-mail verzenden
sendEmail.description=Een e-mail verzenden sendEmail.description=Een e-mail verzenden
# Set Property # Set Property
setPropertyValue.title=Eigenschapwaarde instellen setPropertyValue.title=Eigenschapwaarde instellen
setPropertyValue.description=Een eigenschapwaarde instellen setPropertyValue.description=Een eigenschapwaarde instellen
# Edit Hold Reason # Edit Hold Reason
editHoldReason.title=Reden van wachtstand bewerken editHoldReason.title=Reden van wachtstand bewerken
editHoldReason.description=De reden van de wachtstand bewerken editHoldReason.description=De reden van de wachtstand bewerken
# Relinquish Hold # Relinquish Hold
relinquishHold.title=Wachtstand afwijzen relinquishHold.title=Wachtstand afwijzen
relinquishHold.description=De wachtstand afwijzen relinquishHold.description=De wachtstand afwijzen
# Edit Review As Of Date # Edit Review As Of Date
editReviewAsOfDate.title=Begindatum revisie bewerken editReviewAsOfDate.title=Begindatum revisie bewerken
editReviewAsOfDate.description=Begindatum revisie bewerken editReviewAsOfDate.description=Begindatum revisie bewerken
# Edit Disposition Action As Of Date # Edit Disposition Action As Of Date
editDispositionActionAsOfDate.title=Begindatum retentieactie bewerken editDispositionActionAsOfDate.title=Begindatum retentieactie bewerken
editDispositionActionAsOfDate.description=De begindatum van de retentieactie bewerken editDispositionActionAsOfDate.description=De begindatum van de retentieactie bewerken
# Broadcast Vital Record Definition # Broadcast Vital Record Definition
broadcastVitalRecordDefinition.title=Definitie vitale record uitzenden broadcastVitalRecordDefinition.title=Definitie vitale record uitzenden
broadcastVitalRecordDefinition.description=Definitie van de vitale record uitzenden broadcastVitalRecordDefinition.description=Definitie van de vitale record uitzenden
# Broadcast Disposition Action Definition Update # Broadcast Disposition Action Definition Update
broadcastDispositionActionDefinitionUpdate.title=Update van definitie retentieactie uitzenden broadcastDispositionActionDefinitionUpdate.title=Update van definitie retentieactie uitzenden
broadcastDispositionActionDefinitionUpdate.description=Update van definitie retentieactie uitzenden broadcastDispositionActionDefinitionUpdate.description=Update van definitie retentieactie uitzenden
# Undo Event # Undo Event
undoEvent.title=Gebeurtenis ongedaan maken undoEvent.title=Gebeurtenis ongedaan maken
undoEvent.description=Gebeurtenis ongedaan maken undoEvent.description=Gebeurtenis ongedaan maken
# Transfer Complete # Transfer Complete
transferComplete.title=Overzetten afgerond transferComplete.title=Overzetten afgerond
transferComplete.description=Overzetten afgerond transferComplete.description=Overzetten afgerond
# Accession Complete # Accession Complete
accessionComplete.title=Overdracht afgerond accessionComplete.title=Overdracht afgerond
accessionComplete.description=Overdracht afgerond accessionComplete.description=Overdracht afgerond
# Split Email # Split Email
splitEmail.title=E-mail opsplitsen splitEmail.title=E-mail opsplitsen
splitEmail.description=E-mail opsplitsen splitEmail.description=E-mail opsplitsen
# Create Rentention Schedule # Create Rentention Schedule
createDispositionSchedule.title=Retentieschema maken createDispositionSchedule.title=Retentieschema maken
createDispositionSchedule.description=Retentieschema maken createDispositionSchedule.description=Retentieschema maken
# File Destruction Report # File Destruction Report
fileDestructionReport.title=Vernietigingsrapport archiveren fileDestructionReport.title=Vernietigingsrapport archiveren
fileDestructionReport.description=Vernietigingsrapport archiveren fileDestructionReport.description=Vernietigingsrapport archiveren
# Cut off # Cut off
cutoff.title=Afsluiten cutoff.title=Afsluiten
cutoff.description=Afsluiten cutoff.description=Afsluiten
# Destroy # Destroy
destroy.title=Vernietigen destroy.title=Vernietigen
destroy.description=Vernietigen destroy.description=Vernietigen
# Reviewed # Reviewed
reviewed.title=Gereviseerd reviewed.title=Gereviseerd
reviewed.description=Gereviseerd reviewed.description=Gereviseerd
# Hide Record # Hide Record
hide-record.title=Record verbergen hide-record.title=Record verbergen
hide-record.description=Record verbergen hide-record.description=Record verbergen
# Transfer # Transfer
transfer.title=Overzetten transfer.title=Overzetten
transfer.description=Overzetten transfer.description=Overzetten
# Uncut off # Uncut off
unCutoff.title=Afsluiten ongedaan maken unCutoff.title=Afsluiten ongedaan maken
unCutoff.description=Afsluiten ongedaan maken unCutoff.description=Afsluiten ongedaan maken
# Accession # Accession
accession.title=Overdracht accession.title=Overdracht
accession.description=Overdracht accession.description=Overdracht
# Retain # Retain
retain.title=Behouden retain.title=Behouden
retain.description=Behouden retain.description=Behouden
# Add Record Types # Add Record Types
addRecordTypes.title=Recordtypes toevoegen addRecordTypes.title=Recordtypes toevoegen
addRecordTypes.description=Hiermee worden de geselecteerde types aan de record toegevoegd. addRecordTypes.description=Hiermee worden de geselecteerde types aan de record toegevoegd.
# File report # File report
fileReport.title=Rapport archiveren fileReport.title=Rapport archiveren
fileReport.description=Rapport archiveren fileReport.description=Rapport archiveren
# Delete Hold # Delete Hold
deleteHold.title=Wachtstand verwijderen deleteHold.title=Wachtstand verwijderen
deleteHold.description=Wachtstand verwijderen deleteHold.description=Wachtstand verwijderen
# Move DM record # Move DM record
move-dm-record.title=Record verplaatsen move-dm-record.title=Record verplaatsen
move-dm-record.description=Record verplaatsen move-dm-record.description=Record verplaatsen
# Unlink from # Unlink from
unlinkFrom.title=Koppeling opheffen met unlinkFrom.title=Koppeling opheffen met
unlinkFrom.description=Koppeling opheffen met unlinkFrom.description=Koppeling opheffen met
# Recordable version config # Recordable version config
recordable-version-config.title=Opties voor automatisch declareren recordable-version-config.title=Opties voor automatisch declareren
recordable-version-config.description=Opties voor automatisch declareren recordable-version-config.description=Opties voor automatisch declareren
recordable-version-config.version.display-label=Versies automatisch declareren als records recordable-version-config.version.display-label=Versies automatisch declareren als records
# Action parameter constraints # Action parameter constraints
rm-ac-is-kind-kinds.record_category=Recordcategorie rm-ac-is-kind-kinds.record_category=Recordcategorie
rm-ac-is-kind-kinds.record_folder=Archiefmap rm-ac-is-kind-kinds.record_folder=Archiefmap
rm-ac-is-kind-kinds.record=Record rm-ac-is-kind-kinds.record=Record
rm-ac-disposition-action-relative-positions.next=Volgende rm-ac-disposition-action-relative-positions.next=Volgende
rm-ac-disposition-action-relative-positions.previous=Vorige rm-ac-disposition-action-relative-positions.previous=Vorige
rm-ac-disposition-action-relative-positions.any=Willekeurig rm-ac-disposition-action-relative-positions.any=Willekeurig
ac-versions.none=Nooit ac-versions.none=Nooit
ac-versions.major_only=Alleen voor primaire versies ac-versions.major_only=Alleen voor primaire versies
ac-versions.all=Voor alle primaire en secundaire versies ac-versions.all=Voor alle primaire en secundaire versies

View File

@@ -1,211 +1,211 @@
# #
# i18n for Records Management Action Conditions # i18n for Records Management Action Conditions
# #
# Are classified # Are classified
isClassified.title=Classificado por programa\u00e7\u00e3o de reten\u00e7\u00e3o 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 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 # Are cutoff
isCutoff.title=Cortar isCutoff.title=Cortar
isCutoff.description=Os documentos arquiv\u00edsticos ou as pastas de documentos arquiv\u00edsticos s\u00e3o cortados isCutoff.description=Os documentos arquiv\u00edsticos ou as pastas de documentos arquiv\u00edsticos s\u00e3o cortados
# Are declared # Are declared
isDeclared.title=Documento arquiv\u00edstico conclu\u00eddo isDeclared.title=Documento arquiv\u00edstico conclu\u00eddo
isDeclared.description=Documento arquiv\u00edstico foi conclu\u00eddo isDeclared.description=Documento arquiv\u00edstico foi conclu\u00eddo
# Is on hold # Is on hold
isFrozen.title=Em espera isFrozen.title=Em espera
isFrozen.description=O documento arquiv\u00edstico ou a pasta de documento arquiv\u00edstico est\u00e1 em espera isFrozen.description=O documento arquiv\u00edstico ou a pasta de documento arquiv\u00edstico est\u00e1 em espera
# Are filed # Are filed
isRecordFiled.title=Documento arquiv\u00edstico arquivado isRecordFiled.title=Documento arquiv\u00edstico arquivado
isRecordFiled.description=Documento arquiv\u00edstico est\u00e1 arquivado isRecordFiled.description=Documento arquiv\u00edstico est\u00e1 arquivado
# Are closed record folders # Are closed record folders
isRecordFolderClosed.title=Pasta de documento arquiv\u00edstico fechada isRecordFolderClosed.title=Pasta de documento arquiv\u00edstico fechada
isRecordFolderClosed.description=Pasta de documento arquiv\u00edstico est\u00e1 fechada isRecordFolderClosed.description=Pasta de documento arquiv\u00edstico est\u00e1 fechada
# Are vital # Are vital
isVital.title=Documento arquiv\u00edstico 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 isVital.description=O documento arquiv\u00edstico ou a pasta de documento arquiv\u00edstico \u00e9 um documento arquiv\u00edstico vital
# Have Rentention Action # Have Rentention Action
hasDispositionAction.title=Tem a\u00e7\u00e3o de reten\u00e7\u00e3o 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 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 # Are kind
isKind.title=Tipo de item do Records Management isKind.title=Tipo de item do Records Management
isKind.description=Os itens s\u00e3o de um tipo de componente de plano de arquivo isKind.description=Os itens s\u00e3o de um tipo de componente de plano de arquivo
isKind.kind.display-label=Tipo isKind.kind.display-label=Tipo
# Are Record Type # Are Record Type
isRecordType.title=Tem tipo de documento arquiv\u00edstico isRecordType.title=Tem tipo de documento arquiv\u00edstico
isRecordType.description=Os documentos arquiv\u00edsticos t\u00eam um tipo de documento arquiv\u00edstico especificado isRecordType.description=Os documentos arquiv\u00edsticos t\u00eam um tipo de documento arquiv\u00edstico especificado
# #
# i18n for Records Management Actions # i18n for Records Management Actions
# #
# Declare As Record # Declare As Record
create-record.title=Declarar como documento arquiv\u00edstico create-record.title=Declarar como documento arquiv\u00edstico
create-record.description=Declara o arquivo com um 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.file-plan.display-label=Plano de arquivo
create-record.hide-record.display-label=Ocultar documento arquiv\u00edstico create-record.hide-record.display-label=Ocultar documento arquiv\u00edstico
# Declare As Version Record # Declare As Version Record
declare-as-version-record.title=Declarar vers\u00e3o como documento arquiv\u00edstico 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.description=Declara essa vers\u00e3o do arquivo como um documento arquiv\u00edstico
declare-as-version-record.file-plan.display-label=Plano de arquivo declare-as-version-record.file-plan.display-label=Plano de arquivo
# Complete record # Complete record
declareRecord.title=Concluir documento arquiv\u00edstico declareRecord.title=Concluir documento arquiv\u00edstico
declareRecord.description=Conclui um documento arquiv\u00edstico declareRecord.description=Conclui um documento arquiv\u00edstico
# Reopens record # Reopens record
undeclareRecord.title=Reabrir documento arquiv\u00edstico undeclareRecord.title=Reabrir documento arquiv\u00edstico
undeclareRecord.description=Reabre um documento arquiv\u00edstico undeclareRecord.description=Reabre um documento arquiv\u00edstico
# Open record folder # Open record folder
openRecordFolder.title=Abrir pasta de documento arquiv\u00edstico openRecordFolder.title=Abrir pasta de documento arquiv\u00edstico
openRecordFolder.description=Abre uma pasta de documento arquiv\u00edstico openRecordFolder.description=Abre uma pasta de documento arquiv\u00edstico
# Close record folder # Close record folder
closeRecordFolder.title=Fechar pasta de documento arquiv\u00edstico closeRecordFolder.title=Fechar pasta de documento arquiv\u00edstico
closeRecordFolder.description=Fecha uma pasta de documento arquiv\u00edstico closeRecordFolder.description=Fecha uma pasta de documento arquiv\u00edstico
# Complete event # Complete event
completeEvent.title=Concluir evento completeEvent.title=Concluir evento
completeEvent.description=Conclui um evento completeEvent.description=Conclui um evento
completeEvent.eventName.display-label=Evento completeEvent.eventName.display-label=Evento
# Freeze # Freeze
freeze.title=Congelar freeze.title=Congelar
freeze.description=Congela um documento arquiv\u00edstico freeze.description=Congela um documento arquiv\u00edstico
freeze.reason.display-label=Motivo freeze.reason.display-label=Motivo
# Unfreeze # Unfreeze
unfreeze.title=Descongelar unfreeze.title=Descongelar
unfreeze.description=Descongela um documento arquiv\u00edstico unfreeze.description=Descongela um documento arquiv\u00edstico
# File to # File to
fileTo.title=Arquivar em fileTo.title=Arquivar em
fileTo.description=Arquiva um documento arquiv\u00edstico na pasta de documento arquiv\u00edstico especificada 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.path.display-label=Caminho para pasta de documento arquiv\u00edstico
fileTo.createRecordPath.display-label=Criar caminho do documento arquiv\u00edstico fileTo.createRecordPath.display-label=Criar caminho do documento arquiv\u00edstico
# Copy to # Copy to
copyTo.title=Copiar para copyTo.title=Copiar para
copyTo.description=Copia um documento arquiv\u00edstico para a pasta de documento arquiv\u00edstico especificada 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.path.display-label=Caminho para pasta de documento arquiv\u00edstico
copyTo.createRecordPath.display-label=Criar caminho do documento arquiv\u00edstico copyTo.createRecordPath.display-label=Criar caminho do documento arquiv\u00edstico
# Move to # Move to
moveTo.title=Mover para moveTo.title=Mover para
moveTo.description=Move um documento arquiv\u00edstico para a pasta de documento arquiv\u00edstico especificada 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.path.display-label=Caminho para pasta de documento arquiv\u00edstico
moveTo.createRecordPath.display-label=Criar caminho do documento arquiv\u00edstico moveTo.createRecordPath.display-label=Criar caminho do documento arquiv\u00edstico
# Link to # Link to
linkTo.title=Vincular a linkTo.title=Vincular a
linkTo.description=Vincula um documento arquiv\u00edstico \u00e0 pasta de documento arquiv\u00edstico especificada 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.path.display-label=Caminho para pasta de documento arquiv\u00edstico
linkTo.createRecordPath.display-label=Criar caminho do documento arquiv\u00edstico linkTo.createRecordPath.display-label=Criar caminho do documento arquiv\u00edstico
# Reject # Reject
reject.title=Rejeitar reject.title=Rejeitar
reject.description=Rejeita um documento arquiv\u00edstico e move o arquivo para seu local original reject.description=Rejeita um documento arquiv\u00edstico e move o arquivo para seu local original
reject.reason.display-label=Motivo da rejei\u00e7\u00e3o reject.reason.display-label=Motivo da rejei\u00e7\u00e3o
# Request Information # Request Information
requestInfo.title=Solicitar informa\u00e7\u00f5es requestInfo.title=Solicitar informa\u00e7\u00f5es
requestInfo.description=Inicia um fluxo de trabalho para solicitar mais informa\u00e7\u00f5es de um documento arquiv\u00edstico requestInfo.description=Inicia um fluxo de trabalho para solicitar mais informa\u00e7\u00f5es de um documento arquiv\u00edstico
# Execute script # Execute script
executeScript.title=Executar script executeScript.title=Executar script
executeScript.description=Executa um script executeScript.description=Executa um script
executeScript.script-ref.display-label=Script executeScript.script-ref.display-label=Script
# Send Email # Send Email
sendEmail.title=Enviar e-mail sendEmail.title=Enviar e-mail
sendEmail.description=Envia um e-mail sendEmail.description=Envia um e-mail
# Set Property # Set Property
setPropertyValue.title=Definir valor da propriedade setPropertyValue.title=Definir valor da propriedade
setPropertyValue.description=Define um valor de propriedade setPropertyValue.description=Define um valor de propriedade
# Edit Hold Reason # Edit Hold Reason
editHoldReason.title=Editar motivo para manter editHoldReason.title=Editar motivo para manter
editHoldReason.description=Edita o motivo para manter editHoldReason.description=Edita o motivo para manter
# Relinquish Hold # Relinquish Hold
relinquishHold.title=Desistir da espera relinquishHold.title=Desistir da espera
relinquishHold.description=Desiste da espera relinquishHold.description=Desiste da espera
# Edit Review As Of Date # Edit Review As Of Date
editReviewAsOfDate.title=Editar data inicial de revis\u00e3o editReviewAsOfDate.title=Editar data inicial de revis\u00e3o
editReviewAsOfDate.description=Editar data inicial de revis\u00e3o editReviewAsOfDate.description=Editar data inicial de revis\u00e3o
# Edit Disposition Action As Of Date # Edit Disposition Action As Of Date
editDispositionActionAsOfDate.title=Editar data de in\u00edcio da a\u00e7\u00e3o de reten\u00e7\u00e3o 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 editDispositionActionAsOfDate.description=Editar a data de in\u00edcio da a\u00e7\u00e3o de reten\u00e7\u00e3o
# Broadcast Vital Record Definition # Broadcast Vital Record Definition
broadcastVitalRecordDefinition.title=Transmitir defini\u00e7\u00e3o do documento arquiv\u00edstico vital broadcastVitalRecordDefinition.title=Transmitir defini\u00e7\u00e3o do documento arquiv\u00edstico vital
broadcastVitalRecordDefinition.description=Transmitir a 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 # Broadcast Disposition Action Definition Update
broadcastDispositionActionDefinitionUpdate.title=Transmitir atualiza\u00e7\u00e3o da defini\u00e7\u00e3o da a\u00e7\u00e3o de reten\u00e7\u00e3o 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 broadcastDispositionActionDefinitionUpdate.description=Transmitir atualiza\u00e7\u00e3o da defini\u00e7\u00e3o da a\u00e7\u00e3o de reten\u00e7\u00e3o
# Undo Event # Undo Event
undoEvent.title=Desfazer evento undoEvent.title=Desfazer evento
undoEvent.description=Desfazer evento undoEvent.description=Desfazer evento
# Transfer Complete # Transfer Complete
transferComplete.title=Transfer\u00eancia conclu\u00edda transferComplete.title=Transfer\u00eancia conclu\u00edda
transferComplete.description=Transfer\u00eancia conclu\u00edda transferComplete.description=Transfer\u00eancia conclu\u00edda
# Accession Complete # Accession Complete
accessionComplete.title=Ades\u00e3o conclu\u00edda accessionComplete.title=Ades\u00e3o conclu\u00edda
accessionComplete.description=Ades\u00e3o conclu\u00edda accessionComplete.description=Ades\u00e3o conclu\u00edda
# Split Email # Split Email
splitEmail.title=Dividir e-mail splitEmail.title=Dividir e-mail
splitEmail.description=Dividir e-mail splitEmail.description=Dividir e-mail
# Create Rentention Schedule # Create Rentention Schedule
createDispositionSchedule.title=Criar programa\u00e7\u00e3o de reten\u00e7\u00e3o createDispositionSchedule.title=Criar programa\u00e7\u00e3o de reten\u00e7\u00e3o
createDispositionSchedule.description=Criar programa\u00e7\u00e3o de reten\u00e7\u00e3o createDispositionSchedule.description=Criar programa\u00e7\u00e3o de reten\u00e7\u00e3o
# File Destruction Report # File Destruction Report
fileDestructionReport.title=Relat\u00f3rio de destrui\u00e7\u00e3o de arquivos fileDestructionReport.title=Relat\u00f3rio de destrui\u00e7\u00e3o de arquivos
fileDestructionReport.description=Relat\u00f3rio de destrui\u00e7\u00e3o de arquivos fileDestructionReport.description=Relat\u00f3rio de destrui\u00e7\u00e3o de arquivos
# Cut off # Cut off
cutoff.title=Cortar cutoff.title=Cortar
cutoff.description=Cortar cutoff.description=Cortar
# Destroy # Destroy
destroy.title=Destruir destroy.title=Destruir
destroy.description=Destruir destroy.description=Destruir
# Reviewed # Reviewed
reviewed.title=Revisado reviewed.title=Revisado
reviewed.description=Revisado reviewed.description=Revisado
# Hide Record # Hide Record
hide-record.title=Ocultar documento arquiv\u00edstico hide-record.title=Ocultar documento arquiv\u00edstico
hide-record.description=Ocultar documento arquiv\u00edstico hide-record.description=Ocultar documento arquiv\u00edstico
# Transfer # Transfer
transfer.title=Transferir transfer.title=Transferir
transfer.description=Transferir transfer.description=Transferir
# Uncut off # Uncut off
unCutoff.title=Desfazer corte unCutoff.title=Desfazer corte
unCutoff.description=Desfazer corte unCutoff.description=Desfazer corte
# Accession # Accession
accession.title=Ades\u00e3o accession.title=Ades\u00e3o
accession.description=Ades\u00e3o accession.description=Ades\u00e3o
# Retain # Retain
retain.title=Manter retain.title=Manter
retain.description=Manter retain.description=Manter
# Add Record Types # Add Record Types
addRecordTypes.title=Adicionar tipos de documento arquiv\u00edstico addRecordTypes.title=Adicionar tipos de documento arquiv\u00edstico
addRecordTypes.description=Adiciona o(s) tipo(s) selecionado(s) ao documento arquiv\u00edstico addRecordTypes.description=Adiciona o(s) tipo(s) selecionado(s) ao documento arquiv\u00edstico
# File report # File report
fileReport.title=Arquivar relat\u00f3rio fileReport.title=Arquivar relat\u00f3rio
fileReport.description=Arquivar relat\u00f3rio fileReport.description=Arquivar relat\u00f3rio
# Delete Hold # Delete Hold
deleteHold.title=Excluir espera deleteHold.title=Excluir espera
deleteHold.description=Excluir espera deleteHold.description=Excluir espera
# Move DM record # Move DM record
move-dm-record.title=Mover documento arquiv\u00edstico move-dm-record.title=Mover documento arquiv\u00edstico
move-dm-record.description=Mover documento arquiv\u00edstico move-dm-record.description=Mover documento arquiv\u00edstico
# Unlink from # Unlink from
unlinkFrom.title=Desvincular de unlinkFrom.title=Desvincular de
unlinkFrom.description=Desvincular de unlinkFrom.description=Desvincular de
# Recordable version config # Recordable version config
recordable-version-config.title=Op\u00e7\u00f5es de auto declara\u00e7\u00e3o 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.description=Op\u00e7\u00f5es de auto declara\u00e7\u00e3o
recordable-version-config.version.display-label=Declarar automaticamente vers\u00f5es como documentos arquiv\u00edsticos recordable-version-config.version.display-label=Declarar automaticamente vers\u00f5es como documentos arquiv\u00edsticos
# Action parameter constraints # Action parameter constraints
rm-ac-is-kind-kinds.record_category=Categoria de documento arquiv\u00edstico 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_folder=Pasta de documento arquiv\u00edstico
rm-ac-is-kind-kinds.record=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.next=Pr\u00f3ximo
rm-ac-disposition-action-relative-positions.previous=Anterior rm-ac-disposition-action-relative-positions.previous=Anterior
rm-ac-disposition-action-relative-positions.any=Qualquer rm-ac-disposition-action-relative-positions.any=Qualquer
ac-versions.none=Nunca ac-versions.none=Nunca
ac-versions.major_only=Somente para vers\u00f5es principais ac-versions.major_only=Somente para vers\u00f5es principais
ac-versions.all=Para todas as vers\u00f5es principais e secund\u00e1rias ac-versions.all=Para todas as vers\u00f5es principais e secund\u00e1rias

View File

@@ -1,211 +1,211 @@
# #
# i18n for Records Management Action Conditions # i18n for Records Management Action Conditions
# #
# Are classified # 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.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 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 # Are cutoff
isCutoff.title=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c 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 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 # Are declared
isDeclared.title=\u0417\u0430\u043f\u0438\u0441\u044c \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430 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 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 # Is on hold
isFrozen.title=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0430 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 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 # 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.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 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 # 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.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 isRecordFolderClosed.description=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0437\u0430\u043a\u0440\u044b\u0442\u0430
# Are vital # Are vital
isVital.title=\u041a\u043b\u044e\u0447\u0435\u0432\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c 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 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 # 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.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 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 # 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.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.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 isKind.kind.display-label=\u0422\u0438\u043f
# Are Record Type # Are Record Type
isRecordType.title=\u0415\u0441\u0442\u044c \u0442\u0438\u043f \u0437\u0430\u043f\u0438\u0441\u0435\u0439 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 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 # i18n for Records Management Actions
# #
# Declare As Record # 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.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.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.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 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
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.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.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 declare-as-version-record.file-plan.display-label=\u0410\u0440\u0445\u0438\u0432
# Complete record # Complete record
declareRecord.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c 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 declareRecord.description=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
# Reopens record # Reopens record
undeclareRecord.title=\u041f\u0435\u0440\u0435\u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c 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 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 # 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.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 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 # 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.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 closeRecordFolder.description=\u0417\u0430\u043a\u0440\u044b\u0442\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
# Complete event # Complete event
completeEvent.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435 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.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 completeEvent.eventName.display-label=\u0421\u043e\u0431\u044b\u0442\u0438\u0435
# Freeze # Freeze
freeze.title=\u0417\u0430\u043a\u0440\u0435\u043f\u0438\u0442\u044c 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.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 freeze.reason.display-label=\u041f\u0440\u0438\u0447\u0438\u043d\u0430
# Unfreeze # Unfreeze
unfreeze.title=\u041e\u0442\u043a\u0440\u0435\u043f\u0438\u0442\u044c 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 unfreeze.description=\u041e\u0442\u043a\u0440\u0435\u043f\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
# File to # File to
fileTo.title=\u0421\u0434\u0430\u0442\u044c \u0432 \u0430\u0440\u0445\u0438\u0432 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.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.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 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 # Copy to
copyTo.title=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 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.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.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 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 # Move to
moveTo.title=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432 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.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.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 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 # Link to
linkTo.title=\u0421\u0432\u044f\u0437\u0430\u0442\u044c \u0441 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.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.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 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
reject.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c 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.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 reject.reason.display-label=\u041f\u0440\u0438\u0447\u0438\u043d\u0430 \u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u044f
# Request Information # Request Information
requestInfo.title=\u0417\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e 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 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 # Execute script
executeScript.title=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442 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.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 executeScript.script-ref.display-label=\u0421\u043a\u0440\u0438\u043f\u0442
# Send Email # 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.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 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 # 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.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 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 # 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.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 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 # Relinquish Hold
relinquishHold.title=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443 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 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 # 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.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 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 # 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.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 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 # 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.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 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 # 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.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 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 # Undo Event
undoEvent.title=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435 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 undoEvent.description=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435
# Transfer Complete # Transfer Complete
transferComplete.title=\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430 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 transferComplete.description=\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430
# Accession Complete # Accession Complete
accessionComplete.title=\u0414\u043e\u0441\u0442\u0443\u043f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d 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 accessionComplete.description=\u0414\u043e\u0441\u0442\u0443\u043f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d
# Split Email # 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.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 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 # 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.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 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 # 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.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 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 # Cut off
cutoff.title=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c cutoff.title=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
cutoff.description=\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c cutoff.description=\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c
# Destroy # Destroy
destroy.title=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\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 destroy.description=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c
# Reviewed # Reviewed
reviewed.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0435\u043d\u043e reviewed.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0435\u043d\u043e
reviewed.description=\u041f\u0440\u043e\u0432\u0435\u0440\u0435\u043d\u043e reviewed.description=\u041f\u0440\u043e\u0432\u0435\u0440\u0435\u043d\u043e
# Hide Record # Hide Record
hide-record.title=\u0421\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c 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 hide-record.description=\u0421\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
# Transfer # Transfer
transfer.title=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c transfer.title=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c
transfer.description=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c transfer.description=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c
# Uncut off # Uncut off
unCutoff.title=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435 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 unCutoff.description=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435
# Accession # Accession
accession.title=\u0414\u043e\u0441\u0442\u0443\u043f accession.title=\u0414\u043e\u0441\u0442\u0443\u043f
accession.description=\u0414\u043e\u0441\u0442\u0443\u043f accession.description=\u0414\u043e\u0441\u0442\u0443\u043f
# Retain # Retain
retain.title=\u0425\u0440\u0430\u043d\u0438\u0442\u044c retain.title=\u0425\u0440\u0430\u043d\u0438\u0442\u044c
retain.description=\u0425\u0440\u0430\u043d\u0438\u0442\u044c retain.description=\u0425\u0440\u0430\u043d\u0438\u0442\u044c
# Add Record Types # 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.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 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 # File report
fileReport.title=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043e\u0442\u0447\u0435\u0442 \u0432 \u0444\u0430\u0439\u043b 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 fileReport.description=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043e\u0442\u0447\u0435\u0442 \u0432 \u0444\u0430\u0439\u043b
# Delete Hold # Delete Hold
deleteHold.title=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443 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 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
move-dm-record.title=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c 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 move-dm-record.description=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
# Unlink from # Unlink from
unlinkFrom.title=\u041e\u0442\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u043e\u0442 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 unlinkFrom.description=\u041e\u0442\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u043e\u0442
# Recordable version config # 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.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.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 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 # 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_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_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-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.next=\u0414\u0430\u043b\u0435\u0435
rm-ac-disposition-action-relative-positions.previous=\u041d\u0430\u0437\u0430\u0434 rm-ac-disposition-action-relative-positions.previous=\u041d\u0430\u0437\u0430\u0434
rm-ac-disposition-action-relative-positions.any=\u041b\u044e\u0431\u043e\u0439 rm-ac-disposition-action-relative-positions.any=\u041b\u044e\u0431\u043e\u0439
ac-versions.none=\u041d\u0438\u043a\u043e\u0433\u0434\u0430 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.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 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

View File

@@ -1,211 +1,211 @@
# #
# i18n for Records Management Action Conditions # i18n for Records Management Action Conditions
# #
# Are classified # Are classified
isClassified.title=\u6309\u4fdd\u7559\u8ba1\u5212\u5206\u7c7b 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 isClassified.description=\u6309\u4fdd\u7559\u8ba1\u5212\u5c06\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u5206\u7c7b
# Are cutoff # Are cutoff
isCutoff.title=\u4e2d\u65ad isCutoff.title=\u4e2d\u65ad
isCutoff.description=\u5df2\u4e2d\u65ad\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939 isCutoff.description=\u5df2\u4e2d\u65ad\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939
# Are declared # Are declared
isDeclared.title=\u8bb0\u5f55\u5df2\u5b8c\u6210 isDeclared.title=\u8bb0\u5f55\u5df2\u5b8c\u6210
isDeclared.description=\u8bb0\u5f55\u5df2\u5b8c\u6210 isDeclared.description=\u8bb0\u5f55\u5df2\u5b8c\u6210
# Is on hold # Is on hold
isFrozen.title=\u4fdd\u5b58\u4e2d isFrozen.title=\u4fdd\u5b58\u4e2d
isFrozen.description=\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u5728\u4fdd\u5b58\u4e2d isFrozen.description=\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u5728\u4fdd\u5b58\u4e2d
# Are filed # Are filed
isRecordFiled.title=\u8bb0\u5f55\u5df2\u7acb\u5377 isRecordFiled.title=\u8bb0\u5f55\u5df2\u7acb\u5377
isRecordFiled.description=\u8bb0\u5f55\u5df2\u7acb\u5377 isRecordFiled.description=\u8bb0\u5f55\u5df2\u7acb\u5377
# Are closed record folders # Are closed record folders
isRecordFolderClosed.title=\u8bb0\u5f55\u6587\u4ef6\u5939\u5df2\u5173\u95ed isRecordFolderClosed.title=\u8bb0\u5f55\u6587\u4ef6\u5939\u5df2\u5173\u95ed
isRecordFolderClosed.description=\u8bb0\u5f55\u6587\u4ef6\u5939\u5df2\u5173\u95ed isRecordFolderClosed.description=\u8bb0\u5f55\u6587\u4ef6\u5939\u5df2\u5173\u95ed
# Are vital # Are vital
isVital.title=\u6838\u5fc3\u8bb0\u5f55 isVital.title=\u6838\u5fc3\u8bb0\u5f55
isVital.description=\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u4e3a\u6838\u5fc3\u8bb0\u5f55 isVital.description=\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u4e3a\u6838\u5fc3\u8bb0\u5f55
# Have Rentention Action # Have Rentention Action
hasDispositionAction.title=\u5177\u6709\u4fdd\u7559\u64cd\u4f5c 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 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 # Are kind
isKind.title=\u8bb0\u5f55\u7ba1\u7406\u9879\u76ee\u7684\u7c7b\u578b 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.description=\u9879\u76ee\u4e3a\u5f52\u7c7b\u65b9\u6848\u7ec4\u4ef6\u7c7b\u578b
isKind.kind.display-label=\u7c7b\u578b isKind.kind.display-label=\u7c7b\u578b
# Are Record Type # Are Record Type
isRecordType.title=\u5177\u6709\u8bb0\u5f55\u7c7b\u578b isRecordType.title=\u5177\u6709\u8bb0\u5f55\u7c7b\u578b
isRecordType.description=\u8bb0\u5f55\u5177\u6709\u6307\u5b9a\u7684\u8bb0\u5f55\u7c7b\u578b isRecordType.description=\u8bb0\u5f55\u5177\u6709\u6307\u5b9a\u7684\u8bb0\u5f55\u7c7b\u578b
# #
# i18n for Records Management Actions # i18n for Records Management Actions
# #
# Declare As Record # Declare As Record
create-record.title=\u58f0\u660e\u4e3a\u8bb0\u5f55 create-record.title=\u58f0\u660e\u4e3a\u8bb0\u5f55
create-record.description=\u5c06\u6587\u4ef6\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.file-plan.display-label=\u5f52\u7c7b\u65b9\u6848
create-record.hide-record.display-label=\u9690\u85cf\u8bb0\u5f55 create-record.hide-record.display-label=\u9690\u85cf\u8bb0\u5f55
# Declare As Version Record # Declare As Version Record
declare-as-version-record.title=\u5c06\u7248\u672c\u58f0\u660e\u4e3a\u8bb0\u5f55 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.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 declare-as-version-record.file-plan.display-label=\u5f52\u7c7b\u65b9\u6848
# Complete record # Complete record
declareRecord.title=\u5b8c\u6210\u8bb0\u5f55 declareRecord.title=\u5b8c\u6210\u8bb0\u5f55
declareRecord.description=\u5b8c\u6210\u8bb0\u5f55 declareRecord.description=\u5b8c\u6210\u8bb0\u5f55
# Reopens record # Reopens record
undeclareRecord.title=\u91cd\u65b0\u6253\u5f00\u8bb0\u5f55 undeclareRecord.title=\u91cd\u65b0\u6253\u5f00\u8bb0\u5f55
undeclareRecord.description=\u91cd\u65b0\u6253\u5f00\u8bb0\u5f55 undeclareRecord.description=\u91cd\u65b0\u6253\u5f00\u8bb0\u5f55
# Open record folder # Open record folder
openRecordFolder.title=\u6253\u5f00\u8bb0\u5f55\u6587\u4ef6\u5939 openRecordFolder.title=\u6253\u5f00\u8bb0\u5f55\u6587\u4ef6\u5939
openRecordFolder.description=\u6253\u5f00\u8bb0\u5f55\u6587\u4ef6\u5939 openRecordFolder.description=\u6253\u5f00\u8bb0\u5f55\u6587\u4ef6\u5939
# Close record folder # Close record folder
closeRecordFolder.title=\u5173\u95ed\u8bb0\u5f55\u6587\u4ef6\u5939 closeRecordFolder.title=\u5173\u95ed\u8bb0\u5f55\u6587\u4ef6\u5939
closeRecordFolder.description=\u5173\u95ed\u8bb0\u5f55\u6587\u4ef6\u5939 closeRecordFolder.description=\u5173\u95ed\u8bb0\u5f55\u6587\u4ef6\u5939
# Complete event # Complete event
completeEvent.title=\u5b8c\u6210\u4e8b\u4ef6 completeEvent.title=\u5b8c\u6210\u4e8b\u4ef6
completeEvent.description=\u5b8c\u6210\u4e8b\u4ef6 completeEvent.description=\u5b8c\u6210\u4e8b\u4ef6
completeEvent.eventName.display-label=\u4e8b\u4ef6 completeEvent.eventName.display-label=\u4e8b\u4ef6
# Freeze # Freeze
freeze.title=\u4fdd\u5b58 freeze.title=\u4fdd\u5b58
freeze.description=\u4fdd\u5b58\u8bb0\u5f55 freeze.description=\u4fdd\u5b58\u8bb0\u5f55
freeze.reason.display-label=\u539f\u56e0 freeze.reason.display-label=\u539f\u56e0
# Unfreeze # Unfreeze
unfreeze.title=\u53d6\u6d88\u4fdd\u5b58 unfreeze.title=\u53d6\u6d88\u4fdd\u5b58
unfreeze.description=\u53d6\u6d88\u4fdd\u5b58\u8bb0\u5f55 unfreeze.description=\u53d6\u6d88\u4fdd\u5b58\u8bb0\u5f55
# File to # File to
fileTo.title=\u7acb\u5377\u81f3 fileTo.title=\u7acb\u5377\u81f3
fileTo.description=\u5c06\u8bb0\u5f55\u7acb\u5377\u81f3\u6307\u5b9a\u8bb0\u5f55\u6587\u4ef6\u5939 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.path.display-label=\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u8def\u5f84
fileTo.createRecordPath.display-label=\u521b\u5efa\u8bb0\u5f55\u8def\u5f84 fileTo.createRecordPath.display-label=\u521b\u5efa\u8bb0\u5f55\u8def\u5f84
# Copy to # Copy to
copyTo.title=\u590d\u5236\u5230 copyTo.title=\u590d\u5236\u5230
copyTo.description=\u5c06\u8bb0\u5f55\u590d\u5236\u81f3\u6307\u5b9a\u8bb0\u5f55\u6587\u4ef6\u5939 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.path.display-label=\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u8def\u5f84
copyTo.createRecordPath.display-label=\u521b\u5efa\u8bb0\u5f55\u8def\u5f84 copyTo.createRecordPath.display-label=\u521b\u5efa\u8bb0\u5f55\u8def\u5f84
# Move to # Move to
moveTo.title=\u79fb\u52a8\u5230 moveTo.title=\u79fb\u52a8\u5230
moveTo.description=\u5c06\u8bb0\u5f55\u79fb\u81f3\u6307\u5b9a\u8bb0\u5f55\u6587\u4ef6\u5939 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.path.display-label=\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u8def\u5f84
moveTo.createRecordPath.display-label=\u521b\u5efa\u8bb0\u5f55\u8def\u5f84 moveTo.createRecordPath.display-label=\u521b\u5efa\u8bb0\u5f55\u8def\u5f84
# Link to # Link to
linkTo.title=\u94fe\u63a5\u5230 linkTo.title=\u94fe\u63a5\u5230
linkTo.description=\u5c06\u8bb0\u5f55\u94fe\u63a5\u5230\u6307\u5b9a\u8bb0\u5f55\u6587\u4ef6\u5939 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.path.display-label=\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u8def\u5f84
linkTo.createRecordPath.display-label=\u521b\u5efa\u8bb0\u5f55\u8def\u5f84 linkTo.createRecordPath.display-label=\u521b\u5efa\u8bb0\u5f55\u8def\u5f84
# Reject # Reject
reject.title=\u62d2\u7edd reject.title=\u62d2\u7edd
reject.description=\u62d2\u7edd\u8bb0\u5f55\u5e76\u5c06\u6587\u4ef6\u79fb\u52a8\u81f3\u5176\u539f\u59cb\u4f4d\u7f6e 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 reject.reason.display-label=\u62d2\u7edd\u539f\u56e0
# Request Information # Request Information
requestInfo.title=\u8bf7\u6c42\u4fe1\u606f requestInfo.title=\u8bf7\u6c42\u4fe1\u606f
requestInfo.description=\u5f00\u59cb\u8bf7\u6c42\u8bb0\u5f55\u7684\u66f4\u591a\u4fe1\u606f\u7684\u5de5\u4f5c\u6d41\u7a0b requestInfo.description=\u5f00\u59cb\u8bf7\u6c42\u8bb0\u5f55\u7684\u66f4\u591a\u4fe1\u606f\u7684\u5de5\u4f5c\u6d41\u7a0b
# Execute script # Execute script
executeScript.title=\u6267\u884c\u811a\u672c executeScript.title=\u6267\u884c\u811a\u672c
executeScript.description=\u6267\u884c\u811a\u672c executeScript.description=\u6267\u884c\u811a\u672c
executeScript.script-ref.display-label=\u811a\u672c executeScript.script-ref.display-label=\u811a\u672c
# Send Email # Send Email
sendEmail.title=\u53d1\u9001\u7535\u5b50\u90ae\u4ef6 sendEmail.title=\u53d1\u9001\u7535\u5b50\u90ae\u4ef6
sendEmail.description=\u53d1\u9001\u7535\u5b50\u90ae\u4ef6 sendEmail.description=\u53d1\u9001\u7535\u5b50\u90ae\u4ef6
# Set Property # Set Property
setPropertyValue.title=\u8bbe\u7f6e\u5c5e\u6027\u503c setPropertyValue.title=\u8bbe\u7f6e\u5c5e\u6027\u503c
setPropertyValue.description=\u8bbe\u7f6e\u5c5e\u6027\u503c setPropertyValue.description=\u8bbe\u7f6e\u5c5e\u6027\u503c
# Edit Hold Reason # Edit Hold Reason
editHoldReason.title=\u7f16\u8f91\u4fdd\u5b58\u539f\u56e0 editHoldReason.title=\u7f16\u8f91\u4fdd\u5b58\u539f\u56e0
editHoldReason.description=\u7f16\u8f91\u4fdd\u5b58\u539f\u56e0 editHoldReason.description=\u7f16\u8f91\u4fdd\u5b58\u539f\u56e0
# Relinquish Hold # Relinquish Hold
relinquishHold.title=\u653e\u5f03\u4fdd\u5b58 relinquishHold.title=\u653e\u5f03\u4fdd\u5b58
relinquishHold.description=\u653e\u5f03\u4fdd\u5b58 relinquishHold.description=\u653e\u5f03\u4fdd\u5b58
# Edit Review As Of Date # Edit Review As Of Date
editReviewAsOfDate.title=\u7f16\u8f91\u5ba1\u67e5\u622a\u6b62\u65e5\u671f editReviewAsOfDate.title=\u7f16\u8f91\u5ba1\u67e5\u622a\u6b62\u65e5\u671f
editReviewAsOfDate.description=\u7f16\u8f91\u5ba1\u67e5\u622a\u6b62\u65e5\u671f editReviewAsOfDate.description=\u7f16\u8f91\u5ba1\u67e5\u622a\u6b62\u65e5\u671f
# Edit Disposition Action As Of Date # Edit Disposition Action As Of Date
editDispositionActionAsOfDate.title=\u7f16\u8f91\u4fdd\u7559\u64cd\u4f5c\u622a\u6b62\u65e5\u671f editDispositionActionAsOfDate.title=\u7f16\u8f91\u4fdd\u7559\u64cd\u4f5c\u622a\u6b62\u65e5\u671f
editDispositionActionAsOfDate.description=\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 # Broadcast Vital Record Definition
broadcastVitalRecordDefinition.title=\u5e7f\u64ad\u6838\u5fc3\u8bb0\u5f55\u5b9a\u4e49 broadcastVitalRecordDefinition.title=\u5e7f\u64ad\u6838\u5fc3\u8bb0\u5f55\u5b9a\u4e49
broadcastVitalRecordDefinition.description=\u5e7f\u64ad\u6838\u5fc3\u8bb0\u5f55\u5b9a\u4e49 broadcastVitalRecordDefinition.description=\u5e7f\u64ad\u6838\u5fc3\u8bb0\u5f55\u5b9a\u4e49
# Broadcast Disposition Action Definition Update # Broadcast Disposition Action Definition Update
broadcastDispositionActionDefinitionUpdate.title=\u5e7f\u64ad\u4fdd\u7559\u64cd\u4f5c\u5b9a\u4e49\u66f4\u65b0 broadcastDispositionActionDefinitionUpdate.title=\u5e7f\u64ad\u4fdd\u7559\u64cd\u4f5c\u5b9a\u4e49\u66f4\u65b0
broadcastDispositionActionDefinitionUpdate.description=\u5e7f\u64ad\u4fdd\u7559\u64cd\u4f5c\u5b9a\u4e49\u66f4\u65b0 broadcastDispositionActionDefinitionUpdate.description=\u5e7f\u64ad\u4fdd\u7559\u64cd\u4f5c\u5b9a\u4e49\u66f4\u65b0
# Undo Event # Undo Event
undoEvent.title=\u64a4\u6d88\u4e8b\u4ef6 undoEvent.title=\u64a4\u6d88\u4e8b\u4ef6
undoEvent.description=\u64a4\u6d88\u4e8b\u4ef6 undoEvent.description=\u64a4\u6d88\u4e8b\u4ef6
# Transfer Complete # Transfer Complete
transferComplete.title=\u79fb\u4ea4\u5b8c\u6210 transferComplete.title=\u79fb\u4ea4\u5b8c\u6210
transferComplete.description=\u79fb\u4ea4\u5b8c\u6210 transferComplete.description=\u79fb\u4ea4\u5b8c\u6210
# Accession Complete # Accession Complete
accessionComplete.title=\u5165\u7ba1\u5b8c\u6210 accessionComplete.title=\u5165\u7ba1\u5b8c\u6210
accessionComplete.description=\u5165\u7ba1\u5b8c\u6210 accessionComplete.description=\u5165\u7ba1\u5b8c\u6210
# Split Email # Split Email
splitEmail.title=\u62c6\u5206\u7535\u5b50\u90ae\u4ef6 splitEmail.title=\u62c6\u5206\u7535\u5b50\u90ae\u4ef6
splitEmail.description=\u62c6\u5206\u7535\u5b50\u90ae\u4ef6 splitEmail.description=\u62c6\u5206\u7535\u5b50\u90ae\u4ef6
# Create Rentention Schedule # Create Rentention Schedule
createDispositionSchedule.title=\u521b\u5efa\u4fdd\u7559\u8ba1\u5212 createDispositionSchedule.title=\u521b\u5efa\u4fdd\u7559\u8ba1\u5212
createDispositionSchedule.description=\u521b\u5efa\u4fdd\u7559\u8ba1\u5212 createDispositionSchedule.description=\u521b\u5efa\u4fdd\u7559\u8ba1\u5212
# File Destruction Report # File Destruction Report
fileDestructionReport.title=\u7acb\u5377\u9500\u6bc1\u62a5\u544a fileDestructionReport.title=\u7acb\u5377\u9500\u6bc1\u62a5\u544a
fileDestructionReport.description=\u7acb\u5377\u9500\u6bc1\u62a5\u544a fileDestructionReport.description=\u7acb\u5377\u9500\u6bc1\u62a5\u544a
# Cut off # Cut off
cutoff.title=\u4e2d\u65ad cutoff.title=\u4e2d\u65ad
cutoff.description=\u4e2d\u65ad cutoff.description=\u4e2d\u65ad
# Destroy # Destroy
destroy.title=\u9500\u6bc1 destroy.title=\u9500\u6bc1
destroy.description=\u9500\u6bc1 destroy.description=\u9500\u6bc1
# Reviewed # Reviewed
reviewed.title=\u5df2\u5ba1\u67e5 reviewed.title=\u5df2\u5ba1\u67e5
reviewed.description=\u5df2\u5ba1\u67e5 reviewed.description=\u5df2\u5ba1\u67e5
# Hide Record # Hide Record
hide-record.title=\u9690\u85cf\u8bb0\u5f55 hide-record.title=\u9690\u85cf\u8bb0\u5f55
hide-record.description=\u9690\u85cf\u8bb0\u5f55 hide-record.description=\u9690\u85cf\u8bb0\u5f55
# Transfer # Transfer
transfer.title=\u79fb\u4ea4 transfer.title=\u79fb\u4ea4
transfer.description=\u79fb\u4ea4 transfer.description=\u79fb\u4ea4
# Uncut off # Uncut off
unCutoff.title=\u64a4\u6d88\u4e2d\u65ad unCutoff.title=\u64a4\u6d88\u4e2d\u65ad
unCutoff.description=\u64a4\u6d88\u4e2d\u65ad unCutoff.description=\u64a4\u6d88\u4e2d\u65ad
# Accession # Accession
accession.title=\u5165\u7ba1 accession.title=\u5165\u7ba1
accession.description=\u5165\u7ba1 accession.description=\u5165\u7ba1
# Retain # Retain
retain.title=\u4fdd\u7559 retain.title=\u4fdd\u7559
retain.description=\u4fdd\u7559 retain.description=\u4fdd\u7559
# Add Record Types # Add Record Types
addRecordTypes.title=\u6dfb\u52a0\u8bb0\u5f55\u7c7b\u578b addRecordTypes.title=\u6dfb\u52a0\u8bb0\u5f55\u7c7b\u578b
addRecordTypes.description=\u5c06\u6240\u9009\u7c7b\u578b\u6dfb\u52a0\u81f3\u8bb0\u5f55 addRecordTypes.description=\u5c06\u6240\u9009\u7c7b\u578b\u6dfb\u52a0\u81f3\u8bb0\u5f55
# File report # File report
fileReport.title=\u7acb\u5377\u62a5\u544a fileReport.title=\u7acb\u5377\u62a5\u544a
fileReport.description=\u7acb\u5377\u62a5\u544a fileReport.description=\u7acb\u5377\u62a5\u544a
# Delete Hold # Delete Hold
deleteHold.title=\u5220\u9664\u4fdd\u5b58 deleteHold.title=\u5220\u9664\u4fdd\u5b58
deleteHold.description=\u5220\u9664\u4fdd\u5b58 deleteHold.description=\u5220\u9664\u4fdd\u5b58
# Move DM record # Move DM record
move-dm-record.title=\u79fb\u52a8\u8bb0\u5f55 move-dm-record.title=\u79fb\u52a8\u8bb0\u5f55
move-dm-record.description=\u79fb\u52a8\u8bb0\u5f55 move-dm-record.description=\u79fb\u52a8\u8bb0\u5f55
# Unlink from # Unlink from
unlinkFrom.title=\u53d6\u6d88\u94fe\u63a5 unlinkFrom.title=\u53d6\u6d88\u94fe\u63a5
unlinkFrom.description=\u53d6\u6d88\u94fe\u63a5 unlinkFrom.description=\u53d6\u6d88\u94fe\u63a5
# Recordable version config # Recordable version config
recordable-version-config.title=\u81ea\u52a8\u58f0\u660e\u9009\u9879 recordable-version-config.title=\u81ea\u52a8\u58f0\u660e\u9009\u9879
recordable-version-config.description=\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 recordable-version-config.version.display-label=\u81ea\u52a8\u58f0\u660e\u7248\u672c\u4e3a\u8bb0\u5f55
# Action parameter constraints # Action parameter constraints
rm-ac-is-kind-kinds.record_category=\u8bb0\u5f55\u7c7b\u522b 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_folder=\u8bb0\u5f55\u6587\u4ef6\u5939
rm-ac-is-kind-kinds.record=\u8bb0\u5f55 rm-ac-is-kind-kinds.record=\u8bb0\u5f55
rm-ac-disposition-action-relative-positions.next=\u4e0b\u4e00\u6b65 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.previous=\u4e0a\u4e00\u6b65
rm-ac-disposition-action-relative-positions.any=\u4efb\u4f55 rm-ac-disposition-action-relative-positions.any=\u4efb\u4f55
ac-versions.none=\u4ece\u4e0d ac-versions.none=\u4ece\u4e0d
ac-versions.major_only=\u4ec5\u9002\u7528\u4e8e\u4e3b\u8981\u7248\u672c 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 ac-versions.all=\u9002\u7528\u4e8e\u6240\u6709\u4e3b\u8981\u548c\u6b21\u8981\u7248\u672c

View File

@@ -1,16 +1,16 @@
rm.admin.service-not-init=The customization service hasn't been started. rm.admin.service-not-init=The customization service hasn't been started.
rm.admin.not-customisable=The class {0} isn't customizable. 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.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.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.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.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.custom-prop-exist=The custom model doesn't contain the property {0}.
rm.admin.unknown-aspect=Unknown aspect {0}. rm.admin.unknown-aspect=Unknown aspect {0}.
rm.admin.constraint-exists=The constraint {0} already exists. 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.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.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-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.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-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-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. rm.admin.error-split-id=We couldn't split ID {0}. because separator {1} isn't present.

View File

@@ -1,16 +1,16 @@
rm.admin.service-not-init=Der Anpassungsservice wurde nicht gestartet. rm.admin.service-not-init=Der Anpassungsservice wurde nicht gestartet.
rm.admin.not-customisable=Die Klasse {0} kann nicht angepasst werden. 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.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.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.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.prop-exist=Benutzerdefinierte Eigenschaft {0} wurde nicht gefunden.
rm.admin.custom-prop-exist=Das benutzerdefinierte Modell enth\u00e4lt nicht die Eigenschaft {0}. rm.admin.custom-prop-exist=Das benutzerdefinierte Modell enth\u00e4lt nicht die Eigenschaft {0}.
rm.admin.unknown-aspect=Unbekannter Aspekt {0}. rm.admin.unknown-aspect=Unbekannter Aspekt {0}.
rm.admin.constraint-exists=Randbedingung {0} bereits vorhanden. rm.admin.constraint-exists=Randbedingung {0} bereits vorhanden.
rm.admin.contraint-cannot-find=Die Definition f\u00fcr Randbedingung {0} wurde nicht gefunden. 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.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-not-found=Benutzerdefiniertes Modell {0} wurde nicht gefunden.
rm.admin.custom-model-no-content=Benutzerdefiniertes Modell hat keinen Inhalt. (nodeRef={0}) 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-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-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. rm.admin.error-split-id=ID {0} kann nicht getrennt werden, da das Trennzeichen {1} nicht vorhanden ist.

View File

@@ -1,16 +1,16 @@
rm.admin.service-not-init=El servicio de personalizaci\u00f3n no se ha iniciado. 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.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.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.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.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.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.custom-prop-exist=El modelo personalizado no contiene la propiedad ''{0}''.
rm.admin.unknown-aspect=Aspecto desconocido ''{0}''. rm.admin.unknown-aspect=Aspecto desconocido ''{0}''.
rm.admin.constraint-exists=La restricci\u00f3n ''{0}'' ya existe. 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.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.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-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.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-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-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. rm.admin.error-split-id=No se pudo separar el ID ''{0}''. porque el separador ''{1}'' no est\u00e1 presente.

View File

@@ -1,16 +1,16 @@
rm.admin.service-not-init=Le service de personnalisation n'a pas \u00e9t\u00e9 d\u00e9marr\u00e9. 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.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.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.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.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.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.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.unknown-aspect=Aspect {0} inconnu.
rm.admin.constraint-exists=La contrainte {0} existe d\u00e9j\u00e0. 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.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.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-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.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-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-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. rm.admin.error-split-id=Impossible de fractionner l''ID {0}. Le s\u00e9parateur {1} n''est pas pr\u00e9sent.

View File

@@ -1,16 +1,16 @@
rm.admin.service-not-init=Il servizio di personalizzazione non \u00e8 stato avviato. 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.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.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.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.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.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.custom-prop-exist=Il modello personalizzato non contiene la propriet\u00e0 {0}.
rm.admin.unknown-aspect=Aspetto {0} sconosciuto. rm.admin.unknown-aspect=Aspetto {0} sconosciuto.
rm.admin.constraint-exists=Il vincolo {0} \u00e8 gi\u00e0 esistente. 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.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.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-not-found=Impossibile trovare il modello personalizzato {0}.
rm.admin.custom-model-no-content=Il modello personalizzato non ha contenuti. (nodeRef={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-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-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}. rm.admin.error-split-id=Impossibile dividere l''ID ''{0}'' poich\u00e9 non \u00e8 presente il separatore {1}.

View File

@@ -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.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.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.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.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.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.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.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.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.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.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.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-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.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-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-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 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

View File

@@ -1,16 +1,16 @@
rm.admin.service-not-init=Tilpasningstjenesten er ikke startet. rm.admin.service-not-init=Tilpasningstjenesten er ikke startet.
rm.admin.not-customisable=Klassen {0} er ikke tilpasset. 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.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.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.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.prop-exist=Kunne ikke finne den tilpassede egenskapen {0}.
rm.admin.custom-prop-exist=Den tilpassede modellen kan ikke inneholde egenskapen {0}. rm.admin.custom-prop-exist=Den tilpassede modellen kan ikke inneholde egenskapen {0}.
rm.admin.unknown-aspect=Ukjent aspekt {0}. rm.admin.unknown-aspect=Ukjent aspekt {0}.
rm.admin.constraint-exists=Restriksjonen {0} finnes allerede. rm.admin.constraint-exists=Restriksjonen {0} finnes allerede.
rm.admin.contraint-cannot-find=Kunne ikke finne definisjonen til restriksjonen {0}. 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.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-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.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-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-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. rm.admin.error-split-id=Kunne ikke dele ID-en {0}. fordi grensetegnet {1} ikke fantes.

View File

@@ -1,16 +1,16 @@
rm.admin.service-not-init=De aanpassingsservice is niet gestart. rm.admin.service-not-init=De aanpassingsservice is niet gestart.
rm.admin.not-customisable=De klasse {0} kan niet worden aangepast. 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.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.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.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.prop-exist=Kan aangepaste eigenschap {0} niet vinden.
rm.admin.custom-prop-exist=Het aangepaste model bevat de eigenschap {0} niet. rm.admin.custom-prop-exist=Het aangepaste model bevat de eigenschap {0} niet.
rm.admin.unknown-aspect=Onbekend aspect {0}. rm.admin.unknown-aspect=Onbekend aspect {0}.
rm.admin.constraint-exists=De beperking {0} bestaat al. rm.admin.constraint-exists=De beperking {0} bestaat al.
rm.admin.contraint-cannot-find=Kan de definitie voor beperking {0} niet vinden. 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.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-not-found=Kan aangepast model {0} niet vinden.
rm.admin.custom-model-no-content=Het aangepaste model heeft geen content. (nodeRef={0}) 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-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-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. rm.admin.error-split-id=Kan id {0} niet opsplitsen omdat scheiding {1} niet aanwezig is.

Some files were not shown because too many files have changed in this diff Show More