Let git handle line endings for us.

This commit is contained in:
Tom Page
2016-09-23 10:34:36 +01:00
parent b4298928bd
commit bbf9580519
1219 changed files with 165177 additions and 165148 deletions

View File

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

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

View File

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

View File

@@ -1,102 +1,102 @@
Configuring and starting Alfresco/Share:
----------------------------------------
- Clone the project (e.g. git clone git@gitlab.alfresco.com:records-management/records-management.git)
- Import the project as a maven project
- Start the Alfresco/Share instances with the following commands:
mvn clean install -Pstart-repo
mvn clean install -Pstart-share
(these commands work best if run from the specific directories, e.g. start share from
rm-enterprise/rm-enterprise-share/ or rm-community/rm-community-share/ )
Configuring a different DB other than H2 (e.g. MySQL or PostgreSQL):
--------------------------------------------------------------------
- Create a file called "local.properties" under src/main/resources in alfresco-rm-enterprise-repo
- Add the following properties in this new file
my.db.name -> The name of the database schema
my.db.port -> The port number for your database (default port number for postgres is 5432 and for mysql it is 3306)
- Run the following commands to start your Alfresco instance:
to start Alfresco (using Postgres):
mvn clean install -Pstart-repo,use-postgres
to start Alfresco (using MySQL):
mvn clean install -Pstart-repo,use-mysql
Running integration test:
-------------------------
In order to execute the integration tests run the following command (unit tests will be executed every time before you start Alfresco/Share):
mvn clean install -Dskip.integrationtests=false
Running UI Automation tests:
----------------------------
To run the automated UI tests, change to the rm-automation directory and run:
mvn clean install -Dskip.automationtests=false
Depending on your local Firefox version, you may need to modify the rm-automation/pom.xml to use version 1.7 of selenium-grid
Updating License Headers:
-------------------------
In order to refesh out of date license source headers run the following command:
mvn clean install -Dlicense.update.dryrun=false
Running tests against latest Aikau snapshot:
--------------------------------------------
The latest Aikau snapshot can be pulled by running the following command in rm-community:
mvn clean install -DskipTests -Dalfresco.aikau.version=LATEST -U
Thereafter start the Share instance and run automation tests as described above.
Configuring Outlook Integration:
-------------------------------
To download and run RM with the Outlook Integration AMPs installed on the repo and Share use the following commands:
mvn clean install -Pstart-repo,outlook-integration
mvn clean install -Pstart-share,outlook-integration
Follow these instructions install licence and Outlook plugin:
- http://docs.alfresco.com/outlook2.1/tasks/Outlook-license.html
- http://docs.alfresco.com/outlook2.1/tasks/Outlook-install_v2.html
SNAPSHOT dependencies:
----------------------
If you're building Enterprise RM, the base project (Community) is pulled in via a snapshot dependency configured in maven.
This dependency will either be loaded from your local .m2 cache or from Nexus if the version in your .m2 doesn't exist or is old
(Old in maven terms is anything over 24hrs old). If maven fetches it from Nexus, your code it's unlikely to be the correct version.
You want to always use the version in your local cache - this means either doing a daily build at the root project level
that pushes a new copy of the correct version into your cache, or alternatively you could run mvn with the
--no-snapshot-dependency (or -nsu) option, which won't try to download a newer version.
Code Formatting:
----------------
This project follows the usual Alfresco Coding Standards. If you use Eclipse or IntelliJ, there are settings inside the ide-config directory for you to import.
Configuring and starting Alfresco/Share:
----------------------------------------
- Clone the project (e.g. git clone git@gitlab.alfresco.com:records-management/records-management.git)
- Import the project as a maven project
- Start the Alfresco/Share instances with the following commands:
mvn clean install -Pstart-repo
mvn clean install -Pstart-share
(these commands work best if run from the specific directories, e.g. start share from
rm-enterprise/rm-enterprise-share/ or rm-community/rm-community-share/ )
Configuring a different DB other than H2 (e.g. MySQL or PostgreSQL):
--------------------------------------------------------------------
- Create a file called "local.properties" under src/main/resources in alfresco-rm-enterprise-repo
- Add the following properties in this new file
my.db.name -> The name of the database schema
my.db.port -> The port number for your database (default port number for postgres is 5432 and for mysql it is 3306)
- Run the following commands to start your Alfresco instance:
to start Alfresco (using Postgres):
mvn clean install -Pstart-repo,use-postgres
to start Alfresco (using MySQL):
mvn clean install -Pstart-repo,use-mysql
Running integration test:
-------------------------
In order to execute the integration tests run the following command (unit tests will be executed every time before you start Alfresco/Share):
mvn clean install -Dskip.integrationtests=false
Running UI Automation tests:
----------------------------
To run the automated UI tests, change to the rm-automation directory and run:
mvn clean install -Dskip.automationtests=false
Depending on your local Firefox version, you may need to modify the rm-automation/pom.xml to use version 1.7 of selenium-grid
Updating License Headers:
-------------------------
In order to refesh out of date license source headers run the following command:
mvn clean install -Dlicense.update.dryrun=false
Running tests against latest Aikau snapshot:
--------------------------------------------
The latest Aikau snapshot can be pulled by running the following command in rm-community:
mvn clean install -DskipTests -Dalfresco.aikau.version=LATEST -U
Thereafter start the Share instance and run automation tests as described above.
Configuring Outlook Integration:
-------------------------------
To download and run RM with the Outlook Integration AMPs installed on the repo and Share use the following commands:
mvn clean install -Pstart-repo,outlook-integration
mvn clean install -Pstart-share,outlook-integration
Follow these instructions install licence and Outlook plugin:
- http://docs.alfresco.com/outlook2.1/tasks/Outlook-license.html
- http://docs.alfresco.com/outlook2.1/tasks/Outlook-install_v2.html
SNAPSHOT dependencies:
----------------------
If you're building Enterprise RM, the base project (Community) is pulled in via a snapshot dependency configured in maven.
This dependency will either be loaded from your local .m2 cache or from Nexus if the version in your .m2 doesn't exist or is old
(Old in maven terms is anything over 24hrs old). If maven fetches it from Nexus, your code it's unlikely to be the correct version.
You want to always use the version in your local cache - this means either doing a daily build at the root project level
that pushes a new copy of the correct version into your cache, or alternatively you could run mvn with the
--no-snapshot-dependency (or -nsu) option, which won't try to download a newer version.
Code Formatting:
----------------
This project follows the usual Alfresco Coding Standards. If you use Eclipse or IntelliJ, there are settings inside the ide-config directory for you to import.

View File

@@ -1,4 +1,4 @@
# Localisation config overrides for Records Management module
MESSAGE_SEARCH_PATH="rm-community/rm-community-repo/config rm-community/rm-community-share rm-community/rm-share/source rm-enterprise/rm-enterprise-repo/src/main rm-enterprise/rm-enterprise-share/src/main "
EXCLUDED_FILES="$EXCLUDED_FILES rm-method-security.properties springloaded.properties file-mapping.properties classified-content-notForTranslating.properties notForTranslating"
EXTENSION_PREFIX=-RM
# Localisation config overrides for Records Management module
MESSAGE_SEARCH_PATH="rm-community/rm-community-repo/config rm-community/rm-community-share rm-community/rm-share/source rm-enterprise/rm-enterprise-repo/src/main rm-enterprise/rm-enterprise-share/src/main "
EXCLUDED_FILES="$EXCLUDED_FILES rm-method-security.properties springloaded.properties file-mapping.properties classified-content-notForTranslating.properties notForTranslating"
EXTENSION_PREFIX=-RM

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,82 +1,82 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<!-- 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 -->
<!-- by making them private. -->
<beans>
<bean id="classifiedRecordsGroup"
parent="groupBase">
<property name="id" value="classifiedRecords"/>
<property name="index" value="200"/>
</bean>
<!-- Assignable Capabilities -->
<bean id="rmCreateModifyDestroyClassificationGuidesCapability"
parent="declarativeCapability">
<property name="name" value="CreateModifyDestroyClassificationGuides"/>
<property name="permission" value="CreateModifyDestroyClassificationGuides"/>
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="10" />
<property name="private" value="true" />
</bean>
<bean id="rmCreateModifyDestroyTimeframesCapability"
parent="declarativeCapability">
<property name="name" value="CreateModifyDestroyTimeframes" />
<property name="permission" value="CreateModifyDestroyTimeframes" />
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="20" />
<property name="private" value="true" />
</bean>
<bean id="rmMapClassificationGuideMetadataCapability"
parent="declarativeCapability">
<property name="name" value="MapClassificationGuideMetadata" />
<property name="permission" value="MapClassificationGuideMetadata" />
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="30" />
<property name="private" value="true" />
</bean>
<bean id="rmUpdateClassificationDatesCapability"
parent="declarativeCapability">
<property name="name" value="UpdateClassificationDates" />
<property name="permission" value="UpdateClassificationDates" />
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="40" />
<property name="private" value="true" />
</bean>
<bean id="rmUpdateExemptionCategoriesCapability"
parent="declarativeCapability">
<property name="name" value="UpdateExemptionCategories" />
<property name="permission" value="UpdateExemptionCategories" />
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="50" />
<property name="private" value="true" />
</bean>
<bean id="rmUpgradeDowngradeAndDeclassifyRecordsCapability"
parent="declarativeCapability">
<property name="name" value="UpgradeDowngradeAndDeclassifyRecords"/>
<property name="permission" value="UpgradeDowngradeAndDeclassifyRecords"/>
<property name="conditions">
<map>
<entry key="capabilityCondition.frozen" value="false"/>
</map>
</property>
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="60" />
<property name="private" value="true" />
</bean>
<!-- Non-Assignable Capabilities -->
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<!-- 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 -->
<!-- by making them private. -->
<beans>
<bean id="classifiedRecordsGroup"
parent="groupBase">
<property name="id" value="classifiedRecords"/>
<property name="index" value="200"/>
</bean>
<!-- Assignable Capabilities -->
<bean id="rmCreateModifyDestroyClassificationGuidesCapability"
parent="declarativeCapability">
<property name="name" value="CreateModifyDestroyClassificationGuides"/>
<property name="permission" value="CreateModifyDestroyClassificationGuides"/>
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="10" />
<property name="private" value="true" />
</bean>
<bean id="rmCreateModifyDestroyTimeframesCapability"
parent="declarativeCapability">
<property name="name" value="CreateModifyDestroyTimeframes" />
<property name="permission" value="CreateModifyDestroyTimeframes" />
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="20" />
<property name="private" value="true" />
</bean>
<bean id="rmMapClassificationGuideMetadataCapability"
parent="declarativeCapability">
<property name="name" value="MapClassificationGuideMetadata" />
<property name="permission" value="MapClassificationGuideMetadata" />
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="30" />
<property name="private" value="true" />
</bean>
<bean id="rmUpdateClassificationDatesCapability"
parent="declarativeCapability">
<property name="name" value="UpdateClassificationDates" />
<property name="permission" value="UpdateClassificationDates" />
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="40" />
<property name="private" value="true" />
</bean>
<bean id="rmUpdateExemptionCategoriesCapability"
parent="declarativeCapability">
<property name="name" value="UpdateExemptionCategories" />
<property name="permission" value="UpdateExemptionCategories" />
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="50" />
<property name="private" value="true" />
</bean>
<bean id="rmUpgradeDowngradeAndDeclassifyRecordsCapability"
parent="declarativeCapability">
<property name="name" value="UpgradeDowngradeAndDeclassifyRecords"/>
<property name="permission" value="UpgradeDowngradeAndDeclassifyRecords"/>
<property name="conditions">
<map>
<entry key="capabilityCondition.frozen" value="false"/>
</map>
</property>
<!-- <property name="group"><ref bean="classifiedRecordsGroup"/></property> -->
<property name="index" value="60" />
<property name="private" value="true" />
</bean>
<!-- Non-Assignable Capabilities -->
</beans>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,98 +1,98 @@
dod_dod5015.description=DOD5015\u30b3\u30f3\u30c6\u30f3\u30c4\u30e2\u30c7\u30eb
dod_dod5015.type.dod_site.title=DOD5015\u30b5\u30a4\u30c8
dod_dod5015.type.dod_site.description=DOD5015\u30b5\u30a4\u30c8
dod_dod5015.type.dod_filePlan.title=DOD5015\u30d5\u30a1\u30a4\u30eb\u30d7\u30e9\u30f3
dod_dod5015.type.dod_filePlan.description=DOD5015\u30d5\u30a1\u30a4\u30eb\u30d7\u30e9\u30f3
dod_dod5015.type.dod_recordSeries.title=\u30ec\u30b3\u30fc\u30c9\u30b7\u30ea\u30fc\u30ba\uff08\u975e\u63a8\u5968\uff09
dod_dod5015.type.dod_recordSeries.description=\u30ec\u30b3\u30fc\u30c9\u30b7\u30ea\u30fc\u30ba\uff08\u975e\u63a8\u5968\uff09
dod_dod5015.aspect.dod_dod5015record.title=DOD5015\u30ec\u30b3\u30fc\u30c9
dod_dod5015.aspect.dod_dod5015record.description=DOD5015\u30ec\u30b3\u30fc\u30c9
dod_dod5015.property.dod_publicationDate.title=\u767a\u884c\u65e5
dod_dod5015.property.dod_publicationDate.decription=\u767a\u884c\u65e5
dod_dod5015.property.dod_originator.title=\u767a\u4fe1\u5143
dod_dod5015.property.dod_originator.decription=\u767a\u4fe1\u5143
dod_dod5015.property.dod_originatingOrganization.title=\u767a\u4fe1\u5143\u7d44\u7e54
dod_dod5015.property.dod_originatingOrganization.decription=\u767a\u4fe1\u5143\u7d44\u7e54
dod_dod5015.property.dod_mediaType.title=\u30e1\u30c7\u30a3\u30a2\u30bf\u30a4\u30d7
dod_dod5015.property.dod_mediaType.decription=\u30e1\u30c7\u30a3\u30a2\u30bf\u30a4\u30d7
dod_dod5015.property.dod_format.title=\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
dod_dod5015.property.dod_format.decription=\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
dod_dod5015.property.dod_dateReceived.title=\u53d7\u4fe1\u65e5
dod_dod5015.property.dod_dateReceived.decription=\u53d7\u4fe1\u65e5
dod_dod5015.property.dod_address.title=\u53d7\u4fe1\u8005
dod_dod5015.property.dod_address.decription=\u53d7\u4fe1\u8005
dod_dod5015.property.dod_otherAddress.title=\u305d\u306e\u4ed6\u306e\u53d7\u4fe1\u8005
dod_dod5015.property.dod_otherAddress.decription=\u305d\u306e\u4ed6\u306e\u53d7\u4fe1\u8005
dod_dod5015.aspect.dod_scannedRecord.title=\u30b9\u30ad\u30e3\u30f3\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
dod_dod5015.aspect.dod_scannedRecord.description=\u30b9\u30ad\u30e3\u30f3\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
dod_dod5015.property.dod_scannedFormat.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
dod_dod5015.property.dod_scannedFormat.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
dod_dod5015.property.dod_scannedFormatVersion.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3068\u30d0\u30fc\u30b8\u30e7\u30f3
dod_dod5015.property.dod_scannedFormatVersion.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3068\u30d0\u30fc\u30b8\u30e7\u30f3
dod_dod5015.property.dod_resolutionX.title=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6X
dod_dod5015.property.dod_resolutionX.description=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6X
dod_dod5015.property.dod_resolutionY.title=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6Y
dod_dod5015.property.dod_resolutionY.description=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6Y
dod_dod5015.property.dod_scannedBitDepth.title=\u30b9\u30ad\u30e3\u30f3\u3057\u305f\u30d3\u30c3\u30c8\u6df1\u5ea6
dod_dod5015.property.dod_scannedBitDepth.description=\u30b9\u30ad\u30e3\u30f3\u3057\u305f\u30d3\u30c3\u30c8\u6df1\u5ea6
dod_dod5015.aspect.dod_pdfRecord.title=PDF\u30ec\u30b3\u30fc\u30c9
dod_dod5015.aspect.dod_pdfRecord.description=PDF\u30ec\u30b3\u30fc\u30c9
dod_dod5015.property.dod_producingApplication.title=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
dod_dod5015.property.dod_producingApplication.description=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
dod_dod5015.property.dod_producingApplicationVersion.title=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d0\u30fc\u30b8\u30e7\u30f3
dod_dod5015.property.dod_producingApplicationVersion.description=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d0\u30fc\u30b8\u30e7\u30f3
dod_dod5015.property.dod_pdfVersion.title=PDF\u30d0\u30fc\u30b8\u30e7\u30f3
dod_dod5015.property.dod_pdfVersion.description=PDF\u30d0\u30fc\u30b8\u30e7\u30f3
dod_dod5015.property.dod_creatingApplication.title=\u4f5c\u6210\u5143\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
dod_dod5015.property.dod_creatingApplication.description=\u4f5c\u6210\u5143\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
dod_dod5015.property.dod_documentSecuritySettings.title=\u6587\u66f8\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u8a2d\u5b9a
dod_dod5015.property.dod_documentSecuritySettings.description=\u6587\u66f8\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u8a2d\u5b9a
dod_dod5015.aspect.dod_digitalPhotographRecord.title=\u30c7\u30b8\u30bf\u30eb\u5199\u771f\u30ec\u30b3\u30fc\u30c9
dod_dod5015.aspect.dod_digitalPhotographRecord.description=\u30c7\u30b8\u30bf\u30eb\u5199\u771f\u30ec\u30b3\u30fc\u30c9
dod_dod5015.property.dod_caption.title=\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3
dod_dod5015.property.dod_caption.description=\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3
dod_dod5015.property.dod_photographer.title=\u5199\u771f\u5bb6
dod_dod5015.property.dod_photographer.description=\u5199\u771f\u5bb6
dod_dod5015.property.dod_copyright.title=\u8457\u4f5c\u6a29
dod_dod5015.property.dod_copyright.description=\u8457\u4f5c\u6a29
dod_dod5015.property.dod_bitDepth.title=\u30d3\u30c3\u30c8\u6df1\u5ea6
dod_dod5015.property.dod_bitDepth.description=\u30d3\u30c3\u30c8\u6df1\u5ea6
dod_dod5015.property.dod_imageSizeX.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baX
dod_dod5015.property.dod_imageSizeX.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baX
dod_dod5015.property.dod_imageSizeY.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baY
dod_dod5015.property.dod_imageSizeY.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baY
dod_dod5015.property.dod_imageSource.title=\u30a4\u30e1\u30fc\u30b8\u30bd\u30fc\u30b9
dod_dod5015.property.dod_imageSource.description=\u30a4\u30e1\u30fc\u30b8\u30bd\u30fc\u30b9
dod_dod5015.property.dod_compression.title=\u5727\u7e2e
dod_dod5015.property.dod_compression.description=\u5727\u7e2e
dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb
dod_dod5015.property.dod_iccIcmProfile.description=ICC/ICM\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb
dod_dod5015.property.dod_exifInformation.title=EXIF\u60c5\u5831
dod_dod5015.property.dod_exifInformation.description=EXIF\u60c5\u5831
dod_dod5015.aspect.dod_webRecord.title=Web\u30ec\u30b3\u30fc\u30c9
dod_dod5015.aspect.dod_webRecord.description=Web\u30ec\u30b3\u30fc\u30c9
dod_dod5015.property.dod_webFileName.title=Web\u30d5\u30a1\u30a4\u30eb\u540d
dod_dod5015.property.dod_webFileName.description=Web\u30d5\u30a1\u30a4\u30eb\u540d
dod_dod5015.property.dod_webPlatform.title=Web\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0
dod_dod5015.property.dod_webPlatform.description=Web\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0
dod_dod5015.property.dod_webSiteName.title=Web\u30b5\u30a4\u30c8\u540d
dod_dod5015.property.dod_webSiteName.description=Web\u30b5\u30a4\u30c8\u540d
dod_dod5015.property.dod_webSiteURL.title=Web\u30b5\u30a4\u30c8URL
dod_dod5015.property.dod_webSiteURL.description=Web\u30b5\u30a4\u30c8URL
dod_dod5015.property.dod_captureMethod.title=\u30ad\u30e3\u30d7\u30c1\u30e3\u624b\u6cd5
dod_dod5015.property.dod_captureMethod.description=\u30ad\u30e3\u30d7\u30c1\u30e3\u624b\u6cd5
dod_dod5015.property.dod_captureDate.title=\u30ad\u30e3\u30d7\u30c1\u30e3\u65e5
dod_dod5015.property.dod_captureDate.description=\u30ad\u30e3\u30d7\u30c1\u30e3\u65e5
dod_dod5015.property.dod_contact.title=\u9023\u7d61\u5148
dod_dod5015.property.dod_contact.description=\u9023\u7d61\u5148
dod_dod5015.property.dod_contentManagementSystem.title=\u30b3\u30f3\u30c6\u30f3\u30c4\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0
dod_dod5015.property.dod_contentManagementSystem.description=\u30b3\u30f3\u30c6\u30f3\u30c4\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0
dod_dod5015.description=DOD5015\u30b3\u30f3\u30c6\u30f3\u30c4\u30e2\u30c7\u30eb
dod_dod5015.type.dod_site.title=DOD5015\u30b5\u30a4\u30c8
dod_dod5015.type.dod_site.description=DOD5015\u30b5\u30a4\u30c8
dod_dod5015.type.dod_filePlan.title=DOD5015\u30d5\u30a1\u30a4\u30eb\u30d7\u30e9\u30f3
dod_dod5015.type.dod_filePlan.description=DOD5015\u30d5\u30a1\u30a4\u30eb\u30d7\u30e9\u30f3
dod_dod5015.type.dod_recordSeries.title=\u30ec\u30b3\u30fc\u30c9\u30b7\u30ea\u30fc\u30ba\uff08\u975e\u63a8\u5968\uff09
dod_dod5015.type.dod_recordSeries.description=\u30ec\u30b3\u30fc\u30c9\u30b7\u30ea\u30fc\u30ba\uff08\u975e\u63a8\u5968\uff09
dod_dod5015.aspect.dod_dod5015record.title=DOD5015\u30ec\u30b3\u30fc\u30c9
dod_dod5015.aspect.dod_dod5015record.description=DOD5015\u30ec\u30b3\u30fc\u30c9
dod_dod5015.property.dod_publicationDate.title=\u767a\u884c\u65e5
dod_dod5015.property.dod_publicationDate.decription=\u767a\u884c\u65e5
dod_dod5015.property.dod_originator.title=\u767a\u4fe1\u5143
dod_dod5015.property.dod_originator.decription=\u767a\u4fe1\u5143
dod_dod5015.property.dod_originatingOrganization.title=\u767a\u4fe1\u5143\u7d44\u7e54
dod_dod5015.property.dod_originatingOrganization.decription=\u767a\u4fe1\u5143\u7d44\u7e54
dod_dod5015.property.dod_mediaType.title=\u30e1\u30c7\u30a3\u30a2\u30bf\u30a4\u30d7
dod_dod5015.property.dod_mediaType.decription=\u30e1\u30c7\u30a3\u30a2\u30bf\u30a4\u30d7
dod_dod5015.property.dod_format.title=\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
dod_dod5015.property.dod_format.decription=\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
dod_dod5015.property.dod_dateReceived.title=\u53d7\u4fe1\u65e5
dod_dod5015.property.dod_dateReceived.decription=\u53d7\u4fe1\u65e5
dod_dod5015.property.dod_address.title=\u53d7\u4fe1\u8005
dod_dod5015.property.dod_address.decription=\u53d7\u4fe1\u8005
dod_dod5015.property.dod_otherAddress.title=\u305d\u306e\u4ed6\u306e\u53d7\u4fe1\u8005
dod_dod5015.property.dod_otherAddress.decription=\u305d\u306e\u4ed6\u306e\u53d7\u4fe1\u8005
dod_dod5015.aspect.dod_scannedRecord.title=\u30b9\u30ad\u30e3\u30f3\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
dod_dod5015.aspect.dod_scannedRecord.description=\u30b9\u30ad\u30e3\u30f3\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
dod_dod5015.property.dod_scannedFormat.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
dod_dod5015.property.dod_scannedFormat.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
dod_dod5015.property.dod_scannedFormatVersion.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3068\u30d0\u30fc\u30b8\u30e7\u30f3
dod_dod5015.property.dod_scannedFormatVersion.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3068\u30d0\u30fc\u30b8\u30e7\u30f3
dod_dod5015.property.dod_resolutionX.title=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6X
dod_dod5015.property.dod_resolutionX.description=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6X
dod_dod5015.property.dod_resolutionY.title=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6Y
dod_dod5015.property.dod_resolutionY.description=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6Y
dod_dod5015.property.dod_scannedBitDepth.title=\u30b9\u30ad\u30e3\u30f3\u3057\u305f\u30d3\u30c3\u30c8\u6df1\u5ea6
dod_dod5015.property.dod_scannedBitDepth.description=\u30b9\u30ad\u30e3\u30f3\u3057\u305f\u30d3\u30c3\u30c8\u6df1\u5ea6
dod_dod5015.aspect.dod_pdfRecord.title=PDF\u30ec\u30b3\u30fc\u30c9
dod_dod5015.aspect.dod_pdfRecord.description=PDF\u30ec\u30b3\u30fc\u30c9
dod_dod5015.property.dod_producingApplication.title=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
dod_dod5015.property.dod_producingApplication.description=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
dod_dod5015.property.dod_producingApplicationVersion.title=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d0\u30fc\u30b8\u30e7\u30f3
dod_dod5015.property.dod_producingApplicationVersion.description=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d0\u30fc\u30b8\u30e7\u30f3
dod_dod5015.property.dod_pdfVersion.title=PDF\u30d0\u30fc\u30b8\u30e7\u30f3
dod_dod5015.property.dod_pdfVersion.description=PDF\u30d0\u30fc\u30b8\u30e7\u30f3
dod_dod5015.property.dod_creatingApplication.title=\u4f5c\u6210\u5143\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
dod_dod5015.property.dod_creatingApplication.description=\u4f5c\u6210\u5143\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
dod_dod5015.property.dod_documentSecuritySettings.title=\u6587\u66f8\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u8a2d\u5b9a
dod_dod5015.property.dod_documentSecuritySettings.description=\u6587\u66f8\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u8a2d\u5b9a
dod_dod5015.aspect.dod_digitalPhotographRecord.title=\u30c7\u30b8\u30bf\u30eb\u5199\u771f\u30ec\u30b3\u30fc\u30c9
dod_dod5015.aspect.dod_digitalPhotographRecord.description=\u30c7\u30b8\u30bf\u30eb\u5199\u771f\u30ec\u30b3\u30fc\u30c9
dod_dod5015.property.dod_caption.title=\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3
dod_dod5015.property.dod_caption.description=\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3
dod_dod5015.property.dod_photographer.title=\u5199\u771f\u5bb6
dod_dod5015.property.dod_photographer.description=\u5199\u771f\u5bb6
dod_dod5015.property.dod_copyright.title=\u8457\u4f5c\u6a29
dod_dod5015.property.dod_copyright.description=\u8457\u4f5c\u6a29
dod_dod5015.property.dod_bitDepth.title=\u30d3\u30c3\u30c8\u6df1\u5ea6
dod_dod5015.property.dod_bitDepth.description=\u30d3\u30c3\u30c8\u6df1\u5ea6
dod_dod5015.property.dod_imageSizeX.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baX
dod_dod5015.property.dod_imageSizeX.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baX
dod_dod5015.property.dod_imageSizeY.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baY
dod_dod5015.property.dod_imageSizeY.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baY
dod_dod5015.property.dod_imageSource.title=\u30a4\u30e1\u30fc\u30b8\u30bd\u30fc\u30b9
dod_dod5015.property.dod_imageSource.description=\u30a4\u30e1\u30fc\u30b8\u30bd\u30fc\u30b9
dod_dod5015.property.dod_compression.title=\u5727\u7e2e
dod_dod5015.property.dod_compression.description=\u5727\u7e2e
dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb
dod_dod5015.property.dod_iccIcmProfile.description=ICC/ICM\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb
dod_dod5015.property.dod_exifInformation.title=EXIF\u60c5\u5831
dod_dod5015.property.dod_exifInformation.description=EXIF\u60c5\u5831
dod_dod5015.aspect.dod_webRecord.title=Web\u30ec\u30b3\u30fc\u30c9
dod_dod5015.aspect.dod_webRecord.description=Web\u30ec\u30b3\u30fc\u30c9
dod_dod5015.property.dod_webFileName.title=Web\u30d5\u30a1\u30a4\u30eb\u540d
dod_dod5015.property.dod_webFileName.description=Web\u30d5\u30a1\u30a4\u30eb\u540d
dod_dod5015.property.dod_webPlatform.title=Web\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0
dod_dod5015.property.dod_webPlatform.description=Web\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0
dod_dod5015.property.dod_webSiteName.title=Web\u30b5\u30a4\u30c8\u540d
dod_dod5015.property.dod_webSiteName.description=Web\u30b5\u30a4\u30c8\u540d
dod_dod5015.property.dod_webSiteURL.title=Web\u30b5\u30a4\u30c8URL
dod_dod5015.property.dod_webSiteURL.description=Web\u30b5\u30a4\u30c8URL
dod_dod5015.property.dod_captureMethod.title=\u30ad\u30e3\u30d7\u30c1\u30e3\u624b\u6cd5
dod_dod5015.property.dod_captureMethod.description=\u30ad\u30e3\u30d7\u30c1\u30e3\u624b\u6cd5
dod_dod5015.property.dod_captureDate.title=\u30ad\u30e3\u30d7\u30c1\u30e3\u65e5
dod_dod5015.property.dod_captureDate.description=\u30ad\u30e3\u30d7\u30c1\u30e3\u65e5
dod_dod5015.property.dod_contact.title=\u9023\u7d61\u5148
dod_dod5015.property.dod_contact.description=\u9023\u7d61\u5148
dod_dod5015.property.dod_contentManagementSystem.title=\u30b3\u30f3\u30c6\u30f3\u30c4\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0
dod_dod5015.property.dod_contentManagementSystem.description=\u30b3\u30f3\u30c6\u30f3\u30c4\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0

View File

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

View File

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

View File

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

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.type.dod_site.title=\u0421\u0430\u0439\u0442 DOD5015
dod_dod5015.type.dod_site.description=\u0421\u0430\u0439\u0442 DOD5015
dod_dod5015.type.dod_filePlan.title=\u0410\u0440\u0445\u0438\u0432 DOD5015
dod_dod5015.type.dod_filePlan.description=\u0410\u0440\u0445\u0438\u0432 DOD5015
dod_dod5015.type.dod_recordSeries.title=\u0421\u0435\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439 (\u0443\u0441\u0442\u0430\u0440\u0435\u043b\u043e)
dod_dod5015.type.dod_recordSeries.description=\u0421\u0435\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439 (\u0443\u0441\u0442\u0430\u0440\u0435\u043b\u043e)
dod_dod5015.aspect.dod_dod5015record.title=\u0417\u0430\u043f\u0438\u0441\u044c DOD5015
dod_dod5015.aspect.dod_dod5015record.description=\u0417\u0430\u043f\u0438\u0441\u044c DOD5015
dod_dod5015.property.dod_publicationDate.title=\u0414\u0430\u0442\u0430 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438
dod_dod5015.property.dod_publicationDate.decription=\u0414\u0430\u0442\u0430 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438
dod_dod5015.property.dod_originator.title=\u0418\u043d\u0438\u0446\u0438\u0430\u0442\u043e\u0440
dod_dod5015.property.dod_originator.decription=\u0418\u043d\u0438\u0446\u0438\u0430\u0442\u043e\u0440
dod_dod5015.property.dod_originatingOrganization.title=\u0418\u043d\u0438\u0446\u0438\u0438\u0440\u0443\u044e\u0449\u0430\u044f \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f
dod_dod5015.property.dod_originatingOrganization.decription=\u0418\u043d\u0438\u0446\u0438\u0438\u0440\u0443\u044e\u0449\u0430\u044f \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f
dod_dod5015.property.dod_mediaType.title=\u0422\u0438\u043f \u043c\u0435\u0434\u0438\u0430
dod_dod5015.property.dod_mediaType.decription=\u0422\u0438\u043f \u043c\u0435\u0434\u0438\u0430
dod_dod5015.property.dod_format.title=\u0424\u043e\u0440\u043c\u0430\u0442
dod_dod5015.property.dod_format.decription=\u0424\u043e\u0440\u043c\u0430\u0442
dod_dod5015.property.dod_dateReceived.title=\u0414\u0430\u0442\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_dateReceived.decription=\u0414\u0430\u0442\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_address.title=\u0410\u0434\u0440\u0435\u0441\u0430\u0442
dod_dod5015.property.dod_address.decription=\u0410\u0434\u0440\u0435\u0441\u0430\u0442
dod_dod5015.property.dod_otherAddress.title=\u0414\u0440\u0443\u0433\u043e\u0439 \u0430\u0434\u0440\u0435\u0441\u0430\u0442
dod_dod5015.property.dod_otherAddress.decription=\u0414\u0440\u0443\u0433\u043e\u0439 \u0430\u0434\u0440\u0435\u0441\u0430\u0442
dod_dod5015.aspect.dod_scannedRecord.title=\u041e\u0442\u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
dod_dod5015.aspect.dod_scannedRecord.description=\u041e\u0442\u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
dod_dod5015.property.dod_scannedFormat.title=\u0424\u043e\u0440\u043c\u0430\u0442 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_scannedFormat.description=\u0424\u043e\u0440\u043c\u0430\u0442 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_scannedFormatVersion.title=\u0424\u043e\u0440\u043c\u0430\u0442 \u0438 \u0432\u0435\u0440\u0441\u0438\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_scannedFormatVersion.description=\u0424\u043e\u0440\u043c\u0430\u0442 \u0438 \u0432\u0435\u0440\u0441\u0438\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_resolutionX.title=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 X
dod_dod5015.property.dod_resolutionX.description=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 X
dod_dod5015.property.dod_resolutionY.title=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 Y
dod_dod5015.property.dod_resolutionY.description=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 Y
dod_dod5015.property.dod_scannedBitDepth.title=\u0411\u0438\u0442\u043e\u0432\u0430\u044f \u0433\u043b\u0443\u0431\u0438\u043d\u0430 \u043e\u0442\u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_scannedBitDepth.description=\u0411\u0438\u0442\u043e\u0432\u0430\u044f \u0433\u043b\u0443\u0431\u0438\u043d\u0430 \u043e\u0442\u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
dod_dod5015.aspect.dod_pdfRecord.title=\u0417\u0430\u043f\u0438\u0441\u044c PDF
dod_dod5015.aspect.dod_pdfRecord.description=\u0417\u0430\u043f\u0438\u0441\u044c PDF
dod_dod5015.property.dod_producingApplication.title=\u0412\u044b\u043f\u0443\u0441\u043a\u0430\u044e\u0449\u0435\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
dod_dod5015.property.dod_producingApplication.description=\u0412\u044b\u043f\u0443\u0441\u043a\u0430\u044e\u0449\u0435\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
dod_dod5015.property.dod_producingApplicationVersion.title=\u0412\u0435\u0440\u0441\u0438\u044f \u0432\u044b\u043f\u0443\u0441\u043a\u0430\u044e\u0449\u0435\u0433\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_producingApplicationVersion.description=\u0412\u0435\u0440\u0441\u0438\u044f \u0432\u044b\u043f\u0443\u0441\u043a\u0430\u044e\u0449\u0435\u0433\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_pdfVersion.title=\u0412\u0435\u0440\u0441\u0438\u044f PDF
dod_dod5015.property.dod_pdfVersion.description=\u0412\u0435\u0440\u0441\u0438\u044f PDF
dod_dod5015.property.dod_creatingApplication.title=\u0421\u043e\u0437\u0434\u0430\u044e\u0449\u0435\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
dod_dod5015.property.dod_creatingApplication.description=\u0421\u043e\u0437\u0434\u0430\u044e\u0449\u0435\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
dod_dod5015.property.dod_documentSecuritySettings.title=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0437\u0430\u0449\u0438\u0442\u044b \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430
dod_dod5015.property.dod_documentSecuritySettings.description=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0437\u0430\u0449\u0438\u0442\u044b \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430
dod_dod5015.aspect.dod_digitalPhotographRecord.title=\u0417\u0430\u043f\u0438\u0441\u044c \u0432 \u0432\u0438\u0434\u0435 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438
dod_dod5015.aspect.dod_digitalPhotographRecord.description=\u0417\u0430\u043f\u0438\u0441\u044c \u0432 \u0432\u0438\u0434\u0435 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438
dod_dod5015.property.dod_caption.title=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a
dod_dod5015.property.dod_caption.description=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a
dod_dod5015.property.dod_photographer.title=\u0410\u0432\u0442\u043e\u0440 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438
dod_dod5015.property.dod_photographer.description=\u0410\u0432\u0442\u043e\u0440 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438
dod_dod5015.property.dod_copyright.title=\u0410\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0435 \u043f\u0440\u0430\u0432\u0430
dod_dod5015.property.dod_copyright.description=\u0410\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0435 \u043f\u0440\u0430\u0432\u0430
dod_dod5015.property.dod_bitDepth.title=\u0411\u0438\u0442\u043e\u0432\u0430\u044f \u0433\u043b\u0443\u0431\u0438\u043d\u0430
dod_dod5015.property.dod_bitDepth.description=\u0411\u0438\u0442\u043e\u0432\u0430\u044f \u0433\u043b\u0443\u0431\u0438\u043d\u0430
dod_dod5015.property.dod_imageSizeX.title=\u0420\u0430\u0437\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 X
dod_dod5015.property.dod_imageSizeX.description=\u0420\u0430\u0437\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 X
dod_dod5015.property.dod_imageSizeY.title=\u0420\u0430\u0437\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 Y
dod_dod5015.property.dod_imageSizeY.description=\u0420\u0430\u0437\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 Y
dod_dod5015.property.dod_imageSource.title=\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_imageSource.description=\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_compression.title=\u0421\u0436\u0430\u0442\u0438\u0435
dod_dod5015.property.dod_compression.description=\u0421\u0436\u0430\u0442\u0438\u0435
dod_dod5015.property.dod_iccIcmProfile.title=\u041f\u0440\u043e\u0444\u0438\u043b\u044c ICC/ICM
dod_dod5015.property.dod_iccIcmProfile.description=\u041f\u0440\u043e\u0444\u0438\u043b\u044c ICC/ICM
dod_dod5015.property.dod_exifInformation.title=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f EXIF
dod_dod5015.property.dod_exifInformation.description=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f EXIF
dod_dod5015.aspect.dod_webRecord.title=\u0412\u0435\u0431-\u0437\u0430\u043f\u0438\u0441\u044c
dod_dod5015.aspect.dod_webRecord.description=\u0412\u0435\u0431-\u0437\u0430\u043f\u0438\u0441\u044c
dod_dod5015.property.dod_webFileName.title=\u0418\u043c\u044f \u0432\u0435\u0431-\u0444\u0430\u0439\u043b\u0430
dod_dod5015.property.dod_webFileName.description=\u0418\u043c\u044f \u0432\u0435\u0431-\u0444\u0430\u0439\u043b\u0430
dod_dod5015.property.dod_webPlatform.title=\u0412\u0435\u0431-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430
dod_dod5015.property.dod_webPlatform.description=\u0412\u0435\u0431-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430
dod_dod5015.property.dod_webSiteName.title=\u0418\u043c\u044f \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
dod_dod5015.property.dod_webSiteName.description=\u0418\u043c\u044f \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
dod_dod5015.property.dod_webSiteURL.title=URL-\u0430\u0434\u0440\u0435\u0441 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
dod_dod5015.property.dod_webSiteURL.description=URL-\u0430\u0434\u0440\u0435\u0441 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
dod_dod5015.property.dod_captureMethod.title=\u0421\u043f\u043e\u0441\u043e\u0431 \u0432\u0432\u043e\u0434\u0430
dod_dod5015.property.dod_captureMethod.description=\u0421\u043f\u043e\u0441\u043e\u0431 \u0432\u0432\u043e\u0434\u0430
dod_dod5015.property.dod_captureDate.title=\u0414\u0430\u0442\u0430 \u0441\u043d\u0438\u043c\u043a\u0430
dod_dod5015.property.dod_captureDate.description=\u0414\u0430\u0442\u0430 \u0441\u043d\u0438\u043c\u043a\u0430
dod_dod5015.property.dod_contact.title=\u041a\u043e\u043d\u0442\u0430\u043a\u0442
dod_dod5015.property.dod_contact.description=\u041a\u043e\u043d\u0442\u0430\u043a\u0442
dod_dod5015.property.dod_contentManagementSystem.title=\u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u044b\u043c
dod_dod5015.property.dod_contentManagementSystem.description=\u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u044b\u043c
dod_dod5015.description=\u041c\u043e\u0434\u0435\u043b\u044c \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 DOD5015
dod_dod5015.type.dod_site.title=\u0421\u0430\u0439\u0442 DOD5015
dod_dod5015.type.dod_site.description=\u0421\u0430\u0439\u0442 DOD5015
dod_dod5015.type.dod_filePlan.title=\u0410\u0440\u0445\u0438\u0432 DOD5015
dod_dod5015.type.dod_filePlan.description=\u0410\u0440\u0445\u0438\u0432 DOD5015
dod_dod5015.type.dod_recordSeries.title=\u0421\u0435\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439 (\u0443\u0441\u0442\u0430\u0440\u0435\u043b\u043e)
dod_dod5015.type.dod_recordSeries.description=\u0421\u0435\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439 (\u0443\u0441\u0442\u0430\u0440\u0435\u043b\u043e)
dod_dod5015.aspect.dod_dod5015record.title=\u0417\u0430\u043f\u0438\u0441\u044c DOD5015
dod_dod5015.aspect.dod_dod5015record.description=\u0417\u0430\u043f\u0438\u0441\u044c DOD5015
dod_dod5015.property.dod_publicationDate.title=\u0414\u0430\u0442\u0430 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438
dod_dod5015.property.dod_publicationDate.decription=\u0414\u0430\u0442\u0430 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438
dod_dod5015.property.dod_originator.title=\u0418\u043d\u0438\u0446\u0438\u0430\u0442\u043e\u0440
dod_dod5015.property.dod_originator.decription=\u0418\u043d\u0438\u0446\u0438\u0430\u0442\u043e\u0440
dod_dod5015.property.dod_originatingOrganization.title=\u0418\u043d\u0438\u0446\u0438\u0438\u0440\u0443\u044e\u0449\u0430\u044f \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f
dod_dod5015.property.dod_originatingOrganization.decription=\u0418\u043d\u0438\u0446\u0438\u0438\u0440\u0443\u044e\u0449\u0430\u044f \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f
dod_dod5015.property.dod_mediaType.title=\u0422\u0438\u043f \u043c\u0435\u0434\u0438\u0430
dod_dod5015.property.dod_mediaType.decription=\u0422\u0438\u043f \u043c\u0435\u0434\u0438\u0430
dod_dod5015.property.dod_format.title=\u0424\u043e\u0440\u043c\u0430\u0442
dod_dod5015.property.dod_format.decription=\u0424\u043e\u0440\u043c\u0430\u0442
dod_dod5015.property.dod_dateReceived.title=\u0414\u0430\u0442\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_dateReceived.decription=\u0414\u0430\u0442\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_address.title=\u0410\u0434\u0440\u0435\u0441\u0430\u0442
dod_dod5015.property.dod_address.decription=\u0410\u0434\u0440\u0435\u0441\u0430\u0442
dod_dod5015.property.dod_otherAddress.title=\u0414\u0440\u0443\u0433\u043e\u0439 \u0430\u0434\u0440\u0435\u0441\u0430\u0442
dod_dod5015.property.dod_otherAddress.decription=\u0414\u0440\u0443\u0433\u043e\u0439 \u0430\u0434\u0440\u0435\u0441\u0430\u0442
dod_dod5015.aspect.dod_scannedRecord.title=\u041e\u0442\u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
dod_dod5015.aspect.dod_scannedRecord.description=\u041e\u0442\u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
dod_dod5015.property.dod_scannedFormat.title=\u0424\u043e\u0440\u043c\u0430\u0442 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_scannedFormat.description=\u0424\u043e\u0440\u043c\u0430\u0442 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_scannedFormatVersion.title=\u0424\u043e\u0440\u043c\u0430\u0442 \u0438 \u0432\u0435\u0440\u0441\u0438\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_scannedFormatVersion.description=\u0424\u043e\u0440\u043c\u0430\u0442 \u0438 \u0432\u0435\u0440\u0441\u0438\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_resolutionX.title=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 X
dod_dod5015.property.dod_resolutionX.description=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 X
dod_dod5015.property.dod_resolutionY.title=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 Y
dod_dod5015.property.dod_resolutionY.description=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 Y
dod_dod5015.property.dod_scannedBitDepth.title=\u0411\u0438\u0442\u043e\u0432\u0430\u044f \u0433\u043b\u0443\u0431\u0438\u043d\u0430 \u043e\u0442\u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_scannedBitDepth.description=\u0411\u0438\u0442\u043e\u0432\u0430\u044f \u0433\u043b\u0443\u0431\u0438\u043d\u0430 \u043e\u0442\u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
dod_dod5015.aspect.dod_pdfRecord.title=\u0417\u0430\u043f\u0438\u0441\u044c PDF
dod_dod5015.aspect.dod_pdfRecord.description=\u0417\u0430\u043f\u0438\u0441\u044c PDF
dod_dod5015.property.dod_producingApplication.title=\u0412\u044b\u043f\u0443\u0441\u043a\u0430\u044e\u0449\u0435\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
dod_dod5015.property.dod_producingApplication.description=\u0412\u044b\u043f\u0443\u0441\u043a\u0430\u044e\u0449\u0435\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
dod_dod5015.property.dod_producingApplicationVersion.title=\u0412\u0435\u0440\u0441\u0438\u044f \u0432\u044b\u043f\u0443\u0441\u043a\u0430\u044e\u0449\u0435\u0433\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_producingApplicationVersion.description=\u0412\u0435\u0440\u0441\u0438\u044f \u0432\u044b\u043f\u0443\u0441\u043a\u0430\u044e\u0449\u0435\u0433\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_pdfVersion.title=\u0412\u0435\u0440\u0441\u0438\u044f PDF
dod_dod5015.property.dod_pdfVersion.description=\u0412\u0435\u0440\u0441\u0438\u044f PDF
dod_dod5015.property.dod_creatingApplication.title=\u0421\u043e\u0437\u0434\u0430\u044e\u0449\u0435\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
dod_dod5015.property.dod_creatingApplication.description=\u0421\u043e\u0437\u0434\u0430\u044e\u0449\u0435\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435
dod_dod5015.property.dod_documentSecuritySettings.title=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0437\u0430\u0449\u0438\u0442\u044b \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430
dod_dod5015.property.dod_documentSecuritySettings.description=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0437\u0430\u0449\u0438\u0442\u044b \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430
dod_dod5015.aspect.dod_digitalPhotographRecord.title=\u0417\u0430\u043f\u0438\u0441\u044c \u0432 \u0432\u0438\u0434\u0435 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438
dod_dod5015.aspect.dod_digitalPhotographRecord.description=\u0417\u0430\u043f\u0438\u0441\u044c \u0432 \u0432\u0438\u0434\u0435 \u0446\u0438\u0444\u0440\u043e\u0432\u043e\u0439 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438
dod_dod5015.property.dod_caption.title=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a
dod_dod5015.property.dod_caption.description=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a
dod_dod5015.property.dod_photographer.title=\u0410\u0432\u0442\u043e\u0440 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438
dod_dod5015.property.dod_photographer.description=\u0410\u0432\u0442\u043e\u0440 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438
dod_dod5015.property.dod_copyright.title=\u0410\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0435 \u043f\u0440\u0430\u0432\u0430
dod_dod5015.property.dod_copyright.description=\u0410\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0435 \u043f\u0440\u0430\u0432\u0430
dod_dod5015.property.dod_bitDepth.title=\u0411\u0438\u0442\u043e\u0432\u0430\u044f \u0433\u043b\u0443\u0431\u0438\u043d\u0430
dod_dod5015.property.dod_bitDepth.description=\u0411\u0438\u0442\u043e\u0432\u0430\u044f \u0433\u043b\u0443\u0431\u0438\u043d\u0430
dod_dod5015.property.dod_imageSizeX.title=\u0420\u0430\u0437\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 X
dod_dod5015.property.dod_imageSizeX.description=\u0420\u0430\u0437\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 X
dod_dod5015.property.dod_imageSizeY.title=\u0420\u0430\u0437\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 Y
dod_dod5015.property.dod_imageSizeY.description=\u0420\u0430\u0437\u043c\u0435\u0440 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043e\u0441\u0438 Y
dod_dod5015.property.dod_imageSource.title=\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_imageSource.description=\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
dod_dod5015.property.dod_compression.title=\u0421\u0436\u0430\u0442\u0438\u0435
dod_dod5015.property.dod_compression.description=\u0421\u0436\u0430\u0442\u0438\u0435
dod_dod5015.property.dod_iccIcmProfile.title=\u041f\u0440\u043e\u0444\u0438\u043b\u044c ICC/ICM
dod_dod5015.property.dod_iccIcmProfile.description=\u041f\u0440\u043e\u0444\u0438\u043b\u044c ICC/ICM
dod_dod5015.property.dod_exifInformation.title=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f EXIF
dod_dod5015.property.dod_exifInformation.description=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f EXIF
dod_dod5015.aspect.dod_webRecord.title=\u0412\u0435\u0431-\u0437\u0430\u043f\u0438\u0441\u044c
dod_dod5015.aspect.dod_webRecord.description=\u0412\u0435\u0431-\u0437\u0430\u043f\u0438\u0441\u044c
dod_dod5015.property.dod_webFileName.title=\u0418\u043c\u044f \u0432\u0435\u0431-\u0444\u0430\u0439\u043b\u0430
dod_dod5015.property.dod_webFileName.description=\u0418\u043c\u044f \u0432\u0435\u0431-\u0444\u0430\u0439\u043b\u0430
dod_dod5015.property.dod_webPlatform.title=\u0412\u0435\u0431-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430
dod_dod5015.property.dod_webPlatform.description=\u0412\u0435\u0431-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430
dod_dod5015.property.dod_webSiteName.title=\u0418\u043c\u044f \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
dod_dod5015.property.dod_webSiteName.description=\u0418\u043c\u044f \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
dod_dod5015.property.dod_webSiteURL.title=URL-\u0430\u0434\u0440\u0435\u0441 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
dod_dod5015.property.dod_webSiteURL.description=URL-\u0430\u0434\u0440\u0435\u0441 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0430
dod_dod5015.property.dod_captureMethod.title=\u0421\u043f\u043e\u0441\u043e\u0431 \u0432\u0432\u043e\u0434\u0430
dod_dod5015.property.dod_captureMethod.description=\u0421\u043f\u043e\u0441\u043e\u0431 \u0432\u0432\u043e\u0434\u0430
dod_dod5015.property.dod_captureDate.title=\u0414\u0430\u0442\u0430 \u0441\u043d\u0438\u043c\u043a\u0430
dod_dod5015.property.dod_captureDate.description=\u0414\u0430\u0442\u0430 \u0441\u043d\u0438\u043c\u043a\u0430
dod_dod5015.property.dod_contact.title=\u041a\u043e\u043d\u0442\u0430\u043a\u0442
dod_dod5015.property.dod_contact.description=\u041a\u043e\u043d\u0442\u0430\u043a\u0442
dod_dod5015.property.dod_contentManagementSystem.title=\u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u044b\u043c
dod_dod5015.property.dod_contentManagementSystem.description=\u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u044b\u043c

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,8 +1,8 @@
# Classified Records Capabilities
capability.group.classifiedRecords.title=Document d'archives class\u00e9s
capability.UpdateClassificationDates.title=Mettre \u00e0 jour les dates de classement
capability.CreateModifyDestroyClassificationGuides.title=Cr\u00e9er Modifier D\u00e9truire des guides de classement
capability.UpgradeDowngradeAndDeclassifyRecords.title=Mettre \u00e0 jour R\u00e9trograder et D\u00e9classer des documents d'archives
capability.UpdateExemptionCategories.title=Mettre \u00e0 jour les cat\u00e9gories d'exemption
capability.MapClassificationGuideMetadata.title=Mapper les m\u00e9tadonn\u00e9es de guides de classement
# Classified Records Capabilities
capability.group.classifiedRecords.title=Document d'archives class\u00e9s
capability.UpdateClassificationDates.title=Mettre \u00e0 jour les dates de classement
capability.CreateModifyDestroyClassificationGuides.title=Cr\u00e9er Modifier D\u00e9truire des guides de classement
capability.UpgradeDowngradeAndDeclassifyRecords.title=Mettre \u00e0 jour R\u00e9trograder et D\u00e9classer des documents d'archives
capability.UpdateExemptionCategories.title=Mettre \u00e0 jour les cat\u00e9gories d'exemption
capability.MapClassificationGuideMetadata.title=Mapper les m\u00e9tadonn\u00e9es de guides de classement
capability.CreateModifyDestroyTimeframes.title=Cr\u00e9er Modifier D\u00e9truire des d\u00e9lais

View File

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

View File

@@ -1,8 +1,8 @@
# Classified Records Capabilities
capability.group.classifiedRecords.title=\u5206\u985e\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
capability.UpdateClassificationDates.title=\u5206\u985e\u65e5\u306e\u66f4\u65b0
capability.CreateModifyDestroyClassificationGuides.title=\u5206\u985e\u30ac\u30a4\u30c9\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
capability.UpgradeDowngradeAndDeclassifyRecords.title=\u30c0\u30a6\u30f3\u30b0\u30ec\u30fc\u30c9\u306e\u66f4\u65b0\u3068\u30ec\u30b3\u30fc\u30c9\u306e\u5206\u985e\u89e3\u9664
capability.UpdateExemptionCategories.title=\u9664\u5916\u30ab\u30c6\u30b4\u30ea\u306e\u66f4\u65b0
capability.MapClassificationGuideMetadata.title=\u5206\u985e\u30ac\u30a4\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u30de\u30c3\u30d4\u30f3\u30b0
# Classified Records Capabilities
capability.group.classifiedRecords.title=\u5206\u985e\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
capability.UpdateClassificationDates.title=\u5206\u985e\u65e5\u306e\u66f4\u65b0
capability.CreateModifyDestroyClassificationGuides.title=\u5206\u985e\u30ac\u30a4\u30c9\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4
capability.UpgradeDowngradeAndDeclassifyRecords.title=\u30c0\u30a6\u30f3\u30b0\u30ec\u30fc\u30c9\u306e\u66f4\u65b0\u3068\u30ec\u30b3\u30fc\u30c9\u306e\u5206\u985e\u89e3\u9664
capability.UpdateExemptionCategories.title=\u9664\u5916\u30ab\u30c6\u30b4\u30ea\u306e\u66f4\u65b0
capability.MapClassificationGuideMetadata.title=\u5206\u985e\u30ac\u30a4\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u30de\u30c3\u30d4\u30f3\u30b0
capability.CreateModifyDestroyTimeframes.title=\u30bf\u30a4\u30e0\u30d5\u30ec\u30fc\u30e0\u306e\u4f5c\u6210/\u5909\u66f4/\u7834\u68c4

View File

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

View File

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

View File

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

View File

@@ -1,8 +1,8 @@
# Classified Records Capabilities
capability.group.classifiedRecords.title=\u041a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
capability.UpdateClassificationDates.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u0430\u0442\u044b \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438
capability.CreateModifyDestroyClassificationGuides.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0438 \u043f\u043e \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438
capability.UpgradeDowngradeAndDeclassifyRecords.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c, \u043e\u0442\u043a\u0430\u0442\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u043a \u0431\u043e\u043b\u0435\u0435 \u0440\u0430\u043d\u043d\u0438\u043c \u0438 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u0435\u0439
capability.UpdateExemptionCategories.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0439
capability.MapClassificationGuideMetadata.title=\u0421\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0439 \u043f\u043e \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438
# Classified Records Capabilities
capability.group.classifiedRecords.title=\u041a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
capability.UpdateClassificationDates.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u0430\u0442\u044b \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438
capability.CreateModifyDestroyClassificationGuides.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0438 \u043f\u043e \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438
capability.UpgradeDowngradeAndDeclassifyRecords.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c, \u043e\u0442\u043a\u0430\u0442\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u043a \u0431\u043e\u043b\u0435\u0435 \u0440\u0430\u043d\u043d\u0438\u043c \u0438 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u0435\u0439
capability.UpdateExemptionCategories.title=\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0439
capability.MapClassificationGuideMetadata.title=\u0421\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0439 \u043f\u043e \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438
capability.CreateModifyDestroyTimeframes.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c, \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c, \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u044b

View File

@@ -1,8 +1,8 @@
# Classified Records Capabilities
capability.group.classifiedRecords.title=\u5206\u7c7b\u7684\u8bb0\u5f55
capability.UpdateClassificationDates.title=\u66f4\u65b0\u5206\u7c7b\u65e5\u671f
capability.CreateModifyDestroyClassificationGuides.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u5206\u7c7b\u6307\u5357
capability.UpgradeDowngradeAndDeclassifyRecords.title=\u8bb0\u5f55\u7684\u5347\u7ea7\u3001\u964d\u7ea7\u4ee5\u53ca\u53d6\u6d88\u5206\u7c7b
capability.UpdateExemptionCategories.title=\u66f4\u65b0\u8c41\u514d\u7c7b\u522b
capability.MapClassificationGuideMetadata.title=\u6620\u5c04\u5206\u7c7b\u6307\u5357\u5143\u6570\u636e
# Classified Records Capabilities
capability.group.classifiedRecords.title=\u5206\u7c7b\u7684\u8bb0\u5f55
capability.UpdateClassificationDates.title=\u66f4\u65b0\u5206\u7c7b\u65e5\u671f
capability.CreateModifyDestroyClassificationGuides.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u5206\u7c7b\u6307\u5357
capability.UpgradeDowngradeAndDeclassifyRecords.title=\u8bb0\u5f55\u7684\u5347\u7ea7\u3001\u964d\u7ea7\u4ee5\u53ca\u53d6\u6d88\u5206\u7c7b
capability.UpdateExemptionCategories.title=\u66f4\u65b0\u8c41\u514d\u7c7b\u522b
capability.MapClassificationGuideMetadata.title=\u6620\u5c04\u5206\u7c7b\u6307\u5357\u5143\u6570\u636e
capability.CreateModifyDestroyTimeframes.title=\u521b\u5efa\u4fee\u6539\u9500\u6bc1\u65f6\u95f4\u8303\u56f4

View File

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

View File

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

View File

@@ -1,42 +1,42 @@
rm.action.not-defined=The records management action {0} hasn't been defined.
rm.action.no-implicit-noderef=There was a system error so the action {0} might not be successful.
rm.action.record-not-declared=The retention action {0} couldn't be performed, because the record {1} isn't complete.
rm.action.expected-record-level=The retention action {0} couldn't be performed, because {1} isn't a record.
rm.action.not-all-records-declared=The retention action {0} couldn't be performed, because not all the records in the record folder are complete. (actionedUponNodeRef={1})
rm.action.not-eligible=The record or record folder {1} isn't yet ready for retention action {0}.
rm.action.no-disposition-instructions=The retention action {0} couldn't be performed, because no retention instructions could be found. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=The retention action {0} couldn't be performed, because there's no available retention life-cycle set. (nodeRef={1})
rm.action.next-disp-not-set=The retention action {0} couldn't be performed, because the next retention action isn't set. (nodeRef={1})
rm.action.not-next-disp=The retention action {0} couldn't be performed, because this isn't the next retention action for this record or record folder. (nodeRef={1})
rm.action.not-record-folder=The retention action {0} couldn't be performed, because {1} isn't a record folder.
rm.action.actioned-upon-not-record=The action {0} can't be performed because {1} isn't a record.
rm.action.custom-aspect-not-recognised=The custom type can't be applied because it's not recognised. (customAspect={0})
rm.action.event-no-disp-lc=The event {0} can't be completed because it's not defined on the retention lifecycle.
rm.action.undeclared-only-records=Only records can be completed. (nodeRef={0})
rm.action.no-declare-mand-prop=You need to set all the record's mandatory properties before you can complete the record.
rm.action.ghosted-prop-update=You can't update the properties of a previously destroyed record.
rm.action.valid-date-disp-asof=Enter a valid date for the retention action as of date.
rm.action.disp-asof-lifecycle-applied=You can't edit the retention as of date for a record or record folder which has a lifecycle applied.
rm.action.hold-edit-reason-none=You can't edit the hold reason because the hold was created without a reason. Try recreating the hold.
rm.action.hold-edit-type=You can't edit the hold reason for {1} because it isn't a hold.
rm.action.specify-avlid-date=Enter a valid date for the review as of date.
rm.action.review-details-only=You can only edit the review details of vital records.
rm.action.freeze-no-reason=You can't hold a record without a reason. Add a reason to the hold.
rm.action.freeze-only-records-folders=You can only hold records or record folders.
rm.action.no-open-record-folder=You can't reopen {0} because it's not a record folder.
rm.action.not-hold-type=You can't carry out the action on {1} because it isn't a hold.
rm.action.no-read-mime-message=The filetype message couldn't be read because {0}.
rm.action.email-declared=We couldn't split the email because the record is complete. (actionedUponNodeRef={0})
rm.action.email-not-record=We couldn't split the email because the file, folder, or category isn't a record. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=We couldn't create a custom child association.
rm.action.node-already-transfer=The file, folder, or category is already being transferred.
rm.action.node-not-transfer=The file, folder, or category isn't a transfer object.
rm.action.undo-not-last=You can't undo the cut off because the last retention action wasn't cut off.
rm.action.records_only_undeclared=You can only complete records.
rm.action.event-not-undone=You can't undo the event {0} because it's not defined on the retention lifecycle.
rm.action.node-not-record-category=You can't create a retention schedule for ({0}) because it's not a record category.
rm.action.parameter-not-supplied=Add a ''{0}'' to continue.
rm.action.delete-not-hold-type=We couldn't delete the hold because {1} isn't of type {0}.
rm.action.cast-to-rm-type=You can't upload a custom folder type to the records management file plan.
rm.action.record-folder-create=You can't create a record folder in another record folder.
rm.action.not-defined=The records management action {0} hasn't been defined.
rm.action.no-implicit-noderef=There was a system error so the action {0} might not be successful.
rm.action.record-not-declared=The retention action {0} couldn't be performed, because the record {1} isn't complete.
rm.action.expected-record-level=The retention action {0} couldn't be performed, because {1} isn't a record.
rm.action.not-all-records-declared=The retention action {0} couldn't be performed, because not all the records in the record folder are complete. (actionedUponNodeRef={1})
rm.action.not-eligible=The record or record folder {1} isn't yet ready for retention action {0}.
rm.action.no-disposition-instructions=The retention action {0} couldn't be performed, because no retention instructions could be found. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=The retention action {0} couldn't be performed, because there's no available retention life-cycle set. (nodeRef={1})
rm.action.next-disp-not-set=The retention action {0} couldn't be performed, because the next retention action isn't set. (nodeRef={1})
rm.action.not-next-disp=The retention action {0} couldn't be performed, because this isn't the next retention action for this record or record folder. (nodeRef={1})
rm.action.not-record-folder=The retention action {0} couldn't be performed, because {1} isn't a record folder.
rm.action.actioned-upon-not-record=The action {0} can't be performed because {1} isn't a record.
rm.action.custom-aspect-not-recognised=The custom type can't be applied because it's not recognised. (customAspect={0})
rm.action.event-no-disp-lc=The event {0} can't be completed because it's not defined on the retention lifecycle.
rm.action.undeclared-only-records=Only records can be completed. (nodeRef={0})
rm.action.no-declare-mand-prop=You need to set all the record's mandatory properties before you can complete the record.
rm.action.ghosted-prop-update=You can't update the properties of a previously destroyed record.
rm.action.valid-date-disp-asof=Enter a valid date for the retention action as of date.
rm.action.disp-asof-lifecycle-applied=You can't edit the retention as of date for a record or record folder which has a lifecycle applied.
rm.action.hold-edit-reason-none=You can't edit the hold reason because the hold was created without a reason. Try recreating the hold.
rm.action.hold-edit-type=You can't edit the hold reason for {1} because it isn't a hold.
rm.action.specify-avlid-date=Enter a valid date for the review as of date.
rm.action.review-details-only=You can only edit the review details of vital records.
rm.action.freeze-no-reason=You can't hold a record without a reason. Add a reason to the hold.
rm.action.freeze-only-records-folders=You can only hold records or record folders.
rm.action.no-open-record-folder=You can't reopen {0} because it's not a record folder.
rm.action.not-hold-type=You can't carry out the action on {1} because it isn't a hold.
rm.action.no-read-mime-message=The filetype message couldn't be read because {0}.
rm.action.email-declared=We couldn't split the email because the record is complete. (actionedUponNodeRef={0})
rm.action.email-not-record=We couldn't split the email because the file, folder, or category isn't a record. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=We couldn't create a custom child association.
rm.action.node-already-transfer=The file, folder, or category is already being transferred.
rm.action.node-not-transfer=The file, folder, or category isn't a transfer object.
rm.action.undo-not-last=You can't undo the cut off because the last retention action wasn't cut off.
rm.action.records_only_undeclared=You can only complete records.
rm.action.event-not-undone=You can't undo the event {0} because it's not defined on the retention lifecycle.
rm.action.node-not-record-category=You can't create a retention schedule for ({0}) because it's not a record category.
rm.action.parameter-not-supplied=Add a ''{0}'' to continue.
rm.action.delete-not-hold-type=We couldn't delete the hold because {1} isn't of type {0}.
rm.action.cast-to-rm-type=You can't upload a custom folder type to the records management file plan.
rm.action.record-folder-create=You can't create a record folder in another record folder.

View File

@@ -1,42 +1,42 @@
rm.action.not-defined=Die Records Management Aktion {0} wurde nicht definiert.
rm.action.no-implicit-noderef=Es ist ein Systemfehler aufgetreten, sodass die Aktion {0} m\u00f6glicherweise nicht erfolgreich sein wird.
rm.action.record-not-declared=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da der Record {1} unvollst\u00e4ndig ist.
rm.action.expected-record-level=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da {1} kein Record ist.
rm.action.not-all-records-declared=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da nicht alle Records im Record-Ordner abgeschlossen sind. (actionedUponNodeRef={1})
rm.action.not-eligible=Record oder Record-Ordner {1} ist noch nicht bereit f\u00fcr die Aufbewahrungsaktion {0}.
rm.action.no-disposition-instructions=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da keine Aufbewahrungsanweisungen gefunden wurden. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da kein verf\u00fcgbarer Aufbewahrungszyklus festgelegt wurde. (nodeRef={1})
rm.action.next-disp-not-set=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da keine n\u00e4chste Aufbewahrungsaktion festgelegt wurde. (nodeRef={1})
rm.action.not-next-disp=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da es sich hierbei nicht um die n\u00e4chste Aufbewahrungsaktion f\u00fcr den Record bzw. den Record-Ordner handelt. (nodeRef={1})
rm.action.not-record-folder=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da {1} kein Record-Ordner ist.
rm.action.actioned-upon-not-record=Die Aktion {0} kann nicht durchgef\u00fchrt werden, da {1} kein Record ist.
rm.action.custom-aspect-not-recognised=Der benutzerdefinierte Typ kann nicht angewendet werden, da er nicht erkannt wird. (customAspect={0})
rm.action.event-no-disp-lc=Das Ereignis {0} kann nicht abgeschlossen werden, da es nicht im Aufbewahrungszyklus definiert ist.
rm.action.undeclared-only-records=Nur Records k\u00f6nnen abgeschlossen werden. (nodeRef={0})
rm.action.no-declare-mand-prop=Um den Record abzuschlie\u00dfen, m\u00fcssen Sie alle erforderlichen Eigenschaften des Record festlegen.
rm.action.ghosted-prop-update=Die Eigenschaften eines zuvor vernichteten Record k\u00f6nnen nicht aktualisiert werden.
rm.action.valid-date-disp-asof=Geben Sie ein zul\u00e4ssiges Datum als Startdatum der Aufbewahrungsaktion ein.
rm.action.disp-asof-lifecycle-applied=Sie k\u00f6nnen das Startdatum der Aufbewahrung f\u00fcr einen Record oder Record-Ordner mit festgelegtem Aufbewahrungszyklus nicht bearbeiten.
rm.action.hold-edit-reason-none=Der Sperrgrund kann nicht bearbeitet werden, da die Sperre ohne Grund erstellt wurde. Versuchen Sie, die Sperre erneut zu erstellen.
rm.action.hold-edit-type=Sie k\u00f6nnen den Sperrgrund f\u00fcr {1} nicht bearbeiten, da es sich nicht um eine Sperre handelt.
rm.action.specify-avlid-date=Geben Sie ein zul\u00e4ssiges Datum als Startdatum der \u00dcberpr\u00fcfung ein.
rm.action.review-details-only=Sie k\u00f6nnen nur die \u00dcberpr\u00fcfungsdetails besonders relevanter Records bearbeiten.
rm.action.freeze-no-reason=Ein Record kann nicht ohne Grund gesperrt werden. F\u00fcgen Sie einen Sperrgrund hinzu.
rm.action.freeze-only-records-folders=Sie k\u00f6nnen nur Records oder Record-Ordner sperren.
rm.action.no-open-record-folder=Sie k\u00f6nnen {0} nicht erneut \u00f6ffnen, da es sich nicht um einen Record-Ordner handelt.
rm.action.not-hold-type=Die Aktion kann nicht f\u00fcr {1} durchgef\u00fchrt werden, weil es sich nicht um eine Sperre handelt.
rm.action.no-read-mime-message=Die Dateityp-Nachricht konnte nicht gelesen werden, da {0}.
rm.action.email-declared=Die E-Mail konnte nicht geteilt werden, da der Record abgeschlossen ist. (actionedUponNodeRef={0})
rm.action.email-not-record=Die E-Mail konnte nicht geteilt werden, da die Datei, der Ordner bzw. die Kategorie kein Record ist. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=Benutzerdefinierte Kindzuordnung konnte nicht erstellt werden.
rm.action.node-already-transfer=Datei, Ordner oder Kategorie wird bereits \u00fcbertragen.
rm.action.node-not-transfer=Datei, Ordner oder Kategorie ist kein \u00dcbertragungsobjekt.
rm.action.undo-not-last=Trennung kann nicht aufgehoben werden, da die letzte Aufbewahrungsaktion nicht getrennt wurde.
rm.action.records_only_undeclared=Es k\u00f6nnen nur Records abgeschlossen werden.
rm.action.event-not-undone=Sie k\u00f6nnen das Ereignis {0} nicht r\u00fcckg\u00e4ngig machen, da es nicht im Aufbewahrungszyklus definiert ist.
rm.action.node-not-record-category=Sie k\u00f6nnen keinen Aufbewahrungsplan f\u00fcr ({0}) erstellen, da es sich nicht um eine Record-Kategorie handelt.
rm.action.parameter-not-supplied=F\u00fcgen Sie ''{0}'' hinzu, um fortzufahren.
rm.action.delete-not-hold-type=Die Sperre konnte nicht gel\u00f6scht werden, da {1} nicht vom Typ {0} ist.
rm.action.cast-to-rm-type=Ein benutzerdefinierter Ordnertyp kann nicht in einen Records Management Ablageplan hochgeladen werden.
rm.action.record-folder-create=Ein Record-Ordner kann nicht in einem anderen Record-Ordner erstellt werden.
rm.action.not-defined=Die Records Management Aktion {0} wurde nicht definiert.
rm.action.no-implicit-noderef=Es ist ein Systemfehler aufgetreten, sodass die Aktion {0} m\u00f6glicherweise nicht erfolgreich sein wird.
rm.action.record-not-declared=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da der Record {1} unvollst\u00e4ndig ist.
rm.action.expected-record-level=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da {1} kein Record ist.
rm.action.not-all-records-declared=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da nicht alle Records im Record-Ordner abgeschlossen sind. (actionedUponNodeRef={1})
rm.action.not-eligible=Record oder Record-Ordner {1} ist noch nicht bereit f\u00fcr die Aufbewahrungsaktion {0}.
rm.action.no-disposition-instructions=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da keine Aufbewahrungsanweisungen gefunden wurden. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da kein verf\u00fcgbarer Aufbewahrungszyklus festgelegt wurde. (nodeRef={1})
rm.action.next-disp-not-set=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da keine n\u00e4chste Aufbewahrungsaktion festgelegt wurde. (nodeRef={1})
rm.action.not-next-disp=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da es sich hierbei nicht um die n\u00e4chste Aufbewahrungsaktion f\u00fcr den Record bzw. den Record-Ordner handelt. (nodeRef={1})
rm.action.not-record-folder=Die Aufbewahrungsaktion {0} konnte nicht durchgef\u00fchrt werden, da {1} kein Record-Ordner ist.
rm.action.actioned-upon-not-record=Die Aktion {0} kann nicht durchgef\u00fchrt werden, da {1} kein Record ist.
rm.action.custom-aspect-not-recognised=Der benutzerdefinierte Typ kann nicht angewendet werden, da er nicht erkannt wird. (customAspect={0})
rm.action.event-no-disp-lc=Das Ereignis {0} kann nicht abgeschlossen werden, da es nicht im Aufbewahrungszyklus definiert ist.
rm.action.undeclared-only-records=Nur Records k\u00f6nnen abgeschlossen werden. (nodeRef={0})
rm.action.no-declare-mand-prop=Um den Record abzuschlie\u00dfen, m\u00fcssen Sie alle erforderlichen Eigenschaften des Record festlegen.
rm.action.ghosted-prop-update=Die Eigenschaften eines zuvor vernichteten Record k\u00f6nnen nicht aktualisiert werden.
rm.action.valid-date-disp-asof=Geben Sie ein zul\u00e4ssiges Datum als Startdatum der Aufbewahrungsaktion ein.
rm.action.disp-asof-lifecycle-applied=Sie k\u00f6nnen das Startdatum der Aufbewahrung f\u00fcr einen Record oder Record-Ordner mit festgelegtem Aufbewahrungszyklus nicht bearbeiten.
rm.action.hold-edit-reason-none=Der Sperrgrund kann nicht bearbeitet werden, da die Sperre ohne Grund erstellt wurde. Versuchen Sie, die Sperre erneut zu erstellen.
rm.action.hold-edit-type=Sie k\u00f6nnen den Sperrgrund f\u00fcr {1} nicht bearbeiten, da es sich nicht um eine Sperre handelt.
rm.action.specify-avlid-date=Geben Sie ein zul\u00e4ssiges Datum als Startdatum der \u00dcberpr\u00fcfung ein.
rm.action.review-details-only=Sie k\u00f6nnen nur die \u00dcberpr\u00fcfungsdetails besonders relevanter Records bearbeiten.
rm.action.freeze-no-reason=Ein Record kann nicht ohne Grund gesperrt werden. F\u00fcgen Sie einen Sperrgrund hinzu.
rm.action.freeze-only-records-folders=Sie k\u00f6nnen nur Records oder Record-Ordner sperren.
rm.action.no-open-record-folder=Sie k\u00f6nnen {0} nicht erneut \u00f6ffnen, da es sich nicht um einen Record-Ordner handelt.
rm.action.not-hold-type=Die Aktion kann nicht f\u00fcr {1} durchgef\u00fchrt werden, weil es sich nicht um eine Sperre handelt.
rm.action.no-read-mime-message=Die Dateityp-Nachricht konnte nicht gelesen werden, da {0}.
rm.action.email-declared=Die E-Mail konnte nicht geteilt werden, da der Record abgeschlossen ist. (actionedUponNodeRef={0})
rm.action.email-not-record=Die E-Mail konnte nicht geteilt werden, da die Datei, der Ordner bzw. die Kategorie kein Record ist. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=Benutzerdefinierte Kindzuordnung konnte nicht erstellt werden.
rm.action.node-already-transfer=Datei, Ordner oder Kategorie wird bereits \u00fcbertragen.
rm.action.node-not-transfer=Datei, Ordner oder Kategorie ist kein \u00dcbertragungsobjekt.
rm.action.undo-not-last=Trennung kann nicht aufgehoben werden, da die letzte Aufbewahrungsaktion nicht getrennt wurde.
rm.action.records_only_undeclared=Es k\u00f6nnen nur Records abgeschlossen werden.
rm.action.event-not-undone=Sie k\u00f6nnen das Ereignis {0} nicht r\u00fcckg\u00e4ngig machen, da es nicht im Aufbewahrungszyklus definiert ist.
rm.action.node-not-record-category=Sie k\u00f6nnen keinen Aufbewahrungsplan f\u00fcr ({0}) erstellen, da es sich nicht um eine Record-Kategorie handelt.
rm.action.parameter-not-supplied=F\u00fcgen Sie ''{0}'' hinzu, um fortzufahren.
rm.action.delete-not-hold-type=Die Sperre konnte nicht gel\u00f6scht werden, da {1} nicht vom Typ {0} ist.
rm.action.cast-to-rm-type=Ein benutzerdefinierter Ordnertyp kann nicht in einen Records Management Ablageplan hochgeladen werden.
rm.action.record-folder-create=Ein Record-Ordner kann nicht in einem anderen Record-Ordner erstellt werden.

View File

@@ -1,42 +1,42 @@
rm.action.not-defined=No se ha definido la acci\u00f3n de Records Management ''{0}''.
rm.action.no-implicit-noderef=Se produjo un error en el sistema por lo que la acci\u00f3n ''{0}'' puede no ser correcta.
rm.action.record-not-declared=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque el documento de archivo ''{1}'' no est\u00e1 completo.
rm.action.expected-record-level=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque ''{1}'' no es un documento de archivo.
rm.action.not-all-records-declared=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque no todos los documentos de archivo de la carpeta de documentos de archivo est\u00e1n completos. (actionedUponNodeRef={1})
rm.action.not-eligible=El documento de archivo o carpeta de documentos de archivo ''{1}'' no est\u00e1 preparada todav\u00eda para la acci\u00f3n de retenci\u00f3n ''{0}''.
rm.action.no-disposition-instructions=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque no se ha encontrado ninguna instrucci\u00f3n de retenci\u00f3n. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque no hay ning\u00fan ciclo de vida de retenci\u00f3n disponible. (nodeRef={1})
rm.action.next-disp-not-set=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque la pr\u00f3xima acci\u00f3n de retenci\u00f3n no est\u00e1 definida. (nodeRef={1})
rm.action.not-next-disp=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque no es la pr\u00f3xima acci\u00f3n de retenci\u00f3n para este documento de archivo o carpeta de documentos de archivo. (nodeRef={1})
rm.action.not-record-folder=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque ''{1}'' no es una carpeta de documentos de archivo.
rm.action.actioned-upon-not-record=No se puede realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque ''{1}'' no es un documento de archivo.
rm.action.custom-aspect-not-recognised=El tipo personalizado no puede aplicarse porque no se reconoce. (customAspect={0})
rm.action.event-no-disp-lc=No se puede completar el evento ''{0}'' porque no est\u00e1 definido en el ciclo de vida de la retenci\u00f3n.
rm.action.undeclared-only-records=Solo se pueden completar los documentos de archivo. (nodeRef={0})
rm.action.no-declare-mand-prop=Debe definir todas las propiedades obligatorias del documento de archivo antes de poder completar el documento de archivo.
rm.action.ghosted-prop-update=No puede actualizar las propiedades de un documento de archivo destruido anteriormente.
rm.action.valid-date-disp-asof=Introduzca una fecha v\u00e1lida para la fecha de inicio de acci\u00f3n de la retenci\u00f3n.
rm.action.disp-asof-lifecycle-applied=No puede editar la fecha de inicio de la retenci\u00f3n para un documento de archivo o carpeta de documentos de archivo que tiene un ciclo de vida aplicado.
rm.action.hold-edit-reason-none=No puede editar la raz\u00f3n de bloqueo porque el bloqueo se cre\u00f3 sin una raz\u00f3n. Trate de recrear el bloqueo.
rm.action.hold-edit-type=No puede editar la raz\u00f3n de bloqueo ''{1}'' porque no es un bloqueo.
rm.action.specify-avlid-date=Introduzca una fecha v\u00e1lida para la fecha de inicio de la revisi\u00f3n.
rm.action.review-details-only=Solo puede editar los detalles de revisi\u00f3n de documentos de archivo vitales.
rm.action.freeze-no-reason=No puede bloquear un documento de archivo sin una raz\u00f3n. A\u00f1ada una raz\u00f3n al bloqueo.
rm.action.freeze-only-records-folders=Solo puede bloquear documentos de archivo o carpetas de documentos de archivo.
rm.action.no-open-record-folder=No puede volver a abrir ''{0}'' porque no es una carpeta de documentos de archivo.
rm.action.not-hold-type=No puede llevar a cabo la acci\u00f3n en ''{1}'' porque no es un bloqueo.
rm.action.no-read-mime-message=No se pudo leer el mensaje de tipo de fichero debido a ''{0}''.
rm.action.email-declared=No se pudo separar el correo electr\u00f3nico porque el documento de archivo est\u00e1 completo. (actionedUponNodeRef={0})
rm.action.email-not-record=No se pudo separar el correo electr\u00f3nico porque el fichero, ni la carpeta ni la categor\u00eda son un documento de archivo. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=No se puedo crear una asociaci\u00f3n secundaria personalizada.
rm.action.node-already-transfer=El fichero, carpeta o categor\u00eda ya se est\u00e1 trasfiriendo.
rm.action.node-not-transfer=El fichero, carpeta o categor\u00eda no es un objeto de transferencia.
rm.action.undo-not-last=No puede deshacer la interrupci\u00f3n porque la \u00faltima acci\u00f3n de retenci\u00f3n no se interrumpi\u00f3.
rm.action.records_only_undeclared=Solo puede completar documentos de archivo.
rm.action.event-not-undone=No puede deshacer el evento ''{0}'' porque no se ha definido en el ciclo de vida de retenci\u00f3n.
rm.action.node-not-record-category=No puede crear una planificaci\u00f3n de retenci\u00f3n para (''{0}'') porque no es una categor\u00eda de documento de archivo.
rm.action.parameter-not-supplied=A\u00f1ada un ''{0}'' para continuar.
rm.action.delete-not-hold-type=No se pudo eliminar el bloqueo porque ''{1}'' no es del tipo ''{0}''.
rm.action.cast-to-rm-type=No puede cargar un tipo de carpeta personalizada al plan de ficheros de Records Management.
rm.action.record-folder-create=No puede crear una carpeta de documentos de archivo en otra carpeta de documentos de archivo.
rm.action.not-defined=No se ha definido la acci\u00f3n de Records Management ''{0}''.
rm.action.no-implicit-noderef=Se produjo un error en el sistema por lo que la acci\u00f3n ''{0}'' puede no ser correcta.
rm.action.record-not-declared=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque el documento de archivo ''{1}'' no est\u00e1 completo.
rm.action.expected-record-level=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque ''{1}'' no es un documento de archivo.
rm.action.not-all-records-declared=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque no todos los documentos de archivo de la carpeta de documentos de archivo est\u00e1n completos. (actionedUponNodeRef={1})
rm.action.not-eligible=El documento de archivo o carpeta de documentos de archivo ''{1}'' no est\u00e1 preparada todav\u00eda para la acci\u00f3n de retenci\u00f3n ''{0}''.
rm.action.no-disposition-instructions=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque no se ha encontrado ninguna instrucci\u00f3n de retenci\u00f3n. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque no hay ning\u00fan ciclo de vida de retenci\u00f3n disponible. (nodeRef={1})
rm.action.next-disp-not-set=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque la pr\u00f3xima acci\u00f3n de retenci\u00f3n no est\u00e1 definida. (nodeRef={1})
rm.action.not-next-disp=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque no es la pr\u00f3xima acci\u00f3n de retenci\u00f3n para este documento de archivo o carpeta de documentos de archivo. (nodeRef={1})
rm.action.not-record-folder=No se pudo realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque ''{1}'' no es una carpeta de documentos de archivo.
rm.action.actioned-upon-not-record=No se puede realizar la acci\u00f3n de retenci\u00f3n ''{0}'' porque ''{1}'' no es un documento de archivo.
rm.action.custom-aspect-not-recognised=El tipo personalizado no puede aplicarse porque no se reconoce. (customAspect={0})
rm.action.event-no-disp-lc=No se puede completar el evento ''{0}'' porque no est\u00e1 definido en el ciclo de vida de la retenci\u00f3n.
rm.action.undeclared-only-records=Solo se pueden completar los documentos de archivo. (nodeRef={0})
rm.action.no-declare-mand-prop=Debe definir todas las propiedades obligatorias del documento de archivo antes de poder completar el documento de archivo.
rm.action.ghosted-prop-update=No puede actualizar las propiedades de un documento de archivo destruido anteriormente.
rm.action.valid-date-disp-asof=Introduzca una fecha v\u00e1lida para la fecha de inicio de acci\u00f3n de la retenci\u00f3n.
rm.action.disp-asof-lifecycle-applied=No puede editar la fecha de inicio de la retenci\u00f3n para un documento de archivo o carpeta de documentos de archivo que tiene un ciclo de vida aplicado.
rm.action.hold-edit-reason-none=No puede editar la raz\u00f3n de bloqueo porque el bloqueo se cre\u00f3 sin una raz\u00f3n. Trate de recrear el bloqueo.
rm.action.hold-edit-type=No puede editar la raz\u00f3n de bloqueo ''{1}'' porque no es un bloqueo.
rm.action.specify-avlid-date=Introduzca una fecha v\u00e1lida para la fecha de inicio de la revisi\u00f3n.
rm.action.review-details-only=Solo puede editar los detalles de revisi\u00f3n de documentos de archivo vitales.
rm.action.freeze-no-reason=No puede bloquear un documento de archivo sin una raz\u00f3n. A\u00f1ada una raz\u00f3n al bloqueo.
rm.action.freeze-only-records-folders=Solo puede bloquear documentos de archivo o carpetas de documentos de archivo.
rm.action.no-open-record-folder=No puede volver a abrir ''{0}'' porque no es una carpeta de documentos de archivo.
rm.action.not-hold-type=No puede llevar a cabo la acci\u00f3n en ''{1}'' porque no es un bloqueo.
rm.action.no-read-mime-message=No se pudo leer el mensaje de tipo de fichero debido a ''{0}''.
rm.action.email-declared=No se pudo separar el correo electr\u00f3nico porque el documento de archivo est\u00e1 completo. (actionedUponNodeRef={0})
rm.action.email-not-record=No se pudo separar el correo electr\u00f3nico porque el fichero, ni la carpeta ni la categor\u00eda son un documento de archivo. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=No se puedo crear una asociaci\u00f3n secundaria personalizada.
rm.action.node-already-transfer=El fichero, carpeta o categor\u00eda ya se est\u00e1 trasfiriendo.
rm.action.node-not-transfer=El fichero, carpeta o categor\u00eda no es un objeto de transferencia.
rm.action.undo-not-last=No puede deshacer la interrupci\u00f3n porque la \u00faltima acci\u00f3n de retenci\u00f3n no se interrumpi\u00f3.
rm.action.records_only_undeclared=Solo puede completar documentos de archivo.
rm.action.event-not-undone=No puede deshacer el evento ''{0}'' porque no se ha definido en el ciclo de vida de retenci\u00f3n.
rm.action.node-not-record-category=No puede crear una planificaci\u00f3n de retenci\u00f3n para (''{0}'') porque no es una categor\u00eda de documento de archivo.
rm.action.parameter-not-supplied=A\u00f1ada un ''{0}'' para continuar.
rm.action.delete-not-hold-type=No se pudo eliminar el bloqueo porque ''{1}'' no es del tipo ''{0}''.
rm.action.cast-to-rm-type=No puede cargar un tipo de carpeta personalizada al plan de ficheros de Records Management.
rm.action.record-folder-create=No puede crear una carpeta de documentos de archivo en otra carpeta de documentos de archivo.

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.no-implicit-noderef=Suite \u00e0 une erreur syst\u00e8me, \u00e9chec de l''action {0} possible.
rm.action.record-not-declared=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car le document d''archives {1} n''est pas complet.
rm.action.expected-record-level=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car {1} n''est pas un document d''archives.
rm.action.not-all-records-declared=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car les documents d''archives dans le dossier d''archives ne sont pas tous complets. (actionedUponNodeRef={1})
rm.action.not-eligible=Le document d''archives ou dossier d''archives {1} n''est pas encore pr\u00eat pour l''action de r\u00e9tention {0}.
rm.action.no-disposition-instructions=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car aucune instruction de r\u00e9tention n''a \u00e9t\u00e9 trouv\u00e9e. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car aucun ensemble de cycles de vie de r\u00e9tention n''est disponible. (nodeRef={1})
rm.action.next-disp-not-set=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car l''\u00e9tape suivante du d\u00e9lai de r\u00e9tention n''est pas d\u00e9finie. (nodeRef={1})
rm.action.not-next-disp=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car il ne s''agit pas de l''\u00e9tape suivante du d\u00e9lai de r\u00e9tention pour ce document d''archives ou ce dossier d''archives. (nodeRef={1})
rm.action.not-record-folder=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car {1} n''est pas un dossier d''archives.
rm.action.actioned-upon-not-record=L''action {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car {1} n''est pas un document d''archives.
rm.action.custom-aspect-not-recognised=Le type personnalis\u00e9 ne peut pas \u00eatre appliqu\u00e9, car il n''est pas reconnu. (customAspect={0})
rm.action.event-no-disp-lc=L''\u00e9v\u00e9nement {0} ne peut pas \u00eatre compl\u00e9t\u00e9, car il n''est pas d\u00e9fini dans les \u00e9tapes du d\u00e9lai de r\u00e9tention.
rm.action.undeclared-only-records=Seuls les documents d''archives peuvent \u00eatre compl\u00e9t\u00e9s. (nodeRef={0})
rm.action.no-declare-mand-prop=Avant de compl\u00e9ter le document d'archives, vous devez d\u00e9finir toutes ses propri\u00e9t\u00e9s obligatoires.
rm.action.ghosted-prop-update=Impossible de mettre \u00e0 jour les propri\u00e9t\u00e9s d'un document d'archives d\u00e9truit pr\u00e9c\u00e9demment.
rm.action.valid-date-disp-asof=Entrez une date valide pour la date de d\u00e9but de l'action de r\u00e9tention.
rm.action.disp-asof-lifecycle-applied=Vous ne pouvez pas modifier la date de d\u00e9but d'action de r\u00e9tention d'un document d'archives ou dossier d'archives auquel est appliqu\u00e9 un cycle de vie.
rm.action.hold-edit-reason-none=Impossible de modifier le motif de suspension car la suspension a \u00e9t\u00e9 cr\u00e9\u00e9e sans motif. Essayez de recr\u00e9er la suspension.
rm.action.hold-edit-type=Impossible de modifier le motif de suspension pour {1}, car ce n''est pas une suspension.
rm.action.specify-avlid-date=Entrez une date valide pour la date de d\u00e9but de la r\u00e9vision.
rm.action.review-details-only=Seules les informations de v\u00e9rification des documents d'archives essentiels peuvent \u00eatre modifi\u00e9es.
rm.action.freeze-no-reason=Un document d'archives ne peut pas \u00eatre suspendu sans motif. Ajoutez un motif pour la suspension.
rm.action.freeze-only-records-folders=Seuls des documents d'archives ou dossiers d'archives peuvent \u00eatre suspendus.
rm.action.no-open-record-folder=Impossible de rouvrir {0}, car ce n''est pas un dossier d''archives.
rm.action.not-hold-type=Impossible d''effectuer l''action sur {1}, car ce n''est pas une suspension.
rm.action.no-read-mime-message=Le message filetype est illisible, car {0}.
rm.action.email-declared=Impossible de partager l''e-mail, car le document d''archives n''est pas complet. (actionedUponNodeRef={0})
rm.action.email-not-record=Impossible de partager l''e-mail, car le fichier, le dossier ou la cat\u00e9gorie n''est pas un document d''archives. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=Impossible de cr\u00e9er une association d'enfant personnalis\u00e9e.
rm.action.node-already-transfer=Le fichier, le dossier ou la cat\u00e9gorie est d\u00e9j\u00e0 en cours de transfert.
rm.action.node-not-transfer=Le fichier, le dossier ou la cat\u00e9gorie n'est pas un objet de transfert.
rm.action.undo-not-last=Impossible d'annuler le d\u00e9classement car la derni\u00e8re action de r\u00e9tention n'\u00e9tait pas un d\u00e9classement.
rm.action.records_only_undeclared=Seuls les documents d'archives peuvent \u00eatre compl\u00e9t\u00e9s.
rm.action.event-not-undone=Impossible d''annuler l''\u00e9v\u00e9nement {0}, car il n''est pas d\u00e9fini dans les \u00e9tapes du d\u00e9lai de r\u00e9tention.
rm.action.node-not-record-category=Impossible de cr\u00e9er une r\u00e8gle de r\u00e9tention pour ({0}), car ce n''est pas une cat\u00e9gorie de document d''archives.
rm.action.parameter-not-supplied=Ajouter un(e) ''{0}'' pour continuer.
rm.action.delete-not-hold-type=Impossible de supprimer la suspension, car {1} n''est pas de type {0}.
rm.action.cast-to-rm-type=Impossible de t\u00e9l\u00e9charger un type de dossier personnalis\u00e9 dans le plan de classification de gestion des archives.
rm.action.record-folder-create=Impossible de cr\u00e9er un dossier d'archives dans un autre dossier d'archives.
rm.action.not-defined=L''action de gestion des archives {0} n''a pas \u00e9t\u00e9 d\u00e9finie.
rm.action.no-implicit-noderef=Suite \u00e0 une erreur syst\u00e8me, \u00e9chec de l''action {0} possible.
rm.action.record-not-declared=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car le document d''archives {1} n''est pas complet.
rm.action.expected-record-level=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car {1} n''est pas un document d''archives.
rm.action.not-all-records-declared=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car les documents d''archives dans le dossier d''archives ne sont pas tous complets. (actionedUponNodeRef={1})
rm.action.not-eligible=Le document d''archives ou dossier d''archives {1} n''est pas encore pr\u00eat pour l''action de r\u00e9tention {0}.
rm.action.no-disposition-instructions=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car aucune instruction de r\u00e9tention n''a \u00e9t\u00e9 trouv\u00e9e. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car aucun ensemble de cycles de vie de r\u00e9tention n''est disponible. (nodeRef={1})
rm.action.next-disp-not-set=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car l''\u00e9tape suivante du d\u00e9lai de r\u00e9tention n''est pas d\u00e9finie. (nodeRef={1})
rm.action.not-next-disp=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car il ne s''agit pas de l''\u00e9tape suivante du d\u00e9lai de r\u00e9tention pour ce document d''archives ou ce dossier d''archives. (nodeRef={1})
rm.action.not-record-folder=L''action de r\u00e9tention {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car {1} n''est pas un dossier d''archives.
rm.action.actioned-upon-not-record=L''action {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car {1} n''est pas un document d''archives.
rm.action.custom-aspect-not-recognised=Le type personnalis\u00e9 ne peut pas \u00eatre appliqu\u00e9, car il n''est pas reconnu. (customAspect={0})
rm.action.event-no-disp-lc=L''\u00e9v\u00e9nement {0} ne peut pas \u00eatre compl\u00e9t\u00e9, car il n''est pas d\u00e9fini dans les \u00e9tapes du d\u00e9lai de r\u00e9tention.
rm.action.undeclared-only-records=Seuls les documents d''archives peuvent \u00eatre compl\u00e9t\u00e9s. (nodeRef={0})
rm.action.no-declare-mand-prop=Avant de compl\u00e9ter le document d'archives, vous devez d\u00e9finir toutes ses propri\u00e9t\u00e9s obligatoires.
rm.action.ghosted-prop-update=Impossible de mettre \u00e0 jour les propri\u00e9t\u00e9s d'un document d'archives d\u00e9truit pr\u00e9c\u00e9demment.
rm.action.valid-date-disp-asof=Entrez une date valide pour la date de d\u00e9but de l'action de r\u00e9tention.
rm.action.disp-asof-lifecycle-applied=Vous ne pouvez pas modifier la date de d\u00e9but d'action de r\u00e9tention d'un document d'archives ou dossier d'archives auquel est appliqu\u00e9 un cycle de vie.
rm.action.hold-edit-reason-none=Impossible de modifier le motif de suspension car la suspension a \u00e9t\u00e9 cr\u00e9\u00e9e sans motif. Essayez de recr\u00e9er la suspension.
rm.action.hold-edit-type=Impossible de modifier le motif de suspension pour {1}, car ce n''est pas une suspension.
rm.action.specify-avlid-date=Entrez une date valide pour la date de d\u00e9but de la r\u00e9vision.
rm.action.review-details-only=Seules les informations de v\u00e9rification des documents d'archives essentiels peuvent \u00eatre modifi\u00e9es.
rm.action.freeze-no-reason=Un document d'archives ne peut pas \u00eatre suspendu sans motif. Ajoutez un motif pour la suspension.
rm.action.freeze-only-records-folders=Seuls des documents d'archives ou dossiers d'archives peuvent \u00eatre suspendus.
rm.action.no-open-record-folder=Impossible de rouvrir {0}, car ce n''est pas un dossier d''archives.
rm.action.not-hold-type=Impossible d''effectuer l''action sur {1}, car ce n''est pas une suspension.
rm.action.no-read-mime-message=Le message filetype est illisible, car {0}.
rm.action.email-declared=Impossible de partager l''e-mail, car le document d''archives n''est pas complet. (actionedUponNodeRef={0})
rm.action.email-not-record=Impossible de partager l''e-mail, car le fichier, le dossier ou la cat\u00e9gorie n''est pas un document d''archives. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=Impossible de cr\u00e9er une association d'enfant personnalis\u00e9e.
rm.action.node-already-transfer=Le fichier, le dossier ou la cat\u00e9gorie est d\u00e9j\u00e0 en cours de transfert.
rm.action.node-not-transfer=Le fichier, le dossier ou la cat\u00e9gorie n'est pas un objet de transfert.
rm.action.undo-not-last=Impossible d'annuler le d\u00e9classement car la derni\u00e8re action de r\u00e9tention n'\u00e9tait pas un d\u00e9classement.
rm.action.records_only_undeclared=Seuls les documents d'archives peuvent \u00eatre compl\u00e9t\u00e9s.
rm.action.event-not-undone=Impossible d''annuler l''\u00e9v\u00e9nement {0}, car il n''est pas d\u00e9fini dans les \u00e9tapes du d\u00e9lai de r\u00e9tention.
rm.action.node-not-record-category=Impossible de cr\u00e9er une r\u00e8gle de r\u00e9tention pour ({0}), car ce n''est pas une cat\u00e9gorie de document d''archives.
rm.action.parameter-not-supplied=Ajouter un(e) ''{0}'' pour continuer.
rm.action.delete-not-hold-type=Impossible de supprimer la suspension, car {1} n''est pas de type {0}.
rm.action.cast-to-rm-type=Impossible de t\u00e9l\u00e9charger un type de dossier personnalis\u00e9 dans le plan de classification de gestion des archives.
rm.action.record-folder-create=Impossible de cr\u00e9er un dossier d'archives dans un autre dossier d'archives.

View File

@@ -1,42 +1,42 @@
rm.action.not-defined=L''azione di gestione dei record {0} non \u00e8 stata definita.
rm.action.no-implicit-noderef=Si \u00e8 verificato un errore di sistema per cui l''azione {0} potrebbe non riuscire.
rm.action.record-not-declared=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 il record {1} \u00e8 incompleto.
rm.action.expected-record-level=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 {1} non costituisce un record.
rm.action.not-all-records-declared=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 non tutti i record nella cartella di record sono completi. (actionedUponNodeRef={1})
rm.action.not-eligible=Il record o la cartella di record {1} non sono pronti per l''azione di conservazione {0}.
rm.action.no-disposition-instructions=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 non sono state trovate le istruzioni di conservazione. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 non \u00e8 disponibile alcun set di ciclo di vita di conservazione. (nodeRef={1})
rm.action.next-disp-not-set=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 l''azione di conservazione successiva non \u00e8 stata impostata. (nodeRef={1})
rm.action.not-next-disp=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 quest''ultima non costituisce l''azione di conservazione successiva per questo record o cartella di record. (nodeRef={1})
rm.action.not-record-folder=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 {1} non costituisce una cartella di record.
rm.action.actioned-upon-not-record=Impossibile eseguire l''azione {0}, poich\u00e9 {1} non costituisce un record.
rm.action.custom-aspect-not-recognised=Impossibile applicare il tipo personalizzato poich\u00e9 non viene riconosciuto. (customAspect={0})
rm.action.event-no-disp-lc=Impossibile completare l''evento {0}, poich\u00e9 non \u00e8 definito nel ciclo di vita di conservazione.
rm.action.undeclared-only-records=Solo i record possono essere completati. (nodeRef={0})
rm.action.no-declare-mand-prop=\u00c8 necessario impostare tutte le propriet\u00e0 obbligatorie del record prima di completare il record.
rm.action.ghosted-prop-update=Impossibile aggiornare le propriet\u00e0 di un record precedentemente eliminato in maniera definitiva.
rm.action.valid-date-disp-asof=Inserire una data valida come data di inizio dell'azione di conservazione.
rm.action.disp-asof-lifecycle-applied=Impossibile modificare la data di inizio di conservazione per un record o cartella di record per cui \u00e8 stato impostato un ciclo di vita.
rm.action.hold-edit-reason-none=Impossibile modificare il motivo della sospensione poich\u00e9 la sospensione \u00e8 stata creata senza un motivo. Provare a ricreare la sospensione.
rm.action.hold-edit-type=Impossibile modificare la sospensione per {1} poich\u00e9 non \u00e8 una sospensione.
rm.action.specify-avlid-date=Inserire una data valida come data di inizio dell'esame.
rm.action.review-details-only=\u00c8 possibile modificare solo i dettagli dell'esame dei record fondamentali.
rm.action.freeze-no-reason=Impossibile sospendere un record senza un motivo. Aggiungere un motivo alla sospensione.
rm.action.freeze-only-records-folders=\u00c8 possibile sospendere solo record o cartelle di record.
rm.action.no-open-record-folder=Impossibile riaprire {0} poich\u00e9 non si tratta di una cartella di record.
rm.action.not-hold-type=Impossibile eseguire l''azione su {1} poich\u00e9 non \u00e8 una sospensione.
rm.action.no-read-mime-message=Impossibile leggere il messaggio di tipo file, poich\u00e9 {0}.
rm.action.email-declared=Impossibile dividere l''e-mail poich\u00e9 il record \u00e8 completo. (actionedUponNodeRef={0})
rm.action.email-not-record=Impossibile dividere l''e-mail poich\u00e9 il file, la cartella o la categoria non sono un record. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=Impossibile creare un'associazione secondaria personalizzata.
rm.action.node-already-transfer=Il file, la cartella o la categoria sono gi\u00e0 in fase di trasferimento.
rm.action.node-not-transfer=Il file, la cartella o la categoria non sono oggetti da trasferire.
rm.action.undo-not-last=Impossibile annullare il cut off poich\u00e9 l'ultima azione di conservazione non \u00e8 stata interrotta.
rm.action.records_only_undeclared=\u00c8 solo possibile completare i record.
rm.action.event-not-undone=Non \u00e8 possibile annullare l''evento {0} poich\u00e9 non \u00e8 definito sul ciclo di vita di conservazione.
rm.action.node-not-record-category=Impossibile creare un programma di conservazione per {0} poich\u00e9 non si tratta di una categoria di record.
rm.action.parameter-not-supplied=Aggiungi un ''{0}'' per continuare.
rm.action.delete-not-hold-type=Impossibile eliminare la sospensione poich\u00e9 {1} non \u00e8 del tipo {0}.
rm.action.cast-to-rm-type=Impossibile caricare un tipo di cartella personalizzata sul piano file di Records Management.
rm.action.record-folder-create=Impossibile creare una cartella di record in un'altra cartella di record.
rm.action.not-defined=L''azione di gestione dei record {0} non \u00e8 stata definita.
rm.action.no-implicit-noderef=Si \u00e8 verificato un errore di sistema per cui l''azione {0} potrebbe non riuscire.
rm.action.record-not-declared=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 il record {1} \u00e8 incompleto.
rm.action.expected-record-level=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 {1} non costituisce un record.
rm.action.not-all-records-declared=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 non tutti i record nella cartella di record sono completi. (actionedUponNodeRef={1})
rm.action.not-eligible=Il record o la cartella di record {1} non sono pronti per l''azione di conservazione {0}.
rm.action.no-disposition-instructions=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 non sono state trovate le istruzioni di conservazione. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 non \u00e8 disponibile alcun set di ciclo di vita di conservazione. (nodeRef={1})
rm.action.next-disp-not-set=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 l''azione di conservazione successiva non \u00e8 stata impostata. (nodeRef={1})
rm.action.not-next-disp=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 quest''ultima non costituisce l''azione di conservazione successiva per questo record o cartella di record. (nodeRef={1})
rm.action.not-record-folder=Non \u00e8 stato possibile eseguire l''azione di conservazione {0}, poich\u00e9 {1} non costituisce una cartella di record.
rm.action.actioned-upon-not-record=Impossibile eseguire l''azione {0}, poich\u00e9 {1} non costituisce un record.
rm.action.custom-aspect-not-recognised=Impossibile applicare il tipo personalizzato poich\u00e9 non viene riconosciuto. (customAspect={0})
rm.action.event-no-disp-lc=Impossibile completare l''evento {0}, poich\u00e9 non \u00e8 definito nel ciclo di vita di conservazione.
rm.action.undeclared-only-records=Solo i record possono essere completati. (nodeRef={0})
rm.action.no-declare-mand-prop=\u00c8 necessario impostare tutte le propriet\u00e0 obbligatorie del record prima di completare il record.
rm.action.ghosted-prop-update=Impossibile aggiornare le propriet\u00e0 di un record precedentemente eliminato in maniera definitiva.
rm.action.valid-date-disp-asof=Inserire una data valida come data di inizio dell'azione di conservazione.
rm.action.disp-asof-lifecycle-applied=Impossibile modificare la data di inizio di conservazione per un record o cartella di record per cui \u00e8 stato impostato un ciclo di vita.
rm.action.hold-edit-reason-none=Impossibile modificare il motivo della sospensione poich\u00e9 la sospensione \u00e8 stata creata senza un motivo. Provare a ricreare la sospensione.
rm.action.hold-edit-type=Impossibile modificare la sospensione per {1} poich\u00e9 non \u00e8 una sospensione.
rm.action.specify-avlid-date=Inserire una data valida come data di inizio dell'esame.
rm.action.review-details-only=\u00c8 possibile modificare solo i dettagli dell'esame dei record fondamentali.
rm.action.freeze-no-reason=Impossibile sospendere un record senza un motivo. Aggiungere un motivo alla sospensione.
rm.action.freeze-only-records-folders=\u00c8 possibile sospendere solo record o cartelle di record.
rm.action.no-open-record-folder=Impossibile riaprire {0} poich\u00e9 non si tratta di una cartella di record.
rm.action.not-hold-type=Impossibile eseguire l''azione su {1} poich\u00e9 non \u00e8 una sospensione.
rm.action.no-read-mime-message=Impossibile leggere il messaggio di tipo file, poich\u00e9 {0}.
rm.action.email-declared=Impossibile dividere l''e-mail poich\u00e9 il record \u00e8 completo. (actionedUponNodeRef={0})
rm.action.email-not-record=Impossibile dividere l''e-mail poich\u00e9 il file, la cartella o la categoria non sono un record. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=Impossibile creare un'associazione secondaria personalizzata.
rm.action.node-already-transfer=Il file, la cartella o la categoria sono gi\u00e0 in fase di trasferimento.
rm.action.node-not-transfer=Il file, la cartella o la categoria non sono oggetti da trasferire.
rm.action.undo-not-last=Impossibile annullare il cut off poich\u00e9 l'ultima azione di conservazione non \u00e8 stata interrotta.
rm.action.records_only_undeclared=\u00c8 solo possibile completare i record.
rm.action.event-not-undone=Non \u00e8 possibile annullare l''evento {0} poich\u00e9 non \u00e8 definito sul ciclo di vita di conservazione.
rm.action.node-not-record-category=Impossibile creare un programma di conservazione per {0} poich\u00e9 non si tratta di una categoria di record.
rm.action.parameter-not-supplied=Aggiungi un ''{0}'' per continuare.
rm.action.delete-not-hold-type=Impossibile eliminare la sospensione poich\u00e9 {1} non \u00e8 del tipo {0}.
rm.action.cast-to-rm-type=Impossibile caricare un tipo di cartella personalizzata sul piano file di Records Management.
rm.action.record-folder-create=Impossibile creare una cartella di record in un'altra cartella di record.

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.no-implicit-noderef=\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u305f\u3081\u3001\u51e6\u7406 ''{0}'' \u306f\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u3066\u3044\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002
rm.action.record-not-declared=\u30ec\u30b3\u30fc\u30c9 ''{1}'' \u304c\u5b8c\u4e86\u3057\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
rm.action.expected-record-level=''{1}'' \u306f\u30ec\u30b3\u30fc\u30c9\u3067\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
rm.action.not-all-records-declared=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u5185\u306e\u4e00\u90e8\u306e\u30ec\u30b3\u30fc\u30c9\u304c\u5b8c\u4e86\u3057\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (actionedUponNodeRef={1})
rm.action.not-eligible=\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0 ''{1}'' \u306f\u3001\u307e\u3060\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u306e\u6e96\u5099\u304c\u3067\u304d\u3066\u3044\u307e\u305b\u3093\u3002
rm.action.no-disposition-instructions=\u4fdd\u7ba1\u6307\u793a\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=\u4f7f\u7528\u53ef\u80fd\u306a\u4fdd\u7ba1\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u30bb\u30c3\u30c8\u304c\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={1})
rm.action.next-disp-not-set=\u6b21\u306e\u4fdd\u7ba1\u51e6\u7406\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={1})
rm.action.not-next-disp=\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u306f\u3053\u306e\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u7528\u306e\u6b21\u306e\u4fdd\u7ba1\u51e6\u7406\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={1})
rm.action.not-record-folder=''{1}'' \u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
rm.action.actioned-upon-not-record=''{1}'' \u306f\u30ec\u30b3\u30fc\u30c9\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
rm.action.custom-aspect-not-recognised=\u30ab\u30b9\u30bf\u30e0\u30bf\u30a4\u30d7\u304c\u8a8d\u8b58\u3055\u308c\u306a\u3044\u305f\u3081\u3001\u9069\u7528\u3067\u304d\u307e\u305b\u3093\u3002 (customAspect={0})
rm.action.event-no-disp-lc=\u30a4\u30d9\u30f3\u30c8 ''{0}'' \u306f\u4fdd\u7ba1\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u5b8c\u4e86\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.undeclared-only-records=\u5b8c\u4e86\u3067\u304d\u308b\u306e\u306f\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u3067\u3059\u3002 (nodeRef={0})
rm.action.no-declare-mand-prop=\u30ec\u30b3\u30fc\u30c9\u3092\u5b8c\u4e86\u3059\u308b\u306b\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u306e\u3059\u3079\u3066\u306e\u5fc5\u9808\u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u8a2d\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
rm.action.ghosted-prop-update=\u4ee5\u524d\u306b\u7834\u68c4\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u306f\u66f4\u65b0\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.valid-date-disp-asof=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9f\u884c\u65e5\u306b\u6709\u52b9\u306a\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
rm.action.disp-asof-lifecycle-applied=\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u304c\u9069\u7528\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u4fdd\u7ba1\u51e6\u7406\u5b9f\u884c\u65e5\u306f\u3001\u7de8\u96c6\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.hold-edit-reason-none=\u3053\u306e\u30db\u30fc\u30eb\u30c9\u306f\u7406\u7531\u306a\u3057\u3067\u4f5c\u6210\u3055\u308c\u305f\u305f\u3081\u3001\u30db\u30fc\u30eb\u30c9\u7406\u7531\u3092\u7de8\u96c6\u3067\u304d\u307e\u305b\u3093\u3002 \u30db\u30fc\u30eb\u30c9\u3092\u4f5c\u6210\u3057\u76f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002
rm.action.hold-edit-type=''{1}'' \u306f\u30db\u30fc\u30eb\u30c9\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u30db\u30fc\u30eb\u30c9\u7406\u7531\u3092\u7de8\u96c6\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.specify-avlid-date=\u30ec\u30d3\u30e5\u30fc\u306e\u5b9f\u884c\u65e5\u306b\u6709\u52b9\u306a\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
rm.action.review-details-only=\u7de8\u96c6\u3067\u304d\u308b\u306e\u306f\u3001\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u30ec\u30d3\u30e5\u30fc\u306e\u8a73\u7d30\u306e\u307f\u3067\u3059\u3002
rm.action.freeze-no-reason=\u7406\u7531\u304c\u306a\u3044\u3068\u3001\u30ec\u30b3\u30fc\u30c9\u3092\u30db\u30fc\u30eb\u30c9\u306b\u3067\u304d\u307e\u305b\u3093\u3002 \u30db\u30fc\u30eb\u30c9\u306b\u3059\u308b\u7406\u7531\u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002
rm.action.freeze-only-records-folders=\u30db\u30fc\u30eb\u30c9\u306b\u3067\u304d\u308b\u306e\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u304b\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u307f\u3067\u3059\u3002
rm.action.no-open-record-folder=''{0}'' \u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u518d\u5ea6\u958b\u304f\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.not-hold-type=''{1}'' \u306f\u30db\u30fc\u30eb\u30c9\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u51e6\u7406\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.no-read-mime-message={0} \u306e\u305f\u3081\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u7a2e\u985e\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u8aad\u307f\u53d6\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
rm.action.email-declared=\u30ec\u30b3\u30fc\u30c9\u304c\u5b8c\u4e86\u3057\u3066\u3044\u308b\u305f\u3081\u3001E \u30e1\u30fc\u30eb\u3092\u5206\u96e2\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (actionedUponNodeRef={0})
rm.action.email-not-record=\u30d5\u30a1\u30a4\u30eb\u3001\u30d5\u30a9\u30eb\u30c0\u3001\u30ab\u30c6\u30b4\u30ea\u306e\u3044\u305a\u308c\u304b\u304c\u30ec\u30b3\u30fc\u30c9\u3067\u306a\u3044\u305f\u3081\u3001E \u30e1\u30fc\u30eb\u3092\u5206\u96e2\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=\u30ab\u30b9\u30bf\u30e0\u306e\u5b50\u95a2\u9023\u4ed8\u3051\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
rm.action.node-already-transfer=\u30d5\u30a1\u30a4\u30eb\u3001\u30d5\u30a9\u30eb\u30c0\u3001\u307e\u305f\u306f\u30ab\u30c6\u30b4\u30ea\u304c\u3059\u3067\u306b\u8ee2\u9001\u4e2d\u3067\u3059\u3002
rm.action.node-not-transfer=\u30d5\u30a1\u30a4\u30eb\u3001\u30d5\u30a9\u30eb\u30c0\u3001\u307e\u305f\u306f\u30ab\u30c6\u30b4\u30ea\u304c\u8ee2\u9001\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002
rm.action.undo-not-last=\u76f4\u524d\u306e\u4fdd\u7ba1\u51e6\u7406\u306f\u30ab\u30c3\u30c8\u30aa\u30d5\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u30ab\u30c3\u30c8\u30aa\u30d5\u3092\u5143\u306b\u623b\u3059\u64cd\u4f5c\u306f\u884c\u3048\u307e\u305b\u3093\u3002
rm.action.records_only_undeclared=\u5b8c\u4e86\u3067\u304d\u308b\u306e\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u3067\u3059\u3002
rm.action.event-not-undone=\u30a4\u30d9\u30f3\u30c8 ''{0}'' \u306f\u4fdd\u7ba1\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u5143\u306b\u623b\u3059\u64cd\u4f5c\u306f\u884c\u3048\u307e\u305b\u3093\u3002
rm.action.node-not-record-category=''{0}'' \u306f\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.parameter-not-supplied=''{0}'' \u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002
rm.action.delete-not-hold-type=''{1}'' \u306f\u30bf\u30a4\u30d7 ''{0}'' \u3067\u306f\u306a\u3044\u305f\u3081\u3001\u30db\u30fc\u30eb\u30c9\u3092\u524a\u9664\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
rm.action.cast-to-rm-type=\u30ab\u30b9\u30bf\u30e0\u306e\u30d5\u30a9\u30eb\u30c0\u30bf\u30a4\u30d7\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.record-folder-create=\u5225\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u5185\u306b\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.not-defined=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u51e6\u7406 ''{0}'' \u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
rm.action.no-implicit-noderef=\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u305f\u3081\u3001\u51e6\u7406 ''{0}'' \u306f\u6b63\u5e38\u306b\u5b8c\u4e86\u3057\u3066\u3044\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002
rm.action.record-not-declared=\u30ec\u30b3\u30fc\u30c9 ''{1}'' \u304c\u5b8c\u4e86\u3057\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
rm.action.expected-record-level=''{1}'' \u306f\u30ec\u30b3\u30fc\u30c9\u3067\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
rm.action.not-all-records-declared=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u5185\u306e\u4e00\u90e8\u306e\u30ec\u30b3\u30fc\u30c9\u304c\u5b8c\u4e86\u3057\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (actionedUponNodeRef={1})
rm.action.not-eligible=\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0 ''{1}'' \u306f\u3001\u307e\u3060\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u306e\u6e96\u5099\u304c\u3067\u304d\u3066\u3044\u307e\u305b\u3093\u3002
rm.action.no-disposition-instructions=\u4fdd\u7ba1\u6307\u793a\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=\u4f7f\u7528\u53ef\u80fd\u306a\u4fdd\u7ba1\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u30bb\u30c3\u30c8\u304c\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={1})
rm.action.next-disp-not-set=\u6b21\u306e\u4fdd\u7ba1\u51e6\u7406\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={1})
rm.action.not-next-disp=\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u306f\u3053\u306e\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u7528\u306e\u6b21\u306e\u4fdd\u7ba1\u51e6\u7406\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (nodeRef={1})
rm.action.not-record-folder=''{1}'' \u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
rm.action.actioned-upon-not-record=''{1}'' \u306f\u30ec\u30b3\u30fc\u30c9\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u51e6\u7406 ''{0}'' \u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
rm.action.custom-aspect-not-recognised=\u30ab\u30b9\u30bf\u30e0\u30bf\u30a4\u30d7\u304c\u8a8d\u8b58\u3055\u308c\u306a\u3044\u305f\u3081\u3001\u9069\u7528\u3067\u304d\u307e\u305b\u3093\u3002 (customAspect={0})
rm.action.event-no-disp-lc=\u30a4\u30d9\u30f3\u30c8 ''{0}'' \u306f\u4fdd\u7ba1\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u5b8c\u4e86\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.undeclared-only-records=\u5b8c\u4e86\u3067\u304d\u308b\u306e\u306f\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u3067\u3059\u3002 (nodeRef={0})
rm.action.no-declare-mand-prop=\u30ec\u30b3\u30fc\u30c9\u3092\u5b8c\u4e86\u3059\u308b\u306b\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u306e\u3059\u3079\u3066\u306e\u5fc5\u9808\u30d7\u30ed\u30d1\u30c6\u30a3\u3092\u8a2d\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
rm.action.ghosted-prop-update=\u4ee5\u524d\u306b\u7834\u68c4\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u30d7\u30ed\u30d1\u30c6\u30a3\u306f\u66f4\u65b0\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.valid-date-disp-asof=\u4fdd\u7ba1\u51e6\u7406\u306e\u5b9f\u884c\u65e5\u306b\u6709\u52b9\u306a\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
rm.action.disp-asof-lifecycle-applied=\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u304c\u9069\u7528\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u4fdd\u7ba1\u51e6\u7406\u5b9f\u884c\u65e5\u306f\u3001\u7de8\u96c6\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.hold-edit-reason-none=\u3053\u306e\u30db\u30fc\u30eb\u30c9\u306f\u7406\u7531\u306a\u3057\u3067\u4f5c\u6210\u3055\u308c\u305f\u305f\u3081\u3001\u30db\u30fc\u30eb\u30c9\u7406\u7531\u3092\u7de8\u96c6\u3067\u304d\u307e\u305b\u3093\u3002 \u30db\u30fc\u30eb\u30c9\u3092\u4f5c\u6210\u3057\u76f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002
rm.action.hold-edit-type=''{1}'' \u306f\u30db\u30fc\u30eb\u30c9\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u30db\u30fc\u30eb\u30c9\u7406\u7531\u3092\u7de8\u96c6\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.specify-avlid-date=\u30ec\u30d3\u30e5\u30fc\u306e\u5b9f\u884c\u65e5\u306b\u6709\u52b9\u306a\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002
rm.action.review-details-only=\u7de8\u96c6\u3067\u304d\u308b\u306e\u306f\u3001\u30d0\u30a4\u30bf\u30eb\u30ec\u30b3\u30fc\u30c9\u306e\u30ec\u30d3\u30e5\u30fc\u306e\u8a73\u7d30\u306e\u307f\u3067\u3059\u3002
rm.action.freeze-no-reason=\u7406\u7531\u304c\u306a\u3044\u3068\u3001\u30ec\u30b3\u30fc\u30c9\u3092\u30db\u30fc\u30eb\u30c9\u306b\u3067\u304d\u307e\u305b\u3093\u3002 \u30db\u30fc\u30eb\u30c9\u306b\u3059\u308b\u7406\u7531\u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002
rm.action.freeze-only-records-folders=\u30db\u30fc\u30eb\u30c9\u306b\u3067\u304d\u308b\u306e\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u304b\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u307f\u3067\u3059\u3002
rm.action.no-open-record-folder=''{0}'' \u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u518d\u5ea6\u958b\u304f\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.not-hold-type=''{1}'' \u306f\u30db\u30fc\u30eb\u30c9\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u51e6\u7406\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.no-read-mime-message={0} \u306e\u305f\u3081\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u7a2e\u985e\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u8aad\u307f\u53d6\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
rm.action.email-declared=\u30ec\u30b3\u30fc\u30c9\u304c\u5b8c\u4e86\u3057\u3066\u3044\u308b\u305f\u3081\u3001E \u30e1\u30fc\u30eb\u3092\u5206\u96e2\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (actionedUponNodeRef={0})
rm.action.email-not-record=\u30d5\u30a1\u30a4\u30eb\u3001\u30d5\u30a9\u30eb\u30c0\u3001\u30ab\u30c6\u30b4\u30ea\u306e\u3044\u305a\u308c\u304b\u304c\u30ec\u30b3\u30fc\u30c9\u3067\u306a\u3044\u305f\u3081\u3001E \u30e1\u30fc\u30eb\u3092\u5206\u96e2\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=\u30ab\u30b9\u30bf\u30e0\u306e\u5b50\u95a2\u9023\u4ed8\u3051\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
rm.action.node-already-transfer=\u30d5\u30a1\u30a4\u30eb\u3001\u30d5\u30a9\u30eb\u30c0\u3001\u307e\u305f\u306f\u30ab\u30c6\u30b4\u30ea\u304c\u3059\u3067\u306b\u8ee2\u9001\u4e2d\u3067\u3059\u3002
rm.action.node-not-transfer=\u30d5\u30a1\u30a4\u30eb\u3001\u30d5\u30a9\u30eb\u30c0\u3001\u307e\u305f\u306f\u30ab\u30c6\u30b4\u30ea\u304c\u8ee2\u9001\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002
rm.action.undo-not-last=\u76f4\u524d\u306e\u4fdd\u7ba1\u51e6\u7406\u306f\u30ab\u30c3\u30c8\u30aa\u30d5\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u30ab\u30c3\u30c8\u30aa\u30d5\u3092\u5143\u306b\u623b\u3059\u64cd\u4f5c\u306f\u884c\u3048\u307e\u305b\u3093\u3002
rm.action.records_only_undeclared=\u5b8c\u4e86\u3067\u304d\u308b\u306e\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u3067\u3059\u3002
rm.action.event-not-undone=\u30a4\u30d9\u30f3\u30c8 ''{0}'' \u306f\u4fdd\u7ba1\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3001\u5143\u306b\u623b\u3059\u64cd\u4f5c\u306f\u884c\u3048\u307e\u305b\u3093\u3002
rm.action.node-not-record-category=''{0}'' \u306f\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea\u3067\u306f\u306a\u3044\u305f\u3081\u3001\u4fdd\u7ba1\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.parameter-not-supplied=''{0}'' \u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002
rm.action.delete-not-hold-type=''{1}'' \u306f\u30bf\u30a4\u30d7 ''{0}'' \u3067\u306f\u306a\u3044\u305f\u3081\u3001\u30db\u30fc\u30eb\u30c9\u3092\u524a\u9664\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
rm.action.cast-to-rm-type=\u30ab\u30b9\u30bf\u30e0\u306e\u30d5\u30a9\u30eb\u30c0\u30bf\u30a4\u30d7\u306f\u3001\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u6574\u7406\u4fdd\u7ba1\u30d7\u30e9\u30f3\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.record-folder-create=\u5225\u306e\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u5185\u306b\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002

View File

@@ -1,42 +1,42 @@
rm.action.not-defined=Oppf\u00f8ringsh\u00e5ndteringshandlingen {0} er ikke definert.
rm.action.no-implicit-noderef=Det oppsto en systemfeil. derfor det mulig at handlingen {0} ikke var vellykket.
rm.action.record-not-declared=Retensjonshandlingen {0} kunne ikke utf\u00f8re fordi oppf\u00f8ringen {1} ikke er fullf\u00f8rt.
rm.action.expected-record-level=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi dette {1} ikke er en oppf\u00f8ring.
rm.action.not-all-records-declared=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi ikke alle oppf\u00f8ringene i oppf\u00f8ringsmappen var fullf\u00f8rt. (actionedUponNodeRef={1})
rm.action.not-eligible=Oppf\u00f8ringen eller oppf\u00f8ringsmappen {1} er enn\u00e5 ikke klar for retensjonshandlingen {0}.
rm.action.no-disposition-instructions=Retensjonsh\u00e5ndlingen {0} kunne ikke utf\u00f8res fordi ingen retensjonsinstruksjoner ble funnet. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi det ikke fantes noe tilgjengelig livssyklussett ved retensjon. (nodeRef={1})
rm.action.next-disp-not-set=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi neste retensjonshandling ikke er et sett. (nodeRef={1})
rm.action.not-next-disp=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi dette ikke er den neste retensjonshandlingen til denne oppf\u00f8ringen eller oppf\u00f8ringsmappen. (nodeRef={1})
rm.action.not-record-folder=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi {1} ikke er en oppf\u00f8ringsmappe.
rm.action.actioned-upon-not-record=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi {1} ikke er en oppf\u00f8ring.
rm.action.custom-aspect-not-recognised=Den tilpassede typen kan ikke brukes fordi den ikke gjenkjennes. (customAspect={0})
rm.action.event-no-disp-lc=Hendelsen {0} kan ikke fullf\u00f8res fordi den ikke er definert p\u00e5 livssyklusen ved retensjon.
rm.action.undeclared-only-records=Kun oppf\u00f8ringer kan fullf\u00f8res. (nodeRef={0})
rm.action.no-declare-mand-prop=Alle de obligatoriske egenskapene til oppf\u00f8ringen m\u00e5 stilles inn f\u00f8r oppf\u00f8ringen kan fullf\u00f8res.
rm.action.ghosted-prop-update=Du kan ikke oppdatere egenskapene til en oppf\u00f8ring som er destruert tidligere.
rm.action.valid-date-disp-asof=Angi en gyldig dato for retensjonshandlingen per datoen.
rm.action.disp-asof-lifecycle-applied=Retensjonen per en dato til en oppf\u00f8ring eller oppf\u00f8ringsmappe der en livssyklus er p\u00e5f\u00f8rt, kan ikke redigeres.
rm.action.hold-edit-reason-none=Grunnen til holdet kan ikke redigeres fordi holdet ble opprettet uten grunn. Pr\u00f8v \u00e5 opprette holdet p\u00e5 nytt.
rm.action.hold-edit-type=Grunnen til holdet for {1} kan ikke redigeres fordi det ikke er et hold.
rm.action.specify-avlid-date=Angi en gyldig dato for gjennomgang per datoen.
rm.action.review-details-only=Kun Gjennomgangsdetaljene til de sv\u00e6rt viktige oppf\u00f8ringene kan redigeres.
rm.action.freeze-no-reason=En oppf\u00f8ring kan ikke holdes uten grunn. Legg til en grunn til holdet.
rm.action.freeze-only-records-folders=Du kan bare holde oppf\u00f8ringer eller oppf\u00f8ringsmapper.
rm.action.no-open-record-folder={0} kan ikke \u00e5pnes p\u00e5 nytt fordi den er ikke en oppf\u00f8ringsmappe.
rm.action.not-hold-type=Handlingen kan ikke utf\u00f8res p\u00e5 {1} fordi den ikke er p\u00e5 hold.
rm.action.no-read-mime-message=Filtypemeldingen kunne ikke leses fordi {0}.
rm.action.email-declared=E-posten kan ikke deles fordi oppf\u00f8ringen er fullf\u00f8rt. (actionedUponNodeRef={0})
rm.action.email-not-record=E-posten kan ikke deles fordi filen, mappen eller kategorien ikke er en oppf\u00f8ring. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=Kunne ikke opprette en egendefinert barnassosiasjon.
rm.action.node-already-transfer=Filen, mappen eller kategorien er overf\u00f8res allerede.
rm.action.node-not-transfer=Filen, mappen eller kategorien er ikke et overf\u00f8ringselement.
rm.action.undo-not-last=Cut off kan ikke angres fordi den siste retensjonshandlingen ikke ble cut off.
rm.action.records_only_undeclared=Du kan bare fullf\u00f8re oppf\u00f8ringer.
rm.action.event-not-undone=Hendelsen {0} kan ikke angres fordi den ikke p\u00e5 definert i livssyklusen ved retensjon.
rm.action.node-not-record-category=Retensjonsplanen til {0} kan ikke opprett fordi den er ikke en oppf\u00f8ringskategori.
rm.action.parameter-not-supplied=Legg til ''{0}'' for \u00e5 fortsette.
rm.action.delete-not-hold-type=Holdet kan ikke slettes fordi {1} ikke er en type {0}.
rm.action.cast-to-rm-type=En tilpasset mappetype kan ikke lastes opp p\u00e5 oppf\u00f8ringsh\u00e5ndteringsfilplanen.
rm.action.record-folder-create=En oppf\u00f8ringsmappen kan ikke opprettes i en annen oppf\u00f8ringsmappe.
rm.action.not-defined=Oppf\u00f8ringsh\u00e5ndteringshandlingen {0} er ikke definert.
rm.action.no-implicit-noderef=Det oppsto en systemfeil. derfor det mulig at handlingen {0} ikke var vellykket.
rm.action.record-not-declared=Retensjonshandlingen {0} kunne ikke utf\u00f8re fordi oppf\u00f8ringen {1} ikke er fullf\u00f8rt.
rm.action.expected-record-level=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi dette {1} ikke er en oppf\u00f8ring.
rm.action.not-all-records-declared=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi ikke alle oppf\u00f8ringene i oppf\u00f8ringsmappen var fullf\u00f8rt. (actionedUponNodeRef={1})
rm.action.not-eligible=Oppf\u00f8ringen eller oppf\u00f8ringsmappen {1} er enn\u00e5 ikke klar for retensjonshandlingen {0}.
rm.action.no-disposition-instructions=Retensjonsh\u00e5ndlingen {0} kunne ikke utf\u00f8res fordi ingen retensjonsinstruksjoner ble funnet. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi det ikke fantes noe tilgjengelig livssyklussett ved retensjon. (nodeRef={1})
rm.action.next-disp-not-set=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi neste retensjonshandling ikke er et sett. (nodeRef={1})
rm.action.not-next-disp=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi dette ikke er den neste retensjonshandlingen til denne oppf\u00f8ringen eller oppf\u00f8ringsmappen. (nodeRef={1})
rm.action.not-record-folder=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi {1} ikke er en oppf\u00f8ringsmappe.
rm.action.actioned-upon-not-record=Retensjonshandlingen {0} kunne ikke utf\u00f8res fordi {1} ikke er en oppf\u00f8ring.
rm.action.custom-aspect-not-recognised=Den tilpassede typen kan ikke brukes fordi den ikke gjenkjennes. (customAspect={0})
rm.action.event-no-disp-lc=Hendelsen {0} kan ikke fullf\u00f8res fordi den ikke er definert p\u00e5 livssyklusen ved retensjon.
rm.action.undeclared-only-records=Kun oppf\u00f8ringer kan fullf\u00f8res. (nodeRef={0})
rm.action.no-declare-mand-prop=Alle de obligatoriske egenskapene til oppf\u00f8ringen m\u00e5 stilles inn f\u00f8r oppf\u00f8ringen kan fullf\u00f8res.
rm.action.ghosted-prop-update=Du kan ikke oppdatere egenskapene til en oppf\u00f8ring som er destruert tidligere.
rm.action.valid-date-disp-asof=Angi en gyldig dato for retensjonshandlingen per datoen.
rm.action.disp-asof-lifecycle-applied=Retensjonen per en dato til en oppf\u00f8ring eller oppf\u00f8ringsmappe der en livssyklus er p\u00e5f\u00f8rt, kan ikke redigeres.
rm.action.hold-edit-reason-none=Grunnen til holdet kan ikke redigeres fordi holdet ble opprettet uten grunn. Pr\u00f8v \u00e5 opprette holdet p\u00e5 nytt.
rm.action.hold-edit-type=Grunnen til holdet for {1} kan ikke redigeres fordi det ikke er et hold.
rm.action.specify-avlid-date=Angi en gyldig dato for gjennomgang per datoen.
rm.action.review-details-only=Kun Gjennomgangsdetaljene til de sv\u00e6rt viktige oppf\u00f8ringene kan redigeres.
rm.action.freeze-no-reason=En oppf\u00f8ring kan ikke holdes uten grunn. Legg til en grunn til holdet.
rm.action.freeze-only-records-folders=Du kan bare holde oppf\u00f8ringer eller oppf\u00f8ringsmapper.
rm.action.no-open-record-folder={0} kan ikke \u00e5pnes p\u00e5 nytt fordi den er ikke en oppf\u00f8ringsmappe.
rm.action.not-hold-type=Handlingen kan ikke utf\u00f8res p\u00e5 {1} fordi den ikke er p\u00e5 hold.
rm.action.no-read-mime-message=Filtypemeldingen kunne ikke leses fordi {0}.
rm.action.email-declared=E-posten kan ikke deles fordi oppf\u00f8ringen er fullf\u00f8rt. (actionedUponNodeRef={0})
rm.action.email-not-record=E-posten kan ikke deles fordi filen, mappen eller kategorien ikke er en oppf\u00f8ring. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=Kunne ikke opprette en egendefinert barnassosiasjon.
rm.action.node-already-transfer=Filen, mappen eller kategorien er overf\u00f8res allerede.
rm.action.node-not-transfer=Filen, mappen eller kategorien er ikke et overf\u00f8ringselement.
rm.action.undo-not-last=Cut off kan ikke angres fordi den siste retensjonshandlingen ikke ble cut off.
rm.action.records_only_undeclared=Du kan bare fullf\u00f8re oppf\u00f8ringer.
rm.action.event-not-undone=Hendelsen {0} kan ikke angres fordi den ikke p\u00e5 definert i livssyklusen ved retensjon.
rm.action.node-not-record-category=Retensjonsplanen til {0} kan ikke opprett fordi den er ikke en oppf\u00f8ringskategori.
rm.action.parameter-not-supplied=Legg til ''{0}'' for \u00e5 fortsette.
rm.action.delete-not-hold-type=Holdet kan ikke slettes fordi {1} ikke er en type {0}.
rm.action.cast-to-rm-type=En tilpasset mappetype kan ikke lastes opp p\u00e5 oppf\u00f8ringsh\u00e5ndteringsfilplanen.
rm.action.record-folder-create=En oppf\u00f8ringsmappen kan ikke opprettes i en annen oppf\u00f8ringsmappe.

View File

@@ -1,42 +1,42 @@
rm.action.not-defined=De Records Management-actie {0} is niet gedefinieerd.
rm.action.no-implicit-noderef=Er is een systeemfout opgetreden en de actie {0} is mogelijk niet geslaagd.
rm.action.record-not-declared=De retentieactie {0} kon niet worden uitgevoerd omdat de record {1} niet afgerond is.
rm.action.expected-record-level=De retentieactie {0} kon niet worden uitgevoerd omdat {1} geen record is.
rm.action.not-all-records-declared=De retentieactie {0} kon niet worden uitgevoerd omdat niet alle records in de archiefmap afgerond zijn. (actionedUponNodeRef={1})
rm.action.not-eligible=De record of archiefmap {1} is nog niet gereed voor de retentieactie {0}.
rm.action.no-disposition-instructions=De retentieactie {0} kon niet worden uitgevoerd omdat er geen retentie-instructies zijn gevonden. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=De retentieactie {0} kon niet worden uitgevoerd omdat er geen retentiecyclus is ingesteld. (nodeRef={1})
rm.action.next-disp-not-set=De retentiesactie {0} kon niet worden uitgevoerd omdat de volgende retentieactie niet is ingesteld. (nodeRef={1})
rm.action.not-next-disp=De retentieactie {0} kon niet worden uitgevoerd omdat dit niet de volgende retentieactie voor deze record of deze archiefmap is. (nodeRef={1})
rm.action.not-record-folder=De retentieactie {0} kon niet worden uitgevoerd omdat {1} geen archiefmap is.
rm.action.actioned-upon-not-record=De actie {0} kan niet worden uitgevoerd omdat {1} geen record is.
rm.action.custom-aspect-not-recognised=Het aangepaste type kan niet worden toegepast omdat het niet wordt herkend. (customAspect={0})
rm.action.event-no-disp-lc=De gebeurtenis {0} kan niet worden afgerond omdat deze niet is gedefinieerd in de retentiecyclus.
rm.action.undeclared-only-records=Er kunnen alleen records worden afgerond. (nodeRef={0})
rm.action.no-declare-mand-prop=U moet alle verplichte eigenschappen van de record instellen voordat u de record kunt afronden.
rm.action.ghosted-prop-update=U kunt de eigenschappen van een eerder vernietigde record niet bijwerken.
rm.action.valid-date-disp-asof=Voer een geldige datum in voor de begindatum van de retentieactie.
rm.action.disp-asof-lifecycle-applied=U kunt de begindatum van de retentie van een record of archiefmap waarvoor een levenscyclus is toegepast niet bewerken.
rm.action.hold-edit-reason-none=U kunt de reden van de wachtstand niet bewerken omdat de wachtstand is gemaakt zonder reden. Probeer de wachtstand opnieuw te maken.
rm.action.hold-edit-type=U kunt de reden van de wachtstand voor {1} niet bewerken omdat dit geen wachtstand is.
rm.action.specify-avlid-date=Voer een geldige datum in voor de begindatum van de revisie.
rm.action.review-details-only=U kunt alleen de revisiegegevens van vitale records bewerken.
rm.action.freeze-no-reason=U kunt een record niet zonder reden in de wachtstand plaatsen. Voeg een reden toe aan de wachtstand.
rm.action.freeze-only-records-folders=U kunt alleen records of archiefmappen in de wachtstand plaatsen.
rm.action.no-open-record-folder=U kunt {0} niet heropenen omdat dit geen archiefmap is.
rm.action.not-hold-type=U kunt de actie niet uitvoeren voor {1} omdat dit geen wachtstand is.
rm.action.no-read-mime-message=Het bestandstype kon niet worden gelezen omdat {0}.
rm.action.email-declared=De e-mail kan niet worden opgesplitst omdat de record is afgerond. (actionedUponNodeRef={0})
rm.action.email-not-record=De e-mail kan niet worden opgesplitst omdat het bestand, de map of de categorie geen record is. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=Er kan geen aangepaste onderliggende koppeling worden gemaakt.
rm.action.node-already-transfer=Het bestand, de map of de categorie wordt al overgezet.
rm.action.node-not-transfer=Het bestand, de map of de categorie is geen overzetobject.
rm.action.undo-not-last=U kunt het afsluiten niet ongedaan maken omdat de laatste retentieactie niet was afgesloten.
rm.action.records_only_undeclared=U kunt alleen records afronden.
rm.action.event-not-undone=U kunt de gebeurtenis {0} niet ongedaan maken omdat deze niet in de retentiecyclus is gedefinieerd.
rm.action.node-not-record-category=U kunt geen retentieschema maken voor {0} omdat dit geen recordcategorie is.
rm.action.parameter-not-supplied=Voeg een ''{0}'' toe om door te gaan.
rm.action.delete-not-hold-type=De wachtstand kan niet worden verwijderd omdat {1} niet van het type {0} is.
rm.action.cast-to-rm-type=U kunt geen aangepast maptype uploaden naar het ordeningsplan van Records Management.
rm.action.record-folder-create=U kunt geen archiefmap in een andere archiefmap maken.
rm.action.not-defined=De Records Management-actie {0} is niet gedefinieerd.
rm.action.no-implicit-noderef=Er is een systeemfout opgetreden en de actie {0} is mogelijk niet geslaagd.
rm.action.record-not-declared=De retentieactie {0} kon niet worden uitgevoerd omdat de record {1} niet afgerond is.
rm.action.expected-record-level=De retentieactie {0} kon niet worden uitgevoerd omdat {1} geen record is.
rm.action.not-all-records-declared=De retentieactie {0} kon niet worden uitgevoerd omdat niet alle records in de archiefmap afgerond zijn. (actionedUponNodeRef={1})
rm.action.not-eligible=De record of archiefmap {1} is nog niet gereed voor de retentieactie {0}.
rm.action.no-disposition-instructions=De retentieactie {0} kon niet worden uitgevoerd omdat er geen retentie-instructies zijn gevonden. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=De retentieactie {0} kon niet worden uitgevoerd omdat er geen retentiecyclus is ingesteld. (nodeRef={1})
rm.action.next-disp-not-set=De retentiesactie {0} kon niet worden uitgevoerd omdat de volgende retentieactie niet is ingesteld. (nodeRef={1})
rm.action.not-next-disp=De retentieactie {0} kon niet worden uitgevoerd omdat dit niet de volgende retentieactie voor deze record of deze archiefmap is. (nodeRef={1})
rm.action.not-record-folder=De retentieactie {0} kon niet worden uitgevoerd omdat {1} geen archiefmap is.
rm.action.actioned-upon-not-record=De actie {0} kan niet worden uitgevoerd omdat {1} geen record is.
rm.action.custom-aspect-not-recognised=Het aangepaste type kan niet worden toegepast omdat het niet wordt herkend. (customAspect={0})
rm.action.event-no-disp-lc=De gebeurtenis {0} kan niet worden afgerond omdat deze niet is gedefinieerd in de retentiecyclus.
rm.action.undeclared-only-records=Er kunnen alleen records worden afgerond. (nodeRef={0})
rm.action.no-declare-mand-prop=U moet alle verplichte eigenschappen van de record instellen voordat u de record kunt afronden.
rm.action.ghosted-prop-update=U kunt de eigenschappen van een eerder vernietigde record niet bijwerken.
rm.action.valid-date-disp-asof=Voer een geldige datum in voor de begindatum van de retentieactie.
rm.action.disp-asof-lifecycle-applied=U kunt de begindatum van de retentie van een record of archiefmap waarvoor een levenscyclus is toegepast niet bewerken.
rm.action.hold-edit-reason-none=U kunt de reden van de wachtstand niet bewerken omdat de wachtstand is gemaakt zonder reden. Probeer de wachtstand opnieuw te maken.
rm.action.hold-edit-type=U kunt de reden van de wachtstand voor {1} niet bewerken omdat dit geen wachtstand is.
rm.action.specify-avlid-date=Voer een geldige datum in voor de begindatum van de revisie.
rm.action.review-details-only=U kunt alleen de revisiegegevens van vitale records bewerken.
rm.action.freeze-no-reason=U kunt een record niet zonder reden in de wachtstand plaatsen. Voeg een reden toe aan de wachtstand.
rm.action.freeze-only-records-folders=U kunt alleen records of archiefmappen in de wachtstand plaatsen.
rm.action.no-open-record-folder=U kunt {0} niet heropenen omdat dit geen archiefmap is.
rm.action.not-hold-type=U kunt de actie niet uitvoeren voor {1} omdat dit geen wachtstand is.
rm.action.no-read-mime-message=Het bestandstype kon niet worden gelezen omdat {0}.
rm.action.email-declared=De e-mail kan niet worden opgesplitst omdat de record is afgerond. (actionedUponNodeRef={0})
rm.action.email-not-record=De e-mail kan niet worden opgesplitst omdat het bestand, de map of de categorie geen record is. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=Er kan geen aangepaste onderliggende koppeling worden gemaakt.
rm.action.node-already-transfer=Het bestand, de map of de categorie wordt al overgezet.
rm.action.node-not-transfer=Het bestand, de map of de categorie is geen overzetobject.
rm.action.undo-not-last=U kunt het afsluiten niet ongedaan maken omdat de laatste retentieactie niet was afgesloten.
rm.action.records_only_undeclared=U kunt alleen records afronden.
rm.action.event-not-undone=U kunt de gebeurtenis {0} niet ongedaan maken omdat deze niet in de retentiecyclus is gedefinieerd.
rm.action.node-not-record-category=U kunt geen retentieschema maken voor {0} omdat dit geen recordcategorie is.
rm.action.parameter-not-supplied=Voeg een ''{0}'' toe om door te gaan.
rm.action.delete-not-hold-type=De wachtstand kan niet worden verwijderd omdat {1} niet van het type {0} is.
rm.action.cast-to-rm-type=U kunt geen aangepast maptype uploaden naar het ordeningsplan van Records Management.
rm.action.record-folder-create=U kunt geen archiefmap in een andere archiefmap maken.

View File

@@ -1,42 +1,42 @@
rm.action.not-defined=A a\u00e7\u00e3o {0} do Records Management n\u00e3o foi definida.
rm.action.no-implicit-noderef=Houve um erro do sistema e a a\u00e7\u00e3o {0} pode n\u00e3o ter sucesso.
rm.action.record-not-declared=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois o documento arquiv\u00edstico {1} n\u00e3o est\u00e1 conclu\u00eddo.
rm.action.expected-record-level=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois {1} n\u00e3o \u00e9 um documento arquiv\u00edstico.
rm.action.not-all-records-declared=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois nem todos os documentos arquiv\u00edsticos na pasta de documentos arquiv\u00edsticos est\u00e3o conclu\u00eddos. (actionedUponNodeRef={1})
rm.action.not-eligible=O documento arquiv\u00edstico ou pasta de documento arquiv\u00edstico {1} n\u00e3o est\u00e1 pronto para a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}.
rm.action.no-disposition-instructions=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois nenhuma instru\u00e7\u00e3o de reten\u00e7\u00e3o foi localizada. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois n\u00e3o h\u00e1 conjunto de ciclo de vida de reten\u00e7\u00e3o dispon\u00edvel. (nodeRef={1})
rm.action.next-disp-not-set=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois a pr\u00f3xima a\u00e7\u00e3o de reten\u00e7\u00e3o n\u00e3o est\u00e1 definida. (nodeRef={1})
rm.action.not-next-disp=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois esta n\u00e3o \u00e9 a pr\u00f3xima a\u00e7\u00e3o de reten\u00e7\u00e3o para este documento arquiv\u00edstico ou esta pasta de documento arquiv\u00edstico. (nodeRef={1})
rm.action.not-record-folder=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois {1} n\u00e3o \u00e9 uma pasta de documento arquiv\u00edstico.
rm.action.actioned-upon-not-record=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o {0} porque {1} n\u00e3o \u00e9 um documento arquiv\u00edstico.
rm.action.custom-aspect-not-recognised=N\u00e3o \u00e9 poss\u00edvel aplicar o tipo personalizado porque ele n\u00e3o \u00e9 reconhecido. (customAspect={0})
rm.action.event-no-disp-lc=N\u00e3o \u00e9 poss\u00edvel concluir o evento {0}, pois ele n\u00e3o est\u00e1 definido no ciclo de vida da reten\u00e7\u00e3o.
rm.action.undeclared-only-records=Apenas documentos arquiv\u00edsticos podem ser conclu\u00eddos. (nodeRef={0})
rm.action.no-declare-mand-prop=Voc\u00ea deve definir todas as propriedades obrigat\u00f3rias do documento arquiv\u00edstico antes de poder concluir o documento arquiv\u00edstico.
rm.action.ghosted-prop-update=N\u00e3o \u00e9 poss\u00edvel atualizar as propriedades de um documento arquiv\u00edstico destru\u00eddo anteriormente.
rm.action.valid-date-disp-asof=Insira uma data v\u00e1lida para a data de in\u00edcio da a\u00e7\u00e3o de reten\u00e7\u00e3o.
rm.action.disp-asof-lifecycle-applied=N\u00e3o \u00e9 poss\u00edvel editar a data de in\u00edcio da reten\u00e7\u00e3o de um documento arquiv\u00edstico ou uma pasta de documento arquiv\u00edstico que tenha um ciclo de vida aplicado.
rm.action.hold-edit-reason-none=N\u00e3o \u00e9 poss\u00edvel editar o motivo para manter, pois a espera foi criada sem um motivo. Tente recriar a espera.
rm.action.hold-edit-type=N\u00e3o \u00e9 poss\u00edvel editar o motivo para manter de {1}, pois isso n\u00e3o \u00e9 uma espera.
rm.action.specify-avlid-date=Insira uma data v\u00e1lida para a data de in\u00edcio da revis\u00e3o.
rm.action.review-details-only=Voc\u00ea somente pode editar os detalhes de revis\u00e3o de documentos arquiv\u00edsticos vitais.
rm.action.freeze-no-reason=N\u00e3o \u00e9 poss\u00edvel manter um documento arquiv\u00edstico sem um motivo. Adicione um motivo para manter.
rm.action.freeze-only-records-folders=Voc\u00ea pode manter somente documentos arquiv\u00edsticos ou pastas de documentos arquiv\u00edsticos.
rm.action.no-open-record-folder=N\u00e3o \u00e9 poss\u00edvel reabrir {0}, pois isso n\u00e3o \u00e9 uma pasta de documento arquiv\u00edstico.
rm.action.not-hold-type=N\u00e3o \u00e9 poss\u00edvel realizar a a\u00e7\u00e3o em {1}, pois isso n\u00e3o \u00e9 uma espera.
rm.action.no-read-mime-message=N\u00e3o foi poss\u00edvel ler a mensagem de tipo de arquivo, pois {0}.
rm.action.email-declared=N\u00e3o foi poss\u00edvel dividir o e-mail, pois o documento arquiv\u00edstico est\u00e1 conclu\u00eddo. (actionedUponNodeRef={0})
rm.action.email-not-record=N\u00e3o foi poss\u00edvel dividir o e-mail, pois o arquivo, pasta ou categoria n\u00e3o \u00e9 um documento arquiv\u00edstico. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=N\u00e3o foi poss\u00edvel criar uma associa\u00e7\u00e3o secund\u00e1ria personalizada.
rm.action.node-already-transfer=O arquivo, pasta ou categoria j\u00e1 est\u00e1 sendo transferido.
rm.action.node-not-transfer=O arquivo, pasta ou categoria n\u00e3o \u00e9 um objeto de transfer\u00eancia.
rm.action.undo-not-last=N\u00e3o \u00e9 poss\u00edvel desfazer o corte, pois a \u00faltima a\u00e7\u00e3o de reten\u00e7\u00e3o n\u00e3o foi cortada.
rm.action.records_only_undeclared=Voc\u00ea s\u00f3 pode concluir documentos arquiv\u00edsticos.
rm.action.event-not-undone=N\u00e3o \u00e9 poss\u00edvel desfazer o evento {0}, pois ele n\u00e3o est\u00e1 definido no ciclo de vida de reten\u00e7\u00e3o.
rm.action.node-not-record-category=N\u00e3o \u00e9 poss\u00edvel criar uma programa\u00e7\u00e3o de reten\u00e7\u00e3o para ({0}), pois n\u00e3o \u00e9 uma categoria de documento arquiv\u00edstico.
rm.action.parameter-not-supplied=Adicione um(a) ''{0}'' para continuar.
rm.action.delete-not-hold-type=N\u00e3o foi poss\u00edvel excluir a espera, pois {1} n\u00e3o \u00e9 do tipo {0}.
rm.action.cast-to-rm-type=N\u00e3o \u00e9 poss\u00edvel carregar um tipo de pasta personalizada para o plano de arquivo do Records Management.
rm.action.record-folder-create=N\u00e3o \u00e9 poss\u00edvel criar uma pasta de documento arquiv\u00edstico em outra pasta de documento arquiv\u00edstico.
rm.action.not-defined=A a\u00e7\u00e3o {0} do Records Management n\u00e3o foi definida.
rm.action.no-implicit-noderef=Houve um erro do sistema e a a\u00e7\u00e3o {0} pode n\u00e3o ter sucesso.
rm.action.record-not-declared=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois o documento arquiv\u00edstico {1} n\u00e3o est\u00e1 conclu\u00eddo.
rm.action.expected-record-level=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois {1} n\u00e3o \u00e9 um documento arquiv\u00edstico.
rm.action.not-all-records-declared=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois nem todos os documentos arquiv\u00edsticos na pasta de documentos arquiv\u00edsticos est\u00e3o conclu\u00eddos. (actionedUponNodeRef={1})
rm.action.not-eligible=O documento arquiv\u00edstico ou pasta de documento arquiv\u00edstico {1} n\u00e3o est\u00e1 pronto para a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}.
rm.action.no-disposition-instructions=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois nenhuma instru\u00e7\u00e3o de reten\u00e7\u00e3o foi localizada. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois n\u00e3o h\u00e1 conjunto de ciclo de vida de reten\u00e7\u00e3o dispon\u00edvel. (nodeRef={1})
rm.action.next-disp-not-set=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois a pr\u00f3xima a\u00e7\u00e3o de reten\u00e7\u00e3o n\u00e3o est\u00e1 definida. (nodeRef={1})
rm.action.not-next-disp=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois esta n\u00e3o \u00e9 a pr\u00f3xima a\u00e7\u00e3o de reten\u00e7\u00e3o para este documento arquiv\u00edstico ou esta pasta de documento arquiv\u00edstico. (nodeRef={1})
rm.action.not-record-folder=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o de reten\u00e7\u00e3o {0}, pois {1} n\u00e3o \u00e9 uma pasta de documento arquiv\u00edstico.
rm.action.actioned-upon-not-record=N\u00e3o foi poss\u00edvel executar a a\u00e7\u00e3o {0} porque {1} n\u00e3o \u00e9 um documento arquiv\u00edstico.
rm.action.custom-aspect-not-recognised=N\u00e3o \u00e9 poss\u00edvel aplicar o tipo personalizado porque ele n\u00e3o \u00e9 reconhecido. (customAspect={0})
rm.action.event-no-disp-lc=N\u00e3o \u00e9 poss\u00edvel concluir o evento {0}, pois ele n\u00e3o est\u00e1 definido no ciclo de vida da reten\u00e7\u00e3o.
rm.action.undeclared-only-records=Apenas documentos arquiv\u00edsticos podem ser conclu\u00eddos. (nodeRef={0})
rm.action.no-declare-mand-prop=Voc\u00ea deve definir todas as propriedades obrigat\u00f3rias do documento arquiv\u00edstico antes de poder concluir o documento arquiv\u00edstico.
rm.action.ghosted-prop-update=N\u00e3o \u00e9 poss\u00edvel atualizar as propriedades de um documento arquiv\u00edstico destru\u00eddo anteriormente.
rm.action.valid-date-disp-asof=Insira uma data v\u00e1lida para a data de in\u00edcio da a\u00e7\u00e3o de reten\u00e7\u00e3o.
rm.action.disp-asof-lifecycle-applied=N\u00e3o \u00e9 poss\u00edvel editar a data de in\u00edcio da reten\u00e7\u00e3o de um documento arquiv\u00edstico ou uma pasta de documento arquiv\u00edstico que tenha um ciclo de vida aplicado.
rm.action.hold-edit-reason-none=N\u00e3o \u00e9 poss\u00edvel editar o motivo para manter, pois a espera foi criada sem um motivo. Tente recriar a espera.
rm.action.hold-edit-type=N\u00e3o \u00e9 poss\u00edvel editar o motivo para manter de {1}, pois isso n\u00e3o \u00e9 uma espera.
rm.action.specify-avlid-date=Insira uma data v\u00e1lida para a data de in\u00edcio da revis\u00e3o.
rm.action.review-details-only=Voc\u00ea somente pode editar os detalhes de revis\u00e3o de documentos arquiv\u00edsticos vitais.
rm.action.freeze-no-reason=N\u00e3o \u00e9 poss\u00edvel manter um documento arquiv\u00edstico sem um motivo. Adicione um motivo para manter.
rm.action.freeze-only-records-folders=Voc\u00ea pode manter somente documentos arquiv\u00edsticos ou pastas de documentos arquiv\u00edsticos.
rm.action.no-open-record-folder=N\u00e3o \u00e9 poss\u00edvel reabrir {0}, pois isso n\u00e3o \u00e9 uma pasta de documento arquiv\u00edstico.
rm.action.not-hold-type=N\u00e3o \u00e9 poss\u00edvel realizar a a\u00e7\u00e3o em {1}, pois isso n\u00e3o \u00e9 uma espera.
rm.action.no-read-mime-message=N\u00e3o foi poss\u00edvel ler a mensagem de tipo de arquivo, pois {0}.
rm.action.email-declared=N\u00e3o foi poss\u00edvel dividir o e-mail, pois o documento arquiv\u00edstico est\u00e1 conclu\u00eddo. (actionedUponNodeRef={0})
rm.action.email-not-record=N\u00e3o foi poss\u00edvel dividir o e-mail, pois o arquivo, pasta ou categoria n\u00e3o \u00e9 um documento arquiv\u00edstico. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=N\u00e3o foi poss\u00edvel criar uma associa\u00e7\u00e3o secund\u00e1ria personalizada.
rm.action.node-already-transfer=O arquivo, pasta ou categoria j\u00e1 est\u00e1 sendo transferido.
rm.action.node-not-transfer=O arquivo, pasta ou categoria n\u00e3o \u00e9 um objeto de transfer\u00eancia.
rm.action.undo-not-last=N\u00e3o \u00e9 poss\u00edvel desfazer o corte, pois a \u00faltima a\u00e7\u00e3o de reten\u00e7\u00e3o n\u00e3o foi cortada.
rm.action.records_only_undeclared=Voc\u00ea s\u00f3 pode concluir documentos arquiv\u00edsticos.
rm.action.event-not-undone=N\u00e3o \u00e9 poss\u00edvel desfazer o evento {0}, pois ele n\u00e3o est\u00e1 definido no ciclo de vida de reten\u00e7\u00e3o.
rm.action.node-not-record-category=N\u00e3o \u00e9 poss\u00edvel criar uma programa\u00e7\u00e3o de reten\u00e7\u00e3o para ({0}), pois n\u00e3o \u00e9 uma categoria de documento arquiv\u00edstico.
rm.action.parameter-not-supplied=Adicione um(a) ''{0}'' para continuar.
rm.action.delete-not-hold-type=N\u00e3o foi poss\u00edvel excluir a espera, pois {1} n\u00e3o \u00e9 do tipo {0}.
rm.action.cast-to-rm-type=N\u00e3o \u00e9 poss\u00edvel carregar um tipo de pasta personalizada para o plano de arquivo do Records Management.
rm.action.record-folder-create=N\u00e3o \u00e9 poss\u00edvel criar uma pasta de documento arquiv\u00edstico em outra pasta de documento arquiv\u00edstico.

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.no-implicit-noderef=\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 {0} \u043c\u043e\u0433\u043b\u043e \u0431\u044b\u0442\u044c \u043d\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e.
rm.action.record-not-declared=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u0437\u0430\u043f\u0438\u0441\u044c {1} \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0435\u043f\u043e\u043b\u043d\u043e\u0439.
rm.action.expected-record-level=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u044d\u043b\u0435\u043c\u0435\u043d\u0442 {1} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c\u044e.
rm.action.not-all-records-declared=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u0432 \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0438\u043c\u0435\u044e\u0442\u0441\u044f \u043d\u0435\u043f\u043e\u043b\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438. (actionedUponNodeRef={1})
rm.action.not-eligible=\u0417\u0430\u043f\u0438\u0441\u044c \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 {1} \u0435\u0449\u0435 \u043d\u0435 \u0433\u043e\u0442\u043e\u0432\u044b \u0434\u043b\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}.
rm.action.no-disposition-instructions=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u044b\u0439 \u0446\u0438\u043a\u043b \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f. (nodeRef={1})
rm.action.next-disp-not-set=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f. (nodeRef={1})
rm.action.not-next-disp=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u0434\u0430\u043d\u043d\u043e\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435\u043c \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439. (nodeRef={1})
rm.action.not-record-folder=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u044d\u043b\u0435\u043c\u0435\u043d\u0442 {1} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u0430\u043f\u043a\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
rm.action.actioned-upon-not-record=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 {0}: \u044d\u043b\u0435\u043c\u0435\u043d\u0442 {1} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c\u044e.
rm.action.custom-aspect-not-recognised=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0442\u0438\u043f: \u0442\u0438\u043f \u043d\u0435 \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d. (customAspect={0})
rm.action.event-no-disp-lc=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435 {0}: \u0441\u043e\u0431\u044b\u0442\u0438\u0435 \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e \u0432 \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u043e\u043c \u0446\u0438\u043a\u043b\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f.
rm.action.undeclared-only-records=\u0422\u043e\u043b\u044c\u043a\u043e \u0437\u0430\u043f\u0438\u0441\u0438 \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0442 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044e. (nodeRef={0})
rm.action.no-declare-mand-prop=\u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0432\u0441\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0437\u0430\u043f\u0438\u0441\u0438.
rm.action.ghosted-prop-update=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438.
rm.action.valid-date-disp-asof=\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u0443\u044e \u0434\u0430\u0442\u0443 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u043d\u0430 \u0434\u0430\u0442\u0443.
rm.action.disp-asof-lifecycle-applied=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0434\u0430\u0442\u0443 \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u043a \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u0431\u044b\u043b \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u044b\u0439 \u0446\u0438\u043a\u043b.
rm.action.hold-edit-reason-none=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438: \u043f\u0440\u0438\u0447\u0438\u043d\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u0430. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u0443\u044e \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443.
rm.action.hold-edit-type=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 {1}: \u0434\u0430\u043d\u043d\u043e\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u043e\u0439.
rm.action.specify-avlid-date=\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u0443\u044e \u0434\u0430\u0442\u0443 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u043d\u0430 \u0434\u0430\u0442\u0443.
rm.action.review-details-only=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044e \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
rm.action.freeze-no-reason=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c \u0431\u0435\u0437 \u0443\u043a\u0430\u0437\u0430\u043d\u0438\u044f \u043f\u0440\u0438\u0447\u0438\u043d\u044b. \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438.
rm.action.freeze-only-records-folders=\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0438\u043b\u0438 \u043f\u0430\u043f\u043e\u043a \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
rm.action.no-open-record-folder=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u043e\u0442\u043a\u0440\u044b\u0442\u044c {0}: \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u0430\u043f\u043a\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
rm.action.not-hold-type=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0441 {1}: \u0434\u0430\u043d\u043d\u043e\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u043e\u0439.
rm.action.no-read-mime-message=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043e \u0442\u0438\u043f\u0435 \u0444\u0430\u0439\u043b\u0430 \u0438\u0437-\u0437\u0430 {0}.
rm.action.email-declared=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435: \u0437\u0430\u043f\u0438\u0441\u044c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u043d\u043e\u0439. (actionedUponNodeRef={0})
rm.action.email-not-record=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435: \u0444\u0430\u0439\u043b, \u043f\u0430\u043f\u043a\u0430 \u0438\u043b\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c\u044e. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0443\u044e \u0434\u043e\u0447\u0435\u0440\u043d\u044e\u044e \u0430\u0441\u0441\u043e\u0446\u0438\u0430\u0446\u0438\u044e.
rm.action.node-already-transfer=\u0424\u0430\u0439\u043b, \u043f\u0430\u043f\u043a\u0430 \u0438\u043b\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0443\u0436\u0435 \u043f\u0435\u0440\u0435\u0434\u0430\u044e\u0442\u0441\u044f.
rm.action.node-not-transfer=\u0424\u0430\u0439\u043b, \u043f\u0430\u043f\u043a\u0430 \u0438\u043b\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u043c \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438.
rm.action.undo-not-last=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435: \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u043d\u0435 \u0431\u044b\u043b\u043e \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435\u043c.
rm.action.records_only_undeclared=\u041c\u043e\u0436\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438.
rm.action.event-not-undone=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435 {0}: \u0434\u0430\u043d\u043d\u043e\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0435 \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e \u0432 \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u043e\u043c \u0446\u0438\u043a\u043b\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f.
rm.action.node-not-record-category=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0433\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0434\u043b\u044f ({0}): \u0434\u0430\u043d\u043d\u044b\u0439 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0435\u0439 \u0437\u0430\u043f\u0438\u0441\u0438.
rm.action.parameter-not-supplied=\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 ''{0}'', \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c.
rm.action.delete-not-hold-type=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443: {1} \u043d\u0435 \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0441\u044f \u043a \u0442\u0438\u043f\u0443 {0}.
rm.action.cast-to-rm-type=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0442\u0438\u043f \u043f\u0430\u043f\u043a\u0438 \u0432 \u0430\u0440\u0445\u0438\u0432 \u043f\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438.
rm.action.record-folder-create=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0432 \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
rm.action.not-defined=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438 {0} \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e.
rm.action.no-implicit-noderef=\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 {0} \u043c\u043e\u0433\u043b\u043e \u0431\u044b\u0442\u044c \u043d\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e.
rm.action.record-not-declared=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u0437\u0430\u043f\u0438\u0441\u044c {1} \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0435\u043f\u043e\u043b\u043d\u043e\u0439.
rm.action.expected-record-level=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u044d\u043b\u0435\u043c\u0435\u043d\u0442 {1} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c\u044e.
rm.action.not-all-records-declared=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u0432 \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0438\u043c\u0435\u044e\u0442\u0441\u044f \u043d\u0435\u043f\u043e\u043b\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438. (actionedUponNodeRef={1})
rm.action.not-eligible=\u0417\u0430\u043f\u0438\u0441\u044c \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 {1} \u0435\u0449\u0435 \u043d\u0435 \u0433\u043e\u0442\u043e\u0432\u044b \u0434\u043b\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}.
rm.action.no-disposition-instructions=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u044b\u0439 \u0446\u0438\u043a\u043b \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f. (nodeRef={1})
rm.action.next-disp-not-set=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f. (nodeRef={1})
rm.action.not-next-disp=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u0434\u0430\u043d\u043d\u043e\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435\u043c \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439. (nodeRef={1})
rm.action.not-record-folder=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e {0}: \u044d\u043b\u0435\u043c\u0435\u043d\u0442 {1} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u0430\u043f\u043a\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
rm.action.actioned-upon-not-record=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 {0}: \u044d\u043b\u0435\u043c\u0435\u043d\u0442 {1} \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c\u044e.
rm.action.custom-aspect-not-recognised=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0442\u0438\u043f: \u0442\u0438\u043f \u043d\u0435 \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d. (customAspect={0})
rm.action.event-no-disp-lc=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435 {0}: \u0441\u043e\u0431\u044b\u0442\u0438\u0435 \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e \u0432 \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u043e\u043c \u0446\u0438\u043a\u043b\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f.
rm.action.undeclared-only-records=\u0422\u043e\u043b\u044c\u043a\u043e \u0437\u0430\u043f\u0438\u0441\u0438 \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0442 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044e. (nodeRef={0})
rm.action.no-declare-mand-prop=\u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0432\u0441\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0437\u0430\u043f\u0438\u0441\u0438.
rm.action.ghosted-prop-update=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438.
rm.action.valid-date-disp-asof=\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u0443\u044e \u0434\u0430\u0442\u0443 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u043d\u0430 \u0434\u0430\u0442\u0443.
rm.action.disp-asof-lifecycle-applied=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0434\u0430\u0442\u0443 \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439, \u043a \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u0431\u044b\u043b \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u044b\u0439 \u0446\u0438\u043a\u043b.
rm.action.hold-edit-reason-none=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438: \u043f\u0440\u0438\u0447\u0438\u043d\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 \u043d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u0430. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u0443\u044e \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443.
rm.action.hold-edit-type=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438 {1}: \u0434\u0430\u043d\u043d\u043e\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u043e\u0439.
rm.action.specify-avlid-date=\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u0443\u044e \u0434\u0430\u0442\u0443 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u043d\u0430 \u0434\u0430\u0442\u0443.
rm.action.review-details-only=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044e \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
rm.action.freeze-no-reason=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c \u0431\u0435\u0437 \u0443\u043a\u0430\u0437\u0430\u043d\u0438\u044f \u043f\u0440\u0438\u0447\u0438\u043d\u044b. \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438.
rm.action.freeze-only-records-folders=\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0438\u043b\u0438 \u043f\u0430\u043f\u043e\u043a \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
rm.action.no-open-record-folder=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u043e\u0442\u043a\u0440\u044b\u0442\u044c {0}: \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u0430\u043f\u043a\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.
rm.action.not-hold-type=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0441 {1}: \u0434\u0430\u043d\u043d\u043e\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u043e\u0439.
rm.action.no-read-mime-message=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043e \u0442\u0438\u043f\u0435 \u0444\u0430\u0439\u043b\u0430 \u0438\u0437-\u0437\u0430 {0}.
rm.action.email-declared=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435: \u0437\u0430\u043f\u0438\u0441\u044c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u043d\u043e\u0439. (actionedUponNodeRef={0})
rm.action.email-not-record=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435: \u0444\u0430\u0439\u043b, \u043f\u0430\u043f\u043a\u0430 \u0438\u043b\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u044c\u044e. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0443\u044e \u0434\u043e\u0447\u0435\u0440\u043d\u044e\u044e \u0430\u0441\u0441\u043e\u0446\u0438\u0430\u0446\u0438\u044e.
rm.action.node-already-transfer=\u0424\u0430\u0439\u043b, \u043f\u0430\u043f\u043a\u0430 \u0438\u043b\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0443\u0436\u0435 \u043f\u0435\u0440\u0435\u0434\u0430\u044e\u0442\u0441\u044f.
rm.action.node-not-transfer=\u0424\u0430\u0439\u043b, \u043f\u0430\u043f\u043a\u0430 \u0438\u043b\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u043d\u0435 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043e\u0431\u044a\u0435\u043a\u0442\u043e\u043c \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438.
rm.action.undo-not-last=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435: \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u043d\u0435 \u0431\u044b\u043b\u043e \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435\u043c.
rm.action.records_only_undeclared=\u041c\u043e\u0436\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438.
rm.action.event-not-undone=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435 {0}: \u0434\u0430\u043d\u043d\u043e\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u0435 \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e \u0432 \u0436\u0438\u0437\u043d\u0435\u043d\u043d\u043e\u043c \u0446\u0438\u043a\u043b\u0435 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f.
rm.action.node-not-record-category=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0433\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0434\u043b\u044f ({0}): \u0434\u0430\u043d\u043d\u044b\u0439 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0435\u0439 \u0437\u0430\u043f\u0438\u0441\u0438.
rm.action.parameter-not-supplied=\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 ''{0}'', \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c.
rm.action.delete-not-hold-type=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443: {1} \u043d\u0435 \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0441\u044f \u043a \u0442\u0438\u043f\u0443 {0}.
rm.action.cast-to-rm-type=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0442\u0438\u043f \u043f\u0430\u043f\u043a\u0438 \u0432 \u0430\u0440\u0445\u0438\u0432 \u043f\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438.
rm.action.record-folder-create=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0432 \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439.

View File

@@ -1,42 +1,42 @@
rm.action.not-defined=\u5c1a\u672a\u5b9a\u4e49\u8bb0\u5f55\u7ba1\u7406\u64cd\u4f5c {0}\u3002
rm.action.no-implicit-noderef=\u5b58\u5728\u7cfb\u7edf\u9519\u8bef\uff0c\u56e0\u6b64\u64cd\u4f5c {0} \u65e0\u6cd5\u6210\u529f\u5b8c\u6210\u3002
rm.action.record-not-declared=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u8bb0\u5f55 {1} \u4e0d\u5b8c\u6574\u3002
rm.action.expected-record-level=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a {1} \u4e0d\u662f\u8bb0\u5f55\u3002
rm.action.not-all-records-declared=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u5e76\u975e\u8bb0\u5f55\u6587\u4ef6\u5939\u4e2d\u7684\u6240\u6709\u8bb0\u5f55\u90fd\u5b8c\u6574\u3002 (actionedUponNodeRef={1})
rm.action.not-eligible=\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939 {1} \u672a\u505a\u597d\u4fdd\u7559\u64cd\u4f5c {0} \u51c6\u5907\u3002
rm.action.no-disposition-instructions=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u65e0\u6cd5\u627e\u5230\u4fdd\u7559\u8bf4\u660e\u3002 (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u6ca1\u6709\u53ef\u7528\u7684\u4fdd\u7559\u751f\u547d\u5468\u671f\u8bbe\u7f6e\u3002 (nodeRef={1})
rm.action.next-disp-not-set=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u6ca1\u6709\u8bbe\u7f6e\u4e0b\u4e2a\u4fdd\u7559\u64cd\u4f5c\u3002 (nodeRef={1})
rm.action.not-next-disp=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u8fd9\u5e76\u975e\u8be5\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u4e0b\u4e2a\u4fdd\u7559\u64cd\u4f5c\u3002 (nodeRef={1})
rm.action.not-record-folder=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a {1} \u4e0d\u662f\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
rm.action.actioned-upon-not-record=\u65e0\u6cd5\u6267\u884c\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a {1} \u4e0d\u662f\u8bb0\u5f55\u3002
rm.action.custom-aspect-not-recognised=\u56e0\u4e3a\u672a\u8bc6\u522b\u81ea\u5b9a\u4e49\u7c7b\u578b\uff0c\u6240\u4ee5\u65e0\u6cd5\u5e94\u7528\u3002 (customAspect={0})
rm.action.event-no-disp-lc=\u65e0\u6cd5\u5b8c\u6210\u4e8b\u4ef6 {0}\uff0c\u56e0\u4e3a\u5176\u672a\u5728\u4fdd\u7559\u751f\u547d\u5468\u671f\u4e0a\u5b9a\u4e49\u3002
rm.action.undeclared-only-records=\u4ec5\u80fd\u5b8c\u6210\u8bb0\u5f55\u3002 (nodeRef={0})
rm.action.no-declare-mand-prop=\u60a8\u9700\u8981\u8bbe\u7f6e\u6240\u6709\u8bb0\u5f55\u7684\u5fc5\u9009\u5c5e\u6027\uff0c\u7136\u540e\u624d\u80fd\u5b8c\u6210\u8bb0\u5f55\u3002
rm.action.ghosted-prop-update=\u60a8\u65e0\u6cd5\u66f4\u65b0\u5148\u524d\u5df2\u9500\u6bc1\u8bb0\u5f55\u7684\u5c5e\u6027\u3002
rm.action.valid-date-disp-asof=\u8f93\u5165\u6709\u6548\u65e5\u671f\u4f5c\u4e3a\u4fdd\u7559\u64cd\u4f5c\u622a\u6b62\u65e5\u671f\u3002
rm.action.disp-asof-lifecycle-applied=\u60a8\u65e0\u6cd5\u7f16\u8f91\u5e94\u7528\u4e86\u751f\u547d\u5468\u671f\u7684\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u4fdd\u7559\u622a\u6b62\u65e5\u671f\u3002
rm.action.hold-edit-reason-none=\u60a8\u65e0\u6cd5\u7f16\u8f91\u4fdd\u5b58\u539f\u56e0\uff0c\u56e0\u4e3a\u4fdd\u5b58\u662f\u5728\u6ca1\u6709\u539f\u56e0\u7684\u60c5\u51b5\u4e0b\u521b\u5efa\u7684\u3002 \u8bf7\u5c1d\u8bd5\u91cd\u65b0\u521b\u5efa\u4fdd\u5b58\u3002
rm.action.hold-edit-type=\u60a8\u65e0\u6cd5\u7f16\u8f91 {1} \u7684\u4fdd\u5b58\u539f\u56e0\uff0c\u56e0\u4e3a\u5b83\u4e0d\u662f\u4fdd\u5b58\u3002
rm.action.specify-avlid-date=\u8f93\u5165\u6709\u6548\u65e5\u671f\u4f5c\u4e3a\u590d\u67e5\u622a\u6b62\u65e5\u671f\u3002
rm.action.review-details-only=\u60a8\u53ea\u80fd\u7f16\u8f91\u6709\u6548\u8bb0\u5f55\u7684\u590d\u67e5\u8be6\u7ec6\u4fe1\u606f\u3002
rm.action.freeze-no-reason=\u60a8\u4e0d\u80fd\u5728\u6ca1\u6709\u539f\u56e0\u7684\u60c5\u51b5\u4e0b\u4fdd\u5b58\u8bb0\u5f55\u3002 \u6dfb\u52a0\u4fdd\u5b58\u7684\u539f\u56e0\u3002
rm.action.freeze-only-records-folders=\u60a8\u53ea\u80fd\u4fdd\u5b58\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
rm.action.no-open-record-folder=\u60a8\u65e0\u6cd5\u91cd\u65b0\u6253\u5f00 {0}\uff0c\u56e0\u4e3a\u5b83\u4e0d\u662f\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
rm.action.not-hold-type=\u60a8\u65e0\u6cd5\u5bf9 {1} \u6267\u884c\u64cd\u4f5c\uff0c\u56e0\u4e3a\u5b83\u4e0d\u662f\u4fdd\u5b58\u3002
rm.action.no-read-mime-message=\u65e0\u6cd5\u8bfb\u53d6\u6587\u4ef6\u7c7b\u578b\u6d88\u606f\uff0c\u539f\u56e0\u4e3a {0}\u3002
rm.action.email-declared=\u6211\u4eec\u65e0\u6cd5\u62c6\u5206\u7535\u5b50\u90ae\u4ef6\uff0c\u56e0\u4e3a\u8bb0\u5f55\u5df2\u5b8c\u6210\u3002 (actionedUponNodeRef={0})
rm.action.email-not-record=\u6211\u4eec\u65e0\u6cd5\u62c6\u5206\u7535\u5b50\u90ae\u4ef6\uff0c\u56e0\u4e3a\u6587\u4ef6\u3001\u6587\u4ef6\u5939\u6216\u7c7b\u522b\u4e0d\u662f\u8bb0\u5f55\u3002 (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=\u6211\u4eec\u65e0\u6cd5\u521b\u5efa\u81ea\u5b9a\u4e49\u5b50\u5173\u8054\u3002
rm.action.node-already-transfer=\u6587\u4ef6\u3001\u6587\u4ef6\u5939\u6216\u7c7b\u522b\u5df2\u88ab\u4f20\u8f93\u3002
rm.action.node-not-transfer=\u6587\u4ef6\u3001\u6587\u4ef6\u5939\u6216\u7c7b\u522b\u4e0d\u662f\u4f20\u8f93\u5bf9\u8c61\u3002
rm.action.undo-not-last=\u60a8\u65e0\u6cd5\u64a4\u9500\u4e2d\u65ad\uff0c\u56e0\u4e3a\u4e0a\u4e00\u4e2a\u4fdd\u7559\u64cd\u4f5c\u6ca1\u6709\u4e2d\u65ad\u3002
rm.action.records_only_undeclared=\u60a8\u53ea\u80fd\u5b8c\u6210\u8bb0\u5f55\u3002
rm.action.event-not-undone=\u60a8\u65e0\u6cd5\u64a4\u9500\u4e8b\u4ef6 {0}\uff0c\u56e0\u4e3a\u5176\u672a\u5728\u4fdd\u7559\u751f\u547d\u5468\u671f\u4e0a\u5b9a\u4e49\u3002
rm.action.node-not-record-category=\u60a8\u65e0\u6cd5\u4e3a ({0}) \u521b\u5efa\u4fdd\u7559\u8ba1\u5212\uff0c\u56e0\u4e3a\u5b83\u4e0d\u662f\u8bb0\u5f55\u7c7b\u522b\u3002
rm.action.parameter-not-supplied=\u6dfb\u52a0\u4e00\u4e2a ''{0}'' \u4ee5\u7ee7\u7eed\u3002
rm.action.delete-not-hold-type=\u6211\u4eec\u65e0\u6cd5\u5220\u9664\u4fdd\u5b58\uff0c\u56e0\u4e3a {1} \u5e76\u672a {0} \u7c7b\u578b\u3002
rm.action.cast-to-rm-type=\u60a8\u65e0\u6cd5\u4e0a\u4f20\u81ea\u5b9a\u4e49\u6587\u4ef6\u5939\u7c7b\u578b\u5230\u8bb0\u5f55\u7ba1\u7406\u5f52\u7c7b\u65b9\u6848\u3002
rm.action.record-folder-create=\u60a8\u65e0\u6cd5\u5728\u53e6\u4e00\u4e2a\u8bb0\u5f55\u6587\u4ef6\u5939\u4e2d\u521b\u5efa\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
rm.action.not-defined=\u5c1a\u672a\u5b9a\u4e49\u8bb0\u5f55\u7ba1\u7406\u64cd\u4f5c {0}\u3002
rm.action.no-implicit-noderef=\u5b58\u5728\u7cfb\u7edf\u9519\u8bef\uff0c\u56e0\u6b64\u64cd\u4f5c {0} \u65e0\u6cd5\u6210\u529f\u5b8c\u6210\u3002
rm.action.record-not-declared=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u8bb0\u5f55 {1} \u4e0d\u5b8c\u6574\u3002
rm.action.expected-record-level=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a {1} \u4e0d\u662f\u8bb0\u5f55\u3002
rm.action.not-all-records-declared=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u5e76\u975e\u8bb0\u5f55\u6587\u4ef6\u5939\u4e2d\u7684\u6240\u6709\u8bb0\u5f55\u90fd\u5b8c\u6574\u3002 (actionedUponNodeRef={1})
rm.action.not-eligible=\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939 {1} \u672a\u505a\u597d\u4fdd\u7559\u64cd\u4f5c {0} \u51c6\u5907\u3002
rm.action.no-disposition-instructions=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u65e0\u6cd5\u627e\u5230\u4fdd\u7559\u8bf4\u660e\u3002 (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u6ca1\u6709\u53ef\u7528\u7684\u4fdd\u7559\u751f\u547d\u5468\u671f\u8bbe\u7f6e\u3002 (nodeRef={1})
rm.action.next-disp-not-set=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u6ca1\u6709\u8bbe\u7f6e\u4e0b\u4e2a\u4fdd\u7559\u64cd\u4f5c\u3002 (nodeRef={1})
rm.action.not-next-disp=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a\u8fd9\u5e76\u975e\u8be5\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u4e0b\u4e2a\u4fdd\u7559\u64cd\u4f5c\u3002 (nodeRef={1})
rm.action.not-record-folder=\u65e0\u6cd5\u6267\u884c\u4fdd\u7559\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a {1} \u4e0d\u662f\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
rm.action.actioned-upon-not-record=\u65e0\u6cd5\u6267\u884c\u64cd\u4f5c {0}\uff0c\u56e0\u4e3a {1} \u4e0d\u662f\u8bb0\u5f55\u3002
rm.action.custom-aspect-not-recognised=\u56e0\u4e3a\u672a\u8bc6\u522b\u81ea\u5b9a\u4e49\u7c7b\u578b\uff0c\u6240\u4ee5\u65e0\u6cd5\u5e94\u7528\u3002 (customAspect={0})
rm.action.event-no-disp-lc=\u65e0\u6cd5\u5b8c\u6210\u4e8b\u4ef6 {0}\uff0c\u56e0\u4e3a\u5176\u672a\u5728\u4fdd\u7559\u751f\u547d\u5468\u671f\u4e0a\u5b9a\u4e49\u3002
rm.action.undeclared-only-records=\u4ec5\u80fd\u5b8c\u6210\u8bb0\u5f55\u3002 (nodeRef={0})
rm.action.no-declare-mand-prop=\u60a8\u9700\u8981\u8bbe\u7f6e\u6240\u6709\u8bb0\u5f55\u7684\u5fc5\u9009\u5c5e\u6027\uff0c\u7136\u540e\u624d\u80fd\u5b8c\u6210\u8bb0\u5f55\u3002
rm.action.ghosted-prop-update=\u60a8\u65e0\u6cd5\u66f4\u65b0\u5148\u524d\u5df2\u9500\u6bc1\u8bb0\u5f55\u7684\u5c5e\u6027\u3002
rm.action.valid-date-disp-asof=\u8f93\u5165\u6709\u6548\u65e5\u671f\u4f5c\u4e3a\u4fdd\u7559\u64cd\u4f5c\u622a\u6b62\u65e5\u671f\u3002
rm.action.disp-asof-lifecycle-applied=\u60a8\u65e0\u6cd5\u7f16\u8f91\u5e94\u7528\u4e86\u751f\u547d\u5468\u671f\u7684\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u7684\u4fdd\u7559\u622a\u6b62\u65e5\u671f\u3002
rm.action.hold-edit-reason-none=\u60a8\u65e0\u6cd5\u7f16\u8f91\u4fdd\u5b58\u539f\u56e0\uff0c\u56e0\u4e3a\u4fdd\u5b58\u662f\u5728\u6ca1\u6709\u539f\u56e0\u7684\u60c5\u51b5\u4e0b\u521b\u5efa\u7684\u3002 \u8bf7\u5c1d\u8bd5\u91cd\u65b0\u521b\u5efa\u4fdd\u5b58\u3002
rm.action.hold-edit-type=\u60a8\u65e0\u6cd5\u7f16\u8f91 {1} \u7684\u4fdd\u5b58\u539f\u56e0\uff0c\u56e0\u4e3a\u5b83\u4e0d\u662f\u4fdd\u5b58\u3002
rm.action.specify-avlid-date=\u8f93\u5165\u6709\u6548\u65e5\u671f\u4f5c\u4e3a\u590d\u67e5\u622a\u6b62\u65e5\u671f\u3002
rm.action.review-details-only=\u60a8\u53ea\u80fd\u7f16\u8f91\u6709\u6548\u8bb0\u5f55\u7684\u590d\u67e5\u8be6\u7ec6\u4fe1\u606f\u3002
rm.action.freeze-no-reason=\u60a8\u4e0d\u80fd\u5728\u6ca1\u6709\u539f\u56e0\u7684\u60c5\u51b5\u4e0b\u4fdd\u5b58\u8bb0\u5f55\u3002 \u6dfb\u52a0\u4fdd\u5b58\u7684\u539f\u56e0\u3002
rm.action.freeze-only-records-folders=\u60a8\u53ea\u80fd\u4fdd\u5b58\u8bb0\u5f55\u6216\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
rm.action.no-open-record-folder=\u60a8\u65e0\u6cd5\u91cd\u65b0\u6253\u5f00 {0}\uff0c\u56e0\u4e3a\u5b83\u4e0d\u662f\u8bb0\u5f55\u6587\u4ef6\u5939\u3002
rm.action.not-hold-type=\u60a8\u65e0\u6cd5\u5bf9 {1} \u6267\u884c\u64cd\u4f5c\uff0c\u56e0\u4e3a\u5b83\u4e0d\u662f\u4fdd\u5b58\u3002
rm.action.no-read-mime-message=\u65e0\u6cd5\u8bfb\u53d6\u6587\u4ef6\u7c7b\u578b\u6d88\u606f\uff0c\u539f\u56e0\u4e3a {0}\u3002
rm.action.email-declared=\u6211\u4eec\u65e0\u6cd5\u62c6\u5206\u7535\u5b50\u90ae\u4ef6\uff0c\u56e0\u4e3a\u8bb0\u5f55\u5df2\u5b8c\u6210\u3002 (actionedUponNodeRef={0})
rm.action.email-not-record=\u6211\u4eec\u65e0\u6cd5\u62c6\u5206\u7535\u5b50\u90ae\u4ef6\uff0c\u56e0\u4e3a\u6587\u4ef6\u3001\u6587\u4ef6\u5939\u6216\u7c7b\u522b\u4e0d\u662f\u8bb0\u5f55\u3002 (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=\u6211\u4eec\u65e0\u6cd5\u521b\u5efa\u81ea\u5b9a\u4e49\u5b50\u5173\u8054\u3002
rm.action.node-already-transfer=\u6587\u4ef6\u3001\u6587\u4ef6\u5939\u6216\u7c7b\u522b\u5df2\u88ab\u4f20\u8f93\u3002
rm.action.node-not-transfer=\u6587\u4ef6\u3001\u6587\u4ef6\u5939\u6216\u7c7b\u522b\u4e0d\u662f\u4f20\u8f93\u5bf9\u8c61\u3002
rm.action.undo-not-last=\u60a8\u65e0\u6cd5\u64a4\u9500\u4e2d\u65ad\uff0c\u56e0\u4e3a\u4e0a\u4e00\u4e2a\u4fdd\u7559\u64cd\u4f5c\u6ca1\u6709\u4e2d\u65ad\u3002
rm.action.records_only_undeclared=\u60a8\u53ea\u80fd\u5b8c\u6210\u8bb0\u5f55\u3002
rm.action.event-not-undone=\u60a8\u65e0\u6cd5\u64a4\u9500\u4e8b\u4ef6 {0}\uff0c\u56e0\u4e3a\u5176\u672a\u5728\u4fdd\u7559\u751f\u547d\u5468\u671f\u4e0a\u5b9a\u4e49\u3002
rm.action.node-not-record-category=\u60a8\u65e0\u6cd5\u4e3a ({0}) \u521b\u5efa\u4fdd\u7559\u8ba1\u5212\uff0c\u56e0\u4e3a\u5b83\u4e0d\u662f\u8bb0\u5f55\u7c7b\u522b\u3002
rm.action.parameter-not-supplied=\u6dfb\u52a0\u4e00\u4e2a ''{0}'' \u4ee5\u7ee7\u7eed\u3002
rm.action.delete-not-hold-type=\u6211\u4eec\u65e0\u6cd5\u5220\u9664\u4fdd\u5b58\uff0c\u56e0\u4e3a {1} \u5e76\u672a {0} \u7c7b\u578b\u3002
rm.action.cast-to-rm-type=\u60a8\u65e0\u6cd5\u4e0a\u4f20\u81ea\u5b9a\u4e49\u6587\u4ef6\u5939\u7c7b\u578b\u5230\u8bb0\u5f55\u7ba1\u7406\u5f52\u7c7b\u65b9\u6848\u3002
rm.action.record-folder-create=\u60a8\u65e0\u6cd5\u5728\u53e6\u4e00\u4e2a\u8bb0\u5f55\u6587\u4ef6\u5939\u4e2d\u521b\u5efa\u8bb0\u5f55\u6587\u4ef6\u5939\u3002

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,211 +1,211 @@
#
# i18n for Records Management Action Conditions
#
# Are classified
isClassified.title=\u041a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043f\u043e \u0433\u0440\u0430\u0444\u0438\u043a\u0443 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
isClassified.description=\u0417\u0430\u043f\u0438\u0441\u0438 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043f\u043e \u0433\u0440\u0430\u0444\u0438\u043a\u0443 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
# Are cutoff
isCutoff.title=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
isCutoff.description=\u0417\u0430\u043f\u0438\u0441\u0438 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438 \u0441 \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438 \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u044b
# Are declared
isDeclared.title=\u0417\u0430\u043f\u0438\u0441\u044c \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430
isDeclared.description=\u0417\u0430\u043f\u0438\u0441\u044c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u043d\u043e\u0439
# Is on hold
isFrozen.title=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0430
isFrozen.description=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
# Are filed
isRecordFiled.title=\u0417\u0430\u043f\u0438\u0441\u044c \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430 \u0432 \u0444\u0430\u0439\u043b
isRecordFiled.description=\u0417\u0430\u043f\u0438\u0441\u044c \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430 \u0432 \u0444\u0430\u0439\u043b
# Are closed record folders
isRecordFolderClosed.title=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0437\u0430\u043a\u0440\u044b\u0442\u0430
isRecordFolderClosed.description=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0437\u0430\u043a\u0440\u044b\u0442\u0430
# Are vital
isVital.title=\u041a\u043b\u044e\u0447\u0435\u0432\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
isVital.description=\u0417\u0430\u043f\u0438\u0441\u044c \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u044c\u044e
# Have Rentention Action
hasDispositionAction.title=\u0415\u0441\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
hasDispositionAction.description=\u0423 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0438 \u043f\u0430\u043f\u043e\u043a \u0435\u0441\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u0432 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u043c \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u043c \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438
# Are kind
isKind.title=\u0422\u0438\u043f \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
isKind.description=\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c\u0438 \u0430\u0440\u0445\u0438\u0432\u0430
isKind.kind.display-label=\u0422\u0438\u043f
# Are Record Type
isRecordType.title=\u0415\u0441\u0442\u044c \u0442\u0438\u043f \u0437\u0430\u043f\u0438\u0441\u0435\u0439
isRecordType.description=\u0412 \u0437\u0430\u043f\u0438\u0441\u044f\u0445 \u0435\u0441\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u0442\u0438\u043f \u0437\u0430\u043f\u0438\u0441\u0435\u0439
#
# i18n for Records Management Actions
#
# Declare As Record
create-record.title=\u041e\u0431\u044a\u044f\u0432\u0438\u0442\u044c \u043a\u0430\u043a \u0437\u0430\u043f\u0438\u0441\u044c
create-record.description=\u041e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430 \u0437\u0430\u043f\u0438\u0441\u044c\u044e
create-record.file-plan.display-label=\u0410\u0440\u0445\u0438\u0432
create-record.hide-record.display-label=\u0421\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
# Declare As Version Record
declare-as-version-record.title=\u041e\u0431\u044a\u044f\u0432\u0438\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u044c\u044e
declare-as-version-record.description=\u041e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u044d\u0442\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 \u0444\u0430\u0439\u043b\u0430 \u0437\u0430\u043f\u0438\u0441\u044c\u044e
declare-as-version-record.file-plan.display-label=\u0410\u0440\u0445\u0438\u0432
# Complete record
declareRecord.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
declareRecord.description=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
# Reopens record
undeclareRecord.title=\u041f\u0435\u0440\u0435\u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
undeclareRecord.description=\u041f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
# Open record folder
openRecordFolder.title=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
openRecordFolder.description=\u041e\u0442\u043a\u0440\u044b\u0442\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
# Close record folder
closeRecordFolder.title=\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
closeRecordFolder.description=\u0417\u0430\u043a\u0440\u044b\u0442\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
# Complete event
completeEvent.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435
completeEvent.description=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f
completeEvent.eventName.display-label=\u0421\u043e\u0431\u044b\u0442\u0438\u0435
# Freeze
freeze.title=\u0417\u0430\u043a\u0440\u0435\u043f\u0438\u0442\u044c
freeze.description=\u0417\u0430\u043a\u0440\u0435\u043f\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
freeze.reason.display-label=\u041f\u0440\u0438\u0447\u0438\u043d\u0430
# Unfreeze
unfreeze.title=\u041e\u0442\u043a\u0440\u0435\u043f\u0438\u0442\u044c
unfreeze.description=\u041e\u0442\u043a\u0440\u0435\u043f\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
# File to
fileTo.title=\u0421\u0434\u0430\u0442\u044c \u0432 \u0430\u0440\u0445\u0438\u0432
fileTo.description=\u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0437\u0430\u0434\u0430\u043d\u043d\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
fileTo.path.display-label=\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
fileTo.createRecordPath.display-label=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
# Copy to
copyTo.title=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432
copyTo.description=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0437\u0430\u0434\u0430\u043d\u043d\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
copyTo.path.display-label=\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
copyTo.createRecordPath.display-label=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
# Move to
moveTo.title=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432
moveTo.description=\u041f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0437\u0430\u0434\u0430\u043d\u043d\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
moveTo.path.display-label=\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
moveTo.createRecordPath.display-label=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
# Link to
linkTo.title=\u0421\u0432\u044f\u0437\u0430\u0442\u044c \u0441
linkTo.description=\u0421\u0432\u044f\u0437\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0441 \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
linkTo.path.display-label=\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
linkTo.createRecordPath.display-label=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
# Reject
reject.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
reject.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430 \u0432 \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435
reject.reason.display-label=\u041f\u0440\u0438\u0447\u0438\u043d\u0430 \u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u044f
# Request Information
requestInfo.title=\u0417\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e
requestInfo.description=\u0417\u0430\u043f\u0443\u0441\u043a \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0434\u043b\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u0437\u0430\u043f\u0438\u0441\u0438
# Execute script
executeScript.title=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442
executeScript.description=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442
executeScript.script-ref.display-label=\u0421\u043a\u0440\u0438\u043f\u0442
# Send Email
sendEmail.title=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435
sendEmail.description=\u041e\u0442\u043f\u0440\u0430\u0432\u043a\u0430 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f
# Set Property
setPropertyValue.title=\u0417\u0430\u0434\u0430\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430
setPropertyValue.description=\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430
# Edit Hold Reason
editHoldReason.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
editHoldReason.description=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
# Relinquish Hold
relinquishHold.title=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
relinquishHold.description=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
# Edit Review As Of Date
editReviewAsOfDate.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443 \u043d\u0430 \u0434\u0430\u0442\u0443
editReviewAsOfDate.description=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u043d\u0430 \u0434\u0430\u0442\u0443
# Edit Disposition Action As Of Date
editDispositionActionAsOfDate.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u043d\u0430 \u0434\u0430\u0442\u0443
editDispositionActionAsOfDate.description=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u043d\u0430 \u0434\u0430\u0442\u0443
# Broadcast Vital Record Definition
broadcastVitalRecordDefinition.title=\u0420\u0430\u0437\u043e\u0441\u043b\u0430\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
broadcastVitalRecordDefinition.description=\u0420\u0430\u0437\u043e\u0441\u043b\u0430\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
# Broadcast Disposition Action Definition Update
broadcastDispositionActionDefinitionUpdate.title=\u0420\u0430\u0437\u043e\u0441\u043b\u0430\u0442\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
broadcastDispositionActionDefinitionUpdate.description=\u0420\u0430\u0437\u043e\u0441\u043b\u0430\u0442\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
# Undo Event
undoEvent.title=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435
undoEvent.description=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435
# Transfer Complete
transferComplete.title=\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430
transferComplete.description=\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430
# Accession Complete
accessionComplete.title=\u0414\u043e\u0441\u0442\u0443\u043f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d
accessionComplete.description=\u0414\u043e\u0441\u0442\u0443\u043f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d
# Split Email
splitEmail.title=\u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435
splitEmail.description=\u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435
# Create Rentention Schedule
createDispositionSchedule.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0433\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
createDispositionSchedule.description=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0433\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
# File Destruction Report
fileDestructionReport.title=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0438 \u0444\u0430\u0439\u043b\u0430
fileDestructionReport.description=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0438 \u0444\u0430\u0439\u043b\u0430
# Cut off
cutoff.title=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
cutoff.description=\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c
# Destroy
destroy.title=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c
destroy.description=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c
# Reviewed
reviewed.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0435\u043d\u043e
reviewed.description=\u041f\u0440\u043e\u0432\u0435\u0440\u0435\u043d\u043e
# Hide Record
hide-record.title=\u0421\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
hide-record.description=\u0421\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
# Transfer
transfer.title=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c
transfer.description=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c
# Uncut off
unCutoff.title=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435
unCutoff.description=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435
# Accession
accession.title=\u0414\u043e\u0441\u0442\u0443\u043f
accession.description=\u0414\u043e\u0441\u0442\u0443\u043f
# Retain
retain.title=\u0425\u0440\u0430\u043d\u0438\u0442\u044c
retain.description=\u0425\u0440\u0430\u043d\u0438\u0442\u044c
# Add Record Types
addRecordTypes.title=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u0438\u043f\u044b \u0437\u0430\u043f\u0438\u0441\u0435\u0439
addRecordTypes.description=\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u043e\u0432 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
# File report
fileReport.title=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043e\u0442\u0447\u0435\u0442 \u0432 \u0444\u0430\u0439\u043b
fileReport.description=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043e\u0442\u0447\u0435\u0442 \u0432 \u0444\u0430\u0439\u043b
# Delete Hold
deleteHold.title=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
deleteHold.description=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
# Move DM record
move-dm-record.title=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
move-dm-record.description=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
# Unlink from
unlinkFrom.title=\u041e\u0442\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u043e\u0442
unlinkFrom.description=\u041e\u0442\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u043e\u0442
# Recordable version config
recordable-version-config.title=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f
recordable-version-config.description=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f
recordable-version-config.version.display-label=\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0431\u044a\u044f\u0432\u043b\u044f\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u0438 \u043a\u0430\u043a \u0437\u0430\u043f\u0438\u0441\u0438
# Action parameter constraints
rm-ac-is-kind-kinds.record_category=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439
rm-ac-is-kind-kinds.record_folder=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
rm-ac-is-kind-kinds.record=\u0417\u0430\u043f\u0438\u0441\u044c
rm-ac-disposition-action-relative-positions.next=\u0414\u0430\u043b\u0435\u0435
rm-ac-disposition-action-relative-positions.previous=\u041d\u0430\u0437\u0430\u0434
rm-ac-disposition-action-relative-positions.any=\u041b\u044e\u0431\u043e\u0439
ac-versions.none=\u041d\u0438\u043a\u043e\u0433\u0434\u0430
ac-versions.major_only=\u0422\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0432\u0435\u0440\u0441\u0438\u0439
#
# i18n for Records Management Action Conditions
#
# Are classified
isClassified.title=\u041a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043f\u043e \u0433\u0440\u0430\u0444\u0438\u043a\u0443 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
isClassified.description=\u0417\u0430\u043f\u0438\u0441\u0438 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u043f\u043e \u0433\u0440\u0430\u0444\u0438\u043a\u0443 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
# Are cutoff
isCutoff.title=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
isCutoff.description=\u0417\u0430\u043f\u0438\u0441\u0438 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438 \u0441 \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438 \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u044b
# Are declared
isDeclared.title=\u0417\u0430\u043f\u0438\u0441\u044c \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430
isDeclared.description=\u0417\u0430\u043f\u0438\u0441\u044c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u043d\u043e\u0439
# Is on hold
isFrozen.title=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0430
isFrozen.description=\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
# Are filed
isRecordFiled.title=\u0417\u0430\u043f\u0438\u0441\u044c \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430 \u0432 \u0444\u0430\u0439\u043b
isRecordFiled.description=\u0417\u0430\u043f\u0438\u0441\u044c \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430 \u0432 \u0444\u0430\u0439\u043b
# Are closed record folders
isRecordFolderClosed.title=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0437\u0430\u043a\u0440\u044b\u0442\u0430
isRecordFolderClosed.description=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0437\u0430\u043a\u0440\u044b\u0442\u0430
# Are vital
isVital.title=\u041a\u043b\u044e\u0447\u0435\u0432\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c
isVital.description=\u0417\u0430\u043f\u0438\u0441\u044c \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u044c\u044e
# Have Rentention Action
hasDispositionAction.title=\u0415\u0441\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
hasDispositionAction.description=\u0423 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0438 \u043f\u0430\u043f\u043e\u043a \u0435\u0441\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u0432 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u043c \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u043c \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438
# Are kind
isKind.title=\u0422\u0438\u043f \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438
isKind.description=\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c\u0438 \u0430\u0440\u0445\u0438\u0432\u0430
isKind.kind.display-label=\u0422\u0438\u043f
# Are Record Type
isRecordType.title=\u0415\u0441\u0442\u044c \u0442\u0438\u043f \u0437\u0430\u043f\u0438\u0441\u0435\u0439
isRecordType.description=\u0412 \u0437\u0430\u043f\u0438\u0441\u044f\u0445 \u0435\u0441\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u0442\u0438\u043f \u0437\u0430\u043f\u0438\u0441\u0435\u0439
#
# i18n for Records Management Actions
#
# Declare As Record
create-record.title=\u041e\u0431\u044a\u044f\u0432\u0438\u0442\u044c \u043a\u0430\u043a \u0437\u0430\u043f\u0438\u0441\u044c
create-record.description=\u041e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430 \u0437\u0430\u043f\u0438\u0441\u044c\u044e
create-record.file-plan.display-label=\u0410\u0440\u0445\u0438\u0432
create-record.hide-record.display-label=\u0421\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
# Declare As Version Record
declare-as-version-record.title=\u041e\u0431\u044a\u044f\u0432\u0438\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u044e \u0437\u0430\u043f\u0438\u0441\u044c\u044e
declare-as-version-record.description=\u041e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u044d\u0442\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 \u0444\u0430\u0439\u043b\u0430 \u0437\u0430\u043f\u0438\u0441\u044c\u044e
declare-as-version-record.file-plan.display-label=\u0410\u0440\u0445\u0438\u0432
# Complete record
declareRecord.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
declareRecord.description=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
# Reopens record
undeclareRecord.title=\u041f\u0435\u0440\u0435\u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
undeclareRecord.description=\u041f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
# Open record folder
openRecordFolder.title=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
openRecordFolder.description=\u041e\u0442\u043a\u0440\u044b\u0442\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
# Close record folder
closeRecordFolder.title=\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
closeRecordFolder.description=\u0417\u0430\u043a\u0440\u044b\u0442\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
# Complete event
completeEvent.title=\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435
completeEvent.description=\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u0435 \u0441\u043e\u0431\u044b\u0442\u0438\u044f
completeEvent.eventName.display-label=\u0421\u043e\u0431\u044b\u0442\u0438\u0435
# Freeze
freeze.title=\u0417\u0430\u043a\u0440\u0435\u043f\u0438\u0442\u044c
freeze.description=\u0417\u0430\u043a\u0440\u0435\u043f\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
freeze.reason.display-label=\u041f\u0440\u0438\u0447\u0438\u043d\u0430
# Unfreeze
unfreeze.title=\u041e\u0442\u043a\u0440\u0435\u043f\u0438\u0442\u044c
unfreeze.description=\u041e\u0442\u043a\u0440\u0435\u043f\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438
# File to
fileTo.title=\u0421\u0434\u0430\u0442\u044c \u0432 \u0430\u0440\u0445\u0438\u0432
fileTo.description=\u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0437\u0430\u0434\u0430\u043d\u043d\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
fileTo.path.display-label=\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
fileTo.createRecordPath.display-label=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
# Copy to
copyTo.title=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432
copyTo.description=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0437\u0430\u0434\u0430\u043d\u043d\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
copyTo.path.display-label=\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
copyTo.createRecordPath.display-label=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
# Move to
moveTo.title=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432
moveTo.description=\u041f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0437\u0430\u0434\u0430\u043d\u043d\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
moveTo.path.display-label=\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
moveTo.createRecordPath.display-label=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
# Link to
linkTo.title=\u0421\u0432\u044f\u0437\u0430\u0442\u044c \u0441
linkTo.description=\u0421\u0432\u044f\u0437\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0441 \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
linkTo.path.display-label=\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
linkTo.createRecordPath.display-label=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
# Reject
reject.title=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c
reject.description=\u041e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430 \u0432 \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435
reject.reason.display-label=\u041f\u0440\u0438\u0447\u0438\u043d\u0430 \u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u044f
# Request Information
requestInfo.title=\u0417\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e
requestInfo.description=\u0417\u0430\u043f\u0443\u0441\u043a \u0431\u0438\u0437\u043d\u0435\u0441-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0434\u043b\u044f \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u0437\u0430\u043f\u0438\u0441\u0438
# Execute script
executeScript.title=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442
executeScript.description=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442
executeScript.script-ref.display-label=\u0421\u043a\u0440\u0438\u043f\u0442
# Send Email
sendEmail.title=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435
sendEmail.description=\u041e\u0442\u043f\u0440\u0430\u0432\u043a\u0430 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0433\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f
# Set Property
setPropertyValue.title=\u0417\u0430\u0434\u0430\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430
setPropertyValue.description=\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430
# Edit Hold Reason
editHoldReason.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
editHoldReason.description=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438
# Relinquish Hold
relinquishHold.title=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
relinquishHold.description=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
# Edit Review As Of Date
editReviewAsOfDate.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443 \u043d\u0430 \u0434\u0430\u0442\u0443
editReviewAsOfDate.description=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u043d\u0430 \u0434\u0430\u0442\u0443
# Edit Disposition Action As Of Date
editDispositionActionAsOfDate.title=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u043d\u0430 \u0434\u0430\u0442\u0443
editDispositionActionAsOfDate.description=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e \u043d\u0430 \u0434\u0430\u0442\u0443
# Broadcast Vital Record Definition
broadcastVitalRecordDefinition.title=\u0420\u0430\u0437\u043e\u0441\u043b\u0430\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
broadcastVitalRecordDefinition.description=\u0420\u0430\u0437\u043e\u0441\u043b\u0430\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438
# Broadcast Disposition Action Definition Update
broadcastDispositionActionDefinitionUpdate.title=\u0420\u0430\u0437\u043e\u0441\u043b\u0430\u0442\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
broadcastDispositionActionDefinitionUpdate.description=\u0420\u0430\u0437\u043e\u0441\u043b\u0430\u0442\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044e
# Undo Event
undoEvent.title=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435
undoEvent.description=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u043e\u0431\u044b\u0442\u0438\u0435
# Transfer Complete
transferComplete.title=\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430
transferComplete.description=\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430
# Accession Complete
accessionComplete.title=\u0414\u043e\u0441\u0442\u0443\u043f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d
accessionComplete.description=\u0414\u043e\u0441\u0442\u0443\u043f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d
# Split Email
splitEmail.title=\u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435
splitEmail.description=\u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435
# Create Rentention Schedule
createDispositionSchedule.title=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0433\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
createDispositionSchedule.description=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0433\u0440\u0430\u0444\u0438\u043a \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f
# File Destruction Report
fileDestructionReport.title=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0438 \u0444\u0430\u0439\u043b\u0430
fileDestructionReport.description=\u041e\u0442\u0447\u0435\u0442 \u043e\u0431 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0435\u043d\u0438\u0438 \u0444\u0430\u0439\u043b\u0430
# Cut off
cutoff.title=\u041e\u0442\u0440\u0435\u0437\u0430\u0442\u044c
cutoff.description=\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c
# Destroy
destroy.title=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c
destroy.description=\u0423\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u0442\u044c
# Reviewed
reviewed.title=\u041f\u0440\u043e\u0432\u0435\u0440\u0435\u043d\u043e
reviewed.description=\u041f\u0440\u043e\u0432\u0435\u0440\u0435\u043d\u043e
# Hide Record
hide-record.title=\u0421\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
hide-record.description=\u0421\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
# Transfer
transfer.title=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c
transfer.description=\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c
# Uncut off
unCutoff.title=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435
unCutoff.description=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0442\u0440\u0435\u0437\u0430\u043d\u0438\u0435
# Accession
accession.title=\u0414\u043e\u0441\u0442\u0443\u043f
accession.description=\u0414\u043e\u0441\u0442\u0443\u043f
# Retain
retain.title=\u0425\u0440\u0430\u043d\u0438\u0442\u044c
retain.description=\u0425\u0440\u0430\u043d\u0438\u0442\u044c
# Add Record Types
addRecordTypes.title=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u0438\u043f\u044b \u0437\u0430\u043f\u0438\u0441\u0435\u0439
addRecordTypes.description=\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0445 \u0442\u0438\u043f\u043e\u0432 \u043a \u0437\u0430\u043f\u0438\u0441\u0438
# File report
fileReport.title=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043e\u0442\u0447\u0435\u0442 \u0432 \u0444\u0430\u0439\u043b
fileReport.description=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043e\u0442\u0447\u0435\u0442 \u0432 \u0444\u0430\u0439\u043b
# Delete Hold
deleteHold.title=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
deleteHold.description=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0443
# Move DM record
move-dm-record.title=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
move-dm-record.description=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c
# Unlink from
unlinkFrom.title=\u041e\u0442\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u043e\u0442
unlinkFrom.description=\u041e\u0442\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u043e\u0442
# Recordable version config
recordable-version-config.title=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f
recordable-version-config.description=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0431\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u044f
recordable-version-config.version.display-label=\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u0431\u044a\u044f\u0432\u043b\u044f\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u0438 \u043a\u0430\u043a \u0437\u0430\u043f\u0438\u0441\u0438
# Action parameter constraints
rm-ac-is-kind-kinds.record_category=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439
rm-ac-is-kind-kinds.record_folder=\u041f\u0430\u043f\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0435\u0439
rm-ac-is-kind-kinds.record=\u0417\u0430\u043f\u0438\u0441\u044c
rm-ac-disposition-action-relative-positions.next=\u0414\u0430\u043b\u0435\u0435
rm-ac-disposition-action-relative-positions.previous=\u041d\u0430\u0437\u0430\u0434
rm-ac-disposition-action-relative-positions.any=\u041b\u044e\u0431\u043e\u0439
ac-versions.none=\u041d\u0438\u043a\u043e\u0433\u0434\u0430
ac-versions.major_only=\u0422\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0432\u0435\u0440\u0441\u0438\u0439
ac-versions.all=\u0414\u043b\u044f \u0432\u0441\u0435\u0445 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0438 \u0432\u0441\u043f\u043e\u043c\u043e\u0433\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u0432\u0435\u0440\u0441\u0438\u0439

View File

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

View File

@@ -1,16 +1,16 @@
rm.admin.service-not-init=The customization service hasn't been started.
rm.admin.not-customisable=The class {0} isn't customizable.
rm.admin.invalid-custom-aspect=We couldn't find custom aspect {0} for customisable class {1}.
rm.admin.property-already-exists=Property {0} already exists.
rm.admin.cannot-apply-constraint=You can't apply constraint {0} to property {1} with datatype {2}. (expected: dataType = TEXT)
rm.admin.prop-exist=We couldn't find custom property {0}.
rm.admin.custom-prop-exist=The custom model doesn't contain the property {0}.
rm.admin.unknown-aspect=Unknown aspect {0}.
rm.admin.constraint-exists=The constraint {0} already exists.
rm.admin.contraint-cannot-find=We couldn't find the definition for constraint {0}.
rm.admin.unexpected_type_constraint=Unexpected type {0} for constraint {1}. The expected is {2}.
rm.admin.custom-model-not-found=We couldn't find custom model {0}.
rm.admin.custom-model-no-content=The custom model has no content. (nodeRef={0})
rm.admin.error-write-custom-model=We hit a problem writing custom model content. (nodeRef={0}).
rm.admin.error-client-id=We couldn't generate the client ID because it's already in use. (clientid={0})
rm.admin.service-not-init=The customization service hasn't been started.
rm.admin.not-customisable=The class {0} isn't customizable.
rm.admin.invalid-custom-aspect=We couldn't find custom aspect {0} for customisable class {1}.
rm.admin.property-already-exists=Property {0} already exists.
rm.admin.cannot-apply-constraint=You can't apply constraint {0} to property {1} with datatype {2}. (expected: dataType = TEXT)
rm.admin.prop-exist=We couldn't find custom property {0}.
rm.admin.custom-prop-exist=The custom model doesn't contain the property {0}.
rm.admin.unknown-aspect=Unknown aspect {0}.
rm.admin.constraint-exists=The constraint {0} already exists.
rm.admin.contraint-cannot-find=We couldn't find the definition for constraint {0}.
rm.admin.unexpected_type_constraint=Unexpected type {0} for constraint {1}. The expected is {2}.
rm.admin.custom-model-not-found=We couldn't find custom model {0}.
rm.admin.custom-model-no-content=The custom model has no content. (nodeRef={0})
rm.admin.error-write-custom-model=We hit a problem writing custom model content. (nodeRef={0}).
rm.admin.error-client-id=We couldn't generate the client ID because it's already in use. (clientid={0})
rm.admin.error-split-id=We couldn't split ID {0}. because separator {1} isn't present.

View File

@@ -1,16 +1,16 @@
rm.admin.service-not-init=Der Anpassungsservice wurde nicht gestartet.
rm.admin.not-customisable=Die Klasse {0} kann nicht angepasst werden.
rm.admin.invalid-custom-aspect=Der benutzerdefinierte Aspekt {0} f\u00fcr die anpassbare Klasse {1} wurde nicht gefunden.
rm.admin.property-already-exists=Eigenschaft {0} bereits vorhanden.
rm.admin.cannot-apply-constraint=Randbedingung {0} kann nicht auf Eigenschaft {1} mit Datentyp {2} angewendet werden. (erwartet: Datentyp = TEXT)
rm.admin.prop-exist=Benutzerdefinierte Eigenschaft {0} wurde nicht gefunden.
rm.admin.custom-prop-exist=Das benutzerdefinierte Modell enth\u00e4lt nicht die Eigenschaft {0}.
rm.admin.unknown-aspect=Unbekannter Aspekt {0}.
rm.admin.constraint-exists=Randbedingung {0} bereits vorhanden.
rm.admin.contraint-cannot-find=Die Definition f\u00fcr Randbedingung {0} wurde nicht gefunden.
rm.admin.unexpected_type_constraint=Unerwarteter Typ {0} f\u00fcr Randbedingung {1}. Erwartet wird {2}.
rm.admin.custom-model-not-found=Benutzerdefiniertes Modell {0} wurde nicht gefunden.
rm.admin.custom-model-no-content=Benutzerdefiniertes Modell hat keinen Inhalt. (nodeRef={0})
rm.admin.error-write-custom-model=Beim Schreiben von benutzerdefiniertem Modellinhalt ist ein Problem aufgetreten. (nodeRef={0}).
rm.admin.error-client-id=Client-ID konnte nicht generiert werden, da diese bereits verwendet wird. (clientid={0})
rm.admin.service-not-init=Der Anpassungsservice wurde nicht gestartet.
rm.admin.not-customisable=Die Klasse {0} kann nicht angepasst werden.
rm.admin.invalid-custom-aspect=Der benutzerdefinierte Aspekt {0} f\u00fcr die anpassbare Klasse {1} wurde nicht gefunden.
rm.admin.property-already-exists=Eigenschaft {0} bereits vorhanden.
rm.admin.cannot-apply-constraint=Randbedingung {0} kann nicht auf Eigenschaft {1} mit Datentyp {2} angewendet werden. (erwartet: Datentyp = TEXT)
rm.admin.prop-exist=Benutzerdefinierte Eigenschaft {0} wurde nicht gefunden.
rm.admin.custom-prop-exist=Das benutzerdefinierte Modell enth\u00e4lt nicht die Eigenschaft {0}.
rm.admin.unknown-aspect=Unbekannter Aspekt {0}.
rm.admin.constraint-exists=Randbedingung {0} bereits vorhanden.
rm.admin.contraint-cannot-find=Die Definition f\u00fcr Randbedingung {0} wurde nicht gefunden.
rm.admin.unexpected_type_constraint=Unerwarteter Typ {0} f\u00fcr Randbedingung {1}. Erwartet wird {2}.
rm.admin.custom-model-not-found=Benutzerdefiniertes Modell {0} wurde nicht gefunden.
rm.admin.custom-model-no-content=Benutzerdefiniertes Modell hat keinen Inhalt. (nodeRef={0})
rm.admin.error-write-custom-model=Beim Schreiben von benutzerdefiniertem Modellinhalt ist ein Problem aufgetreten. (nodeRef={0}).
rm.admin.error-client-id=Client-ID konnte nicht generiert werden, da diese bereits verwendet wird. (clientid={0})
rm.admin.error-split-id=ID {0} kann nicht getrennt werden, da das Trennzeichen {1} nicht vorhanden ist.

View File

@@ -1,16 +1,16 @@
rm.admin.service-not-init=El servicio de personalizaci\u00f3n no se ha iniciado.
rm.admin.not-customisable=La clase ''{0}'' no es personalizable.
rm.admin.invalid-custom-aspect=No se pudo encontrar el aspecto personalizado ''{0}'' para la clase personalizable ''{1}''.
rm.admin.property-already-exists=La propiedad ''{0}'' ya existe.
rm.admin.cannot-apply-constraint=No puede aplicar la restricci\u00f3n ''{0}'' a la propiedad ''{1}'' con el tipo de datos ''{2}''. (previsto: tipo de datos = TEXT)
rm.admin.prop-exist=No se pudo encontrar la propiedad personalizada ''{0}''.
rm.admin.custom-prop-exist=El modelo personalizado no contiene la propiedad ''{0}''.
rm.admin.unknown-aspect=Aspecto desconocido ''{0}''.
rm.admin.constraint-exists=La restricci\u00f3n ''{0}'' ya existe.
rm.admin.contraint-cannot-find=No se pudo encontrar la definici\u00f3n para la restricci\u00f3n ''{0}''.
rm.admin.unexpected_type_constraint=Tipo inesperado ''{0}'' para la restricci\u00f3n ''{1}''. Lo esperado es ''{2}''.
rm.admin.custom-model-not-found=No se pudo encontrar el modelo personalizado ''{0}''.
rm.admin.custom-model-no-content=El modelo personalizado no tiene contenido. (nodeRef={0})
rm.admin.error-write-custom-model=Se produjo un problema al escribir el contenido del modelo personalizado. (nodeRef={0})
rm.admin.error-client-id=No se pudo generar el ID de cliente porque ya est\u00e1 en uso. (clientid={0})
rm.admin.service-not-init=El servicio de personalizaci\u00f3n no se ha iniciado.
rm.admin.not-customisable=La clase ''{0}'' no es personalizable.
rm.admin.invalid-custom-aspect=No se pudo encontrar el aspecto personalizado ''{0}'' para la clase personalizable ''{1}''.
rm.admin.property-already-exists=La propiedad ''{0}'' ya existe.
rm.admin.cannot-apply-constraint=No puede aplicar la restricci\u00f3n ''{0}'' a la propiedad ''{1}'' con el tipo de datos ''{2}''. (previsto: tipo de datos = TEXT)
rm.admin.prop-exist=No se pudo encontrar la propiedad personalizada ''{0}''.
rm.admin.custom-prop-exist=El modelo personalizado no contiene la propiedad ''{0}''.
rm.admin.unknown-aspect=Aspecto desconocido ''{0}''.
rm.admin.constraint-exists=La restricci\u00f3n ''{0}'' ya existe.
rm.admin.contraint-cannot-find=No se pudo encontrar la definici\u00f3n para la restricci\u00f3n ''{0}''.
rm.admin.unexpected_type_constraint=Tipo inesperado ''{0}'' para la restricci\u00f3n ''{1}''. Lo esperado es ''{2}''.
rm.admin.custom-model-not-found=No se pudo encontrar el modelo personalizado ''{0}''.
rm.admin.custom-model-no-content=El modelo personalizado no tiene contenido. (nodeRef={0})
rm.admin.error-write-custom-model=Se produjo un problema al escribir el contenido del modelo personalizado. (nodeRef={0})
rm.admin.error-client-id=No se pudo generar el ID de cliente porque ya est\u00e1 en uso. (clientid={0})
rm.admin.error-split-id=No se pudo separar el ID ''{0}''. porque el separador ''{1}'' no est\u00e1 presente.

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.not-customisable=La classe {0} n''est pas personnalisable.
rm.admin.invalid-custom-aspect=L''aspect personnalis\u00e9 {0} pour la classe personnalisable {1} est introuvable.
rm.admin.property-already-exists=La propri\u00e9t\u00e9 {0} existe d\u00e9j\u00e0.
rm.admin.cannot-apply-constraint=Impossible d''appliquer la contrainte {0} \u00e0 la propri\u00e9t\u00e9 {1} avec le datatype {2}. (attendu\u00a0: dataType = TEXT)
rm.admin.prop-exist=La m\u00e9tadonn\u00e9e personnalis\u00e9e {0} est introuvable.
rm.admin.custom-prop-exist=Le mod\u00e8le personnalis\u00e9 ne contient pas la propri\u00e9t\u00e9 {0}.
rm.admin.unknown-aspect=Aspect {0} inconnu.
rm.admin.constraint-exists=La contrainte {0} existe d\u00e9j\u00e0.
rm.admin.contraint-cannot-find=La d\u00e9finition de la contrainte {0} est introuvable.
rm.admin.unexpected_type_constraint=Type {0} inattendu pour la contrainte {1}. Attendu\u00a0: {2}
rm.admin.custom-model-not-found=Le mod\u00e8le personnalis\u00e9 {0} est introuvable.
rm.admin.custom-model-no-content=Le mod\u00e8le personnalis\u00e9 n''a pas de contenu. (nodeRef={0})
rm.admin.error-write-custom-model=Un probl\u00e8me est survenu pendant l''\u00e9criture du contenu du mod\u00e8le personnalis\u00e9. (nodeRef={0}).
rm.admin.error-client-id=Impossible de g\u00e9n\u00e9rer l''ID client car il est d\u00e9j\u00e0 en cours d''utilisation. (clientid={0})
rm.admin.service-not-init=Le service de personnalisation n'a pas \u00e9t\u00e9 d\u00e9marr\u00e9.
rm.admin.not-customisable=La classe {0} n''est pas personnalisable.
rm.admin.invalid-custom-aspect=L''aspect personnalis\u00e9 {0} pour la classe personnalisable {1} est introuvable.
rm.admin.property-already-exists=La propri\u00e9t\u00e9 {0} existe d\u00e9j\u00e0.
rm.admin.cannot-apply-constraint=Impossible d''appliquer la contrainte {0} \u00e0 la propri\u00e9t\u00e9 {1} avec le datatype {2}. (attendu\u00a0: dataType = TEXT)
rm.admin.prop-exist=La m\u00e9tadonn\u00e9e personnalis\u00e9e {0} est introuvable.
rm.admin.custom-prop-exist=Le mod\u00e8le personnalis\u00e9 ne contient pas la propri\u00e9t\u00e9 {0}.
rm.admin.unknown-aspect=Aspect {0} inconnu.
rm.admin.constraint-exists=La contrainte {0} existe d\u00e9j\u00e0.
rm.admin.contraint-cannot-find=La d\u00e9finition de la contrainte {0} est introuvable.
rm.admin.unexpected_type_constraint=Type {0} inattendu pour la contrainte {1}. Attendu\u00a0: {2}
rm.admin.custom-model-not-found=Le mod\u00e8le personnalis\u00e9 {0} est introuvable.
rm.admin.custom-model-no-content=Le mod\u00e8le personnalis\u00e9 n''a pas de contenu. (nodeRef={0})
rm.admin.error-write-custom-model=Un probl\u00e8me est survenu pendant l''\u00e9criture du contenu du mod\u00e8le personnalis\u00e9. (nodeRef={0}).
rm.admin.error-client-id=Impossible de g\u00e9n\u00e9rer l''ID client car il est d\u00e9j\u00e0 en cours d''utilisation. (clientid={0})
rm.admin.error-split-id=Impossible de fractionner l''ID {0}. Le s\u00e9parateur {1} n''est pas pr\u00e9sent.

View File

@@ -1,16 +1,16 @@
rm.admin.service-not-init=Il servizio di personalizzazione non \u00e8 stato avviato.
rm.admin.not-customisable=Non \u00e8 possibile personalizzare la classe {0}.
rm.admin.invalid-custom-aspect=Impossibile trovare un aspetto personalizzato {0} per la classe personalizzabile {1}.
rm.admin.property-already-exists=La propriet\u00e0 {0} \u00e8 gi\u00e0 esistente.
rm.admin.cannot-apply-constraint=Impossibile applicare il vincolo {0} alla propriet\u00e0 {1} con il tipo di dati {2}. (expected: dataType = TEXT)
rm.admin.prop-exist=Impossibile trovare la propriet\u00e0 personalizzata {0}.
rm.admin.custom-prop-exist=Il modello personalizzato non contiene la propriet\u00e0 {0}.
rm.admin.unknown-aspect=Aspetto {0} sconosciuto.
rm.admin.constraint-exists=Il vincolo {0} \u00e8 gi\u00e0 esistente.
rm.admin.contraint-cannot-find=Impossibile trovare la definizione per il vincolo {0}.
rm.admin.unexpected_type_constraint=Tipo {0} inaspettato per vincolo {1}. Ci\u00f2 che si aspetta \u00e8 {2}.
rm.admin.custom-model-not-found=Impossibile trovare il modello personalizzato {0}.
rm.admin.custom-model-no-content=Il modello personalizzato non ha contenuti. (nodeRef={0})
rm.admin.error-write-custom-model=Si \u00e8 verificato un problema durante la scrittura dei contenuti del modello personalizzato. (nodeRef={0})
rm.admin.error-client-id=Impossibile generare l''ID client, poich\u00e9 gi\u00e0 in uso. (clientid={0})
rm.admin.service-not-init=Il servizio di personalizzazione non \u00e8 stato avviato.
rm.admin.not-customisable=Non \u00e8 possibile personalizzare la classe {0}.
rm.admin.invalid-custom-aspect=Impossibile trovare un aspetto personalizzato {0} per la classe personalizzabile {1}.
rm.admin.property-already-exists=La propriet\u00e0 {0} \u00e8 gi\u00e0 esistente.
rm.admin.cannot-apply-constraint=Impossibile applicare il vincolo {0} alla propriet\u00e0 {1} con il tipo di dati {2}. (expected: dataType = TEXT)
rm.admin.prop-exist=Impossibile trovare la propriet\u00e0 personalizzata {0}.
rm.admin.custom-prop-exist=Il modello personalizzato non contiene la propriet\u00e0 {0}.
rm.admin.unknown-aspect=Aspetto {0} sconosciuto.
rm.admin.constraint-exists=Il vincolo {0} \u00e8 gi\u00e0 esistente.
rm.admin.contraint-cannot-find=Impossibile trovare la definizione per il vincolo {0}.
rm.admin.unexpected_type_constraint=Tipo {0} inaspettato per vincolo {1}. Ci\u00f2 che si aspetta \u00e8 {2}.
rm.admin.custom-model-not-found=Impossibile trovare il modello personalizzato {0}.
rm.admin.custom-model-no-content=Il modello personalizzato non ha contenuti. (nodeRef={0})
rm.admin.error-write-custom-model=Si \u00e8 verificato un problema durante la scrittura dei contenuti del modello personalizzato. (nodeRef={0})
rm.admin.error-client-id=Impossibile generare l''ID client, poich\u00e9 gi\u00e0 in uso. (clientid={0})
rm.admin.error-split-id=Impossibile dividere l''ID ''{0}'' poich\u00e9 non \u00e8 presente il separatore {1}.

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.not-customisable=\u30af\u30e9\u30b9 ''{0}'' \u306f\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3067\u304d\u307e\u305b\u3093\u3002
rm.admin.invalid-custom-aspect=\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u53ef\u80fd\u306a\u30af\u30e9\u30b9 ''{1}'' \u306e\u30ab\u30b9\u30bf\u30e0\u30a2\u30b9\u30da\u30af\u30c8 ''{0}'' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002
rm.admin.property-already-exists=\u30d7\u30ed\u30d1\u30c6\u30a3 ''{0}'' \u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002
rm.admin.cannot-apply-constraint=\u5236\u7d04 ''{0}'' \u306f\u3001\u30c7\u30fc\u30bf\u578b\u304c ''{2}'' \u306e\u30d7\u30ed\u30d1\u30c6\u30a3 ''{1}'' \u306b\u306f\u9069\u7528\u3067\u304d\u307e\u305b\u3093\u3002 (expected: dataType = TEXT)
rm.admin.prop-exist=\u30ab\u30b9\u30bf\u30e0\u30d7\u30ed\u30d1\u30c6\u30a3 ''{0}'' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002
rm.admin.custom-prop-exist=\u3053\u306e\u30ab\u30b9\u30bf\u30e0\u30e2\u30c7\u30eb\u306b\u306f\u30d7\u30ed\u30d1\u30c6\u30a3 ''{0}'' \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3002
rm.admin.unknown-aspect=\u4e0d\u660e\u306a\u30a2\u30b9\u30da\u30af\u30c8 ''{0}''\u3002
rm.admin.constraint-exists=\u5236\u7d04 ''{0}'' \u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002
rm.admin.contraint-cannot-find=\u5236\u7d04 ''{0}'' \u306e\u5b9a\u7fa9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002
rm.admin.unexpected_type_constraint=\u30bf\u30a4\u30d7 ''{0}'' \u306f\u5236\u7d04 ''{1}'' \u306b\u9069\u3057\u307e\u305b\u3093\u3002 \u6709\u52b9\u306a\u30bf\u30a4\u30d7\u306f ''{2}'' \u3067\u3059\u3002
rm.admin.custom-model-not-found=\u30ab\u30b9\u30bf\u30e0\u30e2\u30c7\u30eb ''{0}'' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002
rm.admin.custom-model-no-content=\u3053\u306e\u30ab\u30b9\u30bf\u30e0\u30e2\u30c7\u30eb\u306b\u306f\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u3042\u308a\u307e\u305b\u3093\u3002 (nodeRef={0})
rm.admin.error-write-custom-model=\u30ab\u30b9\u30bf\u30e0\u30e2\u30c7\u30eb\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u66f8\u304d\u8fbc\u307f\u4e2d\u306b\u554f\u984c\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 (nodeRef={0}).
rm.admin.error-client-id=\u3053\u306e\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 ID \u306f\u3059\u3067\u306b\u4f7f\u7528\u3055\u308c\u3066\u3044\u308b\u305f\u3081\u3001\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002 (clientid={0})
rm.admin.service-not-init=\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u30b5\u30fc\u30d3\u30b9\u304c\u958b\u59cb\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
rm.admin.not-customisable=\u30af\u30e9\u30b9 ''{0}'' \u306f\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3067\u304d\u307e\u305b\u3093\u3002
rm.admin.invalid-custom-aspect=\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u53ef\u80fd\u306a\u30af\u30e9\u30b9 ''{1}'' \u306e\u30ab\u30b9\u30bf\u30e0\u30a2\u30b9\u30da\u30af\u30c8 ''{0}'' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002
rm.admin.property-already-exists=\u30d7\u30ed\u30d1\u30c6\u30a3 ''{0}'' \u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002
rm.admin.cannot-apply-constraint=\u5236\u7d04 ''{0}'' \u306f\u3001\u30c7\u30fc\u30bf\u578b\u304c ''{2}'' \u306e\u30d7\u30ed\u30d1\u30c6\u30a3 ''{1}'' \u306b\u306f\u9069\u7528\u3067\u304d\u307e\u305b\u3093\u3002 (expected: dataType = TEXT)
rm.admin.prop-exist=\u30ab\u30b9\u30bf\u30e0\u30d7\u30ed\u30d1\u30c6\u30a3 ''{0}'' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002
rm.admin.custom-prop-exist=\u3053\u306e\u30ab\u30b9\u30bf\u30e0\u30e2\u30c7\u30eb\u306b\u306f\u30d7\u30ed\u30d1\u30c6\u30a3 ''{0}'' \u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093\u3002
rm.admin.unknown-aspect=\u4e0d\u660e\u306a\u30a2\u30b9\u30da\u30af\u30c8 ''{0}''\u3002
rm.admin.constraint-exists=\u5236\u7d04 ''{0}'' \u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002
rm.admin.contraint-cannot-find=\u5236\u7d04 ''{0}'' \u306e\u5b9a\u7fa9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002
rm.admin.unexpected_type_constraint=\u30bf\u30a4\u30d7 ''{0}'' \u306f\u5236\u7d04 ''{1}'' \u306b\u9069\u3057\u307e\u305b\u3093\u3002 \u6709\u52b9\u306a\u30bf\u30a4\u30d7\u306f ''{2}'' \u3067\u3059\u3002
rm.admin.custom-model-not-found=\u30ab\u30b9\u30bf\u30e0\u30e2\u30c7\u30eb ''{0}'' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002
rm.admin.custom-model-no-content=\u3053\u306e\u30ab\u30b9\u30bf\u30e0\u30e2\u30c7\u30eb\u306b\u306f\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u3042\u308a\u307e\u305b\u3093\u3002 (nodeRef={0})
rm.admin.error-write-custom-model=\u30ab\u30b9\u30bf\u30e0\u30e2\u30c7\u30eb\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u66f8\u304d\u8fbc\u307f\u4e2d\u306b\u554f\u984c\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 (nodeRef={0}).
rm.admin.error-client-id=\u3053\u306e\u30af\u30e9\u30a4\u30a2\u30f3\u30c8 ID \u306f\u3059\u3067\u306b\u4f7f\u7528\u3055\u308c\u3066\u3044\u308b\u305f\u3081\u3001\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002 (clientid={0})
rm.admin.error-split-id=\u533a\u5207\u308a\u6587\u5b57 ({1}) \u304c\u306a\u3044\u305f\u3081\u3001ID ''{0}'' \u3092\u5206\u5272\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002

View File

@@ -1,16 +1,16 @@
rm.admin.service-not-init=Tilpasningstjenesten er ikke startet.
rm.admin.not-customisable=Klassen {0} er ikke tilpasset.
rm.admin.invalid-custom-aspect=Finner ikke det tilpassede aspektet {0} for klassen {1} som kan tilpasses.
rm.admin.property-already-exists=Egenskapen {0} finnes allerede.
rm.admin.cannot-apply-constraint=Kan ikke p\u00e5f\u00f8re restriksjonen {0} p\u00e5 egenskapen {1} med datatype {2}. (forventet datatype = TEKST)
rm.admin.prop-exist=Kunne ikke finne den tilpassede egenskapen {0}.
rm.admin.custom-prop-exist=Den tilpassede modellen kan ikke inneholde egenskapen {0}.
rm.admin.unknown-aspect=Ukjent aspekt {0}.
rm.admin.constraint-exists=Restriksjonen {0} finnes allerede.
rm.admin.contraint-cannot-find=Kunne ikke finne definisjonen til restriksjonen {0}.
rm.admin.unexpected_type_constraint=Uventet type {0} ved restriksjonen {1}. {2} var forventet...
rm.admin.custom-model-not-found=Kunne ikke finne den tilpassede modellen {0}.
rm.admin.custom-model-no-content=Den tilpassede modellen har ikke innhold. (nodeRef={0})
rm.admin.error-write-custom-model=Det oppsto et problem med \u00e5 skrive innholdet til den tilpassede modellen. (nodeRef={0}).
rm.admin.error-client-id=Kunne ikke generere klient-ID for den er allerede i bruk. (clientid={0})
rm.admin.service-not-init=Tilpasningstjenesten er ikke startet.
rm.admin.not-customisable=Klassen {0} er ikke tilpasset.
rm.admin.invalid-custom-aspect=Finner ikke det tilpassede aspektet {0} for klassen {1} som kan tilpasses.
rm.admin.property-already-exists=Egenskapen {0} finnes allerede.
rm.admin.cannot-apply-constraint=Kan ikke p\u00e5f\u00f8re restriksjonen {0} p\u00e5 egenskapen {1} med datatype {2}. (forventet datatype = TEKST)
rm.admin.prop-exist=Kunne ikke finne den tilpassede egenskapen {0}.
rm.admin.custom-prop-exist=Den tilpassede modellen kan ikke inneholde egenskapen {0}.
rm.admin.unknown-aspect=Ukjent aspekt {0}.
rm.admin.constraint-exists=Restriksjonen {0} finnes allerede.
rm.admin.contraint-cannot-find=Kunne ikke finne definisjonen til restriksjonen {0}.
rm.admin.unexpected_type_constraint=Uventet type {0} ved restriksjonen {1}. {2} var forventet...
rm.admin.custom-model-not-found=Kunne ikke finne den tilpassede modellen {0}.
rm.admin.custom-model-no-content=Den tilpassede modellen har ikke innhold. (nodeRef={0})
rm.admin.error-write-custom-model=Det oppsto et problem med \u00e5 skrive innholdet til den tilpassede modellen. (nodeRef={0}).
rm.admin.error-client-id=Kunne ikke generere klient-ID for den er allerede i bruk. (clientid={0})
rm.admin.error-split-id=Kunne ikke dele ID-en {0}. fordi grensetegnet {1} ikke fantes.

View File

@@ -1,16 +1,16 @@
rm.admin.service-not-init=De aanpassingsservice is niet gestart.
rm.admin.not-customisable=De klasse {0} kan niet worden aangepast.
rm.admin.invalid-custom-aspect=Kan het aangepaste aspect {0} voor aanpasbare klasse {1} niet vinden.
rm.admin.property-already-exists=Eigenschap {0} bestaat al.
rm.admin.cannot-apply-constraint=U kunt beperking {0} niet toepassen op eigenschap {1} met gegevenstype {2}. (verwacht: dataType = TEXT)
rm.admin.prop-exist=Kan aangepaste eigenschap {0} niet vinden.
rm.admin.custom-prop-exist=Het aangepaste model bevat de eigenschap {0} niet.
rm.admin.unknown-aspect=Onbekend aspect {0}.
rm.admin.constraint-exists=De beperking {0} bestaat al.
rm.admin.contraint-cannot-find=Kan de definitie voor beperking {0} niet vinden.
rm.admin.unexpected_type_constraint=Onverwacht type {0} voor beperking {1}. Het verwachte type is {2}.
rm.admin.custom-model-not-found=Kan aangepast model {0} niet vinden.
rm.admin.custom-model-no-content=Het aangepaste model heeft geen content. (nodeRef={0})
rm.admin.error-write-custom-model=Er is een probleem opgetreden bij het schrijven van aangepaste-modelcontent. (nodeRef={0}).
rm.admin.error-client-id=Kan de client-id niet genereren omdat deze al in gebruik is. (clientid={0})
rm.admin.service-not-init=De aanpassingsservice is niet gestart.
rm.admin.not-customisable=De klasse {0} kan niet worden aangepast.
rm.admin.invalid-custom-aspect=Kan het aangepaste aspect {0} voor aanpasbare klasse {1} niet vinden.
rm.admin.property-already-exists=Eigenschap {0} bestaat al.
rm.admin.cannot-apply-constraint=U kunt beperking {0} niet toepassen op eigenschap {1} met gegevenstype {2}. (verwacht: dataType = TEXT)
rm.admin.prop-exist=Kan aangepaste eigenschap {0} niet vinden.
rm.admin.custom-prop-exist=Het aangepaste model bevat de eigenschap {0} niet.
rm.admin.unknown-aspect=Onbekend aspect {0}.
rm.admin.constraint-exists=De beperking {0} bestaat al.
rm.admin.contraint-cannot-find=Kan de definitie voor beperking {0} niet vinden.
rm.admin.unexpected_type_constraint=Onverwacht type {0} voor beperking {1}. Het verwachte type is {2}.
rm.admin.custom-model-not-found=Kan aangepast model {0} niet vinden.
rm.admin.custom-model-no-content=Het aangepaste model heeft geen content. (nodeRef={0})
rm.admin.error-write-custom-model=Er is een probleem opgetreden bij het schrijven van aangepaste-modelcontent. (nodeRef={0}).
rm.admin.error-client-id=Kan de client-id niet genereren omdat deze al in gebruik is. (clientid={0})
rm.admin.error-split-id=Kan id {0} niet opsplitsen omdat scheiding {1} niet aanwezig is.

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