RM-1107 (Mavenization of the RM build)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/DEV/UIAUTOMATION@58955 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Tuna Aksoy
2013-12-12 23:22:31 +00:00
parent 22331a0dbf
commit 40a46cda43
369 changed files with 21694 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<?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>
<!-- Create record action -->
<bean id="create-record" parent="action-executer" class="org.alfresco.module.org_alfresco_module_rm.action.dm.CreateRecordAction">
<property name="filePlanAuthenticationService" ref="FilePlanAuthenticationService"/>
<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>
<!-- 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="recordService" ref="RecordService" />
<property name="publicAction" value="false"/>
</bean>
</beans>

View File

@@ -0,0 +1,37 @@
# 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
#
# Extended permission service cache sizing
#
cache.writersSharedCache.maxItems=10000
#
# Global RM admin default bootstrap details
#
# Note: rmadmin is created with a randomly generated password. This can be changed by 'admin' if
# required.
#
bootstrap.rmadmin.name=rmadmin
#
# Indicates whether RM rules will be run as RM Admin or not by default
#
rm.rule.runasrmadmin=true

View File

@@ -0,0 +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>

View File

@@ -0,0 +1,237 @@
<?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>
</view:associations>
</cm:folder>
</cm:contains>
</view:associations>
</cm:folder>
</view:view>

View File

@@ -0,0 +1,124 @@
<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

@@ -0,0 +1,15 @@
/**
* 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

@@ -0,0 +1,120 @@
<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

@@ -0,0 +1,118 @@
<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

@@ -0,0 +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>SupersededBy__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>ObsoletedBy__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>VersionedBy__Versions</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

@@ -0,0 +1,71 @@
{
"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.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

@@ -0,0 +1,12 @@
/**
* 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

@@ -0,0 +1,116 @@
<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

@@ -0,0 +1,85 @@
<!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

@@ -0,0 +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>
</beans>

View File

@@ -0,0 +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">
<list>
<ref bean="rmAccessAuditCapability"/>
<ref bean="rmDeclareAuditAsRecordCapability"/>
<ref bean="rmDeleteAuditCapability"/>
<ref bean="rmEnableDisableAuditByTypesCapability"/>
<ref bean="rmExportAuditCapability"/>
<ref bean="rmSelectAuditMetadataCapability"/>
</list>
</property>
</bean>
</beans>

View File

@@ -0,0 +1,205 @@
<?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" />
<property name="nodeService" ref="NodeService" />
<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" />
</bean>
<bean id="capabilityCondition.frozen"
parent="capabilityCondition.base"
class="org.alfresco.module.org_alfresco_module_rm.capability.declarative.condition.FrozenCapabilityCondition">
</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" />
</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.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>
</beans>

View File

@@ -0,0 +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">
<list>
<ref bean="rmCreateAndAssociateSelectionListsCapability"/>
<ref bean="rmEditSelectionListsCapability"/>
</list>
</property>
</bean>
</beans>

View File

@@ -0,0 +1,309 @@
<?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>
<!-- 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"/>
</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"/>
</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>
<!-- End Rentention -->
<bean id="rmEndRetentionCapability"
parent="declarativeCapability">
<property name="name" value="EndRetention"/>
<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.frozenOrFrozenChildren" value="false"/>
<entry key="capabilityCondition.retentionIsScheduled" value="true" />
</map>
</property>
</bean>
</beans>

View File

@@ -0,0 +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 -->
</beans>

View File

@@ -0,0 +1,89 @@
<?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="declarativeCapability">
<property name="name" value="CreateModifyDestroyUnfiledRecordContainer"/>
<property name="private" value="true"/>
<property name="kinds">
<list>
<value>UNFILED_RECORD_CONTAINER</value>
</list>
</property>
<property name="conditions">
<map>
<entry key="capabilityCondition.filling" value="true"/>
</map>
</property>
</bean>
</beans>

View File

@@ -0,0 +1,56 @@
<?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="rmExtendRetentionPeriodOrFreezeCapability"
parent="declarativeCapability">
<property name="name" value="ExtendRetentionPeriodOrFreeze"/>
<property name="permission" value="ExtendRetentionPeriodOrFreeze"/>
<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>
<property name="group"><ref bean="holdControlsGroup"/></property>
<property name="index" value="10" />
</bean>
<bean id="rmUnfreezeCapability"
parent="declarativeCapability">
<property name="name" value="Unfreeze"/>
<property name="permission" value="Unfreeze"/>
<property name="conditions">
<map>
<entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozenOrHold" value="true"/>
</map>
</property>
<property name="group"><ref bean="holdControlsGroup"/></property>
<property name="index" value="20" />
</bean>
<bean id="rmViewUpdateReasonsForFreezeCapability"
parent="declarativeCapability">
<property name="name" value="ViewUpdateReasonsForFreeze"/>
<property name="permission" value="ViewUpdateReasonsForFreeze"/>
<property name="conditions">
<map>
<entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.frozenOrHold" value="true"/>
</map>
</property>
<property name="group"><ref bean="holdControlsGroup"/></property>
<property name="index" value="30" />
</bean>
</beans>

View File

@@ -0,0 +1,200 @@
<?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="rmDestroyRecordsScheduledForDestructionCapability"/>
<ref bean="rmDestroyRecordsCapability"/>
<ref bean="rmDeleteRecordsCapability"/>
<ref bean="rmCreateModifyDestroyFileplanMetadataCapability"/>
<ref bean="rmCreateModifyDestroyFoldersCapability"/>
</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="rmCreateModifyDestroyFoldersCapability"/>
<ref bean="rmCreateModifyDestroyFileplanMetadataCapability"/>
<ref bean="rmEditDeclaredRecordMetadataCapability"/>
<ref bean="rmEditNonRecordMetadataCapability"/>
<ref bean="rmCreateModifyRecordsInCuttoffFoldersCapability"/>
<ref bean="rmEditRecordMetadataCapability"/>
</list>
</property>
</bean>
<bean id="rmUpdateProperties"
parent="compositeCapability"
class="org.alfresco.module.org_alfresco_module_rm.capability.impl.UpdatePropertiesCapability">
<property name="name" value="UpdateProperties"/>
<property name="private" value="true"/>
<property name="capabilities">
<list>
<ref bean="rmCreateModifyDestroyFoldersCapability"/>
<ref bean="rmCreateModifyDestroyFileplanMetadataCapability"/>
<ref bean="rmEditDeclaredRecordMetadataCapability"/>
<ref bean="rmEditNonRecordMetadataCapability"/>
<ref bean="rmCreateModifyRecordsInCuttoffFoldersCapability"/>
<ref bean="rmEditRecordMetadataCapability"/>
</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="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="rmCopyRecordFolderCapability"/>
<ref bean="rmCopyRecordCategoryCapability"/>
</list>
</property>
<property name="targetCapability" ref="rmCreate" />
</bean>
<bean id="rmCopyRecordCapability"
parent="declarativeCapability">
<property name="name" value="CopyRecord"/>
<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="rmCopyRecordFolderCapability"
parent="declarativeCapability">
<property name="name" value="CopyRecordFolder"/>
<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="rmCopyRecordCategoryCapability"
parent="declarativeCapability">
<property name="name" value="CopyRecordCategory"/>
<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

@@ -0,0 +1,324 @@
<?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="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="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="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">
<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" />
</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="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>
</beans>

View File

@@ -0,0 +1,84 @@
<?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.frozenOrFrozenChildren" 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="declarativeCapability">
<property name="name" value="CreateModifyDestroyFolders"/>
<property name="permission" value="CreateModifyDestroyFolders"/>
<property name="kinds">
<list>
<value>RECORD_CATEGORY</value>
<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="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.frozenOrFrozenChildren" 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="rmMoveRecordFolderCapability"
parent="compositeCapability">
<property name="name" value="MoveRecordFolder"/>
<property name="private" value="true"/>
<property name="undetermined" value="true"/>
<property name="capabilities">
<list>
<ref bean="rmCreateModifyDestroyFoldersCapability"/>
</list>
</property>
<property name="targetCapability" ref="rmCreateModifyDestroyFoldersCapability"/>
</bean>
</beans>

View File

@@ -0,0 +1,45 @@
<?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>
<!-- TODO .. is this in the right place?? Does link refer to a link to another file plan from a record? -->
<bean id="rmDeleteLinksCapability"
parent="rmBaseCapability"
class="org.alfresco.module.org_alfresco_module_rm.capability.impl.DeleteLinksCapability">
<property name="name" value="DeleteLinks"/>
<property name="permission" value="DeleteLinks"/>
<property name="conditions">
<map>
<entry key="capabilityCondition.filling" value="true"/>
<entry key="capabilityCondition.cutoff" value="false"/>
<entry key="capabilityCondition.frozen" value="false"/>
</map>
</property>
<property name="group"><ref bean="referencesGroup"/></property>
<property name="index" value="20" />
</bean>
<!-- Non-Assignable Capabilities -->
</beans>

View File

@@ -0,0 +1,19 @@
<?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"/>
</map>
</property>
</bean>
</beans>

View File

@@ -0,0 +1,59 @@
<?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="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>
<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>
<bean id="rmManageAccessRightsCapability"
parent="declarativeCapability">
<property name="name" value="ManageAccessRights"/>
<property name="permission" value="ManageAccessRights"/>
<property name="conditions">
<map>
<entry key="capabilityCondition.frozen" value="false"/>
<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

@@ -0,0 +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 -->
</beans>

View File

@@ -0,0 +1,32 @@
<?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/dod5015-model</value>
</list>
</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.dod5015</value>
</list>
</property>
</bean>
<!-- Include classification capabilities, deprecated for now -->
<import resource="classpath:alfresco/module/org_alfresco_module_rm/dod5015/dod5015-capabilities-classification-context.xml"/>
</beans>

View File

@@ -0,0 +1,73 @@
dod_dod5015.description=DOD5015 Content Model
dod_dod5015.type.dod_recordSeries.title=Record Series (Deprecated)
dod_dod5015.type.dod_recordSeries.description=Record Series (Deprecated)
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

@@ -0,0 +1,73 @@
dod_dod5015.description=DOD5015 Content Model
dod_dod5015.type.dod_recordSeries.title=Datensatzserie (veraltet)
dod_dod5015.type.dod_recordSeries.description=Datensatzserie (veraltet)
dod_dod5015.aspect.dod_scannedRecord.title=Eingescannter Datensatz
dod_dod5015.aspect.dod_scannedRecord.description=Eingescannter Datensatz
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=Gescannte Bittiefe
dod_dod5015.property.dod_scannedBitDepth.description=Gescannte Bittiefe
dod_dod5015.aspect.dod_pdfRecord.title=PDF-Datensatz
dod_dod5015.aspect.dod_pdfRecord.description=PDF-Datensatz
dod_dod5015.property.dod_producingApplication.title=Ausgebende Anwendung
dod_dod5015.property.dod_producingApplication.description=Ausgebende Anwendung
dod_dod5015.property.dod_producingApplicationVersion.title=Version der ausgebenden Anwendung
dod_dod5015.property.dod_producingApplicationVersion.description=Version der ausgebenden Anwendung
dod_dod5015.property.dod_pdfVersion.title=PDF-Version
dod_dod5015.property.dod_pdfVersion.description=PDF-Version
dod_dod5015.property.dod_creatingApplication.title=Erstellende Anwendung
dod_dod5015.property.dod_creatingApplication.description=Erstellende Anwendung
dod_dod5015.property.dod_documentSecuritySettings.title=Sicherheitseinstellungen des Dokuments
dod_dod5015.property.dod_documentSecuritySettings.description=Sicherheitseinstellungen des Dokuments
dod_dod5015.aspect.dod_digitalPhotographRecord.title=Digitaler Fotodatensatz
dod_dod5015.aspect.dod_digitalPhotographRecord.description=Digitaler Fotodatensatz
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=Webdatensatz
dod_dod5015.aspect.dod_webRecord.description=Webdatensatz
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

@@ -0,0 +1,73 @@
dod_dod5015.description=Modelo de contenido DOD5015
dod_dod5015.type.dod_recordSeries.title=Series de documentos de archivo (obsoletas)
dod_dod5015.type.dod_recordSeries.description=Series de documentos de archivo (obsoletas)
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=Archivo PDF
dod_dod5015.aspect.dod_pdfRecord.description=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

@@ -0,0 +1,73 @@
dod_dod5015.description=Mod\u00e8le de contenu DOD5015
dod_dod5015.type.dod_recordSeries.title=S\u00e9rie de document d'archives (Obsol\u00e8te)
dod_dod5015.type.dod_recordSeries.description=S\u00e9rie de document d'archives (Obsol\u00e8te)
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'mage
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 de production
dod_dod5015.property.dod_producingApplication.description=Application de production
dod_dod5015.property.dod_producingApplicationVersion.title=Version de l'application de production
dod_dod5015.property.dod_producingApplicationVersion.description=Version de l'application de production
dod_dod5015.property.dod_pdfVersion.title=Version PDF
dod_dod5015.property.dod_pdfVersion.description=Version PDF
dod_dod5015.property.dod_creatingApplication.title=Application de cr\u00e9ation
dod_dod5015.property.dod_creatingApplication.description=Application de cr\u00e9ation
dod_dod5015.property.dod_documentSecuritySettings.title=Param\u00e8tres de s\u00e9curit\u00e9 de document
dod_dod5015.property.dod_documentSecuritySettings.description=Param\u00e8tres de s\u00e9curit\u00e9 de document
dod_dod5015.aspect.dod_digitalPhotographRecord.title=Document d'archives de photographie num\u00e9rique
dod_dod5015.aspect.dod_digitalPhotographRecord.description=Document d'archives de photographie num\u00e9rique
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 d'image
dod_dod5015.property.dod_imageSource.description=Source d'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 de site Web
dod_dod5015.property.dod_webSiteName.description=Nom de site Web
dod_dod5015.property.dod_webSiteURL.title=URL de site Web
dod_dod5015.property.dod_webSiteURL.description=URL de site Web
dod_dod5015.property.dod_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 du contenu
dod_dod5015.property.dod_contentManagementSystem.description=Syst\u00e8me de gestion du contenu

View File

@@ -0,0 +1,73 @@
dod_dod5015.description=Modello di contenuto DOD5015
dod_dod5015.type.dod_recordSeries.title=Serie di record (obsoleto)
dod_dod5015.type.dod_recordSeries.description=Serie di record (obsoleto)
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

@@ -0,0 +1,73 @@
dod_dod5015.description=DOD5015\u30b3\u30f3\u30c6\u30f3\u30c4\u30e2\u30c7\u30eb
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_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=\u5275\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
dod_dod5015.property.dod_creatingApplication.description=\u5275\u4f5c\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

@@ -0,0 +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
capability.CreateModifyDestroyTimeframes.title=Create Modify Destroy Time Frames

View File

@@ -0,0 +1,344 @@
<?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>
<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>
<!-- Deprecated since 2.0 -->
<type name="dod:recordSeries">
<title>Record Series</title>
<parent>rma:recordCategory</parent>
</type>
</types>
<aspects>
<aspect name="dod:scannedRecord">
<title>Scanned Record</title>
<parent>rma:recordMetaData</parent>
<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>
<mandatory-aspects>
<aspect>rma:filePlanComponent</aspect>
</mandatory-aspects>
</aspect>
<aspect name="dod:pdfRecord">
<title>PDF Record</title>
<parent>rma:recordMetaData</parent>
<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>
<mandatory-aspects>
<aspect>rma:filePlanComponent</aspect>
</mandatory-aspects>
</aspect>
<aspect name="dod:digitalPhotographRecord">
<title>Digital Photograph Record</title>
<parent>rma:recordMetaData</parent>
<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>
<mandatory-aspects>
<aspect>rma:filePlanComponent</aspect>
</mandatory-aspects>
</aspect>
<aspect name="dod:webRecord">
<title>Web Record</title>
<parent>rma:recordMetaData</parent>
<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>
<mandatory-aspects>
<aspect>rma:filePlanComponent</aspect>
</mandatory-aspects>
</aspect>
</aspects>
</model>

View File

@@ -0,0 +1,8 @@
# Classified Records Capabilities
capability.group.classifiedRecords.title=Klassifizierte Datens\u00e4tze
capability.UpdateClassificationDates.title=Klassifizierungsdaten aktualisieren
capability.CreateModifyDestroyClassificationGuides.title=Klassifizierungsleitfaden erstellen/\u00e4ndern/vernichten
capability.UpgradeDowngradeAndDeclassifyRecords.title=Datens\u00e4tze 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

@@ -0,0 +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 o destruir gu\u00edas de clasificaci\u00f3n
capability.UpgradeDowngradeAndDeclassifyRecords.title=Subir, bajar 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 o destruir plazos de tiempo

View File

@@ -0,0 +1,8 @@
# Classified Records Capabilities
capability.group.classifiedRecords.title=Documents d'archives classifi\u00e9s
capability.UpdateClassificationDates.title=Dates de mise \u00e0 jour des classifications
capability.CreateModifyDestroyClassificationGuides.title=Guides de cr\u00e9ation, de modification et de destruction de classification
capability.UpgradeDowngradeAndDeclassifyRecords.title=Mettre \u00e0 jour, r\u00e9trograder et d\u00e9classifier des documents d'archives
capability.UpdateExemptionCategories.title=Mettre \u00e0 jour des cat\u00e9gories d'exemptions
capability.MapClassificationGuideMetadata.title=Mapper les m\u00e9tadonn\u00e9es de guide de classification
capability.CreateModifyDestroyTimeframes.title=Cr\u00e9er, modifier, d\u00e9truire des p\u00e9riodes

View File

@@ -0,0 +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 le guide di classificazione
capability.UpgradeDowngradeAndDeclassifyRecords.title=Aggiorna, esegui downgrade e declassifica record
capability.UpdateExemptionCategories.title=Aggiorna categorie di esclusione
capability.MapClassificationGuideMetadata.title=Esegui mapping dei metadati delle guide di classificazione
capability.CreateModifyDestroyTimeframes.title=Crea, modifica, elimina definitivamente gli intervalli di tempo

View File

@@ -0,0 +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/\u4fee\u6b63/\u7834\u68c4
capability.UpgradeDowngradeAndDeclassifyRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9/\u30c0\u30a6\u30f3\u30b0\u30ec\u30fc\u30c9/\u5206\u985e\u89e3\u9664
capability.UpdateExemptionCategories.title=\u9069\u7528\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\u30d7
capability.CreateModifyDestroyTimeframes.title=\u6642\u9593\u67a0\u306e\u4f5c\u6210/\u4fee\u6b63/\u7834\u68c4

View File

@@ -0,0 +1,268 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans>
<!-- AVM Remote Store to ADM Remote Store migration patch -->
<!-- <bean id="patch.avmToAdmRemoteStore" class="org.alfresco.repo.admin.patch.impl.AVMToADMRemoteStorePatch" parent="basePatch">
<property name="id"><value>patch.avmToAdmRemoteStore</value></property>
<property name="description"><value>patch.avmToAdmRemoteStore.description</value></property>
<property name="fixesFromSchema"><value>0</value></property>
<property name="fixesToSchema"><value>5011</value></property>
<property name="targetSchema"><value>5012</value></property>
<property name="requiresTransaction"><value>false</value></property>
<property name="fileFolderService" ref="fileFolderService" />
<property name="contentService" ref="contentService" />
<property name="siteService" ref="SiteService" />
<property name="ruleService" ref="ruleService" />
<property name="avmService" ref="AVMService" />
<property name="hiddenAspect" ref="hiddenAspect" />
<property name="avmStore"><value>sitestore</value></property>
<property name="avmRootPath"><value>/alfresco/site-data</value></property>
<property name="dependsOn" >
<list>
<ref bean="patch.migrateTenantsFromAttrsToTable" />
<ref bean="patch.migrateAttrTenants" />
</list>
</property>
</bean> -->
<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>
<bean id="ExtendedPermissionService_security" class="org.alfresco.repo.security.permissions.impl.acegi.MethodSecurityInterceptor">
<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.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>
<bean name="writersSharedCache" class="org.alfresco.repo.cache.DefaultSimpleCache">
<property name="maxItems" value="${cache.writersSharedCache.maxItems}"/>
</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>
<bean id="permissionServiceImpl" class="org.alfresco.repo.security.permissions.impl.RMPermissionServiceImpl" init-method="init">
<property name="writersCache" ref="writersCache"/>
<property name="nodeService">
<ref bean="mtAwareNodeService" />
</property>
<property name="tenantService">
<ref bean="tenantService"/>
</property>
<property name="dictionaryService">
<ref bean="dictionaryService" />
</property>
<property name="permissionsDaoComponent">
<ref bean="permissionsDaoComponent" />
</property>
<property name="modelDAO">
<ref bean="permissionsModelDAO" />
</property>
<property name="authorityService">
<ref bean="authorityService" />
</property>
<property name="accessCache">
<ref bean="permissionsAccessCache" />
</property>
<property name="readersCache">
<ref bean="readersCache" />
</property>
<property name="readersDeniedCache">
<ref bean="readersDeniedCache" />
</property>
<property name="policyComponent">
<ref bean="policyComponent" />
</property>
<property name="aclDAO">
<ref bean="aclDAO" />
</property>
<property name="ownableService">
<ref bean="ownableService" />
</property>
<property name="anyDenyDenies">
<value>${security.anyDenyDenies}</value>
</property>
<property name="dynamicAuthorities">
<list>
<ref bean="ownerDynamicAuthority" />
<ref bean="lockOwnerDynamicAuthority" />
<ref bean="extendedWriterDynamicAuthority" />
<ref bean="extendedReaderDynamicAuthority" />
</list>
</property>
</bean>
<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" />
</bean>
<bean id="dateParameterProcessor" parent="baseParamenterProcessor" class="org.alfresco.repo.action.parameter.DateParameterProcessor">
<property name="name" value="date" />
</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="filePlanAuthenticationService" ref="FilePlanAuthenticationService"/>
<property name="filePlanService" ref="FilePlanService" />
<property name="runAsRmAdmin">
<value>${rm.rule.runasrmadmin}</value>
</property>
</bean>
<bean id="FormService_security" class="org.alfresco.repo.security.permissions.impl.acegi.MethodSecurityInterceptor">
<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

@@ -0,0 +1,28 @@
#
# 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
#
# 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
#
# Behaviour debug
#
log4j.logger.org.alfresco.repo.policy.annotation.AnnotatedBehaviourPostProcessor=debug
log4j.logger.org.alfresco.module.org_alfresco_module_rm.behaviour.BaseBehaviourBean=debug

View File

@@ -0,0 +1,38 @@
rm.action.not-defined=The records management action {0} has not been defined.
rm.action.no-implicit-noderef=The records management action {0} couldn't be performed, because the action implementation doesn't provide an implicit nodeRef.
rm.action.record-not-declared=The disposition action {0} couldn't be performed, because the record isn't complete. (actionedUponNodeRef={1})
rm.action.expected-record-level=The disposition action {0} couldn't be performed, because this isn't a record. (actionedUponNodeRef={1})
rm.action.not-all-records-declared=The disposition action {0} couldn't be performed, because not all the records in the record folder are complete. (actionedUponNodeRef={1})
rm.action.not-eligible=The disposition action {0} couldn't be performed, because the next disposition action on the record or record folder isn't eligible. (actionedUponNodeRef={1})
rm.action.no-disposition-instructions=The disposition action {0} couldn't be performed, because no disposition instructions could be found. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=The disposition action {0} couldn't be performed, because there's no available disposition life-cycle set. (nodeRef={1})
rm.action.next-disp-not-set=The disposition action {0} couldn't be performed, because the next disposition action isn't set. (nodeRef={1})
rm.action.not-next-disp=The disposition action {0} couldn't be performed, because this isn't the next disposition action for this record or record folder. (nodeRef={1})
rm.action.not-record-folder=The disposition action {0} couldn't be performed, because this isn't a record folder. (nodeRef={1})
rm.action.actioned-upon-not-record=The action {0} can't be performed because this isn't a record. (filePlanComponet={1})
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 disposition lifecycle.
rm.action.undeclared-only-records=Only records can be completed. (nodeRef={0})
rm.action.no-declare-mand-prop=The record can't be completed, because not all the records mandatory properties have been set.
rm.action.ghosted-prop-update=The content properties of a previously destroyed record can't be updated.
rm.action.valid-date-disp-asof=The disposition action as of date must be a valid date.
rm.action.disp-asof-lifecycle-applied=The disposition as of date for a record or record folder which has a lifecycle applied can't be edited.
rm.action.hold-edit-reason-none=The hold reason can't be edited, because no reason has been given.
rm.action.hold-edit-type=The hold reason can't be edited, because actioned upon node is not of type {0}. (nodeRef={1})
rm.action.specify-avlid-date=The review as of date must be a valid date.
rm.action.review-details-only=Only the review details of vital records can be edited.
rm.action.freeze-no-reason=A record can't be frozen without a reason.
rm.action.freeze-only-records-folders=Only records or record folders can be frozen.
rm.action.no-open-record-folder=The record folder couldn't be opened because it's not defined as a record folder. (actionedUponNodeRef={0})
rm.action.not-hold-type=The hold couldn't be relinquished, because the node isn't of type {0}. (actionedUponNodeRef={1})
rm.action.no-read-mime-message=The mimetype message couldn't be read, because {0}.
rm.action.email-declared=The email couldn't be split, because the record is complete. (actionedUponNodeRef={0})
rm.action.email-not-record=The email couldn't be split, because the node isn't a record. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=Couldn't create custom child association.
rm.action.node-already-transfer=The node is already being transferred.
rm.action.node-not-transfer=The node is not a transfer object.
rm.action.undo-not-last=The cut off can't be undone, because the last disposition action was not cut off.
rm.action.records_only_undeclared=Only records can be completed.
rm.action.event-not-undone=The event {0} can't be undone, because it's not defined on the disposition lifecycle.
rm.action.node-not-record-category=The disposition schedule could not be created, because the actioned upon node ({0}) was not a record category.
rm.action.parameter-not-supplied=The parameter ''{0}'' has not been supplied.

View File

@@ -0,0 +1,38 @@
rm.action.not-defined=Die Records Management-Aktion {0} wurde nicht definiert.
rm.action.no-implicit-noderef=Die Records Management-Aktion {0} konnte nicht durchgef\u00fchrt werden, da bei der Implementierung der Aktion keine implizite nodeRef bereitgestellt wird.
rm.action.record-not-declared=Die Dispositionsaktion {0} konnte nicht durchgef\u00fchrt werden, da der Datensatz unvollst\u00e4ndig ist. (actionedUponNodeRef={1})
rm.action.expected-record-level=Die Dispositionsaktion {0} konnte nicht durchgef\u00fchrt werden, da es sich hierbei nicht um einen Datensatz handelt. (actionedUponNodeRef={1})
rm.action.not-all-records-declared=Die Dispositionsaktion {0} konnte nicht durchgef\u00fchrt werden, da nicht alle Datens\u00e4tze im Datensatzordner abgeschlossen sind. (actionedUponNodeRef={1})
rm.action.not-eligible=Die Dispositionsaktion {0} konnte nicht durchgef\u00fchrt werden, da die n\u00e4chste Dispositionsaktion f\u00fcr den Datensatz bzw. den Datensatzordner nicht geeignet ist. (actionedUponNodeRef={1})
rm.action.no-disposition-instructions=Die Dispositionsaktion {0} konnte nicht durchgef\u00fchrt werden, da keine Dispositionsanweisungen gefunden wurden. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=Die Dispositionsaktion {0} konnte nicht durchgef\u00fchrt werden, da kein verf\u00fcgbarer Dispositionszyklus festgelegt wurde. (nodeRef={1})
rm.action.next-disp-not-set=Die Dispositionsaktion {0} konnte nicht durchgef\u00fchrt werden, da keine folgende Dispositionsaktion festgelegt wurde. (nodeRef={1})
rm.action.not-next-disp=Die Dispositionsaktion {0} konnte nicht durchgef\u00fchrt werden, da es sich hierbei nicht um die n\u00e4chste Dispositionsaktion f\u00fcr den Datensatz bzw. den Datensatzordner handelt. (nodeRef={1})
rm.action.not-record-folder=Die Dispositionsaktion {0} konnte nicht durchgef\u00fchrt werden, da es sich hierbei nicht um einen Datensatzordner handelt. (nodeRef={1})
rm.action.actioned-upon-not-record=Die Aktion {0} kann nicht durchgef\u00fchrt werden, da es sich hierbei nicht um einen Datensatz handelt. (filePlanComponet={1})
rm.action.custom-aspect-not-recognised=Der benutzerdefinierte Typ kann nicht angewendet werden, da er nicht erkannt wird. (customAspect={0})
rm.action.close-record-folder-not-folder=Der Datensatzordner konnte nicht geschlossen werden, da er nicht als Datensatzordner definiert ist. (nodeRef={0})
rm.action.event-no-disp-lc=Das Ereignis {0} kann nicht abgeschlossen werden, da es nicht im Dispositionszyklus definiert ist.
rm.action.undeclared-only-records=Nur Datens\u00e4tze k\u00f6nnen abgeschlossen werden. (nodeRef={0})
rm.action.no-declare-mand-prop=Der Datensatz kann nicht abgeschlossen werden, da nicht alle f\u00fcr die Datens\u00e4tze erforderlichen Eigenschaften festgelegt wurden.
rm.action.ghosted-prop-update=Die Inhaltseigenschaften eines zuvor vernichteten Datensatzes k\u00f6nnen nicht aktualisiert werden.
rm.action.valid-date-disp-asof=Das Startdatum der Dispositionsaktion muss ein g\u00fcltiges Datum sein.
rm.action.disp-asof-lifecycle-applied=Das Startdatum der Disposition f\u00fcr einen Datensatz oder Datensatzordner mit festgelegtem Dispositionszyklus kann nicht bearbeitet werden.
rm.action.hold-edit-reason-none=Der Sperrgrund kann nicht bearbeitet werden, da kein Grund angegeben wurde.
rm.action.hold-edit-type=Der Sperrgrund kann nicht bearbeitet werden, da der bearbeitete Node nicht vom Typ {0} ist. (nodeRef={1})
rm.action.specify-avlid-date=Das Startdatum der \u00dcberpr\u00fcfung muss ein g\u00fcltiges Datum sein.
rm.action.review-details-only=Nur die \u00dcberpr\u00fcfungsdetails erforderlicher Datens\u00e4tze k\u00f6nnen bearbeitet werden.
rm.action.freeze-no-reason=Ein Datensatz kann nicht ohne Grund fixiert werden.
rm.action.freeze-only-records-folders=Nur Datens\u00e4tze oder Datensatzordner k\u00f6nnen fixiert werden.
rm.action.no-open-record-folder=Der Datensatzordner konnte nicht ge\u00f6ffnet werden, da er nicht als Datensatzordner definiert ist. (actionedUponNodeRef={0})
rm.action.not-hold-type=Die Sperrung konnte nicht aufgehoben werden, da der Node nicht vom Typ {0} ist. (actionedUponNodeRef={1})
rm.action.no-read-mime-message=Die MimeType-Nachricht konnte nicht gelesen werden, da {0}.
rm.action.email-declared=Die E-Mail konnte nicht geteilt werden, da der Datensatz abgeschlossen ist. (actionedUponNodeRef={0})
rm.action.email-not-record=Die E-Mail konnte nicht geteilt werden, da der Node kein Datensatz ist. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=Benutzerdefinierte Kindzuordnung konnte nicht erstellt werden.
rm.action.node-already-transfer=Der Node wird bereits \u00fcbertragen.
rm.action.node-not-transfer=Der Node ist kein \u00dcbertragungsobjekt.
rm.action.undo-not-last=Trennung kann nicht r\u00fcckg\u00e4ngig gemacht werden, da die letzte Dispositionsaktion nicht getrennt wurde.
rm.action.records_only_undeclared=Nur Datens\u00e4tze k\u00f6nnen abgeschlossen werden.
rm.action.event-not-undone=Das Ereignis {0} kann nicht r\u00fcckg\u00e4ngig gemacht werden, da es nicht im Dispositionszyklus definiert ist.
rm.action.actioned-upon-has-aspect=Der Node {0} hat bereits den Aspekt {1}.

View File

@@ -0,0 +1,38 @@
rm.action.not-defined=No se ha definido la acci\u00f3n de gesti\u00f3n de documentos de archivo {0}.
rm.action.no-implicit-noderef=No se pudo realizar la acci\u00f3n de gesti\u00f3n de documentos de archivo {0} porque la implementaci\u00f3n de la acci\u00f3n no proporciona ning\u00fan nodeRef impl\u00edcito.
rm.action.record-not-declared=No se pudo realizar la acci\u00f3n de disposici\u00f3n {0} porque el documento de archivo no est\u00e1 completo. (actionedUponNodeRef={1})
rm.action.expected-record-level=No se pudo realizar la acci\u00f3n de disposici\u00f3n {0} porque no es un documento de archivo. (actionedUponNodeRef={1})
rm.action.not-all-records-declared=No se pudo realizar la acci\u00f3n de disposici\u00f3n {0} porque no todos los documentos de archivo de la carpeta de archivos est\u00e1n completos. (actionedUponNodeRef={1})
rm.action.not-eligible=No se pudo realizar la acci\u00f3n de disposici\u00f3n {0} porque la siguiente acci\u00f3n de disposici\u00f3n del documento de archivo o de la carpeta de archivos no re\u00fane los requisitos. (actionedUponNodeRef={1})
rm.action.no-disposition-instructions=No se pudo realizar la acci\u00f3n de disposici\u00f3n {0} porque no se ha encontrado ninguna instrucci\u00f3n de disposici\u00f3n. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=No se pudo realizar la acci\u00f3n de disposici\u00f3n {0} porque no hay ning\u00fan ciclo de vida de disposici\u00f3n disponible. (nodeRef={1})
rm.action.next-disp-not-set=No se pudo realizar la acci\u00f3n de disposici\u00f3n {0} porque la siguiente acci\u00f3n de disposici\u00f3n no est\u00e1 definida. (nodeRef={1})
rm.action.not-next-disp=No se pudo realizar la acci\u00f3n de disposici\u00f3n {0} porque no es la siguiente acci\u00f3n de disposici\u00f3n para este documento de archivo o carpeta de archivos. (nodeRef={1})
rm.action.not-record-folder=No se pudo realizar la acci\u00f3n de disposici\u00f3n {0} porque no es una carpeta de archivos. (nodeRef={1})
rm.action.actioned-upon-not-record=No se puede realizar la acci\u00f3n {0} porque no es un documento de archivo. (filePlanComponet={1})
rm.action.custom-aspect-not-recognised=El tipo personalizado no puede aplicarse porque no se reconoce. (customAspect={0})
rm.action.close-record-folder-not-folder=No se pudo cerrar la carpeta de archivos porque no est\u00e1 definida como una carpeta de documentos de archivo.(nodeRef={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 disposici\u00f3n.
rm.action.undeclared-only-records=Solo se pueden completar los documentos de archivo. (nodeRef={0})
rm.action.no-declare-mand-prop=No se pueden completar los documentos de archivo porque no se han definido todas las propiedades obligatorias de los archivos.
rm.action.ghosted-prop-update=Las propiedades del contenido de un documento de archivo destruido anteriormente no se pueden actualizar.
rm.action.valid-date-disp-asof=La fecha de inicio de la acci\u00f3n de disposici\u00f3n debe ser una fecha v\u00e1lida.
rm.action.disp-asof-lifecycle-applied=La fecha de inicio de la disposici\u00f3n de un documento de archivo o carpeta de archivos que tiene un ciclo de vida aplicado no puede editarse.
rm.action.hold-edit-reason-none=La raz\u00f3n de bloqueo no puede editarse porque no se ha dado ninguna raz\u00f3n.
rm.action.hold-edit-type=La raz\u00f3n de bloqueo no puede editarse porque la acci\u00f3n en el nodo no es de tipo {0}. (nodeRef={1})
rm.action.specify-avlid-date=La fecha de inicio de la revisi\u00f3n debe ser una fecha v\u00e1lida.
rm.action.review-details-only=Solo se pueden editar los detalles de revisi\u00f3n de los documentos de archivo vitales.
rm.action.freeze-no-reason=No se puede congelar un documento de archivo sin ninguna raz\u00f3n.
rm.action.freeze-only-records-folders=Solo los documentos de archivo o carpetas de archivos pueden congelarse.
rm.action.no-open-record-folder=No se pudo abrir la carpeta de archivos porque no est\u00e1 definida como una carpeta de documentos de archivo. (actionedUponNodeRef={0})
rm.action.not-hold-type=El bloqueo no puede eliminarse porque el nodo no es de tipo {0}. (actionedUponNodeRef={1})
rm.action.no-read-mime-message=No se pudo leer el mensaje de tipo MIME porque {0}.
rm.action.email-declared=No se pudo dividir el correo electr\u00f3nico porque el documento de archivo est\u00e1 completo. (actionedUponNodeRef={0})
rm.action.email-not-record=No se pudo dividir el correo electr\u00f3nico porque el nodo no es un documento de archivo. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=No se pudo crear la asociaci\u00f3n secundaria personalizada.
rm.action.node-already-transfer=El nodo ya se est\u00e1 transfiriendo.
rm.action.node-not-transfer=El nodo no es un objeto de transferencia.
rm.action.undo-not-last=La interrupci\u00f3n no puede deshacerse porque la \u00faltima acci\u00f3n de disposici\u00f3n no se interrumpi\u00f3.
rm.action.records_only_undeclared=Solo se pueden completar los documentos de archivo.
rm.action.event-not-undone=No se puede deshacer el evento {0} porque no est\u00e1 definido en el ciclo de vida de la disposici\u00f3n.
rm.action.actioned-upon-has-aspect=El nodo {0} ya tiene el aspecto {1}.

View File

@@ -0,0 +1,38 @@
rm.action.not-defined=L''action d''archivage \u00e9lectronique {0} n''a pas \u00e9t\u00e9 d\u00e9finie.
rm.action.no-implicit-noderef=L''action d''archivage \u00e9lectronique {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car l''impl\u00e9mentation de l''action ne fournit pas une r\u00e9f\u00e9rence de n\u0153ud implicite.
rm.action.record-not-declared=L''action de disposition {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car le document d'archives n''est pas complet. (actionedUponNodeRef={1})
rm.action.expected-record-level=L''action de disposition {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car il ne s''agit pas d''un document d'archives. (actionedUponNodeRef={1})
rm.action.not-all-records-declared=L''action de disposition {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=L''action de disposition {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car l''action de disposition suivante sur le document d'archives ou le dossier d''archives n''est pas \u00e9ligible. (actionedUponNodeRef={1})
rm.action.no-disposition-instructions=L''action de disposition {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car aucune instruction de disposition n''a \u00e9t\u00e9 trouv\u00e9e. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=L''action de disposition {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car aucun ensemble de cycles de vide de disposition n''est disponible. (nodeRef={1})
rm.action.next-disp-not-set=L''action de disposition {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car l''action de disposition suivante n''est pas d\u00e9finie. (nodeRef={1})
rm.action.not-next-disp=L''action de disposition {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car il ne s''agit pas de l''action de disposition suivante pour cet document d''archives ou ce dossier d''archives. (nodeRef={1})
rm.action.not-record-folder=L''action de disposition {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car il ne s''agit pas d''un dossier d''archives. (nodeRef={1})
rm.action.actioned-upon-not-record=L''action {0} n''a pas pu \u00eatre ex\u00e9cut\u00e9e, car il ne s''agit pas d''un document d''archives. (filePlanComponet={1})
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.close-record-folder-not-folder=Le dossier d''archives n''a pas pu \u00eatre ferm\u00e9, car il n'est pas d\u00e9fini comme dossier d''archives.(nodeRef={0})
rm.action.event-no-disp-lc=L''\u00e9v\u00e9nement {0} ne peut pas \u00eatre compl\u00e9t\u00e9, car il n''est pas d\u00e9fini dans le cycle de vie de disposition.
rm.action.undeclared-only-records=Seuls les documents d''archives peuvent \u00eatre compl\u00e9t\u00e9s. (nodeRef={0})
rm.action.no-declare-mand-prop=Le document d'archives ne peut pas \u00eatre compl\u00e9t\u00e9, car les propri\u00e9t\u00e9s obligatoires des documents d'archives ne sont pas toutes d\u00e9finies.
rm.action.ghosted-prop-update=Les propri\u00e9t\u00e9s de contenu d'un document d'archives d\u00e9truit ne peuvent pas \u00eatre mises \u00e0 jour.
rm.action.valid-date-disp-asof=La date de d\u00e9but d'action de disposition doit \u00eatre une date valide.
rm.action.disp-asof-lifecycle-applied=La date de d\u00e9but d'action de disposition d'un document d'archives ou d'un dossier d'archives auquel est appliqu\u00e9 un cycle de vie ne peut pas \u00eatre modifi\u00e9e.
rm.action.hold-edit-reason-none=La raison de la suspension ne peut pas \u00eatre modifi\u00e9e, car aucun motif n'a \u00e9t\u00e9 fourni.
rm.action.hold-edit-type=La raison de la suspension ne peut pas \u00eatre modifi\u00e9e, car l''action sur le n\u0153ud n''est pas de type {0}. (nodeRef={1})
rm.action.specify-avlid-date=La date de d\u00e9but de v\u00e9rification doit \u00eatre une date valide.
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 gel\u00e9 sans motif.
rm.action.freeze-only-records-folders=Seuls les documents d'archives ou les dossiers d'archives peuvent \u00eatre gel\u00e9s.
rm.action.no-open-record-folder=Le dossier d'archives n'a pas pu \u00eatre ouvert, car il n'est pas d\u00e9fini comme dossier d'archives. (actionedUponNodeRef={0})
rm.action.not-hold-type=La suspension n''a pas pu \u00eatre lev\u00e9e, car le n\u0153ud n''est pas de type {0}. (actionedUponNodeRef={1})
rm.action.no-read-mime-message=Le message mimetype est illisible, car {0}.
rm.action.email-declared=L''e-mail ne peut pas \u00eatre partag\u00e9, car le document d''archives n''est pas complet. (actionedUponNodeRef={0})
rm.action.email-not-record=L''e-mail n''a pas pu \u00eatre fractionn\u00e9, car le n\u0153ud 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 n\u0153ud est d\u00e9j\u00e0 en cours de transfert.
rm.action.node-not-transfer=Le n\u0153ud n'est pas un objet de transfert.
rm.action.undo-not-last=La limitation ne peut pas \u00eatre annul\u00e9e, car la derni\u00e8re action de disposition n'\u00e9tait pas celle de limitation.
rm.action.records_only_undeclared=Seuls les documents d'archives peuvent \u00eatre compl\u00e9t\u00e9s.
rm.action.event-not-undone=L''\u00e9v\u00e9nement {0} ne peut pas \u00eatre annul\u00e9, car il n''est pas d\u00e9fini dans le cycle de vie de disposition.
rm.action.actioned-upon-has-aspect=Le n\u0153ud {0} a d\u00e9j\u00e0 l'aspect {1}.

View File

@@ -0,0 +1,38 @@
rm.action.not-defined=L''azione di gestione dei record {0} non \u00e8 stata definita.
rm.action.no-implicit-noderef=Impossibile eseguire l''azione di gestione dei record {0}, poich\u00e9 l''implementazione dell''azione non fornisce un nodeRef implicito.
rm.action.record-not-declared=Impossibile eseguire l''azione di disposizione {0}, poich\u00e9 il record non \u00e8 completo. (actionedUponNodeRef={1})
rm.action.expected-record-level=Impossibile eseguire l''azione di disposizione {0}, poich\u00e9 questo non \u00e8 un record. (actionedUponNodeRef={1})
rm.action.not-all-records-declared=Impossibile eseguire l''azione di disposizione {0}, poich\u00e9 non tutti i record presenti nella cartella di record sono completi. (actionedUponNodeRef={1})
rm.action.not-eligible=Impossibile eseguire l''azione di disposizione {0}, poich\u00e9 l''azione di disposizione successiva sul record o sulla cartella di record non \u00e8 idonea. (actionedUponNodeRef={1})
rm.action.no-disposition-instructions=Impossibile eseguire l''azione di disposizione {0}, poich\u00e9 non sono state trovate istruzioni di disposizione. (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=Impossibile eseguire l''azione di disposizione {0}, poich\u00e9 non \u00e8 disponibile alcun ciclo di vita della disposizione impostato. (nodeRef={1})
rm.action.next-disp-not-set=Impossibile eseguire l''azione di disposizione {0}, poich\u00e9 l''azione di disposizione successiva non \u00e8 impostata. (nodeRef={1})
rm.action.not-next-disp=Impossibile eseguire l''azione di disposizione {0}, poich\u00e9 questa non \u00e8 l''azione di disposizione successiva per questo record o cartella di record. (nodeRef={1})
rm.action.not-record-folder=Impossibile eseguire l''azione di disposizione {0}, poich\u00e9 questa non \u00e8 una cartella di record. (nodeRef={1})
rm.action.actioned-upon-not-record=Impossibile eseguire l''azione di disposizione {0} poich\u00e9 questo non \u00e8 un record. (filePlanComponet={1})
rm.action.custom-aspect-not-recognised=Impossibile applicare il tipo personalizzato poich\u00e9 non \u00e8 riconosciuto. (customAspect={0})
rm.action.close-record-folder-not-folder=Impossibile chiudere la cartella di record poich\u00e9 non \u00e8 definita come cartella di record.(nodeRef={0})
rm.action.event-no-disp-lc=Impossibile completare l''evento {0}, poich\u00e9 non \u00e8 definito come ciclo di vita della disposizione.
rm.action.undeclared-only-records=\u00c8 possibile completare solo i record. (nodeRef={0})
rm.action.no-declare-mand-prop=Impossibile completare il record poich\u00e9 non sono state impostate tutte le propriet\u00e0 obbligatorie dei record.
rm.action.ghosted-prop-update=Non \u00e8 possibile aggiornare le propriet\u00e0 del contenuto di un record eliminato definitivamente in precedenza.
rm.action.valid-date-disp-asof=L'azione di disposizione in data deve essere una data valida.
rm.action.disp-asof-lifecycle-applied=Non \u00e8 possibile modificare la disposizione in data di un record o di una cartella di record che ha un ciclo di vita applicato.
rm.action.hold-edit-reason-none=Non \u00e8 possibile modificare il motivo di esenzione, poich\u00e9 non \u00e8 stato fornito alcun motivo.
rm.action.hold-edit-type=Non \u00e8 possibile modificare il motivo di esenzione, poich\u00e9 actioned upon node non \u00e8 del tipo {0}. (nodeRef={1})
rm.action.specify-avlid-date=La revisione in data deve essere una data valida.
rm.action.review-details-only=\u00c8 possibile modificare solo i dettagli di revisione dei record essenziali.
rm.action.freeze-no-reason=Non \u00e8 possibile bloccare un record senza alcun motivo.
rm.action.freeze-only-records-folders=\u00c8 possibile bloccare solo i record o le cartelle di record..
rm.action.no-open-record-folder=Impossibile aprire la cartella di record poich\u00e9 non \u00e8 definita come cartella di record. (actionedUponNodeRef={0})
rm.action.not-hold-type=Impossibile interrompere l''esenzione poich\u00e9 il nodo non \u00e8 del tipo {0}. (actionedUponNodeRef={1})
rm.action.no-read-mime-message=Impossibile leggere il messaggio tipo MIME a causa di {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 nodo non \u00e8 un record. (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=Impossibile creare un'associazione figlio personalizzata.
rm.action.node-already-transfer=Il nodo \u00e8 gi\u00e0 in corso di trasferimento.
rm.action.node-not-transfer=Il nodo non \u00e8 un oggetto di trasferimento.
rm.action.undo-not-last=Non \u00e8 possibile eseguire il taglio poich\u00e9 l'ultima azione di disposizione non \u00e8 stata tagliata.
rm.action.records_only_undeclared=\u00c8 possibile completare solo i record.
rm.action.event-not-undone=Non \u00e8 possibile annullare l''evento {0}, poich\u00e9 non \u00e8 definito come ciclo di vita della disposizione.
rm.action.actioned-upon-has-aspect=Il nodo {0} ha gi\u00e0 l''aspetto {1}.

View File

@@ -0,0 +1,38 @@
rm.action.not-defined=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30a2\u30af\u30b7\u30e7\u30f3{0}\u306f\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002
rm.action.no-implicit-noderef=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30a2\u30af\u30b7\u30e7\u30f3{0}\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u5b9f\u88c5\u306b\u306f\u9593\u63a5\u7684\u306anodeRef\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3067\u3059\u3002
rm.action.record-not-declared=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3{0}\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u30ec\u30b3\u30fc\u30c9\u304c\u5b8c\u4e86\u3057\u3066\u3044\u306a\u3044\u305f\u3081\u3067\u3059\u3002 (actionedUponNodeRef={1})
rm.action.expected-record-level=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3{0}\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u3053\u308c\u306f\u30ec\u30b3\u30fc\u30c9\u3067\u306f\u306a\u3044\u305f\u3081\u3067\u3059\u3002 (actionedUponNodeRef={1})
rm.action.not-all-records-declared=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3{0}\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\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\u3067\u3059\u3002 (actionedUponNodeRef={1})
rm.action.not-eligible=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3{0}\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3067\u306e\u6b21\u56de\u306e\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u304c\u8a31\u53ef\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3067\u3059\u3002 (actionedUponNodeRef={1})
rm.action.no-disposition-instructions=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3{0}\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u5ec3\u68c4\u6307\u793a\u304c\u898b\u3064\u304b\u3089\u306a\u304b\u3063\u305f\u305f\u3081\u3067\u3059\u3002 (nodeRef={1})
rm.action.no-disposition-lisfecycle-set=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3{0}\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u4f7f\u7528\u53ef\u80fd\u306a\u5ec3\u68c4\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u30bb\u30c3\u30c8\u304c\u306a\u3044\u305f\u3081\u3067\u3059\u3002 (nodeRef={1})
rm.action.next-disp-not-set=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3{0}\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u6b21\u56de\u306e\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3067\u3059\u3002 (nodeRef={1})
rm.action.not-next-disp=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3{0}\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u3053\u308c\u306f\u3053\u306e\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3067\u306e\u6b21\u56de\u306e\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u3067\u306f\u306a\u3044\u305f\u3081\u3067\u3059\u3002 (nodeRef={1})
rm.action.not-record-folder=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3{0}\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u3053\u308c\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3067\u306f\u306a\u3044\u305f\u3081\u3067\u3059\u3002 (nodeRef={1})
rm.action.actioned-upon-not-record=\u30a2\u30af\u30b7\u30e7\u30f3{0}\u3092\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3002\u3053\u308c\u306f\u30ec\u30b3\u30fc\u30c9\u3067\u306f\u306a\u3044\u305f\u3081\u3067\u3059\u3002 (filePlanComponet={1})
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.close-record-folder-not-folder=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u9589\u3058\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3068\u3057\u3066\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3067\u3059\u3002(nodeRef={0})
rm.action.event-no-disp-lc=\u30a4\u30d9\u30f3\u30c8{0}\u3092\u5b8c\u4e86\u3067\u304d\u307e\u305b\u3093\u3002\u5ec3\u68c4\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u3067\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3067\u3059\u3002
rm.action.undeclared-only-records=\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u304c\u5b8c\u4e86\u3067\u304d\u307e\u3059\u3002 (nodeRef={0})
rm.action.no-declare-mand-prop=\u30ec\u30b3\u30fc\u30c9\u3092\u5b8c\u4e86\u3067\u304d\u307e\u305b\u3093\u3002\u4e00\u90e8\u306e\u30ec\u30b3\u30fc\u30c9\u5fc5\u9808\u30d7\u30ed\u30d1\u30c6\u30a3\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3067\u3059\u3002
rm.action.ghosted-prop-update=\u4ee5\u524d\u306b\u7834\u68c4\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u30d7\u30ed\u30d1\u30c6\u30a3\u304c\u66f4\u65b0\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.valid-date-disp-asof=\u73fe\u6642\u70b9\u306e\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306f\u6709\u52b9\u306a\u65e5\u4ed8\u3067\u3042\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
rm.action.disp-asof-lifecycle-applied=\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u3092\u9069\u7528\u3057\u305f\u73fe\u6642\u70b9\u306e\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u5ec3\u68c4\u306f\u3001\u7de8\u96c6\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.hold-edit-reason-none=\u4fdd\u7559\u7406\u7531\u306f\u7de8\u96c6\u3067\u304d\u307e\u305b\u3093\u3002\u7406\u7531\u304c\u793a\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3067\u3059\u3002
rm.action.hold-edit-type=\u4fdd\u7559\u7406\u7531\u306f\u7de8\u96c6\u3067\u304d\u307e\u305b\u3093\u3002\u30a2\u30af\u30b7\u30e7\u30f3\u3092\u884c\u3063\u305f\u30ce\u30fc\u30c9\u304c\u30bf\u30a4\u30d7{0}\u3067\u306f\u306a\u3044\u305f\u3081\u3067\u3059\u3002 (nodeRef={1})
rm.action.specify-avlid-date=\u73fe\u6642\u70b9\u306e\u30ec\u30d3\u30e5\u30fc\u306f\u6709\u52b9\u306a\u65e5\u4ed8\u3067\u3042\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
rm.action.review-details-only=\u5fc5\u9808\u30ec\u30b3\u30fc\u30c9\u306e\u30ec\u30d3\u30e5\u30fc\u8a73\u7d30\u306e\u307f\u304c\u7de8\u96c6\u3067\u304d\u307e\u3059\u3002
rm.action.freeze-no-reason=\u30ec\u30b3\u30fc\u30c9\u306f\u7406\u7531\u304c\u306a\u3051\u308c\u3070\u56fa\u5b9a\u3067\u304d\u307e\u305b\u3093\u3002
rm.action.freeze-only-records-folders=\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u307f\u304c\u56fa\u5b9a\u3067\u304d\u307e\u3059\u3002
rm.action.no-open-record-folder=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u958b\u3051\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3068\u3057\u3066\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3067\u3059\u3002 (actionedUponNodeRef={0})
rm.action.not-hold-type=\u4fdd\u7559\u3092\u653e\u68c4\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u30ce\u30fc\u30c9\u304c\u30bf\u30a4\u30d7{0}\u3067\u306f\u306a\u3044\u305f\u3081\u3067\u3059\u3002 (actionedUponNodeRef={1})
rm.action.no-read-mime-message=MIME\u30bf\u30a4\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u8aad\u307f\u53d6\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002{0}\u306e\u305f\u3081\u3067\u3059\u3002
rm.action.email-declared=E\u30e1\u30fc\u30eb\u3092\u5206\u5272\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u30ec\u30b3\u30fc\u30c9\u304c\u5b8c\u4e86\u3057\u3066\u3044\u308b\u305f\u3081\u3067\u3059\u3002 (actionedUponNodeRef={0})
rm.action.email-not-record=E\u30e1\u30fc\u30eb\u3092\u5206\u5272\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u30ce\u30fc\u30c9\u304c\u30ec\u30b3\u30fc\u30c9\u3067\u306f\u306a\u3044\u305f\u3081\u3067\u3059\u3002 (actionedUponNodeRef={0})
rm.action.email-create-child-assoc=\u30ab\u30b9\u30bf\u30e0\u5b50\u30a2\u30bd\u30b7\u30a8\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
rm.action.node-already-transfer=\u30ce\u30fc\u30c9\u306f\u3059\u3067\u306b\u8ee2\u9001\u3055\u308c\u3066\u3044\u308b\u3068\u3053\u308d\u3067\u3059\u3002
rm.action.node-not-transfer=\u30ce\u30fc\u30c9\u306f\u8ee2\u9001\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002
rm.action.undo-not-last=\u30ab\u30c3\u30c8\u30aa\u30d5\u3092\u5143\u306b\u623b\u305b\u307e\u305b\u3093\u3002\u76f4\u524d\u306e\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u304c\u30ab\u30c3\u30c8\u30aa\u30d5\u3055\u308c\u3066\u3044\u306a\u304b\u3063\u305f\u305f\u3081\u3067\u3059\u3002
rm.action.records_only_undeclared=\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u304c\u5b8c\u4e86\u3067\u304d\u307e\u3059\u3002
rm.action.event-not-undone=\u30a4\u30d9\u30f3\u30c8{0}\u3092\u5143\u306b\u623b\u305b\u307e\u305b\u3093\u3002\u5ec3\u68c4\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb\u3067\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044\u305f\u3081\u3067\u3059\u3002
rm.action.actioned-upon-has-aspect=\u30ce\u30fc\u30c9{0}\u306b\u306f\u3059\u3067\u306b\u30a2\u30b9\u30da\u30af\u30c8{1}\u304c\u3042\u308a\u307e\u3059\u3002

View File

@@ -0,0 +1,177 @@
#
# i18n for Records Management Action Conditions
#
# Are classified
isClassified.title=Classified by disposition schedule
isClassified.description=Has the records or record folders been classified by a disposition schedule.
# Are cutoff
isCutoff.title=Cutoff
isCutoff.description=Records or record folders are cutoff.
# Are declared
isDeclared.title=Record completed
isDeclared.description=Is the record complete.
# Are frozen
isFrozen.title=Frozen
isFrozen.description=Is the record or record folder frozen.
# Are filed
isRecordFiled.title=Record filed
isRecordFiled.description=Is the record filed.
# Are closed record folders
isRecordFolderClosed.title=Record folder closed.
isRecordFolderClosed.description=Is the record folder closed.
# Are vital
isVital.title=Vital record
isVital.description=Is the record or record folder vital.
# Have Disposition Action
hasDispositionAction.title=Has disposition action
hasDispositionAction.description=Have the nodes got the specified associated disposition action at the specified relative position.
# Are kind
isKind.title=Type of records management item
isKind.description=Are the nodes of a file plan component kind.
isKind.kind.display-label=Kind
# Are Record Type
isRecordType.title=Has record type
isRecordType.description=Are the records of the specified type.
#
# i18n for Records Management Actions
#
# Declare As Record
create-record.title=Declare as record
create-record.description=Declares document as a record.
create-record.file-plan.display-label=File plan
create-record.hide-record.display-label=Hide Record
# 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.createRecordFolder.display-label=Create Record Folder
# Reject
reject.title=Reject
reject.description=Rejects a record and moves the document 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 hold reason
# Relinquish Hold
relinquishHold.title=Relinquish hold
relinquishHold.description=Relinquish 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 disposition action as of date
editDispositionActionAsOfDate.description=Edit disposition action as of date
# Broadcast Vital Record Definition
broadcastVitalRecordDefinition.title=Broadcast vital record definition
broadcastVitalRecordDefinition.description=Broadcast vital record definition
# Broadcast Disposition Action Definition Update
broadcastDispositionActionDefinitionUpdate.title=Broadcast disposition action definition update
broadcastDispositionActionDefinitionUpdate.description=Broadcast disposition 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 Disposition Schedule
createDispositionSchedule.title=Create disposition schedule
createDispositionSchedule.description=Create disposition 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=Uncut off
unCutoff.description=Uncut 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
# Destruction report
destructionReport.title=Destruction report
destructionReport.description=Destruction report
# Transfer Report
transferReport.title=Transfer Report
transferReport.description=Transfer Report
# 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

View File

@@ -0,0 +1,172 @@
#
# i18n for Records Management Action Conditions
#
# Are classified
isClassified.title=Nach Dispositionsplan klassifiziert
isClassified.description=Gibt an, ob die Datens\u00e4tze oder Datensatzordner durch einen Dispositionsplan klassifiziert wurden.
# Are cutoff
isCutoff.title=Trennen
isCutoff.description=Gibt an, ob die Datens\u00e4tze oder Datensatzordner getrennt sind.
# Are declared
isDeclared.title=Datensatz abgeschlossen
isDeclared.description=Gibt an, ob der Datensatz vollst\u00e4ndig ist
# Are frozen
isFrozen.title=Fixiert
isFrozen.description=Gibt an, ob der Datensatz oder Datensatzordner fixiert ist.
# Are filed
isRecordFiled.title=Datensatz abgelegt
isRecordFiled.description=Gibt an, ob der Datensatz abgelegt ist.
# Are closed record folders
isRecordFolderClosed.title=Datensatzordner geschlossen.
isRecordFolderClosed.description=Gibt an, ob der Datensatzordner geschlossen ist.
# Are vital
isVital.title=Erforderlicher Datensatz
isVital.description=Gibt an, ob der Datensatz oder Datensatzordner erforderlich ist.
# Have Disposition Action
hasDispositionAction.title=Hat Dispositionsaktion
hasDispositionAction.description=Gibt an, ob die Nodes \u00fcber die angegebene zugeordnete Dispositionsaktion an der angegebenen relativen Position verf\u00fcgen.
# Are kind
isKind.title=Typ des Records Management-Objekts
isKind.description=Gibt an, ob die Nodes vom Typ Ablageplan-Komponente sind.
isKind.kind.display-label=Art
# Are Record Type
isRecordType.title=Gibt den Datensatztyp an
isRecordType.description=Gibt an, ob die Datens\u00e4tze vom angegebenen Typ sind.
#
# i18n for Records Management Actions
#
# Declare As Record
create-record.title=Als Datensatz deklarieren
create-record.description=Deklariert das Dokument als Datensatz.
create-record.file-plan.display-label=Ablageplan
create-record.hide-record.display-label=Datensatz ausblenden
# Complete record
declareRecord.title=Datensatz abschlie\u00dfen
declareRecord.description=Schlie\u00dft einen Datensatz ab.
# Reopens record
undeclareRecord.title=Datensatz neu \u00f6ffnen
undeclareRecord.description=\u00d6ffnet einen Datensatz neu.
# Open record folder
openRecordFolder.title=Datensatzordner \u00f6ffnen
openRecordFolder.description=\u00d6ffnet einen Datensatzordner.
# Close record folder
closeRecordFolder.title=Datensatzordner schlie\u00dfen
closeRecordFolder.description=Schlie\u00dft einen Datensatzordner.
# 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 Datensatz.
freeze.reason.display-label=Grund
# Unfreeze
unfreeze.title=Fixierung aufheben
unfreeze.description=Hebt die Fixierung eines Datensatzes auf.
# File to
fileTo.title=Ablegen unter
fileTo.description=Legt einen Datensatz in einem bestimmten Datensatzordner ab.
fileTo.path.display-label=Pfad zum Datensatzordner
fileTo.createRecordFolder.display-label=Datensatzordner erstellen
# Reject
reject.title=Ablehnen
reject.description=Lehnt einen Datensatz ab und verschiebt das Dokument an seinen 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 Datensatz.
# 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 einen 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 Dispositionsaktion bearbeiten
editDispositionActionAsOfDate.description=Bearbeitet das Startdatum der Dispositionsaktion
# Broadcast Vital Record Definition
broadcastVitalRecordDefinition.title=Definition f\u00fcr erforderlichen Datensatz senden
broadcastVitalRecordDefinition.description=Sendet die Definition f\u00fcr erforderlichen Datensatz
# Broadcast Disposition Action Definition Update
broadcastDispositionActionDefinitionUpdate.title=Aktualisierung der Definition f\u00fcr Dispositionsaktion senden
broadcastDispositionActionDefinitionUpdate.description=Sendet die Aktualisierung der Definition f\u00fcr Dispositionsaktion
# 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=Archivaufnahme abgeschlossen
accessionComplete.description=Archivaufnahme abgeschlossen
# Split Email
splitEmail.title=E-Mail teilen
splitEmail.description=Teilt E-Mail
# Create Disposition Schedule
createDispositionSchedule.title=Dispositionsplan erstellen
createDispositionSchedule.description=Dispositionsplan erstellen
# File Destruction Report
fileDestructionReport.title=Bericht \u00fcber vernichtete Datens\u00e4tze ablegen
fileDestructionReport.description=Legt Bericht \u00fcber vernichtete Datens\u00e4tze ab
# Cut off
cutoff.title=Getrennt
cutoff.description=Getrennt
# Destroy
destroy.title=Vernichten
destroy.description=Vernichten
# Reviewed
reviewed.title=\u00dcberpr\u00fcft
reviewed.description=\u00dcberpr\u00fcft
# Hide Record
hide-record.title=Datensatz ausblenden
hide-record.description=Datensatz ausblenden
# Transfer
transfer.title=\u00dcbertragung
transfer.description=\u00dcbertragung
# Uncut off
unCutoff.title=Trennen r\u00fcckg\u00e4ngig
unCutoff.description=Macht Trennen r\u00fcckg\u00e4ngig
# Accession
accession.title=Archivaufnahme
accession.description=Archivaufnahme
# Retain
retain.title=Aufbewahren
retain.description=Aufbewahren
# Add Record Types
addRecordTypes.title=Datensatztypen hinzuf\u00fcgen
addRecordTypes.description=F\u00fcgt ausgew\u00e4hlte Typen zum Datensatz hinzu
# Action parameter constraints
rm-ac-is-kind-kinds.record_category=Datensatzkategorie
rm-ac-is-kind-kinds.record_folder=Datensatzordner
rm-ac-is-kind-kinds.record=Datensatz
rm-ac-disposition-action-relative-positions.next=N\u00e4chste
rm-ac-disposition-action-relative-positions.previous=Vorherige
rm-ac-disposition-action-relative-positions.any=Jede

View File

@@ -0,0 +1,172 @@
#
# i18n for Records Management Action Conditions
#
# Are classified
isClassified.title=Clasificado mediante esquema de disposici\u00f3n
isClassified.description=Los documentos de archivo o las carpetas de archivos se han clasificado mediante un esquema de disposici\u00f3n.
# Are cutoff
isCutoff.title=Interrumpir
isCutoff.description=Los documentos de archivo o carpetas de archivos est\u00e1n interrumpidos.
# Are declared
isDeclared.title=Documento de archivo completado
isDeclared.description=El documento de archivo se ha completado.
# Are frozen
isFrozen.title=Congelado
isFrozen.description=El documento de archivo o la carpeta de archivos est\u00e1 congelado.
# Are filed
isRecordFiled.title=Documento de archivo rellenado
isRecordFiled.description=El documento de archivo se ha rellenado.
# Are closed record folders
isRecordFolderClosed.title=Carpeta de archivos cerrada.
isRecordFolderClosed.description=La carpeta de archivos est\u00e1 cerrada.
# Are vital
isVital.title=Documento de archivo vital
isVital.description=El documento de archivo o la carpeta de archivos es vital.
# Have Disposition Action
hasDispositionAction.title=Tiene acci\u00f3n de disposici\u00f3n
hasDispositionAction.description=Hacer que los nodos tengan la acci\u00f3n de disposici\u00f3n asociada especificada en la posici\u00f3n relativa especificada.
# Are kind
isKind.title=Elemento de gesti\u00f3n de tipo de documentos de archivo
isKind.description=Son los nodos de 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 son del tipo especificado.
#
# i18n for Records Management Actions
#
# Declare As Record
create-record.title=Declarar como documento de archivo
create-record.description=Declara el documento como un documento de archivo.
create-record.file-plan.display-label=Plan de ficheros
create-record.hide-record.display-label=Ocultar documento de archivo
# 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 archivos
openRecordFolder.description=Abre una carpeta de archivos.
# Close record folder
closeRecordFolder.title=Cerrar carpeta de archivos
closeRecordFolder.description=Cierra una carpeta de archivos.
# 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 archivos especificada.
fileTo.path.display-label=Ruta a la carpeta de archivos
fileTo.createRecordFolder.display-label=Crear carpeta de archivos
# Reject
reject.title=Rechazar
reject.description=Rechaza un documento de archivo y lo mueve 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=Enviar email
sendEmail.description=Env\u00eda un email
# 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=Editar raz\u00f3n de bloqueo
# Relinquish Hold
relinquishHold.title=Eliminar bloqueo
relinquishHold.description=Eliminar 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 acci\u00f3n de disposici\u00f3n
# Broadcast Vital Record Definition
broadcastVitalRecordDefinition.title=Difundir definici\u00f3n de documento de archivo vital
broadcastVitalRecordDefinition.description=Difundir definici\u00f3n de documento de archivo vital
# Broadcast Disposition Action Definition Update
broadcastDispositionActionDefinitionUpdate.title=Difundir definici\u00f3n de acciones de disposici\u00f3n
broadcastDispositionActionDefinitionUpdate.description=Difundir definici\u00f3n de acciones de disposici\u00f3n
# Undo Event
undoEvent.title=Deshacer evento
undoEvent.description=Deshacer 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=Separar correo electr\u00f3nico
# Create Disposition Schedule
createDispositionSchedule.title=Crear planificaci\u00f3n de disposici\u00f3n
createDispositionSchedule.description=Crear planificaci\u00f3n de disposici\u00f3n
# File Destruction Report
fileDestructionReport.title=Archivar informe de destrucci\u00f3n
fileDestructionReport.description=Archivar informe de destrucci\u00f3n
# Cut off
cutoff.title=Interrumpir
cutoff.description=Interrumpir
# Destroy
destroy.title=Destruir
destroy.description=Destruir
# Reviewed
reviewed.title=Revisado
reviewed.description=Revisado
# Hide Record
hide-record.title=Ocultar documento de archivo
hide-record.description=Ocultar documento de archivo
# Transfer
transfer.title=Transferencia
transfer.description=Transferencia
# Uncut off
unCutoff.title=Deshacer interrumpir
unCutoff.description=Deshacer interrumpir
# Accession
accession.title=Adhesi\u00f3n
accession.description=Adhesi\u00f3n
# Retain
retain.title=Retener
retain.description=Retener
# Add Record Types
addRecordTypes.title=A\u00f1adir tipos de documento de archivo
addRecordTypes.description=A\u00f1ade los tipos seleccionados al documento 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 archivos
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

View File

@@ -0,0 +1,172 @@
#
# i18n for Records Management Action Conditions
#
# Are classified
isClassified.title=Class\u00e9 par planification de disposition
isClassified.description=Les documents d'archives ou les dossiers d'archives ont \u00e9t\u00e9 class\u00e9s par une planification de disposition.
# Are cutoff
isCutoff.title=Limiter
isCutoff.description=Les documents d'archives ou les dossiers d'archives sont limit\u00e9s.
# Are declared
isDeclared.title=Document d'archives termin\u00e9
isDeclared.description=Est le document d'archives termin\u00e9.
# Are frozen
isFrozen.title=Gel\u00e9
isFrozen.description=Est le document d'archives ou le dossier d'archives gel\u00e9.
# Are filed
isRecordFiled.title=Documents d'archives archiv\u00e9s
isRecordFiled.description=Est le documents d'archives archiv\u00e9.
# Are closed record folders
isRecordFolderClosed.title=Dossier d'archives ferm\u00e9.
isRecordFolderClosed.description=Est le dossier d'archives ferm\u00e9.
# Are vital
isVital.title=Document d'archives essentiel
isVital.description=Est le document d'archives ou le dossier d'archives essentiel.
# Have Disposition Action
hasDispositionAction.title=A une action de disposition
hasDispositionAction.description=Demandent aux noeuds d''avoir l'action de disposition associ\u00e9e d\u00e9finie \u00e0 la position relative d\u00e9finie.
# Are kind
isKind.title=Type d'\u00e9l\u00e9ment d'archivage \u00e9lectronique
isKind.description=Sont les noeuds d'un type de composant de plan de fichier.
isKind.kind.display-label=Type
# Are Record Type
isRecordType.title=Demande le type de document d'archives
isRecordType.description=Sont les documents d'archives du type 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 document comme document d'archives
create-record.file-plan.display-label=Plan de fichier
create-record.hide-record.display-label=Masquer le document d'archives
# 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=\u00c9v\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.createRecordFolder.display-label=Cr\u00e9er un dossier d'archives
# Reject
reject.title=Rejeter
reject.description=Rejette un document d'archives et place le document 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=Date de d\u00e9but de v\u00e9rification mise \u00e0 jour
editReviewAsOfDate.description=Date de d\u00e9but de v\u00e9rification mise \u00e0 jour
# Edit Disposition Action As Of Date
editDispositionActionAsOfDate.title=Modifier la date de d\u00e9but de l'action de disposition
editDispositionActionAsOfDate.description=Modifier la date de d\u00e9but de l'action de disposition
# Broadcast Vital Record Definition
broadcastVitalRecordDefinition.title=D\u00e9finition de document d'archives essentiel diffus\u00e9e
broadcastVitalRecordDefinition.description=D\u00e9finition de document d'archives essentiel diffus\u00e9e
# Broadcast Disposition Action Definition Update
broadcastDispositionActionDefinitionUpdate.title=Mise \u00e0 jour de la d\u00e9finition de l'action de disposition diffus\u00e9e
broadcastDispositionActionDefinitionUpdate.description=Mise \u00e0 jour de la d\u00e9finition de l'action de disposition 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=Acc\u00e8s termin\u00e9
accessionComplete.description=Acc\u00e8s termin\u00e9
# Split Email
splitEmail.title=Partager l'e-mail
splitEmail.description=Partager l'e-mail
# Create Disposition Schedule
createDispositionSchedule.title=Cr\u00e9er une planification de disposition
createDispositionSchedule.description=Cr\u00e9er une planification de disposition
# File Destruction Report
fileDestructionReport.title=Rapport de destruction de fichier
fileDestructionReport.description=Rapport de destruction de fichier
# Cut off
cutoff.title=Limiter
cutoff.description=Limiter
# 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=Non limit\u00e9
unCutoff.description=Non limit\u00e9
# Accession
accession.title=Acc\u00e8s
accession.description=Acc\u00e8s
# 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
# 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

View File

@@ -0,0 +1,172 @@
#
# i18n for Records Management Action Conditions
#
# Are classified
isClassified.title=Classificato secondo la pianificazione della disposizione
isClassified.description=I record o le cartelle record sono stati classificati secondo la pianificazione della disposizione
# Are cutoff
isCutoff.title=Taglia
isCutoff.description=I record o le cartelle di record sono tagliati.
# Are declared
isDeclared.title=Record completato
isDeclared.description=Il record \u00e8 completato
# Are frozen
isFrozen.title=Bloccato
isFrozen.description=Il record o la cartella record sono bloccati.
# Are filed
isRecordFiled.title=Record archiviato
isRecordFiled.description=Il record \u00e8 stato archiviato.
# Are closed record folders
isRecordFolderClosed.title=Cartella record chiusa.
isRecordFolderClosed.description=La cartella record \u00e8 stata chiusa.
# Are vital
isVital.title=Record essenziale
isVital.description=Il record o la cartella record sono essenziali.
# Have Disposition Action
hasDispositionAction.title=Ha un'azione di disposizione
hasDispositionAction.description=I nodi hanno l'azione di disposizione associata specificata sulla relativa posizione specificata.
# Are kind
isKind.title=Tipo di elemento di gestione dei record
isKind.description=Sono i nodi di un tipo di componente del piano file.
isKind.kind.display-label=Tipo
# Are Record Type
isRecordType.title=Ha un tipo di record
isRecordType.description=Sono i record del tipo specificato.
#
# i18n for Records Management Actions
#
# Declare As Record
create-record.title=Dichiara come record
create-record.description=Dichiara documento come record.
create-record.file-plan.display-label=Piano file
create-record.hide-record.display-label=Nascondi record
# 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 come record.
freeze.reason.display-label=Motivo
# Unfreeze
unfreeze.title=Sblocca
unfreeze.description=Sblocca un record.
# File to
fileTo.title=Archivia su
fileTo.description=Archivia un record su una cartella di record specificata.
fileTo.path.display-label=Percorso alla cartella di record
fileTo.createRecordFolder.display-label=Crea cartella di record
# Reject
reject.title=Respingi
reject.description=Respinge un record e sposta il documento nella sua posizione originaria
reject.reason.display-label=Respingi motivo
# Request Information
requestInfo.title=Richiedi informazioni
requestInfo.description=Avvia un workflow per la richiesta di maggiori 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 propriet\u00e0
setPropertyValue.description=Imposta un valore propriet\u00e0
# Edit Hold Reason
editHoldReason.title=Modifica motivo di esenzione
editHoldReason.description=Modifica motivo di esenzione
# Relinquish Hold
relinquishHold.title=Interrompi esenzione
relinquishHold.description=Interrompi esenzione
# Edit Review As Of Date
editReviewAsOfDate.title=Modifica revisione in data
editReviewAsOfDate.description=Modifica revisione in data
# Edit Disposition Action As Of Date
editDispositionActionAsOfDate.title=Modifica azione di disposizione in data
editDispositionActionAsOfDate.description=Modifica azione di disposizione in data
# Broadcast Vital Record Definition
broadcastVitalRecordDefinition.title=Trasmetti definizione di record essenziale
broadcastVitalRecordDefinition.description=Trasmetti definizione di record essenziale
# Broadcast Disposition Action Definition Update
broadcastDispositionActionDefinitionUpdate.title=Trasmetti aggiornamento definizione di azione di disposizione
broadcastDispositionActionDefinitionUpdate.description=Trasmetti aggiornamento definizione di azione di disposizione
# Undo Event
undoEvent.title=Annulla evento
undoEvent.description=Annulla evento
# Transfer Complete
transferComplete.title=Trasferimento completato
transferComplete.description=Trasferimento completato
# Accession Complete
accessionComplete.title=Inserimento completato
accessionComplete.description=Inserimento completato
# Split Email
splitEmail.title=Dividi e-mail
splitEmail.description=Dividi e-mail
# Create Disposition Schedule
createDispositionSchedule.title=Crea pianificazione della disposizione
createDispositionSchedule.description=Crea pianificazione della disposizione
# File Destruction Report
fileDestructionReport.title=Archivia report di eliminazione
fileDestructionReport.description=Archivia report di eliminazione
# Cut off
cutoff.title=Taglio
cutoff.description=Taglio
# Destroy
destroy.title=Elimina definitivamente
destroy.description=Elimina definitivamente
# Reviewed
reviewed.title=Rivisto
reviewed.description=Rivisto
# Hide Record
hide-record.title=Nascondi record
hide-record.description=Nascondi record
# Transfer
transfer.title=Trasferisci
transfer.description=Trasferisci
# Uncut off
unCutoff.title=Annulla taglio
unCutoff.description=Annulla taglio
# Accession
accession.title=Inserimento
accession.description=Inserimento
# Retain
retain.title=Mantieni
retain.description=Mantieni
# Add Record Types
addRecordTypes.title=Aggiungi tipi di record
addRecordTypes.description=Aggiungi i tipi selezionati al record
# Action parameter constraints
rm-ac-is-kind-kinds.record_category=Categoria record
rm-ac-is-kind-kinds.record_folder=Cartella 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

View File

@@ -0,0 +1,172 @@
#
# i18n for Records Management Action Conditions
#
# Are classified
isClassified.title=\u5ec3\u68c4\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u306b\u3088\u308a\u5206\u985e\u6e08\u307f
isClassified.description=\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306f\u5ec3\u68c4\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u306b\u3088\u308a\u5206\u985e\u3055\u308c\u3066\u3044\u307e\u3059\u304b\u3002
# Are cutoff
isCutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5
isCutoff.description=\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306f\u30ab\u30c3\u30c8\u30aa\u30d5\u3055\u308c\u3066\u3044\u307e\u3059\u3002
# Are declared
isDeclared.title=\u30ec\u30b3\u30fc\u30c9\u5b8c\u4e86\u6e08\u307f
isDeclared.description=\u30ec\u30b3\u30fc\u30c9\u306f\u5b8c\u4e86\u3057\u3066\u3044\u307e\u3059\u304b\u3002
# Are frozen
isFrozen.title=\u56fa\u5b9a\u6e08\u307f
isFrozen.description=\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306f\u56fa\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059\u304b\u3002
# Are filed
isRecordFiled.title=\u30ec\u30b3\u30fc\u30c9\u6574\u7406\u4fdd\u7ba1\u6e08\u307f
isRecordFiled.description=\u30ec\u30b3\u30fc\u30c9\u306f\u6574\u7406\u4fdd\u7ba1\u3055\u308c\u3066\u3044\u307e\u3059\u304b\u3002
# Are closed record folders
isRecordFolderClosed.title=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306f\u9589\u3058\u3089\u308c\u3066\u3044\u307e\u3059\u3002
isRecordFolderClosed.description=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306f\u9589\u3058\u3089\u308c\u3066\u3044\u307e\u3059\u304b\u3002
# Are vital
isVital.title=\u5fc5\u9808\u30ec\u30b3\u30fc\u30c9
isVital.description=\u30ec\u30b3\u30fc\u30c9\u307e\u305f\u306f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306f\u5fc5\u9808\u3067\u3059\u304b\u3002
# Have Disposition Action
hasDispositionAction.title=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u304c\u3042\u308b\u304b
hasDispositionAction.description=\u95a2\u9023\u3059\u308b\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u3068\u305d\u306e\u76f8\u5bfe\u4f4d\u7f6e\u304c\u30ce\u30fc\u30c9\u306b\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059\u304b\u3002
# Are kind
isKind.title=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30a2\u30a4\u30c6\u30e0\u306e\u30bf\u30a4\u30d7
isKind.description=\u30d5\u30a1\u30a4\u30eb\u30d7\u30e9\u30f3\u306e\u30ce\u30fc\u30c9\u306f\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u306e\u4e00\u7a2e\u3067\u3059\u304b\u3002
isKind.kind.display-label=\u4e00\u7a2e
# Are Record Type
isRecordType.title=\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7\u304c\u3042\u308b\u304b
isRecordType.description=\u6307\u5b9a\u3055\u308c\u305f\u30bf\u30a4\u30d7\u306e\u30ec\u30b3\u30fc\u30c9\u3067\u3059\u304b\u3002
#
# 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=\u6587\u66f8\u3092\u30ec\u30b3\u30fc\u30c9\u3068\u3057\u3066\u5ba3\u8a00\u3057\u307e\u3059\u3002
create-record.file-plan.display-label=\u30d5\u30a1\u30a4\u30eb\u30d7\u30e9\u30f3
create-record.hide-record.display-label=\u30ec\u30b3\u30fc\u30c9\u3092\u975e\u8868\u793a\u306b\u3059\u308b
# Complete record
declareRecord.title=\u5b8c\u4e86\u30ec\u30b3\u30fc\u30c9
declareRecord.description=\u30ec\u30b3\u30fc\u30c9\u3092\u5b8c\u4e86\u3057\u307e\u3059\u3002
# 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\u3002
# 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\u3002
# 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\u3002
# Complete event
completeEvent.title=\u30a4\u30d9\u30f3\u30c8\u306e\u5b8c\u4e86
completeEvent.description=\u30a4\u30d9\u30f3\u30c8\u3092\u5b8c\u4e86\u3057\u307e\u3059\u3002
completeEvent.eventName.display-label=\u30a4\u30d9\u30f3\u30c8
# Freeze
freeze.title=\u56fa\u5b9a
freeze.description=\u30ec\u30b3\u30fc\u30c9\u3092\u56fa\u5b9a\u3057\u307e\u3059\u3002
freeze.reason.display-label=\u7406\u7531
# Unfreeze
unfreeze.title=\u56fa\u5b9a\u89e3\u9664
unfreeze.description=\u30ec\u30b3\u30fc\u30c9\u3092\u56fa\u5b9a\u89e3\u9664\u3057\u307e\u3059\u3002
# File to
fileTo.title=\u6574\u7406\u4fdd\u7ba1\u5148
fileTo.description=\u30ec\u30b3\u30fc\u30c9\u3092\u6307\u5b9a\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306b\u6574\u7406\u4fdd\u7ba1\u3057\u307e\u3059\u3002
fileTo.path.display-label=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3078\u306e\u30d1\u30b9
fileTo.createRecordFolder.display-label=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u306e\u4f5c\u6210
# Reject
reject.title=\u5374\u4e0b
reject.description=\u30ec\u30b3\u30fc\u30c9\u3092\u5374\u4e0b\u3057\u3001\u6587\u66f8\u3092\u5143\u306e\u5834\u6240\u306b\u79fb\u52d5\u3057\u307e\u3059
reject.reason.display-label=\u7406\u7531\u306e\u5374\u4e0b
# 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\u305f\u3081\u306b\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\u3002
executeScript.script-ref.display-label=\u30b9\u30af\u30ea\u30d7\u30c8
# Send Email
sendEmail.title=E\u30e1\u30fc\u30eb\u3092\u9001\u4fe1\u3059\u308b
sendEmail.description=E\u30e1\u30fc\u30eb\u3092\u9001\u4fe1\u3059\u308b
# Set Property
setPropertyValue.title=\u30d7\u30ed\u30d1\u30c6\u30a3\u5024\u3092\u8a2d\u5b9a\u3059\u308b
setPropertyValue.description=\u30d7\u30ed\u30d1\u30c6\u30a3\u5024\u3092\u8a2d\u5b9a\u3059\u308b
# Edit Hold Reason
editHoldReason.title=\u4fdd\u7559\u7406\u7531\u306e\u7de8\u96c6
editHoldReason.description=\u4fdd\u7559\u7406\u7531\u306e\u7de8\u96c6
# Relinquish Hold
relinquishHold.title=\u4fdd\u7559\u306e\u653e\u68c4
relinquishHold.description=\u4fdd\u7559\u306e\u653e\u68c4
# Edit Review As Of Date
editReviewAsOfDate.title=\u73fe\u6642\u70b9\u3067\u30ec\u30d3\u30e5\u30fc\u3092\u7de8\u96c6\u3059\u308b
editReviewAsOfDate.description=\u73fe\u6642\u70b9\u3067\u30ec\u30d3\u30e5\u30fc\u3092\u7de8\u96c6\u3059\u308b
# Edit Disposition Action As Of Date
editDispositionActionAsOfDate.title=\u73fe\u6642\u70b9\u3067\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u3092\u7de8\u96c6\u3059\u308b
editDispositionActionAsOfDate.description=\u73fe\u6642\u70b9\u3067\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u3092\u7de8\u96c6\u3059\u308b
# Broadcast Vital Record Definition
broadcastVitalRecordDefinition.title=\u5fc5\u9808\u30ec\u30b3\u30fc\u30c9\u5b9a\u7fa9\u3092\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8\u3059\u308b
broadcastVitalRecordDefinition.description=\u5fc5\u9808\u30ec\u30b3\u30fc\u30c9\u5b9a\u7fa9\u3092\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8\u3059\u308b
# Broadcast Disposition Action Definition Update
broadcastDispositionActionDefinitionUpdate.title=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u5b9a\u7fa9\u306e\u66f4\u65b0\u3092\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8\u3059\u308b
broadcastDispositionActionDefinitionUpdate.description=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u5b9a\u7fa9\u306e\u66f4\u65b0\u3092\u30d6\u30ed\u30fc\u30c9\u30ad\u30e3\u30b9\u30c8\u3059\u308b
# Undo Event
undoEvent.title=\u30a4\u30d9\u30f3\u30c8\u3092\u5143\u306b\u623b\u3059
undoEvent.description=\u30a4\u30d9\u30f3\u30c8\u3092\u5143\u306b\u623b\u3059
# Transfer Complete
transferComplete.title=\u8ee2\u9001\u5b8c\u4e86
transferComplete.description=\u8ee2\u9001\u5b8c\u4e86
# Accession Complete
accessionComplete.title=\u767b\u9332\u5b8c\u4e86
accessionComplete.description=\u767b\u9332\u5b8c\u4e86
# Split Email
splitEmail.title=E\u30e1\u30fc\u30eb\u306e\u5206\u5272
splitEmail.description=E\u30e1\u30fc\u30eb\u306e\u5206\u5272
# Create Disposition Schedule
createDispositionSchedule.title=\u5ec3\u68c4\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u306e\u4f5c\u6210
createDispositionSchedule.description=\u5ec3\u68c4\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u306e\u4f5c\u6210
# File Destruction Report
fileDestructionReport.title=\u5ec3\u68c4\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1
fileDestructionReport.description=\u5ec3\u68c4\u30ec\u30dd\u30fc\u30c8\u306e\u6574\u7406\u4fdd\u7ba1
# 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\u3059\u308b
# Transfer
transfer.title=\u8ee2\u9001
transfer.description=\u8ee2\u9001
# Uncut off
unCutoff.title=\u30a2\u30f3\u30ab\u30c3\u30c8\u30aa\u30d5
unCutoff.description=\u30a2\u30f3\u30ab\u30c3\u30c8\u30aa\u30d5
# Accession
accession.title=\u767b\u9332
accession.description=\u767b\u9332
# Retain
retain.title=\u7559\u4fdd
retain.description=\u7559\u4fdd
# 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\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

View File

@@ -0,0 +1,21 @@
rm.admin.service-not-init=The customization service has not been started.
rm.admin.not-customisable=The class {0} is not customizable.
rm.admin.invalid-custom-aspect=The custom aspect {0} for customisable class {1} couldn't be found.
rm.admin.property-already-exists=Property {0} already exists.
rm.admin.cannot-apply-constraint=Cannot apply constraint {0} to property {1} with datatype {2}. (expected: dataType = TEXT)
rm.admin.prop-exist=The custom property {0} can't be found.
rm.admin.custom-prop-exist=The custom model does not contain the property {0}.
rm.admin.unknown-aspect=Unknown aspect {0}.
rm.admin.ref-exist=The custom reference {0} can't be found.
rm.admin.ref-label-in-use=The reference label {0} is already in use.
rm.admin.assoc-exists=The association {0} already exists.
rm.admin.child-assoc-exists=the child association {0} already exists.
rm.admin.cannot-find-assoc-def=The association definition {0} can't be found.
rm.admin.constraint-exists=The constraint {0} already exists.
rm.admin.contraint-cannot-find=The definition for constraint {0} can't be found.
rm.admin.unexpected_type_constraint=Unexpected type {0} for constraint {1}. The expected is {2}.
rm.admin.custom-model-not-found=The custom model {0} can't be found.
rm.admin.custom-model-no-content=The custom model has no content. (nodeRef={0})
rm.admin.error-write-custom-model=Error writing custom model content. (nodeRef={0}).
rm.admin.error-client-id=Error generating the client id, because it's already in use. (clientid={0})
rm.admin.error-split-id=Unable to split id {0}, because separator {1} is not present.

View File

@@ -0,0 +1,21 @@
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=Constraint {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.ref-exist=Benutzerdefinierte Referenz {0} wurde nicht gefunden.
rm.admin.ref-label-in-use=Referenz-Label {0} wird bereits verwendet.
rm.admin.assoc-exists=Zuordnung {0} bereits vorhanden.
rm.admin.child-assoc-exists=Kindzuordnung {0} bereits vorhanden.
rm.admin.cannot-find-assoc-def=Zuordnungsdefinition {0} wurde nicht gefunden.
rm.admin.constraint-exists=Constraint {0} bereits vorhanden.
rm.admin.contraint-cannot-find=Die Definition f\u00fcr Constraint {0} wurde nicht gefunden.
rm.admin.unexpected_type_constraint=Unerwarteter Typ {0} f\u00fcr Constraint {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 Fehler aufgetreten. (nodeRef={0}).
rm.admin.error-client-id=Beim Generieren der Client-ID ist ein Fehler aufgetreten, 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

@@ -0,0 +1,21 @@
rm.admin.service-not-init=No se ha iniciado el servicio de personalizaci\u00f3n.
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 se puede aplicar la restricci\u00f3n {0} a la propiedad {1} con el tipo de datos {2}. (esperado: tipo de datos = TEXTO)
rm.admin.prop-exist=No se puede 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.ref-exist=No se puede encontrar la propiedad personalizada {0}.
rm.admin.ref-label-in-use=La etiqueta de referencia {0} ya est\u00e1 en uso.
rm.admin.assoc-exists=La asociaci\u00f3n {0} ya existe.
rm.admin.child-assoc-exists=La asociaci\u00f3n secundaria {0} ya existe.
rm.admin.cannot-find-assoc-def=No se puede encontrar la definici\u00f3n de la asociaci\u00f3n {0}.
rm.admin.constraint-exists=La restricci\u00f3n {0} ya existe.
rm.admin.contraint-cannot-find=No se puede encontrar la definici\u00f3n de la restricci\u00f3n {0}.
rm.admin.unexpected_type_constraint=Tipo inesperado {0} para la restricci\u00f3n {1}. El valor esperado es {2}.
rm.admin.custom-model-not-found=No se puede 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=Error al escribir el contenido del modelo personalizado. (nodeRef={0}).
rm.admin.error-client-id=Error al generar la Id. de cliente porque ya est\u00e1 en uso. (clientid={0})
rm.admin.error-split-id=No se pudo dividir la Id. {0}, porque el separador {1} no est\u00e1 presente.

View File

@@ -0,0 +1,21 @@
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} de 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 type de donn\u00e9es {2}. (attendu\u00a0: dataType = TEXT)
rm.admin.prop-exist=La propri\u00e9t\u00e9 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 inconnu {0}.
rm.admin.ref-exist=La r\u00e9f\u00e9rence personnalis\u00e9e {0} est introuvable.
rm.admin.ref-label-in-use=Le libell\u00e9 de r\u00e9f\u00e9rence {0} est d\u00e9j\u00e0 utilis\u00e9.
rm.admin.assoc-exists=L''association {0} existe d\u00e9j\u00e0.
rm.admin.child-assoc-exists=L''association enfant {0} existe d\u00e9j\u00e0.
rm.admin.cannot-find-assoc-def=La d\u00e9finition d''association {0} est introuvable.
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 de contrainte inattendu {0} pour la contrainte {1}. Le type attendu est {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=Erreur lors de l'\u00e9criture du contenu du mod\u00e8le personnalis\u00e9. (nodeRef={0})
rm.admin.error-client-id=Erreur lors de la g\u00e9n\u00e9ration de l'identificant client, car il est d\u00e9j\u00e0 utilis\u00e9. (clientid={0})
rm.admin.error-split-id=Impossible de fractionner l''identifiant {0}, car le s\u00e9parateur {1} est absent.

View File

@@ -0,0 +1,21 @@
rm.admin.service-not-init=Il servizio di personalizzazione non \u00e8 stato avviato.
rm.admin.not-customisable=La classe {0} non \u00e8 personalizzabile.
rm.admin.invalid-custom-aspect=Impossibile trovare l''aspetto personalizzato {0} per la classe personalizzabile {1}.
rm.admin.property-already-exists=La propriet\u00e0 {0} esiste gi\u00e0.
rm.admin.cannot-apply-constraint=Impossibile applicare il vincolo {0} alla propriet\u00e0 {1} con il tipo di dati {2}. (previsto: tipo di dati = 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 sconosciuto {0}.
rm.admin.ref-exist=Impossibile trovare il riferimento personalizzato {0}.
rm.admin.ref-label-in-use=L''etichetta di riferimento {0} \u00e8 gi\u00e0 in uso.
rm.admin.assoc-exists=L''associazione {0} esiste gi\u00e0.
rm.admin.child-assoc-exists=L''associazione figlio {0} esiste gi\u00e0.
rm.admin.cannot-find-assoc-def=Impossibile trovare la definizione di associazione {0}.
rm.admin.constraint-exists=Il vincolo {0} esiste gi\u00e0.
rm.admin.contraint-cannot-find=Impossibile trovare la definizione del vincolo {0}.
rm.admin.unexpected_type_constraint=Tipo non previsto {0} per il vincolo {1}. Quello previsto \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 contenuto. (nodeRef={0})
rm.admin.error-write-custom-model=Errore nella scrittura del contenuto del modello personalizzato. (nodeRef={0})
rm.admin.error-client-id=Errore nella generazione dell'id client poich\u00e9 \u00e8 gi\u00e0 in uso. (clientid={0})
rm.admin.error-split-id=Impossibile dividere l''id {0} poich\u00e9 il separatore {1} non \u00e8 presente.

View File

@@ -0,0 +1,21 @@
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\u53ef\u80fd\u3067\u306f\u3042\u308a\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\u3066\u3044\u307e\u3059\u3002
rm.admin.cannot-apply-constraint=\u5236\u7d04{0}\u306fdatatype {2}\u3092\u6709\u3059\u308b\u30d7\u30ed\u30d1\u30c6\u30a3{1}\u306b\u9069\u7528\u3067\u304d\u307e\u305b\u3093\u3002 \uff08\u60f3\u5b9a\uff1a dataType = TEXT\uff09
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=\u30ab\u30b9\u30bf\u30e0\u30e2\u30c7\u30eb\u306b\u30d7\u30ed\u30d1\u30c6\u30a3{0}\u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002
rm.admin.unknown-aspect=\u4e0d\u660e\u306a\u30a2\u30b9\u30da\u30af\u30c8{0}\u3067\u3059\u3002
rm.admin.ref-exist=\u30ab\u30b9\u30bf\u30e0\u53c2\u7167{0}\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002
rm.admin.ref-label-in-use=\u53c2\u7167\u30e9\u30d9\u30eb{0}\u306f\u3059\u3067\u306b\u4f7f\u7528\u3055\u308c\u3066\u3044\u307e\u3059\u3002
rm.admin.assoc-exists=\u30a2\u30bd\u30b7\u30a8\u30fc\u30b7\u30e7\u30f3{0}\u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u3066\u3044\u307e\u3059\u3002
rm.admin.child-assoc-exists=\u5b50\u30a2\u30bd\u30b7\u30a8\u30fc\u30b7\u30e7\u30f3{0}\u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u3066\u3044\u307e\u3059\u3002
rm.admin.cannot-find-assoc-def=\u30a2\u30bd\u30b7\u30a8\u30fc\u30b7\u30e7\u30f3\u5b9a\u7fa9{0}\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002
rm.admin.constraint-exists=\u5236\u7d04{0}\u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u3066\u3044\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=\u5236\u7d04{1}\u3067\u60f3\u5b9a\u5916\u306e\u30bf\u30a4\u30d7{0}\u3067\u3059\u3002 \u60f3\u5b9a\u3057\u3066\u3044\u305f\u306e\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=\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\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u66f8\u304d\u8fbc\u307f\u30a8\u30e9\u30fc\u3067\u3059\u3002 (nodeRef={0}).
rm.admin.error-client-id=\u30af\u30e9\u30a4\u30a2\u30f3\u30c8ID\u306e\u751f\u6210\u30a8\u30e9\u30fc\u3067\u3059\u3002\u3053\u306eID\u306f\u3059\u3067\u306b\u4f7f\u7528\u3055\u308c\u3066\u3044\u308b\u305f\u3081\u3067\u3059\u3002 (clientid={0})
rm.admin.error-split-id=ID{0}\u3092\u5206\u5272\u3067\u304d\u307e\u305b\u3093\u3002\u533a\u5207\u308a{1}\u304c\u5b58\u5728\u3057\u306a\u3044\u305f\u3081\u3067\u3059\u3002

View File

@@ -0,0 +1,16 @@
rm.audit.updated-metadata=Updated Metadata
rm.audit.created-object=Created Object
rm.audit.delte-object=Delete Object
rm.audit.login-succeeded=Login Succeeded
rm.audit.login-failed=Login Failed
rm.audit.create-person=Create Person
rm.audit.link=Link
rm.audit.move=Move
rm.audit.copy=Copy
rm.audit.file=File
rm.audit.audit-start=Audit Start
rm.audit.audit-stop=Audit Stop
rm.audit.audit-clear=Audit Clear
rm.audit.audit-view=Audit View
rm.audit.trail-file-fail=Can't generate audit report.
rm.audit.audit-report=Audit Report

View File

@@ -0,0 +1,16 @@
rm.audit.updated-metadata=Metadaten aktualisiert
rm.audit.created-object=Objekt erstellt
rm.audit.delte-object=Objekt gel\u00f6scht
rm.audit.login-succeeded=Anmeldung erfolgreich
rm.audit.login-failed=Anmeldung fehlgeschlagen
rm.audit.create-person=Person erstellen
rm.audit.link=Link
rm.audit.move=Verschieben
rm.audit.copy=Kopieren
rm.audit.file=Datei
rm.audit.audit-start=Audit starten
rm.audit.audit-stop=Audit stoppen
rm.audit.audit-clear=Audit l\u00f6schen
rm.audit.audit-view=Audit anzeigen
rm.audit.trail-file-fail=Audit-Bericht kann nicht erstellt werden
rm.audit.audit-report=Audit-Bericht

View File

@@ -0,0 +1,16 @@
rm.audit.updated-metadata=Metadatos actualizados
rm.audit.created-object=Objeto creado
rm.audit.delte-object=Eliminar objeto
rm.audit.login-succeeded=Sesi\u00f3n iniciada correctamente
rm.audit.login-failed=Error al iniciar sesi\u00f3n
rm.audit.create-person=Crear persona
rm.audit.link=Enlazar
rm.audit.move=Mover
rm.audit.copy=Copiar
rm.audit.file=Archivar
rm.audit.audit-start=Iniciar auditor\u00eda
rm.audit.audit-stop=Detener auditor\u00eda
rm.audit.audit-clear=Limpiar auditor\u00eda
rm.audit.audit-view=Ver auditor\u00eda
rm.audit.trail-file-fail=No se puede generar el informe de auditor\u00eda.
rm.audit.audit-report=Informe de auditor\u00eda

View File

@@ -0,0 +1,16 @@
rm.audit.updated-metadata=M\u00e9tadonn\u00e9es mises \u00e0 jour
rm.audit.created-object=Objet cr\u00e9\u00e9
rm.audit.delte-object=Supprimer l'objet
rm.audit.login-succeeded=La connexion a abouti
rm.audit.login-failed=La connexion a \u00e9chou\u00e9
rm.audit.create-person=Cr\u00e9er une personne
rm.audit.link=Lien
rm.audit.move=D\u00e9placer
rm.audit.copy=Copier
rm.audit.file=Fichier
rm.audit.audit-start=Audit d\u00e9marr\u00e9
rm.audit.audit-stop=Audit arr\u00eat\u00e9
rm.audit.audit-clear=Audit supprim\u00e9
rm.audit.audit-view=Audit affich\u00e9
rm.audit.trail-file-fail=Impossible de g\u00e9n\u00e9rer un rapport d'audit.
rm.audit.audit-report=Rapport d'audit

View File

@@ -0,0 +1,16 @@
rm.audit.updated-metadata=Metadati aggiornati
rm.audit.created-object=Oggetto creato
rm.audit.delte-object=Elimina oggetto
rm.audit.login-succeeded=Accesso riuscito
rm.audit.login-failed=Accesso non riuscito
rm.audit.create-person=Crea persona
rm.audit.link=Collega
rm.audit.move=Sposta
rm.audit.copy=Copia
rm.audit.file=File
rm.audit.audit-start=Avvia controllo
rm.audit.audit-stop=Interrompi controllo
rm.audit.audit-clear=Cancella controllo
rm.audit.audit-view=Visualizza controllo
rm.audit.trail-file-fail=Impossibile generare report di controllo
rm.audit.audit-report=Report di controllo

View File

@@ -0,0 +1,16 @@
rm.audit.updated-metadata=\u66f4\u65b0\u6e08\u307f\u30e1\u30bf\u30c7\u30fc\u30bf
rm.audit.created-object=\u4f5c\u6210\u6e08\u307f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8
rm.audit.delte-object=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u524a\u9664
rm.audit.login-succeeded=\u30ed\u30b0\u30a4\u30f3\u6210\u529f
rm.audit.login-failed=\u30ed\u30b0\u30a4\u30f3\u5931\u6557
rm.audit.create-person=\u4eba\u306e\u4f5c\u6210
rm.audit.link=\u30ea\u30f3\u30af
rm.audit.move=\u79fb\u52d5
rm.audit.copy=\u30b3\u30d4\u30fc
rm.audit.file=\u6574\u7406\u4fdd\u7ba1
rm.audit.audit-start=\u76e3\u67fb\u958b\u59cb
rm.audit.audit-stop=\u76e3\u67fb\u505c\u6b62
rm.audit.audit-clear=\u76e3\u67fb\u6d88\u53bb
rm.audit.audit-view=\u76e3\u67fb\u8868\u793a
rm.audit.trail-file-fail=\u76e3\u67fb\u30ec\u30dd\u30fc\u30c8\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002
rm.audit.audit-report=\u76e3\u67fb\u30ec\u30dd\u30fc\u30c8

View File

@@ -0,0 +1,98 @@
# Records
capability.group.records.title=Records
capability.DeclareRecords.title=Complete Records
capability.ViewRecords.title=View Records
capability.UndeclareRecords.title=Reopen Records
capability.CreateRecords.title=Create Records
capability.RequestRecordInformation.title=Request Record Information
capability.RejectRecords.title=Reject Records
capability.FileUnfiledRecords.title=File Unfiled Records
capability.LinkToRecords.title=Link Records
# Metadata Control
capability.group.metadataControl.title=Metadata Control
capability.EditRecordMetadata.title=Edit Record Metadata
capability.EditDeclaredRecordMetadata.title=Edit Completed Record Metadata
capability.EditNonRecordMetadata.title=Edit Non Record Metadata
capability.MoveRecords.title=Move Records
# Folder Control
capability.group.folderControl.title=Folder Control
capability.CreateModifyDestroyFolders.title=Create Modify Destroy Folders
capability.CloseFolders.title=Close Folders
capability.ReOpenFolders.title=Re-Open Folders
capability.DeclareRecordsInClosedFolders.title=Complete Records in Closed Folders
# Vital Records
capability.group.vitalRecords.title=Vital Records
capability.UpdateVitalRecordCycleInformation.title=Update Vital Record Cycle Information
capability.CycleVitalRecords.title=Cycle Vital Records
capability.PlanningReviewCycles.title=Planning Review Cycles
# References and Links
capability.group.references.title=References
capability.ChangeOrDeleteReferences.title=Change or Delete References
capability.DeleteLinks.title=Delete Links
# Events
capability.group.events.title=Events
capability.CreateModifyDestroyEvents.title=Create Modify Destroy Events
capability.AddModifyEventDates.title=Add Modify Event Dates
# Cutoff
capability.group.cutoff.title=Cutoff
capability.ApproveRecordsScheduledForCutoff.title=Approve Records Scheduled for Cutoff
capability.CreateModifyRecordsInCutoffFolders.title=Create Modify Records in Cutoff Folders
# Disposition and Transfers
capability.group.dispositionAndTransfers.title=Disposition and Transfers
capability.UpdateTriggerDates.title=Update Trigger Dates
capability.ManuallyChangeDispositionDates.title=Manually Change Disposition Dates
capability.AuthorizeNominatedTransfers.title=Authorize Nominated Transfers
capability.AuthorizeAllTransfers.title=Authorize All Transfers
capability.DestroyRecordsScheduledForDestruction.title=Destroy Records Scheduled for Destruction
capability.DestroyRecords.title=Destroy Records
capability.DeleteRecords.title=Delete Records
capability.TriggerAnEvent.title=Trigger An Event
capability.FileDestructionReport.title=File Destruction Report
capability.FileTransferReport.title=File Transfer Report
# Hold Controls
capability.group.holdControls.title=Hold Controls
capability.ExtendRetentionPeriodOrFreeze.title=Extend Retention Period or Freeze
capability.Unfreeze.title=Unfreeze
capability.ViewUpdateReasonsForFreeze.title=View Update Reasons for Freeze
# Audit
capability.group.audit.title=Audit
capability.DeclareAuditAsRecord.title=Declare Audit as Record
capability.EnableDisableAuditByTypes.title=Enable Disable Audit by Types
capability.DeleteAudit.title=Delete Audit
capability.SelectAuditMetadata.title=Select Audit Metadata
capability.AccessAudit.title=Access Audit
capability.ExportAudit.title=Export Audit
# Security
capability.group.security.title=Security
capability.CreateModifyDestroyRoles.title=Create Modify Destroy Roles
capability.CreateModifyDestroyUsersAndGroups.title=Create Modify Destroy Users and Groups
capability.PasswordControl.title=Password Control
capability.DisplayRightsReport.title=Display Rights Report
capability.ManageAccessControls.title=Manage Access Controls
capability.ManageAccessRights.title=Manage Access Rights
# Configuration
capability.group.config.title=Configuration
capability.CreateModifyDestroyFileplanMetadata.title=Create Modify Destroy File Plan Metadata
capability.CreateModifyDestroyFileplanTypes.title=Create Modify Destroy File Plan Types
capability.CreateModifyDestroyRecordTypes.title=Create Modify Destroy Record Types
capability.CreateAndAssociateSelectionLists.title=Create and Associate Selection Lists
capability.EditSelectionLists.title=Edit Selection Lists
capability.CreateModifyDestroyReferenceTypes.title=Create Modify Destroy Reference Types
capability.AttachRulesToMetadataProperties.title=Attach Rules to Metadata Properties
capability.MakeOptionalParametersMandatory.title=Make Optional Parameters Mandatory
capability.MapEmailMetadata.title=Map Email Metadata
# Rules
capability.group.rules.title=Rules
capability.ManageRules.title=Manage Rules

View File

@@ -0,0 +1,96 @@
# Records
capability.group.records.title=Datens\u00e4tze
capability.DeclareRecords.title=Datens\u00e4tze abschlie\u00dfen
capability.ViewRecords.title=Datens\u00e4tze anzeigen
capability.UndeclareRecords.title=Datens\u00e4tze erneut \u00f6ffnen
capability.CreateRecords.title=Datens\u00e4tze erstellen
capability.RequestRecordInformation.title=Datensatzinformationen anfordern
capability.RejectRecords.title=Datens\u00e4tze ablehnen
capability.FileUnfiledRecords.title=Nicht abgelegte Datens\u00e4tze ablegen
capability.LinkToRecords.title=Datens\u00e4tze verkn\u00fcpfen
# Metadata Control
capability.group.metadataControl.title=Metadaten-Steuerung
capability.EditRecordMetadata.title=Metadaten von Datensatz bearbeiten
capability.EditDeclaredRecordMetadata.title=Metadaten von abgeschlossenem Datensatz bearbeiten
capability.EditNonRecordMetadata.title=Datensatzfremde Metadaten bearbeiten
capability.MoveRecords.title=Datens\u00e4tze verschieben
# Folder Control
capability.group.folderControl.title=Ordnersteuerung
capability.CreateModifyDestroyFolders.title=Ordner erstellen/\u00e4ndern/vernichten
capability.CloseFolders.title=Ordner schlie\u00dfen
capability.ReOpenFolders.title=Ordner erneut \u00f6ffnen
capability.DeclareRecordsInClosedFolders.title=Datens\u00e4tze in geschlossenen Ordnern abschlie\u00dfen
# Vital Records
capability.group.vitalRecords.title=Erforderliche Datens\u00e4tze
capability.UpdateVitalRecordCycleInformation.title=Zyklusinformationen erforderlicher Datens\u00e4tze aktualisieren
capability.CycleVitalRecords.title=Zyklus erforderlicher Datens\u00e4tze
capability.PlanningReviewCycles.title=\u00dcberpr\u00fcfungszyklen planen
# References and Links
capability.group.references.title=Referenzen
capability.ChangeOrDeleteReferences.title=Referenzen \u00e4ndern oder l\u00f6schen
capability.DeleteLinks.title=Links l\u00f6schen
# Events
capability.group.events.title=Ereignisse
capability.CreateModifyDestroyEvents.title=Ereignisse erstellen/\u00e4ndern/vernichten
capability.AddModifyEventDates.title=Ereignisdaten hinzuf\u00fcgen/\u00e4ndern
# Cutoff
capability.group.cutoff.title=Trennen
capability.ApproveRecordsScheduledForCutoff.title=F\u00fcr Trennung geplante Datens\u00e4tze genehmigen
capability.CreateModifyRecordsInCutoffFolders.title=Datens\u00e4tze in getrennten Ordnern erstellen/\u00e4ndern
# Disposition and Transfers
capability.group.dispositionAndTransfers.title=Disposition und \u00dcbertragungen
capability.UpdateTriggerDates.title=Triggerdaten aktualisieren
capability.ManuallyChangeDispositionDates.title=Dispositionsdaten manuell \u00e4ndern
capability.AuthorizeNominatedTransfers.title=Nominierte \u00dcbertragungen autorisieren
capability.AuthorizeAllTransfers.title=Alle \u00dcbertragungen autorisieren
capability.DestroyRecordsScheduledForDestruction.title=F\u00fcr Vernichtung geplante Datens\u00e4tze vernichten
capability.DestroyRecords.title=Datens\u00e4tze vernichten
capability.DeleteRecords.title=Datens\u00e4tze l\u00f6schen
capability.TriggerAnEvent.title=Ereignis ausl\u00f6sen
# Hold Controls
capability.group.holdControls.title=Sperrsteuerung
capability.ExtendRetentionPeriodOrFreeze.title=Aufbewahrungsfrist verl\u00e4ngern oder fixieren
capability.Unfreeze.title=Fixierung aufheben
capability.ViewUpdateReasonsForFreeze.title=Aktualisierungsgrund f\u00fcr Fixierung anzeigen
# Audit
capability.group.audit.title=Audit
capability.DeclareAuditAsRecord.title=Audit als Datensatz deklarieren
capability.EnableDisableAuditByTypes.title=Audit nach Typen aktivieren/deaktivieren
capability.DeleteAudit.title=Audit l\u00f6schen
capability.SelectAuditMetadata.title=Audit-Metadaten ausw\u00e4hlen
capability.AccessAudit.title=Auf Audit zugreifen
capability.ExportAudit.title=Audit exportieren
# Security
capability.group.security.title=Sicherheit
capability.CreateModifyDestroyRoles.title=Rollen erstellen/\u00e4ndern/vernichten
capability.CreateModifyDestroyUsersAndGroups.title=Benutzer und Gruppen erstellen/\u00e4ndern/vernichten
capability.PasswordControl.title=Passwortsteuerung
capability.DisplayRightsReport.title=Rechtebericht anzeigen
capability.ManageAccessControls.title=Zugriffssteuerungen verwalten
capability.ManageAccessRights.title=Zugriffsrechte verwalten
# Configuration
capability.group.config.title=Konfiguration
capability.CreateModifyDestroyFileplanMetadata.title=Ablageplan-Metadaten erstellen/\u00e4ndern/vernichten
capability.CreateModifyDestroyFileplanTypes.title=Ablageplan-Typen erstellen/\u00e4ndern/vernichten
capability.CreateModifyDestroyRecordTypes.title=Datensatztypen erstellen/\u00e4ndern/vernichten
capability.CreateAndAssociateSelectionLists.title=Auswahllisten erstellen und zuordnen
capability.EditSelectionLists.title=Auswahllisten bearbeiten
capability.CreateModifyDestroyReferenceTypes.title=Referenztypen erstellen/\u00e4ndern/vernichten
capability.AttachRulesToMetadataProperties.title=Regeln an Metadaten-Eigenschaften anh\u00e4ngen
capability.MakeOptionalParametersMandatory.title=Optionale Parameter als erforderlich festlegen
capability.MapEmailMetadata.title=E-Mail-Metadaten zuordnen
# Rules
capability.group.rules.title=Regeln
capability.ManageRules.title=Regeln verwalten

View File

@@ -0,0 +1,96 @@
# Records
capability.group.records.title=Documentos de archivo
capability.DeclareRecords.title=Documentos de archivo completados
capability.ViewRecords.title=Ver documentos de archivo
capability.UndeclareRecords.title=Reabrir documentos de archivo
capability.CreateRecords.title=Crear documentos de archivo
capability.RequestRecordInformation.title=Solicitar informaci\u00f3n de documento de archivo
capability.RejectRecords.title=Rechazar documentos de archivo
capability.FileUnfiledRecords.title=Archivar documentos de archivo sin archivar
capability.LinkToRecords.title=Enlazar documentos de archivo
# Metadata Control
capability.group.metadataControl.title=Control de metadatos
capability.EditRecordMetadata.title=Editar metadatos de documentos de archivo
capability.EditDeclaredRecordMetadata.title=Editar metadatos de documentos de archivo completados
capability.EditNonRecordMetadata.title=Editar metadatos que no sean de documentos de archivo
capability.MoveRecords.title=Mover documentos de archivo
# Folder Control
capability.group.folderControl.title=Control de carpetas
capability.CreateModifyDestroyFolders.title=Crear, modificar o destruir carpetas
capability.CloseFolders.title=Cerrar carpetas
capability.ReOpenFolders.title=Reabrir carpetas
capability.DeclareRecordsInClosedFolders.title=Documentos de archivo completos en carpetas cerradas
# Vital Records
capability.group.vitalRecords.title=Documentos de archivo vitales
capability.UpdateVitalRecordCycleInformation.title=Actualizar informaci\u00f3n vital de ciclos de documentos de archivo
capability.CycleVitalRecords.title=Ciclos de documentos de archivo vitales
capability.PlanningReviewCycles.title=Planear ciclos de revisi\u00f3n
# References and Links
capability.group.references.title=Referencias
capability.ChangeOrDeleteReferences.title=Cambiar o eliminar referencias
capability.DeleteLinks.title=Eliminar enlaces
# Events
capability.group.events.title=Eventos
capability.CreateModifyDestroyEvents.title=Crear, modificar o destruir eventos
capability.AddModifyEventDates.title=A\u00f1adir o modificar fechas de eventos
# Cutoff
capability.group.cutoff.title=Interrumpir
capability.ApproveRecordsScheduledForCutoff.title=Aprobar documentos de archivo planificados para interrupci\u00f3n
capability.CreateModifyRecordsInCutoffFolders.title=Crear o modificar documentos de archivo en carpetas de interrupci\u00f3n
# Disposition and Transfers
capability.group.dispositionAndTransfers.title=Disposici\u00f3n y transferencias
capability.UpdateTriggerDates.title=Actualizar fechas de lanzamiento
capability.ManuallyChangeDispositionDates.title=Modificar fechas de disposici\u00f3n manualmente
capability.AuthorizeNominatedTransfers.title=Autorizar transferencias nominadas
capability.AuthorizeAllTransfers.title=Autorizar todas las transferencias
capability.DestroyRecordsScheduledForDestruction.title=Destruir documentos de archivo planificados para destrucci\u00f3n
capability.DestroyRecords.title=Destruir documentos de archivo
capability.DeleteRecords.title=Eliminar documentos de archivo
capability.TriggerAnEvent.title=Desencadenar un evento
# Hold Controls
capability.group.holdControls.title=Controles de bloqueo
capability.ExtendRetentionPeriodOrFreeze.title=Extender per\u00edodo de retenci\u00f3n o congelar
capability.Unfreeze.title=Descongelar
capability.ViewUpdateReasonsForFreeze.title=Ver razones actualizadas de congelaci\u00f3n
# Audit
capability.group.audit.title=Auditor\u00eda
capability.DeclareAuditAsRecord.title=Declarar auditor\u00eda como documento de archivo
capability.EnableDisableAuditByTypes.title=Activar o desactivar auditor\u00eda por tipos
capability.DeleteAudit.title=Eliminar auditor\u00eda
capability.SelectAuditMetadata.title=Seleccionar metadatos de auditor\u00edas
capability.AccessAudit.title=Acceder a auditor\u00eda
capability.ExportAudit.title=Exportar auditor\u00eda
# Security
capability.group.security.title=Seguridad
capability.CreateModifyDestroyRoles.title=Crear, modificar o destruir roles
capability.CreateModifyDestroyUsersAndGroups.title=Crear, modificar o destruir usuarios y grupos
capability.PasswordControl.title=Control de contrase\u00f1as
capability.DisplayRightsReport.title=Mostrar informe de derechos
capability.ManageAccessControls.title=Administrar controles de acceso
capability.ManageAccessRights.title=Administrar derechos de acceso
# Configuration
capability.group.config.title=Configuraci\u00f3n
capability.CreateModifyDestroyFileplanMetadata.title=Crear, modificar o destruir metadatos del plan de ficheros
capability.CreateModifyDestroyFileplanTypes.title=Crear, modificar o destruir tipos del plan de ficheros
capability.CreateModifyDestroyRecordTypes.title=Crear, modificar o destruir tipos de documentos de archivo
capability.CreateAndAssociateSelectionLists.title=Crear y asociar listas de selecci\u00f3n
capability.EditSelectionLists.title=Editar listas de selecci\u00f3n
capability.CreateModifyDestroyReferenceTypes.title=Crear, modificar o destruir tipos de referencias
capability.AttachRulesToMetadataProperties.title=Adjuntar reglas a las propiedades de metadatos
capability.MakeOptionalParametersMandatory.title=Hacer obligatorios par\u00e1metros opcionales
capability.MapEmailMetadata.title=Asignar metadatos de correo electr\u00f3nico
# Rules
capability.group.rules.title=Reglas
capability.ManageRules.title=Gestionar reglas

View File

@@ -0,0 +1,96 @@
# Records
capability.group.records.title=Documents d'archives
capability.DeclareRecords.title=Documents d'archives complets
capability.ViewRecords.title=Afficher les documents d'archives
capability.UndeclareRecords.title=Rouvrir des documents d'archives
capability.CreateRecords.title=Cr\u00e9er des documents d'archives
capability.RequestRecordInformation.title=Demander des informations de documents d'archives
capability.RejectRecords.title=Rejeter les documents d'archives
capability.FileUnfiledRecords.title=Archiver les documents d'archives non archiv\u00e9s
capability.LinkToRecords.title=Lier les documents d'archives
# Metadata Control
capability.group.metadataControl.title=Contr\u00f4le des m\u00e9tadonn\u00e9es
capability.EditRecordMetadata.title=Modifier les m\u00e9tadonn\u00e9es de document d'archives
capability.EditDeclaredRecordMetadata.title=Modifier les m\u00e9tadonn\u00e9es de document d'archives complet
capability.EditNonRecordMetadata.title=Modifier les m\u00e9tadonn\u00e9es n'appartenant pas aux documents d'archives
capability.MoveRecords.title=D\u00e9placer des documents d'archives
# Folder Control
capability.group.folderControl.title=Contr\u00f4le de dossier
capability.CreateModifyDestroyFolders.title=Cr\u00e9er, modifier et d\u00e9truire des dossiers
capability.CloseFolders.title=Fermer les dossiers
capability.ReOpenFolders.title=Rouvrir les dossiers
capability.DeclareRecordsInClosedFolders.title=Documents d'archives complets dans les dossiers ferm\u00e9s
# Vital Records
capability.group.vitalRecords.title=Documents d'archives essentiels
capability.UpdateVitalRecordCycleInformation.title=Mettre \u00e0 jour les informations de cycle de vie des documents d'archives essentiels
capability.CycleVitalRecords.title=Cycle des documents d'archives essentiels
capability.PlanningReviewCycles.title=Planification des cycles de v\u00e9rification
# References and Links
capability.group.references.title=R\u00e9f\u00e9rences
capability.ChangeOrDeleteReferences.title=Changer ou supprimer les r\u00e9f\u00e9rences
capability.DeleteLinks.title=Supprimer des liens
# Events
capability.group.events.title=\u00c9v\u00e9nements
capability.CreateModifyDestroyEvents.title=Cr\u00e9er, modifier et d\u00e9truire des \u00e9v\u00e9nements
capability.AddModifyEventDates.title=Ajouter et modifier des dates d'\u00e9v\u00e9nement
# Cutoff
capability.group.cutoff.title=Limiter
capability.ApproveRecordsScheduledForCutoff.title=Approuver les documents d'archives planifi\u00e9s pour la limite
capability.CreateModifyRecordsInCutoffFolders.title=Cr\u00e9er et modifier des documents d'archives dans les dossiers de limite
# Disposition and Transfers
capability.group.dispositionAndTransfers.title=Disposition et transferts
capability.UpdateTriggerDates.title=Mettre \u00e0 jour les dates de d\u00e9clenchement
capability.ManuallyChangeDispositionDates.title=Changer manuellement les dates de disposition
capability.AuthorizeNominatedTransfers.title=Autoriser les transferts nomm\u00e9s
capability.AuthorizeAllTransfers.title=Autoriser tous les transferts
capability.DestroyRecordsScheduledForDestruction.title=D\u00e9truire les documents d'archives planifi\u00e9s pour la destruction
capability.DestroyRecords.title=D\u00e9truire des documents d'archives
capability.DeleteRecords.title=Supprimer des documents d'archives
capability.TriggerAnEvent.title=D\u00e9clencher un \u00e9v\u00e9nement
# Hold Controls
capability.group.holdControls.title=Suspendre les contr\u00f4les
capability.ExtendRetentionPeriodOrFreeze.title=\u00c9tendre la p\u00e9riode de r\u00e9tention ou geler
capability.Unfreeze.title=D\u00e9geler
capability.ViewUpdateReasonsForFreeze.title=Afficher ou mettre \u00e0 jour les motifs du gel
# Audit
capability.group.audit.title=Auditer
capability.DeclareAuditAsRecord.title=D\u00e9clarer l'audit comme document d'archives
capability.EnableDisableAuditByTypes.title=Activer ou d\u00e9sactiver l'audit par types
capability.DeleteAudit.title=Supprimer un audit
capability.SelectAuditMetadata.title=S\u00e9lectionner les m\u00e9tadonn\u00e9es d'audit
capability.AccessAudit.title=Acc\u00e9der \u00e0 un audit
capability.ExportAudit.title=Exporter un audit
# Security
capability.group.security.title=S\u00e9curit\u00e9
capability.CreateModifyDestroyRoles.title=Cr\u00e9er, modifier ou d\u00e9truire des r\u00f4les
capability.CreateModifyDestroyUsersAndGroups.title=Cr\u00e9er, modifier ou d\u00e9truire des utilisateurs et des groupes
capability.PasswordControl.title=Contr\u00f4le du mot de passe
capability.DisplayRightsReport.title=Afficher le rapport des droits
capability.ManageAccessControls.title=G\u00e9rer les contr\u00f4les d'acc\u00e8s
capability.ManageAccessRights.title=G\u00e9rer les droits d'acc\u00e8s
# Configuration
capability.group.config.title=Configuration
capability.CreateModifyDestroyFileplanMetadata.title=Cr\u00e9er, modifier ou d\u00e9truire les m\u00e9tadonn\u00e9es d'un plan de fichier
capability.CreateModifyDestroyFileplanTypes.title=Cr\u00e9er, modifier ou d\u00e9truire les types de plans de fichier
capability.CreateModifyDestroyRecordTypes.title=Cr\u00e9er, modifier ou d\u00e9truire des types des documents d'archives
capability.CreateAndAssociateSelectionLists.title=Cr\u00e9er et associer des listes de s\u00e9lection
capability.EditSelectionLists.title=Editer des listes de s\u00e9lection
capability.CreateModifyDestroyReferenceTypes.title=Cr\u00e9er, modifier ou d\u00e9truire des types de r\u00e9f\u00e9rences
capability.AttachRulesToMetadataProperties.title=Attacher des r\u00e8gles aux propri\u00e9t\u00e9s de m\u00e9tadonn\u00e9es
capability.MakeOptionalParametersMandatory.title=Rendre les param\u00e8tres facultatifs obligatoires
capability.MapEmailMetadata.title=Mapper les m\u00e9tadonn\u00e9es de messagerie
# Rules
capability.group.rules.title=R\u00e8gles
capability.ManageRules.title=G\u00e9rer les r\u00e8gles

View File

@@ -0,0 +1,96 @@
# Records
capability.group.records.title=Record
capability.DeclareRecords.title=Completa record
capability.ViewRecords.title=Visualizza record
capability.UndeclareRecords.title=Riapri record
capability.CreateRecords.title=Crea record
capability.RequestRecordInformation.title=Richiedi informazioni sui record
capability.RejectRecords.title=Respingi record
capability.FileUnfiledRecords.title=File record non archiaviati
capability.LinkToRecords.title=Collega i record
# Metadata Control
capability.group.metadataControl.title=Controllo metadati
capability.EditRecordMetadata.title=Modifica metadati record
capability.EditDeclaredRecordMetadata.title=Modifica metadati record completato
capability.EditNonRecordMetadata.title=Modifica metadati non record
capability.MoveRecords.title=Sposta record
# Folder Control
capability.group.folderControl.title=Controllo cartelle
capability.CreateModifyDestroyFolders.title=Crea, modifica, elimina definitivamente le cartelle
capability.CloseFolders.title=Chiudi cartelle
capability.ReOpenFolders.title=Riapri cartelle
capability.DeclareRecordsInClosedFolders.title=Completa record delle cartelle chiuse
# Vital Records
capability.group.vitalRecords.title=Record essenziali
capability.UpdateVitalRecordCycleInformation.title=Aggiorna informazioni sul ciclo dei record essenziali
capability.CycleVitalRecords.title=Esegui ciclo record essenziali
capability.PlanningReviewCycles.title=Pianificazione cicli di revisione
# References and Links
capability.group.references.title=Riferimenti
capability.ChangeOrDeleteReferences.title=Modifica o elimina riferimenti
capability.DeleteLinks.title=Elimina collegamenti
# Events
capability.group.events.title=Eventi
capability.CreateModifyDestroyEvents.title=Crea, modifica, elimina definitivamente gli eventi
capability.AddModifyEventDates.title=Aggiungi, modifica date eventi
# Cutoff
capability.group.cutoff.title=Taglio
capability.ApproveRecordsScheduledForCutoff.title=Approva record destinati al taglio
capability.CreateModifyRecordsInCutoffFolders.title=Crea, modifica record nelle cartelle di taglio
# Disposition and Transfers
capability.group.dispositionAndTransfers.title=Disposizione e trasferimenti
capability.UpdateTriggerDates.title=Aggiorna date di attivazione
capability.ManuallyChangeDispositionDates.title=Modifica manualmente le date di disposizione
capability.AuthorizeNominatedTransfers.title=Autorizza i trasferimenti nominati
capability.AuthorizeAllTransfers.title=Autorizza tutti i trasferimenti
capability.DestroyRecordsScheduledForDestruction.title=Elimina definitivamente i record destinati all'eliminazione permanente
capability.DestroyRecords.title=Elimina definitivamente i record
capability.DeleteRecords.title=Elimina record
capability.TriggerAnEvent.title=Attiva un evento
# Hold Controls
capability.group.holdControls.title=Controlli esenzione
capability.ExtendRetentionPeriodOrFreeze.title=Estendi il periodo di conservazione o blocca
capability.Unfreeze.title=Sblocca
capability.ViewUpdateReasonsForFreeze.title=Visualizza, aggiorna i motivi del blocco
# Audit
capability.group.audit.title=Controllo
capability.DeclareAuditAsRecord.title=Dichiara controllo come record
capability.EnableDisableAuditByTypes.title=Attiva Disattiva il controllo per tipo
capability.DeleteAudit.title=Elimina controllo
capability.SelectAuditMetadata.title=Seleziona metadati di controllo
capability.AccessAudit.title=Accedi al controllo
capability.ExportAudit.title=Esporta controllo
# Security
capability.group.security.title=Sicurezza
capability.CreateModifyDestroyRoles.title=Crea, modifica, elimina definitivamente i ruoli
capability.CreateModifyDestroyUsersAndGroups.title=Crea, modifica, elimina definitivamente gli utenti e i gruppi
capability.PasswordControl.title=Controllo password
capability.DisplayRightsReport.title=Visualizza report dei diritti
capability.ManageAccessControls.title=Gestisci controlli di accesso
capability.ManageAccessRights.title=Gestisci diritti di accesso
# Configuration
capability.group.config.title=Configurazione
capability.CreateModifyDestroyFileplanMetadata.title=Crea, modifica, elimina definitivamente i metadati del piano file
capability.CreateModifyDestroyFileplanTypes.title=Crea, modifica, elimina definitivamente i tipi di piano file
capability.CreateModifyDestroyRecordTypes.title=Crea, modifica, elimina definitivamente i tipi di record
capability.CreateAndAssociateSelectionLists.title=Crea e associa gli elenchi di selezione
capability.EditSelectionLists.title=Modifica elenchi di selezione
capability.CreateModifyDestroyReferenceTypes.title=Crea, modifica, elimina definitivamente i tipi di riferimento
capability.AttachRulesToMetadataProperties.title=Associa regole alle propriet\u00e0 dei metadati
capability.MakeOptionalParametersMandatory.title=Rendi obbligatori i parametri facoltativi
capability.MapEmailMetadata.title=Esegui mapping metadati e-mail
# Rules
capability.group.rules.title=Regole
capability.ManageRules.title=Gestisci regole

View File

@@ -0,0 +1,96 @@
# Records
capability.group.records.title=\u30ec\u30b3\u30fc\u30c9
capability.DeclareRecords.title=\u5b8c\u4e86\u30ec\u30b3\u30fc\u30c9
capability.ViewRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u8868\u793a
capability.UndeclareRecords.title=\u30ec\u30b3\u30fc\u30c9\u3092\u518d\u5ea6\u958b\u304f
capability.CreateRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u4f5c\u6210
capability.RequestRecordInformation.title=\u30ec\u30b3\u30fc\u30c9\u60c5\u5831\u306e\u30ea\u30af\u30a8\u30b9\u30c8
capability.RejectRecords.title=\u30ec\u30b3\u30fc\u30c9\u3092\u5374\u4e0b\u3059\u308b
capability.FileUnfiledRecords.title=\u672a\u30ec\u30b3\u30fc\u30c9\u3092\u30d5\u30a1\u30a4\u30eb\u3059\u308b
capability.LinkToRecords.title=\u30ec\u30b3\u30fc\u30c9\u3092\u30ea\u30f3\u30af\u3059\u308b
# Metadata Control
capability.group.metadataControl.title=\u30e1\u30bf\u30c7\u30fc\u30bf\u5236\u5fa1
capability.EditRecordMetadata.title=\u30ec\u30b3\u30fc\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u7de8\u96c6
capability.EditDeclaredRecordMetadata.title=\u5b8c\u4e86\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf\u3092\u7de8\u96c6\u3059\u308b
capability.EditNonRecordMetadata.title=\u975e\u30ec\u30b3\u30fc\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf\u3092\u7de8\u96c6\u3059\u308b
capability.MoveRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u79fb\u52d5
# Folder Control
capability.group.folderControl.title=\u30d5\u30a9\u30eb\u30c0\u5236\u5fa1
capability.CreateModifyDestroyFolders.title=\u30d5\u30a9\u30eb\u30c0\u306e\u4f5c\u6210/\u4fee\u6b63/\u7834\u68c4
capability.CloseFolders.title=\u30d5\u30a9\u30eb\u30c0\u3092\u9589\u3058\u308b
capability.ReOpenFolders.title=\u30d5\u30a9\u30eb\u30c0\u3092\u518d\u5ea6\u958b\u304f
capability.DeclareRecordsInClosedFolders.title=\u9589\u3058\u305f\u30d5\u30a9\u30eb\u30c0\u3067\u30ec\u30b3\u30fc\u30c9\u3092\u5b8c\u4e86\u3059\u308b
# Vital Records
capability.group.vitalRecords.title=\u5fc5\u9808\u30ec\u30b3\u30fc\u30c9
capability.UpdateVitalRecordCycleInformation.title=\u5fc5\u9808\u30ec\u30b3\u30fc\u30c9\u30b5\u30a4\u30af\u30eb\u60c5\u5831\u3092\u66f4\u65b0\u3059\u308b
capability.CycleVitalRecords.title=\u30b5\u30a4\u30af\u30eb\u5fc5\u9808\u30ec\u30b3\u30fc\u30c9
capability.PlanningReviewCycles.title=\u30ec\u30d3\u30e5\u30fc\u30b5\u30a4\u30af\u30eb\u306e\u8a08\u753b
# References and Links
capability.group.references.title=\u53c2\u7167
capability.ChangeOrDeleteReferences.title=\u53c2\u7167\u306e\u5909\u66f4\u307e\u305f\u306f\u524a\u9664
capability.DeleteLinks.title=\u30ea\u30f3\u30af\u306e\u524a\u9664
# Events
capability.group.events.title=\u30a4\u30d9\u30f3\u30c8
capability.CreateModifyDestroyEvents.title=\u30a4\u30d9\u30f3\u30c8\u306e\u4f5c\u6210/\u4fee\u6b63/\u7834\u68c4
capability.AddModifyEventDates.title=\u30a4\u30d9\u30f3\u30c8\u65e5\u306e\u8ffd\u52a0/\u4fee\u6b63
# Cutoff
capability.group.cutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5
capability.ApproveRecordsScheduledForCutoff.title=\u30ab\u30c3\u30c8\u30aa\u30d5\u306e\u30ec\u30b3\u30fc\u30c9\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3092\u627f\u8a8d\u3059\u308b
capability.CreateModifyRecordsInCutoffFolders.title=\u30ab\u30c3\u30c8\u30aa\u30d5\u30d5\u30a9\u30eb\u30c0\u3067\u30ec\u30b3\u30fc\u30c9\u3092\u4f5c\u6210/\u4fee\u6b63\u3059\u308b
# Disposition and Transfers
capability.group.dispositionAndTransfers.title=\u5ec3\u68c4\u3068\u8ee2\u9001
capability.UpdateTriggerDates.title=\u30c8\u30ea\u30ac\u30fc\u65e5\u306e\u66f4\u65b0
capability.ManuallyChangeDispositionDates.title=\u5ec3\u68c4\u65e5\u3092\u624b\u52d5\u3067\u5909\u66f4\u3059\u308b
capability.AuthorizeNominatedTransfers.title=\u63a8\u85a6\u3055\u308c\u305f\u8ee2\u9001\u306e\u627f\u8a8d
capability.AuthorizeAllTransfers.title=\u3059\u3079\u3066\u306e\u8ee2\u9001\u306e\u627f\u8a8d
capability.DestroyRecordsScheduledForDestruction.title=\u5ec3\u68c4\u306e\u30ec\u30b3\u30fc\u30c9\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3092\u7834\u68c4\u3059\u308b
capability.DestroyRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u7834\u68c4
capability.DeleteRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u524a\u9664
capability.TriggerAnEvent.title=\u30a4\u30d9\u30f3\u30c8\u306e\u30c8\u30ea\u30ac\u30fc
# Hold Controls
capability.group.holdControls.title=\u5236\u5fa1\u306e\u4fdd\u7559
capability.ExtendRetentionPeriodOrFreeze.title=\u56fa\u5b9a\u306e\u4fdd\u5b58\u671f\u9593\u3092\u5ef6\u9577\u3059\u308b
capability.Unfreeze.title=\u56fa\u5b9a\u89e3\u9664
capability.ViewUpdateReasonsForFreeze.title=\u56fa\u5b9a\u306e\u66f4\u65b0\u7406\u7531\u3092\u8868\u793a\u3059\u308b
# Audit
capability.group.audit.title=\u76e3\u67fb
capability.DeclareAuditAsRecord.title=\u76e3\u67fb\u3092\u30ec\u30b3\u30fc\u30c9\u3068\u3057\u3066\u5ba3\u8a00\u3059\u308b
capability.EnableDisableAuditByTypes.title=\u30bf\u30a4\u30d7\u3054\u3068\u306b\u76e3\u67fb\u3092\u6709\u52b9/\u7121\u52b9\u306b\u3059\u308b
capability.DeleteAudit.title=\u76e3\u67fb\u306e\u524a\u9664
capability.SelectAuditMetadata.title=\u76e3\u67fb\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u9078\u629e
capability.AccessAudit.title=\u76e3\u67fb\u306e\u30a2\u30af\u30bb\u30b9
capability.ExportAudit.title=\u76e3\u67fb\u306e\u30a8\u30af\u30b9\u30dd\u30fc\u30c8
# Security
capability.group.security.title=\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3
capability.CreateModifyDestroyRoles.title=\u5f79\u5272\u306e\u4f5c\u6210/\u4fee\u6b63/\u7834\u68c4
capability.CreateModifyDestroyUsersAndGroups.title=\u30e6\u30fc\u30b6\u30fc\u3068\u30b0\u30eb\u30fc\u30d7\u3092\u4f5c\u6210/\u4fee\u6b63/\u7834\u68c4\u3059\u308b
capability.PasswordControl.title=\u30d1\u30b9\u30ef\u30fc\u30c9\u5236\u5fa1
capability.DisplayRightsReport.title=\u6a29\u5229\u30ec\u30dd\u30fc\u30c8\u306e\u8868\u793a
capability.ManageAccessControls.title=\u30a2\u30af\u30bb\u30b9\u5236\u5fa1\u306e\u7ba1\u7406
capability.ManageAccessRights.title=\u30a2\u30af\u30bb\u30b9\u6a29\u306e\u7ba1\u7406
# Configuration
capability.group.config.title=\u8a2d\u5b9a
capability.CreateModifyDestroyFileplanMetadata.title=\u30d5\u30a1\u30a4\u30eb\u30d7\u30e9\u30f3\u30e1\u30bf\u30c7\u30fc\u30bf\u3092\u4f5c\u6210/\u4fee\u6b63/\u7834\u68c4\u3059\u308b
capability.CreateModifyDestroyFileplanTypes.title=\u30d5\u30a1\u30a4\u30eb\u30d7\u30e9\u30f3\u30bf\u30a4\u30d7\u3092\u4f5c\u6210/\u4fee\u6b63/\u7834\u68c4\u3059\u308b
capability.CreateModifyDestroyRecordTypes.title=\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7\u306e\u4f5c\u6210/\u4fee\u6b63/\u7834\u68c4
capability.CreateAndAssociateSelectionLists.title=\u9078\u629e\u30ea\u30b9\u30c8\u306e\u4f5c\u6210/\u95a2\u9023\u4ed8\u3051
capability.EditSelectionLists.title=\u9078\u629e\u30ea\u30b9\u30c8\u306e\u7de8\u96c6
capability.CreateModifyDestroyReferenceTypes.title=\u53c2\u7167\u30bf\u30a4\u30d7\u306e\u4f5c\u6210/\u4fee\u6b63/\u7834\u68c4
capability.AttachRulesToMetadataProperties.title=\u30eb\u30fc\u30eb\u3092\u30e1\u30bf\u30c7\u30fc\u30bf\u30d7\u30ed\u30d1\u30c6\u30a3\u306b\u6dfb\u4ed8\u3059\u308b
capability.MakeOptionalParametersMandatory.title=\u30aa\u30d7\u30b7\u30e7\u30f3\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u5fc5\u9808\u306b\u3059\u308b
capability.MapEmailMetadata.title=E\u30e1\u30fc\u30eb\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u30de\u30c3\u30d7
# Rules
capability.group.rules.title=\u30eb\u30fc\u30eb
capability.ManageRules.title=\u30eb\u30fc\u30eb\u306e\u7ba1\u7406

View File

@@ -0,0 +1 @@
dataset.dod5015.label=DOD 5015 Example Data

View File

@@ -0,0 +1 @@
dataset.dod5015.label=DOD 5015 Beispieldaten

View File

@@ -0,0 +1 @@
dataset.dod5015.label=Datos de ejemplo DOD 5015

View File

@@ -0,0 +1 @@
dataset.dod5015.label=Exemple de donn\u00e9es DOD 5015

View File

@@ -0,0 +1 @@
dataset.dod5015.label=Dati di esempio DOD 5015

View File

@@ -0,0 +1 @@
dataset.dod5015.label=DOD 5015\u5b9f\u4f8b\u30c7\u30fc\u30bf

View File

@@ -0,0 +1,3 @@
notification.dueforreview.subject=Records due for Review Notification
notification.superseded.subject=Record Superseded Notification
notification.rejected.subject=Record Rejected Notification

View File

@@ -0,0 +1,3 @@
notification.dueforreview.subject=Benachrichtigung bei Datens\u00e4tzen mit f\u00e4lliger \u00dcberpr\u00fcfung
notification.superseded.subject=Benachrichtigung bei abgel\u00f6stem Datensatz
notification.rejected.subject=Benachrichtigung bei abgelehntem Datensatz

View File

@@ -0,0 +1,3 @@
notification.dueforreview.subject=Documentos de archivo pendientes de notificaci\u00f3n de revisi\u00f3n
notification.superseded.subject=Notificaci\u00f3n de documento de archivo reemplazado
notification.rejected.subject=Notificaci\u00f3n de documento de archivo rechazado

View File

@@ -0,0 +1,3 @@
notification.dueforreview.subject=Notification de v\u00e9rification de document d'archives
notification.superseded.subject=Notification de document d'archives remplac\u00e9
notification.rejected.subject=Notification de document d'archives rejet\u00e9

View File

@@ -0,0 +1,3 @@
notification.dueforreview.subject=Notifica record da revisionare
notification.superseded.subject=Notifica record sostituito
notification.rejected.subject=Notifica record respinto

View File

@@ -0,0 +1,3 @@
notification.dueforreview.subject=\u30ec\u30b3\u30fc\u30c9\u30ec\u30d3\u30e5\u30fc\u671f\u9650\u306e\u901a\u77e5
notification.superseded.subject=\u30ec\u30b3\u30fc\u30c9\u4ee3\u66ff\u306e\u901a\u77e5
notification.rejected.subject=\u30ec\u30b3\u30fc\u30c9\u5374\u4e0b\u306e\u901a\u77e5

View File

@@ -0,0 +1,19 @@
rm.service.error-add-content-container=Content can't be added to a record container. Use record folders to file content.
rm.service.update-disposition-action-def=The disposition action definition can't be updated, because an update is being published.
rm.service.set-id=The identifier property value of the object {0} is read-only so can't be set.
rm.service.path-node=Unable to get path. (nodeRef={0})
rm.service.invalid-rm-node=Invalid records management node, because aspect {0} is not present.
rm.service.no-root=Unable to find records management root.
rm.service.dup-root=Can't create the records management root, because there's one already exists in this hierarchy.
rm.service.root-type=Can't create the records management root, because type {0} is not a sub-type of rm:recordsManagementRootContainer.
rm.service.container-parent-type=Can't create records management container, because parent was not sub-type of rm:recordsManagement (parentType={0})
rm.service.container-type=Can't create records management container, because type {0} is not a sub-type of rm:recordsManagementContainer.
rm.service.container-expected=Node reference to a rm:recordsManagementContainer node expected.
rm.service.record-folder-expected=Node reference to a rm:recordFolder node expected.
rm.service.parent-record-folder-root=Can't create a record folder, because the parent is a records management root.
rm.service.parent-record-folder-type=Can't create record folder, because the parent was not sub-type of rm:recordsManagementContainer. (parentType={0})
rm.service.record-folder-type=Can't create record folder, because the provided type is not a sub-type of rm:recordFolder. (type={0})
rm.service.not-record=The node {0} is not a record.
rm.service.vital-def-missing=Vital record definition aspect is not present on node. (nodeRef={0})
rm.service.close-record-folder-not-folder=The record folder couldn't be closed because it's not defined as a record folder.(nodeRef={0})
rm.service.node-has-aspect=The node {0} has already the aspect {1}.

View File

@@ -0,0 +1,17 @@
rm.service.error-add-content-container=Inhalt kann einem Datensatz-Container nicht hinzugef\u00fcgt werden. Verwenden Sie Datensatzordner zur Inhaltsablage.
rm.service.update-disposition-action-def=Die Definition der Dispositionsaktion kann nicht aktualisiert werden, da derzeit eine Aktualisierung ver\u00f6ffentlicht wird.
rm.service.set-id=Der ID-Eigenschaftenwert des Objekts {0} ist schreibgesch\u00fctzt; er kann also nicht festgelegt werden.
rm.service.path-node=Pfad kann nicht ermittelt werden. (nodeRef={0})
rm.service.invalid-rm-node=Records Management-Node ung\u00fcltig, da Aspekt {0} nicht vorhanden ist.
rm.service.no-root=Records Management-Root kann nicht gefunden werden.
rm.service.dup-root=Records Management-Root kann nicht erstellt werden, da bereits eine in dieser Hierarchie vorhanden ist.
rm.service.root-type=Records Management-Root kann nicht erstellt werden, da Typ {0} kein Subtyp von rm:recordsManagementRootContainer ist.
rm.service.container-parent-type=Records Management-Container kann nicht erstellt werden, da Elternobjekt kein Subtyp von rm:recordsManagement (parentType={0}) ist.
rm.service.container-type=Records Management-Container kann nicht erstellt werden, da Typ {0} kein Subtyp von rm:recordsManagementContainer ist.
rm.service.container-expected=Node-Referenz zu einem rm:recordsManagementContainer-Node erwartet.
rm.service.record-folder-expected=Node-Referenz zu einem rm:recordFolder-Node erwartet.
rm.service.parent-record-folder-root=Datensatzordner kann nicht erstellt werden, da es sich bei dem Elternobjekt um eine Records Management-Root handelt.
rm.service.parent-record-folder-type=Datensatzordner kann nicht erstellt werden, da das Elternobjekt kein Subtyp von rm:recordsManagementContainer ist. (parentType={0})
rm.service.record-folder-type=Datensatzordner kann nicht erstellt werden, da der angegebene Typ kein Subtyp von rm:recordFolder ist. (type={0})
rm.service.not-record=Node {0} ist kein Datensatz.
rm.service.vital-def-missing=Definitionsaspekt von erforderlichem Datensatz ist auf dem Node nicht vorhanden. (nodeRef={0})

View File

@@ -0,0 +1,17 @@
rm.service.error-add-content-container=No se puede a\u00f1adir contenido a un contenedor de archivos. Use carpetas de documentos de archivo para archivar contenido.
rm.service.update-disposition-action-def=La definici\u00f3n de la acci\u00f3n de disposici\u00f3n no se puede actualizar porque se est\u00e1 publicando una actualizaci\u00f3n.
rm.service.set-id=El valor de la propiedad del identificador del objeto {0} es de solo lectura, por lo que no puede definirse.
rm.service.path-node=No se puede obtener la ruta. (nodeRef={0})
rm.service.invalid-rm-node=Nodo de gesti\u00f3n de documentos de archivo no v\u00e1lido porque el aspecto {0} no est\u00e1 presente.
rm.service.no-root=No se pudo encontrar la ra\u00edz de gesti\u00f3n de documentos de archivo.
rm.service.dup-root=No se pudo crear la ra\u00edz de gesti\u00f3n de documentos de archivo porque ya hay una en esta jerarqu\u00eda.
rm.service.root-type=No se puede crear la ra\u00edz de gesti\u00f3n de documentos de archivo porque el tipo {0} no es un subtipo de rm:recordsManagementRootContainer.
rm.service.container-parent-type=No se puede crear un contenedor de gesti\u00f3n de documentos de archivo porque el padre no es un subtipo de rm:recordsManagement (parentType={0})
rm.service.container-type=No se puede crear un contenedor de gesti\u00f3n de documentos de archivo porque el tipo {0} no es un subtipo de rm:recordsManagementContainer.
rm.service.container-expected=Referencia de nodo a un rm:recordsManagementContainer nodo esperado.
rm.service.record-folder-expected=Referencia de nodo a un nodo esperado rm:recordFolder.
rm.service.parent-record-folder-root=No se puede crear una carpeta de archivos porque el padre es una ra\u00edz de gesti\u00f3n de documentos de archivo.
rm.service.parent-record-folder-type=No se puede crear una carpeta de documentos de archivo porque el padre no era un subtipo de rm:recordsManagementContainer. (parentType={0})
rm.service.record-folder-type=No se puede crear una carpeta de archivos porque el tipo proporcionado no es un subtipo de rm:recordFolder. (type={0})
rm.service.not-record=El nodo {0} no es un documento de archivo.
rm.service.vital-def-missing=Aspecto de definici\u00f3n de documento de archivo vital no est\u00e1 presente en el nodo. (nodeRef={0})

View File

@@ -0,0 +1,17 @@
rm.service.error-add-content-container=Le contenu ne peut pas \u00eatre ajout\u00e9 \u00e0 un conteneur d'archive. Utilisez des dossiers d'archives pour archiver le contenu.
rm.service.update-disposition-action-def=La d\u00e9finition d'action de disposition ne peut pas \u00eatre mise \u00e0 jour, car une mise \u00e0 jour est en cours de publication.
rm.service.set-id=La valeur de la propri\u00e9t\u00e9 d''identificateur de l''objet {0} est en lecteure seule et ne peut pas \u00eatre d\u00e9finie.
rm.service.path-node=Impossible d'obtenir le chemin. (nodeRef={0})
rm.service.invalid-rm-node=Noeud d''archivage \u00e9lectronique non valide, car l''aspect {0} est absent.
rm.service.no-root=Racine d''archivage \u00e9lectronique introuvable.
rm.service.dup-root=Impossible de cr\u00e9er la racine d'archivage \u00e9lectronique, car il en existe d\u00e9j\u00e0 une dans cette hi\u00e9rarchie.
rm.service.root-type=Impossible de cr\u00e9er la racine d''archivage \u00e9lectronique, car le type {0} n''est pas un sous-type rm:recordsManagementRootContainer.
rm.service.container-parent-type=Impossible de cr\u00e9er le conteneur d''archivage \u00e9lectronique, car le parent n'est pas un sous-type rm:recordsManagement (parentType={0})
rm.service.container-type=Impossible de cr\u00e9er le conteneur d''archivage \u00e9lectronique, car le type {0} n''est pas un sous-type rm:recordsManagementContainer.
rm.service.container-expected=R\u00e9f\u00e9rence de noeud \u00e0 un noeud rm:recordsManagementContainer attendu.
rm.service.record-folder-expected=R\u00e9f\u00e9rence de noeud \u00e0 un noeud rm:recordsFolder attendu.
rm.service.parent-record-folder-root=Impossible de cr\u00e9er un dossier d'archives, car le parent est une racine d'archivage \u00e9lectronique.
rm.service.parent-record-folder-type=Impossible de cr\u00e9er un dossier d'archives, car le parent n'est pas un sous-type rm:recordsManagementContainer. (parentType={0})
rm.service.record-folder-type=Impossible de cr\u00e9er un dossier d'archives, car le type fourni n''est pas un sous-type rm:recordFolder. (type={0})
rm.service.not-record=Le noeud {0} n''est pas un documents d''archives.
rm.service.vital-def-missing=L'aspect de d\u00e9finition d'archive essentiel n'est pas pr\u00e9sent sur le noeud. (nodeRef={0})

View File

@@ -0,0 +1,17 @@
rm.service.error-add-content-container=Impossibile aggiungere il contenuto al contenitore di record. Utilizzare le cartelle di record per archiviare il contenuto.
rm.service.update-disposition-action-def=Impossibile aggiornare la definizione dell'azione di disposizione poich\u00e9 \u00e8 in corso la pubblicazione di un aggiornamento.
rm.service.set-id=Il valore della propriet\u00e0 identificatore dell''oggetto {0} \u00e8 di sola lettura, pertanto non \u00e8 possibile impostarlo.
rm.service.path-node=Impossibile ottenere il percorso. (nodeRef={0})
rm.service.invalid-rm-node=Nodo di gestione dei record non valido poich\u00e9 l''aspetto {0} non \u00e8 presente.
rm.service.no-root=Impossibile trovare la radice di gestione dei record.
rm.service.dup-root=Impossibile creare la radice di gestione dei record poich\u00e9 ne esiste gi\u00e0 una in questa gerarchia.
rm.service.root-type=Impossibile creare la radice di gestione dei record poich\u00e9 il tipo {0} non \u00e8 un sotto-tipo di rm:recordsManagementRootContainer.
rm.service.container-parent-type=Impossibile creare il contenitore di gestione dei record poich\u00e9 il padre non era un sotto-tipo di rm:recordsManagement (parentType={0})
rm.service.container-type=Impossibile creare il contenitore di gestione dei record poich\u00e9 il tipo {0} non \u00e8 un sotto-tipo di rm:recordsManagementContainer.
rm.service.container-expected=Riferimento a un nodo rm:recordsManagementContainer previsto.
rm.service.record-folder-expected=Riferimento a un nodo rm:recordFolder previsto.
rm.service.parent-record-folder-root=Impossibile creare una cartella di record poich\u00e9 il padre \u00e8 una radice di gestione dei record.
rm.service.parent-record-folder-type=Impossibile creare la cartella di record poich\u00e9 il padre non era un sotto-tipo di rm:recordsManagementContainer. (parentType={0})
rm.service.record-folder-type=Impossibile creare la cartella di record poich\u00e9 il tipo fornito non \u00e8 un sotto-tipo di rm:recordFolder. (type={0})
rm.service.not-record=Il nodo {0} non \u00e8 un record.
rm.service.vital-def-missing=L'aspetto della definizione di record essenziale non \u00e8 presente sul nodo. (nodeRef={0})

View File

@@ -0,0 +1,17 @@
rm.service.error-add-content-container=\u30b3\u30f3\u30c6\u30f3\u30c4\u306f\u30ec\u30b3\u30fc\u30c9\u30b3\u30f3\u30c6\u30ca\u30fc\u306b\u8ffd\u52a0\u3067\u304d\u307e\u305b\u3093\u3002 \u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u4f7f\u7528\u3057\u3066\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u6574\u7406\u4fdd\u7ba1\u3057\u307e\u3059\u3002
rm.service.update-disposition-action-def=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u5b9a\u7fa9\u3092\u66f4\u65b0\u3067\u304d\u307e\u305b\u3093\u3002\u66f4\u65b0\u304c\u516c\u958b\u4e2d\u306e\u305f\u3081\u3067\u3059\u3002
rm.service.set-id=\u30aa\u30d6\u30b8\u30a7\u30af\u30c8{0}\u306e\u8b58\u5225\u5b50\u30d7\u30ed\u30d1\u30c6\u30a3\u5024\u304c\u8aad\u307f\u53d6\u308a\u5c02\u7528\u3067\u3042\u308b\u305f\u3081\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093\u3002
rm.service.path-node=\u30d1\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3002 (nodeRef={0})
rm.service.invalid-rm-node=\u7121\u52b9\u306a\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30ce\u30fc\u30c9\u3067\u3059\u3002\u30a2\u30b9\u30da\u30af\u30c8{0}\u304c\u5b58\u5728\u3057\u306a\u3044\u305f\u3081\u3067\u3059\u3002
rm.service.no-root=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8\u3092\u898b\u3064\u3051\u3089\u308c\u307e\u305b\u3093\u3002
rm.service.dup-root=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002\u3053\u306e\u968e\u5c64\u306b\u3059\u3067\u306b\u5b58\u5728\u3057\u3066\u3044\u308b\u305f\u3081\u3067\u3059\u3002
rm.service.root-type=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002\u30bf\u30a4\u30d7{0}\u304crm:recordsManagementRootContainer\u306e\u30b5\u30d6\u30bf\u30a4\u30d7\u3067\u306f\u306a\u3044\u305f\u3081\u3067\u3059\u3002
rm.service.container-parent-type=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30b3\u30f3\u30c6\u30ca\u30fc\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002\u89aa\u304crm:recordsManagement\u306e\u30b5\u30d6\u30bf\u30a4\u30d7\u3067\u306f\u306a\u3044\u305f\u3081\u3067\u3059\u3002(parentType={0})
rm.service.container-type=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30b3\u30f3\u30c6\u30ca\u30fc\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002\u30bf\u30a4\u30d7{0}\u304crm:recordsManagementContainer\u306e\u30b5\u30d6\u30bf\u30a4\u30d7\u3067\u306f\u306a\u3044\u305f\u3081\u3067\u3059\u3002
rm.service.container-expected=rm:recordsManagementContainer\u30ce\u30fc\u30c9\u3078\u306e\u30ce\u30fc\u30c9\u53c2\u7167\u304c\u60f3\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059\u3002
rm.service.record-folder-expected=rm:recordFolder\u30ce\u30fc\u30c9\u3078\u306e\u30ce\u30fc\u30c9\u53c2\u7167\u304c\u60f3\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059\u3002
rm.service.parent-record-folder-root=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002\u89aa\u304c\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8\u3067\u3042\u308b\u305f\u3081\u3067\u3059\u3002
rm.service.parent-record-folder-type=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002\u89aa\u304crm:recordsManagementContainer\u306e\u30b5\u30d6\u30bf\u30a4\u30d7\u3067\u306f\u306a\u304b\u3063\u305f\u305f\u3081\u3067\u3059\u3002 (parentType={0})
rm.service.record-folder-type=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002\u6307\u5b9a\u3055\u308c\u305f\u30bf\u30a4\u30d7\u304crm:recordFolder\u306e\u30b5\u30d6\u30bf\u30a4\u30d7\u3067\u306f\u306a\u3044\u305f\u3081\u3067\u3059\u3002 (type={0})
rm.service.not-record=\u30ce\u30fc\u30c9{0}\u306f\u30ec\u30b3\u30fc\u30c9\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002
rm.service.vital-def-missing=\u5fc5\u9808\u30ec\u30b3\u30fc\u30c9\u5b9a\u7fa9\u30a2\u30b9\u30da\u30af\u30c8\u304c\u30ce\u30fc\u30c9\u306b\u5b58\u5728\u3057\u307e\u305b\u3093\u3002 (nodeRef={0})

View File

@@ -0,0 +1,281 @@
rma_recordsmanagement.description=Records Management Content Model
rma_recordsmanagement.type.rma_rmsite.title=Records Management Site
rma_recordsmanagement.type.rma_rmsite.description=Specialized Site for Records Management
rma_recordsmanagement.type.rma_caveatConfig.title=Caveat Config
rma_recordsmanagement.type.rma_caveatConfig.decription=Caveat Config
rma_recordsmanagement.type.rma_emailConfig.title=Email Configuration
rma_recordsmanagement.type.rma_emailConfig.decription=Email Configuration
rma_recordsmanagement.type.rma_recordsManagementContainer.title=Records Management Container
rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Records Management Container
rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Records Management Root Container
rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Records Management Root Container
rma_recordsmanagement.type.rma_dispositionSchedule.title=Disposition Schedule
rma_recordsmanagement.type.rma_dispositionSchedule.decription=Disposition Schedule
rma_recordsmanagement.property.rma_dispositionAuthority.title=Disposition Authority
rma_recordsmanagement.property.rma_dispositionAuthority.decription=Disposition Authority
rma_recordsmanagement.property.rma_dispositionInstructions.title=Disposition Instructions
rma_recordsmanagement.property.rma_dispositionInstructions.decription=Disposition Instructions
rma_recordsmanagement.property.rma_recordLevelDisposition.title=Record Level Disposition
rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Record Level Disposition
rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Disposition Actions
rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Disposition Actions
rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Disposition Action Definition
rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Disposition Action Definition
rma_recordsmanagement.property.rma_dispositionActionName.title=Disposition Action Name
rma_recordsmanagement.property.rma_dispositionActionName.decription=Disposition Action Name
rma_recordsmanagement.property.rma_dispositionDescription.title=Disposition Description
rma_recordsmanagement.property.rma_dispositionDescription.decription=Disposition Description
rma_recordsmanagement.property.rma_dispositionLocation.title=Disposition Location
rma_recordsmanagement.property.rma_dispositionLocation.decription=Disposition Location
rma_recordsmanagement.property.rma_dispositionPeriod.title=Disposition Period
rma_recordsmanagement.property.rma_dispositionPeriod.decription=Disposition Period
rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Disposition Period Property
rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Disposition Period Property
rma_recordsmanagement.property.rma_dispositionEvent.title=Disposition Event
rma_recordsmanagement.property.rma_dispositionEvent.decription=Disposition Event
rma_recordsmanagement.property.rma_dispositionEventCombination.title=Disposition Event Combination
rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Disposition Event Combination
rma_recordsmanagement.type.rma_recordFolder.title=Record Folder
rma_recordsmanagement.type.rma_recordFolder.decription=Record Folder
rma_recordsmanagement.property.rma_isClosed.title=Record
rma_recordsmanagement.property.rma_isClosed.decription=Record
rma_recordsmanagement.type.rma_recordCategory.title=Record Category
rma_recordsmanagement.type.rma_recordCategory.decription=Record Category
rma_recordsmanagement.type.rma_nonElectronicDocument.title=Non-Electronic Document
rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Non-Electronic Document
rma_recordsmanagement.property.rma_physicalSize.title=Physical Size
rma_recordsmanagement.property.rma_physicalSize.decription=The size of the document measured in linear meters.
rma_recordsmanagement.property.rma_numberOfCopies.title=Number Of Copies
rma_recordsmanagement.property.rma_numberOfCopies.description=The number of copies of the document.
rma_recordsmanagement.property.rma_storageLocation.title=Storage Location
rma_recordsmanagement.property.rma_storageLocation.decription=The physical storage location of the record.
rma_recordsmanagement.property.rma_shelf.title=Shelf
rma_recordsmanagement.property.rma_shelf.decription=The shelf the record resides on.
rma_recordsmanagement.property.rma_box.title=Box
rma_recordsmanagement.property.rma_box.description=The box the record resides in.
rma_recordsmanagement.property.rma_file.title=File
rma_recordsmanagement.property.rma_file.decription=The file the record resides in.
rma_recordsmanagement.type.rma_dispositionAction.title=Disposition Action
rma_recordsmanagement.type.rma_dispositionAction.decription=Disposition Action
rma_recordsmanagement.property.rma_dispositionActionId.title=Disposition Action Id
rma_recordsmanagement.property.rma_dispositionActionId.decription=Disposition Action Id
rma_recordsmanagement.property.rma_dispositionAction.title=Disposition Action
rma_recordsmanagement.property.rma_dispositionAction.decription=Disposition Action
rma_recordsmanagement.property.rma_dispositionAsOf.title=Disposition Action
rma_recordsmanagement.property.rma_dispositionAsOf.decription=Disposition Action
rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Disposition Events Eligible
rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Disposition Events Eligible
rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Disposition Action Started At
rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Disposition Action Started At
rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Disposition Action Started By
rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Disposition Action Started By
rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Disposition Action Completed At
rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Disposition Action Completed At
rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Disposition Action Completed By
rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Disposition Action Completed By
rma_recordsmanagement.association.rma_eventExecutions.title=Event executions
rma_recordsmanagement.association.rma_eventExecutions.decription=Event executions
rma_recordsmanagement.type.rma_eventExecution.title=Event Execution
rma_recordsmanagement.type.rma_eventExecution.decription=Event Execution
rma_recordsmanagement.property.rma_eventExecutionName.title=Event Name
rma_recordsmanagement.property.rma_eventExecutionName.decription=Event Name
rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Event automatic
rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Event automatic
rma_recordsmanagement.property.rma_eventExecutionComplete.title=Event complete
rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Event complete
rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Event completed by
rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Event completed by
rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Event completed at
rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Event completed at
rma_recordsmanagement.type.rma_hold.title=Hold
rma_recordsmanagement.type.rma_hold.decription=Hold
rma_recordsmanagement.property.rma_holdReason.title=Hold Reason
rma_recordsmanagement.property.rma_holdReason.decription=Hold Reason
rma_recordsmanagement.association.rma_frozenRecords.title=Frozen Records
rma_recordsmanagement.association.rma_frozenRecords.decription=Frozen Records
rma_recordsmanagement.type.rma_transfer.title=Transfer
rma_recordsmanagement.type.rma_transfer.decription=Transfer
rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Transfer Accession Indicator
rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Transfer Accession Indicator
rma_recordsmanagement.property.rma_transferPDFIndicator.title=Transfer PDF Indicator
rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Transfer PDF Indicator
rma_recordsmanagement.property.rma_transferLocation.title=Transfer PDF
rma_recordsmanagement.property.rma_transferLocation.decription=Transfer PDF
rma_recordsmanagement.association.rma_transferred.title=Transferred
rma_recordsmanagement.association.rma_transferred.decription=Transferred
rma_recordsmanagement.aspect.rma_filePlanComponent.title=File Plan Component
rma_recordsmanagement.aspect.rma_filePlanComponent.decription=File Plan Component
rma_recordsmanagement.property.rma_rootNodeRef.title=Root node
rma_recordsmanagement.property.rma_rootNodeRef.decription=Root node
rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Records Management Root
rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Records Management Root
rma_recordsmanagement.association.rma_holds.title=Holds
rma_recordsmanagement.association.rma_holds.decription=Holds
rma_recordsmanagement.association.rma_transfers.title=Transfers
rma_recordsmanagement.association.rma_transfers.decription=Transfers
rma_recordsmanagement.aspect.rma_declaredRecord.title=Completed Record
rma_recordsmanagement.aspect.rma_declaredRecord.decription=Completed Record
rma_recordsmanagement.property.rma_declaredAt.title=Date Completed
rma_recordsmanagement.property.rma_declaredAt.decription=Date Completed
rma_recordsmanagement.property.rma_declaredBy.title=Completed By
rma_recordsmanagement.property.rma_declaredBy.decription=Completed By
rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Record component identifier
rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Record component identifier
rma_recordsmanagement.property.rma_identifier.title=Identifier
rma_recordsmanagement.property.rma_identifier.decription=Unique record identifier
rma_recordsmanagement.property.rma_dbUniquenessId.title=Database uniqueness
rma_recordsmanagement.property.rma_dbUniquenessId.decription=Database uniqueness
rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Vital Record Definition
rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Vital Record Definition
rma_recordsmanagement.property.rma_reviewPeriod.title=Review Period
rma_recordsmanagement.property.rma_reviewPeriod.decription=Review Period
rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Vital Record Indicator
rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Vital Record Indicator
rma_recordsmanagement.aspect.rma_record.title=Record
rma_recordsmanagement.aspect.rma_record.decription=Record
rma_recordsmanagement.property.rma_dateFiled.title=Date Filed
rma_recordsmanagement.property.rma_dateFiled.decription=Date Filed
rma_recordsmanagement.property.rma_publicationDate.title=Publication Date
rma_recordsmanagement.property.rma_publicationDate.decription=Publication Date
rma_recordsmanagement.property.rma_originator.title=Originator
rma_recordsmanagement.property.rma_originator.decription=Originator
rma_recordsmanagement.property.rma_originatingOrganization.title=Originating Organization
rma_recordsmanagement.property.rma_originatingOrganization.decription=Originating Organization
rma_recordsmanagement.property.rma_mediaType.title=Media Type
rma_recordsmanagement.property.rma_mediaType.decription=Media Type
rma_recordsmanagement.property.rma_format.title=Format
rma_recordsmanagement.property.rma_format.decription=Format
rma_recordsmanagement.property.rma_dateReceived.title=Date Received
rma_recordsmanagement.property.rma_dateReceived.decription=Date Received
rma_recordsmanagement.property.rma_address.title=Addressee
rma_recordsmanagement.property.rma_address.decription=Addressee
rma_recordsmanagement.property.rma_otherAddress.title=Other Addressee
rma_recordsmanagement.property.rma_otherAddress.decription=Other Addressee
rma_recordsmanagement.property.rma_origionalName=Original Name
rma_recordsmanagement.aspect.rma_recordMetaData.title=Record Meta-data
rma_recordsmanagement.aspect.rma_recordMetaData.description=Marker aspect for record meta-data
rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Common Records Details
rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Meta-data common to all record types
rma_recordsmanagement.property.rma_location.title=Location
rma_recordsmanagement.property.rma_location.decription=Location
rma_recordsmanagement.aspect.rma_vitalRecord.title=Vital Record
rma_recordsmanagement.aspect.rma_vitalRecord.decription=Vital Record
rma_recordsmanagement.property.rma_reviewAsOf.title=Next Review
rma_recordsmanagement.property.rma_reviewAsOf.decription=Next Review
rma_recordsmanagement.property.rma_notificationIssued.title=Indicates that a due for review notification has been issued for this record
rma_recordsmanagement.property.rma_notificationIssued.decription=Indicates that a due for review notification has been issued for this record
rma_recordsmanagement.aspect.rma_scheduled.title=Scheduled
rma_recordsmanagement.aspect.rma_scheduled.decription=Scheduled
rma_recordsmanagement.association.rma_dispositionSchedule.title=Disposition Schedule
rma_recordsmanagement.association.rma_dispositionSchedule.decription=Disposition Schedule
rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Disposition Lifecycle
rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Disposition Lifecycle
rma_recordsmanagement.association.rma_nextDispositionAction.title=Next disposition action
rma_recordsmanagement.association.rma_nextDispositionAction.decription=Next disposition action
rma_recordsmanagement.association.rma_dispositionActionHistory.title=Disposition Action History
rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Disposition Action History
rma_recordsmanagement.aspect.rma_cutOff.title=Cut Off
rma_recordsmanagement.aspect.rma_cutOff.decription=Cut Off
rma_recordsmanagement.property.rma_cutOffDate.title=Cut Off Date
rma_recordsmanagement.property.rma_cutOffDate.decription=Cut Off Date
rma_recordsmanagement.aspect.rma_transferred.title=Transferred
rma_recordsmanagement.aspect.rma_transferred.decription=Transferred
rma_recordsmanagement.aspect.rma_ascended.title=Ascended
rma_recordsmanagement.aspect.rma_ascended.decription=Ascended
rma_recordsmanagement.aspect.rma_frozen.title=Frozen
rma_recordsmanagement.aspect.rma_frozen.decription=Frozen
rma_recordsmanagement.property.rma_frozenAt.title=Frozen At
rma_recordsmanagement.property.rma_frozenAt.decription=Frozen At
rma_recordsmanagement.property.rma_frozenBy.title=Frozen By
rma_recordsmanagement.property.rma_frozenBy.decription=Frozen By
rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Caveat Configuration Root
rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Caveat Configuration Root
rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Caveat Configuration
rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Caveat Configuration
rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Email Config Root
rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Email Config Root
rma_recordsmanagement.association.rma_emailConfigAssoc.title=Email Configuration
rma_recordsmanagement.association.rma_emailConfigAssoc.description=Email Configuration
rma_recordsmanagement.aspect.rma_recordSearch.title=Record Search
rma_recordsmanagement.aspect.rma_recordSearch.decription=Rolled up search information to support Records Management search
rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Has Disposition Schedule
rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Indicates whether the item has an associated disposition schedule
rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Disposition Action Name
rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=The name of the next disposition action
rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Disposition Action Of
rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=The date at which the next disposition action becomes eligible
rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Disposition Period
rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Disposition Period
rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Disposition Period Expression
rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Disposition Period Expression
rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Disposition Events Eligible
rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Disposition Events Eligible
rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Disposition Events
rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Disposition Events
rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Disposition Authority
rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Disposition Authority
rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Disposition Instructions
rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Disposition Instructions
rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Hold Reason
rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Hold Reason
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=Vital Record Review Period
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=Vital Record Review Period
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Review Period Expression
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Review Period Expression
rma_recordsmanagement.aspect.rma_versionedRecord.title=Versioned Record
rma_recordsmanagement.aspect.rma_versionedRecord.decription=Versioned Record
rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Unpublished Update
rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Unpublished Update
rma_recordsmanagement.property.rma_unpublishedUpdate.title=Unpublished Update
rma_recordsmanagement.property.rma_unpublishedUpdate.description=Indicates whether there is an unpublished update
rma_recordsmanagement.property.rma_updateTo.title=Update To
rma_recordsmanagement.property.rma_updateTo.description=Destination of the update
rma_recordsmanagement.property.rma_updatedProperties.title=Updated Properties
rma_recordsmanagement.property.rma_updatedProperties.description=The updated properties
rma_recordsmanagement.property.rma_publishInProgress.title=Publish In Progress
rma_recordsmanagement.property.rma_publishInProgress.description=Indicates whether a publish is currently in progress
rma_recordsmanagement.aspect.dod_ghosted.title=Ghosted Record
rma_recordsmanagement.aspect.dod_ghosted.description=Ghosted Record
listconstraint.rmc_tlList.title=Transfer Locations
listconstraint.rmc_smList.title=Supplemental Markings

View File

@@ -0,0 +1,281 @@
rma_recordsmanagement.description=Content Model f\u00fcr Records Management
rma_recordsmanagement.type.rma_rmsite.title=Records Management Site
rma_recordsmanagement.type.rma_rmsite.description=Spezielle Site f\u00fcr Records Management
rma_recordsmanagement.type.rma_caveatConfig.title=Caveat-Konfig.
rma_recordsmanagement.type.rma_caveatConfig.decription=Caveat-Konfig.
rma_recordsmanagement.type.rma_emailConfig.title=E-Mail-Konfiguration
rma_recordsmanagement.type.rma_emailConfig.decription=E-Mail-Konfiguration
rma_recordsmanagement.type.rma_recordsManagementContainer.title=Records Management Container
rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Records Management Container
rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Records Management Root-Container
rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Records Management Root-Container
rma_recordsmanagement.type.rma_dispositionSchedule.title=Dispositionsplan
rma_recordsmanagement.type.rma_dispositionSchedule.decription=Dispositionsplan
rma_recordsmanagement.property.rma_dispositionAuthority.title=Dispositions-Authority
rma_recordsmanagement.property.rma_dispositionAuthority.decription=Dispositions-Authority
rma_recordsmanagement.property.rma_dispositionInstructions.title=Dispositionsanweisungen
rma_recordsmanagement.property.rma_dispositionInstructions.decription=Dispositionsanweisungen
rma_recordsmanagement.property.rma_recordLevelDisposition.title=Disposition auf Datensatzebene
rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Disposition auf Datensatzebene
rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Dispositionsaktionen
rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Dispositionsaktionen
rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Definition f\u00fcr Dispositionsaktion
rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Definition f\u00fcr Dispositionsaktion
rma_recordsmanagement.property.rma_dispositionActionName.title=Name der Dispositionsaktion
rma_recordsmanagement.property.rma_dispositionActionName.decription=Name der Dispositionsaktion
rma_recordsmanagement.property.rma_dispositionDescription.title=Dispositionsbeschreibung
rma_recordsmanagement.property.rma_dispositionDescription.decription=Dispositionsbeschreibung
rma_recordsmanagement.property.rma_dispositionLocation.title=Dispositionsort
rma_recordsmanagement.property.rma_dispositionLocation.decription=Dispositionsort
rma_recordsmanagement.property.rma_dispositionPeriod.title=Dispositionszeitraum
rma_recordsmanagement.property.rma_dispositionPeriod.decription=Dispositionszeitraum
rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Eigenschaft des Dispositionszeitraums
rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Eigenschaft des Dispositionszeitraums
rma_recordsmanagement.property.rma_dispositionEvent.title=Dispositionsereignis
rma_recordsmanagement.property.rma_dispositionEvent.decription=Dispositionsereignis
rma_recordsmanagement.property.rma_dispositionEventCombination.title=Dispositionsereigniskombination
rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Dispositionsereigniskombination
rma_recordsmanagement.type.rma_recordFolder.title=Datensatzordner
rma_recordsmanagement.type.rma_recordFolder.decription=Datensatzordner
rma_recordsmanagement.property.rma_isClosed.title=Datensatz
rma_recordsmanagement.property.rma_isClosed.decription=Datensatz
rma_recordsmanagement.type.rma_recordCategory.title=Datensatzkategorie
rma_recordsmanagement.type.rma_recordCategory.decription=Datensatzkategorie
rma_recordsmanagement.type.rma_nonElectronicDocument.title=Nicht elektronisches Dokument
rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Nicht elektronisches Dokument
rma_recordsmanagement.property.rma_physicalSize.title=Physikalische Gr\u00f6\u00dfe
rma_recordsmanagement.property.rma_physicalSize.decription=Die Gr\u00f6\u00dfe des Dokuments wird in laufenden Metern gemessen.
rma_recordsmanagement.property.rma_numberOfCopies.title=Anzahl der Kopien
rma_recordsmanagement.property.rma_numberOfCopies.description=Die Anzahl der Kopien des Dokuments.
rma_recordsmanagement.property.rma_storageLocation.title=Speicherort
rma_recordsmanagement.property.rma_storageLocation.decription=Der physische Speicherort des Datensatzes.
rma_recordsmanagement.property.rma_shelf.title=Regal
rma_recordsmanagement.property.rma_shelf.decription=Das Regal, in dem sich der Datensatz befindet.
rma_recordsmanagement.property.rma_box.title=Box
rma_recordsmanagement.property.rma_box.description=Die Box, in der sich der Datensatz befindet.
rma_recordsmanagement.property.rma_file.title=Datei
rma_recordsmanagement.property.rma_file.decription=Die Datei, in der sich der Datensatz befindet.
rma_recordsmanagement.type.rma_dispositionAction.title=Dispositionsaktion
rma_recordsmanagement.type.rma_dispositionAction.decription=Dispositionsaktion
rma_recordsmanagement.property.rma_dispositionActionId.title=ID der Dispositionsaktion
rma_recordsmanagement.property.rma_dispositionActionId.decription=ID der Dispositionsaktion
rma_recordsmanagement.property.rma_dispositionAction.title=Dispositionsaktion
rma_recordsmanagement.property.rma_dispositionAction.decription=Dispositionsaktion
rma_recordsmanagement.property.rma_dispositionAsOf.title=Dispositionsaktion
rma_recordsmanagement.property.rma_dispositionAsOf.decription=Dispositionsaktion
rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Geeignete Dispositionsereignisse
rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Geeignete Dispositionsereignisse
rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Dispositionsaktion gestartet um
rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Dispositionsaktion gestartet um
rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Dispositionsaktion gestartet von
rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Dispositionsaktion gestartet von
rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Dispositionsaktion abgeschlossen um
rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Dispositionsaktion abgeschlossen um
rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Dispositionsaktion abgeschlossen von
rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Dispositionsaktion abgeschlossen von
rma_recordsmanagement.association.rma_eventExecutions.title=Ereignisausf\u00fchrungen
rma_recordsmanagement.association.rma_eventExecutions.decription=Ereignisausf\u00fchrungen
rma_recordsmanagement.type.rma_eventExecution.title=Ereignisausf\u00fchrung
rma_recordsmanagement.type.rma_eventExecution.decription=Ereignisausf\u00fchrung
rma_recordsmanagement.property.rma_eventExecutionName.title=Ereignisname
rma_recordsmanagement.property.rma_eventExecutionName.decription=Ereignisname
rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Automatisches Ereignis
rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Automatisches Ereignis
rma_recordsmanagement.property.rma_eventExecutionComplete.title=Abgeschlossenes Ereignis
rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Abgeschlossenes Ereignis
rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Ereignis abgeschlossen von
rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Ereignis abgeschlossen von
rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Ereignis abgeschlossen um
rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Ereignis abgeschlossen um
rma_recordsmanagement.type.rma_hold.title=Sperre
rma_recordsmanagement.type.rma_hold.decription=Sperre
rma_recordsmanagement.property.rma_holdReason.title=Sperrgrund
rma_recordsmanagement.property.rma_holdReason.decription=Sperrgrund
rma_recordsmanagement.association.rma_frozenRecords.title=Fixierte Datens\u00e4tze
rma_recordsmanagement.association.rma_frozenRecords.decription=Fixierte Datens\u00e4tze
rma_recordsmanagement.type.rma_transfer.title=\u00dcbertragung
rma_recordsmanagement.type.rma_transfer.decription=\u00dcbertragung
rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Anzeige bei \u00dcbertragung zur Archivaufnahme
rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Anzeige bei \u00dcbertragung zur Archivaufnahme
rma_recordsmanagement.property.rma_transferPDFIndicator.title=Anzeige bei PDF-\u00dcbertragung
rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Anzeige bei PDF-\u00dcbertragung
rma_recordsmanagement.property.rma_transferLocation.title=PDF \u00fcbertragen
rma_recordsmanagement.property.rma_transferLocation.decription=PDF \u00fcbertragen
rma_recordsmanagement.association.rma_transferred.title=\u00dcbertragen
rma_recordsmanagement.association.rma_transferred.decription=\u00dcbertragen
rma_recordsmanagement.aspect.rma_filePlanComponent.title=Ablageplan-Komponente
rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Ablageplan-Komponente
rma_recordsmanagement.property.rma_rootNodeRef.title=Root-Node
rma_recordsmanagement.property.rma_rootNodeRef.decription=Root-Node
rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Records Management Root
rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Records Management Root
rma_recordsmanagement.association.rma_holds.title=Sperren
rma_recordsmanagement.association.rma_holds.decription=Sperren
rma_recordsmanagement.association.rma_transfers.title=\u00dcbertragungen
rma_recordsmanagement.association.rma_transfers.decription=\u00dcbertragungen
rma_recordsmanagement.aspect.rma_declaredRecord.title=Abgeschlossener Datensatz
rma_recordsmanagement.aspect.rma_declaredRecord.decription=Abgeschlossener Datensatz
rma_recordsmanagement.property.rma_declaredAt.title=Abschlussdatum
rma_recordsmanagement.property.rma_declaredAt.decription=Abschlussdatum
rma_recordsmanagement.property.rma_declaredBy.title=Abgeschlossen von
rma_recordsmanagement.property.rma_declaredBy.decription=Abgeschlossen von
rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=ID der Datensatzkomponente
rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=ID der Datensatzkomponente
rma_recordsmanagement.property.rma_identifier.title=Identifikator
rma_recordsmanagement.property.rma_identifier.decription=Eindeutige Datensatz-ID
rma_recordsmanagement.property.rma_dbUniquenessId.title=Eindeutigkeit der Datenbank
rma_recordsmanagement.property.rma_dbUniquenessId.decription=Eindeutigkeit der Datenbank
rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Definition f\u00fcr erforderlichen Datensatz
rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Definition f\u00fcr erforderlichen Datensatz
rma_recordsmanagement.property.rma_reviewPeriod.title=\u00dcberpr\u00fcfungszeitraum
rma_recordsmanagement.property.rma_reviewPeriod.decription=\u00dcberpr\u00fcfungszeitraum
rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Anzeige f\u00fcr erforderlichen Datensatz
rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Anzeige f\u00fcr erforderlichen Datensatz
rma_recordsmanagement.aspect.rma_record.title=Datensatz
rma_recordsmanagement.aspect.rma_record.decription=Datensatz
rma_recordsmanagement.property.rma_dateFiled.title=Ablagedatum
rma_recordsmanagement.property.rma_dateFiled.decription=Ablagedatum
rma_recordsmanagement.property.rma_publicationDate.title=Ver\u00f6ffentlichungsdatum
rma_recordsmanagement.property.rma_publicationDate.decription=Ver\u00f6ffentlichungsdatum
rma_recordsmanagement.property.rma_originator.title=Urheber
rma_recordsmanagement.property.rma_originator.decription=Urheber
rma_recordsmanagement.property.rma_originatingOrganization.title=Erstellende Organisation
rma_recordsmanagement.property.rma_originatingOrganization.decription=Erstellende Organisation
rma_recordsmanagement.property.rma_mediaType.title=Medientyp
rma_recordsmanagement.property.rma_mediaType.decription=Medientyp
rma_recordsmanagement.property.rma_format.title=Format
rma_recordsmanagement.property.rma_format.decription=Format
rma_recordsmanagement.property.rma_dateReceived.title=Empfangsdatum
rma_recordsmanagement.property.rma_dateReceived.decription=Empfangsdatum
rma_recordsmanagement.property.rma_address.title=Adressat
rma_recordsmanagement.property.rma_address.decription=Adressat
rma_recordsmanagement.property.rma_otherAddress.title=Anderer Empf\u00e4nger
rma_recordsmanagement.property.rma_otherAddress.decription=Anderer Empf\u00e4nger
rma_recordsmanagement.property.rma_origionalName=Originalname
rma_recordsmanagement.aspect.rma_recordMetaData.title=Datensatz-Metadaten
rma_recordsmanagement.aspect.rma_recordMetaData.description=Markeraspekt f\u00fcr Datensatz-Metadaten
rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Gemeinsame Datensatzdetails
rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Gemeinsame Metadaten aller Datens\u00e4tze
rma_recordsmanagement.property.rma_location.title=Speicherort
rma_recordsmanagement.property.rma_location.decription=Speicherort
rma_recordsmanagement.aspect.rma_vitalRecord.title=Erforderlicher Datensatz
rma_recordsmanagement.aspect.rma_vitalRecord.decription=Erforderlicher Datensatz
rma_recordsmanagement.property.rma_reviewAsOf.title=N\u00e4chste \u00dcberpr\u00fcfung
rma_recordsmanagement.property.rma_reviewAsOf.decription=N\u00e4chste \u00dcberpr\u00fcfung
rma_recordsmanagement.property.rma_notificationIssued.title=Gibt an, dass f\u00fcr diesen Datensatz eine Benachrichtigung aufgrund einer f\u00e4lligen \u00dcberpr\u00fcfung ausgegeben wurde.
rma_recordsmanagement.property.rma_notificationIssued.decription=Gibt an, dass f\u00fcr diesen Datensatz eine Benachrichtigung aufgrund einer f\u00e4lligen \u00dcberpr\u00fcfung ausgegeben wurde.
rma_recordsmanagement.aspect.rma_scheduled.title=Geplant
rma_recordsmanagement.aspect.rma_scheduled.decription=Geplant
rma_recordsmanagement.association.rma_dispositionSchedule.title=Dispositionsplan
rma_recordsmanagement.association.rma_dispositionSchedule.decription=Dispositionsplan
rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Dispositionszyklus
rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Dispositionszyklus
rma_recordsmanagement.association.rma_nextDispositionAction.title=N\u00e4chste Dispositionsaktion
rma_recordsmanagement.association.rma_nextDispositionAction.decription=N\u00e4chste Dispositionsaktion
rma_recordsmanagement.association.rma_dispositionActionHistory.title=Dispositionsaktionsverlauf
rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Dispositionsaktionsverlauf
rma_recordsmanagement.aspect.rma_cutOff.title=Getrennt
rma_recordsmanagement.aspect.rma_cutOff.decription=Getrennt
rma_recordsmanagement.property.rma_cutOffDate.title=Trenndatum
rma_recordsmanagement.property.rma_cutOffDate.decription=Trenndatum
rma_recordsmanagement.aspect.rma_transferred.title=\u00dcbertragen
rma_recordsmanagement.aspect.rma_transferred.decription=\u00dcbertragen
rma_recordsmanagement.aspect.rma_ascended.title=In Archiv aufgenommen
rma_recordsmanagement.aspect.rma_ascended.decription=In Archiv aufgenommen
rma_recordsmanagement.aspect.rma_frozen.title=Fixiert
rma_recordsmanagement.aspect.rma_frozen.decription=Fixiert
rma_recordsmanagement.property.rma_frozenAt.title=Fixiert um
rma_recordsmanagement.property.rma_frozenAt.decription=Fixiert um
rma_recordsmanagement.property.rma_frozenBy.title=Fixiert von
rma_recordsmanagement.property.rma_frozenBy.decription=Fixiert von
rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Root von Caveat-Konfiguration
rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Root von Caveat-Konfiguration
rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Caveat-Konfiguration
rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Caveat-Konfiguration
rma_recordsmanagement.aspect.rma_emailConfigRoot.title=E-Mail-Konfigurations-Root
rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=E-Mail-Konfigurations-Root
rma_recordsmanagement.association.rma_emailConfigAssoc.title=E-Mail-Konfiguration
rma_recordsmanagement.association.rma_emailConfigAssoc.description=E-Mail-Konfiguration
rma_recordsmanagement.aspect.rma_recordSearch.title=Datensatzsuche
rma_recordsmanagement.aspect.rma_recordSearch.decription=Komprimierte Suchinformation zur Unterst\u00fctzung der Records Management-Suche.
rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Mit Dispositionsplan
rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Gibt an, ob das Element \u00fcber einen zugeordneten Dispositionsplan verf\u00fcgt.
rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Name der Dispositionsaktion
rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=Der Name der n\u00e4chsten Dispositionsaktion.
rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Start der Dispositionsaktion
rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=Das Datum, ab dem die n\u00e4chste Dispositionsaktion geeignet wird.
rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Dispositionszeitraum
rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Dispositionszeitraum
rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Ausdruck f\u00fcr Dispositionszeitraum
rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Ausdruck f\u00fcr Dispositionszeitraum
rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Geeignete Dispositionsereignisse
rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Geeignete Dispositionsereignisse
rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Dispositionsereignisse
rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Dispositionsereignisse
rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Dispositions-Authority
rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Dispositions-Authority
rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Dispositionsanweisungen
rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Dispositionsanweisungen
rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Sperrgrund
rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Sperrgrund
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=\u00dcberpr\u00fcfungszeitraum f\u00fcr erforderlichen Datensatz
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=\u00dcberpr\u00fcfungszeitraum f\u00fcr erforderlichen Datensatz
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Ausdruck f\u00fcr \u00dcberpr\u00fcfungszeitraum
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Ausdruck f\u00fcr \u00dcberpr\u00fcfungszeitraum
rma_recordsmanagement.aspect.rma_versionedRecord.title=Versionierter Datensatz
rma_recordsmanagement.aspect.rma_versionedRecord.decription=Versionierter Datensatz
rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Nicht ver\u00f6ffentlichte Aktualisierung
rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Nicht ver\u00f6ffentlichte Aktualisierung
rma_recordsmanagement.property.rma_unpublishedUpdate.title=Nicht ver\u00f6ffentlichte Aktualisierung
rma_recordsmanagement.property.rma_unpublishedUpdate.description=Gibt an, ob eine nicht ver\u00f6ffentlichte Aktualisierung vorhanden ist.
rma_recordsmanagement.property.rma_updateTo.title=Aktualisieren auf
rma_recordsmanagement.property.rma_updateTo.description=Das Ziel der Aktualisierung.
rma_recordsmanagement.property.rma_updatedProperties.title=Aktualisierte Eigenschaften
rma_recordsmanagement.property.rma_updatedProperties.description=Die aktualisierten Eigenschaften.
rma_recordsmanagement.property.rma_publishInProgress.title=Laufende Ver\u00f6ffentlichung
rma_recordsmanagement.property.rma_publishInProgress.description=Gibt an, ob derzeit eine Ver\u00f6ffentlichung durchgef\u00fchrt wird.
rma_recordsmanagement.aspect.dod_ghosted.title=Ghosting-Datensatz
rma_recordsmanagement.aspect.dod_ghosted.description=Ghosting-Datensatz
listconstraint.rmc_tlList.title=Speicherorte \u00fcbertragen
listconstraint.rmc_smList.title=Zus\u00e4tzliche Markierungen

View File

@@ -0,0 +1,281 @@
rma_recordsmanagement.description=Modelo de contenido de gesti\u00f3n de documentos de archivo
rma_recordsmanagement.type.rma_rmsite.title=Sitio de gesti\u00f3n de documentos de archivo
rma_recordsmanagement.type.rma_rmsite.description=Sitio especializado para gesti\u00f3n de documentos de archivo
rma_recordsmanagement.type.rma_caveatConfig.title=Configuraci\u00f3n de advertencia
rma_recordsmanagement.type.rma_caveatConfig.decription=Configuraci\u00f3n de advertencia
rma_recordsmanagement.type.rma_emailConfig.title=Configuraci\u00f3n de correo electr\u00f3nico
rma_recordsmanagement.type.rma_emailConfig.decription=Configuraci\u00f3n de correo electr\u00f3nico
rma_recordsmanagement.type.rma_recordsManagementContainer.title=Contenedor de gesti\u00f3n de documentos de archivo
rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Contenedor de gesti\u00f3n de documentos de archivo
rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Contenedor ra\u00edz de gesti\u00f3n de documentos de archivo
rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Contenedor ra\u00edz de gesti\u00f3n de documentos de archivo
rma_recordsmanagement.type.rma_dispositionSchedule.title=Planificaci\u00f3n de disposici\u00f3n
rma_recordsmanagement.type.rma_dispositionSchedule.decription=Planificaci\u00f3n de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionAuthority.title=Autoridad de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionAuthority.decription=Autoridad de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionInstructions.title=Instrucciones de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionInstructions.decription=Instrucciones de disposici\u00f3n
rma_recordsmanagement.property.rma_recordLevelDisposition.title=Disposici\u00f3n de nivel de documento de archivo
rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Disposici\u00f3n de nivel de documento de archivo
rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Acciones de disposici\u00f3n
rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Acciones de disposici\u00f3n
rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Definici\u00f3n de acciones de disposici\u00f3n
rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Definici\u00f3n de acciones de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionActionName.title=Nombre de acci\u00f3n de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionActionName.decription=Nombre de acci\u00f3n de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionDescription.title=Descripci\u00f3n de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionDescription.decription=Descripci\u00f3n de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionLocation.title=Ubicaci\u00f3n de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionLocation.decription=Ubicaci\u00f3n de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionPeriod.title=Per\u00edodo de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionPeriod.decription=Per\u00edodo de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Propiedad de per\u00edodo de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Propiedad de per\u00edodo de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionEvent.title=Evento de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionEvent.decription=Evento de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionEventCombination.title=Combinaci\u00f3n de evento de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Combinaci\u00f3n de evento de disposici\u00f3n
rma_recordsmanagement.type.rma_recordFolder.title=Carpeta de archivos
rma_recordsmanagement.type.rma_recordFolder.decription=Carpeta de archivos
rma_recordsmanagement.property.rma_isClosed.title=Documento de archivo
rma_recordsmanagement.property.rma_isClosed.decription=Documento de archivo
rma_recordsmanagement.type.rma_recordCategory.title=Categor\u00eda de documentos de archivo
rma_recordsmanagement.type.rma_recordCategory.decription=Categor\u00eda de documentos de archivo
rma_recordsmanagement.type.rma_nonElectronicDocument.title=Documento no electr\u00f3nico
rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Documento no electr\u00f3nico
rma_recordsmanagement.property.rma_physicalSize.title=Tama\u00f1o f\u00edsico
rma_recordsmanagement.property.rma_physicalSize.decription=El tama\u00f1o del documento en metros lineales.
rma_recordsmanagement.property.rma_numberOfCopies.title=N\u00famero de copias
rma_recordsmanagement.property.rma_numberOfCopies.description=El n\u00famero de copias del documento.
rma_recordsmanagement.property.rma_storageLocation.title=Ubicaci\u00f3n de almacenamiento
rma_recordsmanagement.property.rma_storageLocation.decription=La ubicaci\u00f3n f\u00edsica de almacenamiento del documento de archivo.
rma_recordsmanagement.property.rma_shelf.title=Estanter\u00eda
rma_recordsmanagement.property.rma_shelf.decription=La estanter\u00eda en la que reside el archivo.
rma_recordsmanagement.property.rma_box.title=Caja
rma_recordsmanagement.property.rma_box.description=La caja en el que reside el archivo.
rma_recordsmanagement.property.rma_file.title=Fichero
rma_recordsmanagement.property.rma_file.decription=El fichero en el que reside el archivo.
rma_recordsmanagement.type.rma_dispositionAction.title=Acci\u00f3n de disposici\u00f3n
rma_recordsmanagement.type.rma_dispositionAction.decription=Acci\u00f3n de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionActionId.title=Id. de acci\u00f3n de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionActionId.decription=Id. de acci\u00f3n de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionAction.title=Acci\u00f3n de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionAction.decription=Acci\u00f3n de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionAsOf.title=Acci\u00f3n de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionAsOf.decription=Acci\u00f3n de disposici\u00f3n
rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Eventos de disposici\u00f3n que re\u00fanen los requisitos
rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Eventos de disposici\u00f3n que re\u00fanen los requisitos
rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Acci\u00f3n de disposici\u00f3n iniciada en
rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Acci\u00f3n de disposici\u00f3n iniciada en
rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Acci\u00f3n de disposici\u00f3n iniciada por
rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Acci\u00f3n de disposici\u00f3n iniciada por
rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Acci\u00f3n de disposici\u00f3n completada en
rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Acci\u00f3n de disposici\u00f3n completada en
rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Acci\u00f3n de disposici\u00f3n completada por
rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Acci\u00f3n de disposici\u00f3n completada por
rma_recordsmanagement.association.rma_eventExecutions.title=Ejecuciones de evento
rma_recordsmanagement.association.rma_eventExecutions.decription=Ejecuciones de evento
rma_recordsmanagement.type.rma_eventExecution.title=Ejecuci\u00f3n de evento
rma_recordsmanagement.type.rma_eventExecution.decription=Ejecuci\u00f3n de evento
rma_recordsmanagement.property.rma_eventExecutionName.title=Nombre de evento
rma_recordsmanagement.property.rma_eventExecutionName.decription=Nombre de evento
rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Evento autom\u00e1tico
rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Evento autom\u00e1tico
rma_recordsmanagement.property.rma_eventExecutionComplete.title=Evento completo
rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Evento completo
rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Evento completado por
rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Evento completado por
rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Evento completado en
rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Evento completado en
rma_recordsmanagement.type.rma_hold.title=Bloqueo
rma_recordsmanagement.type.rma_hold.decription=Bloqueo
rma_recordsmanagement.property.rma_holdReason.title=Raz\u00f3n de bloqueo
rma_recordsmanagement.property.rma_holdReason.decription=Raz\u00f3n de bloqueo
rma_recordsmanagement.association.rma_frozenRecords.title=Documentos de archivo congelados
rma_recordsmanagement.association.rma_frozenRecords.decription=Documentos de archivo congelados
rma_recordsmanagement.type.rma_transfer.title=Transferencia
rma_recordsmanagement.type.rma_transfer.decription=Transferencia
rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Indicador de adhesi\u00f3n y transferencia
rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Indicador de adhesi\u00f3n y transferencia
rma_recordsmanagement.property.rma_transferPDFIndicator.title=Indicador de transferencia de PDF
rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Indicador de transferencia de PDF
rma_recordsmanagement.property.rma_transferLocation.title=Transferencia de PDF
rma_recordsmanagement.property.rma_transferLocation.decription=Transferencia de PDF
rma_recordsmanagement.association.rma_transferred.title=Transferido
rma_recordsmanagement.association.rma_transferred.decription=Transferido
rma_recordsmanagement.aspect.rma_filePlanComponent.title=Componente del plan de ficheros
rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Componente del plan de ficheros
rma_recordsmanagement.property.rma_rootNodeRef.title=Nodo ra\u00edz
rma_recordsmanagement.property.rma_rootNodeRef.decription=Nodo ra\u00edz
rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Ra\u00edz de gesti\u00f3n de documentos de archivo
rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Ra\u00edz de gesti\u00f3n de documentos de archivo
rma_recordsmanagement.association.rma_holds.title=Bloqueos
rma_recordsmanagement.association.rma_holds.decription=Bloqueos
rma_recordsmanagement.association.rma_transfers.title=Transferencias
rma_recordsmanagement.association.rma_transfers.decription=Transferencias
rma_recordsmanagement.aspect.rma_declaredRecord.title=Documento de archivo completado
rma_recordsmanagement.aspect.rma_declaredRecord.decription=Documento de archivo completado
rma_recordsmanagement.property.rma_declaredAt.title=Fecha de finalizaci\u00f3n
rma_recordsmanagement.property.rma_declaredAt.decription=Fecha de finalizaci\u00f3n
rma_recordsmanagement.property.rma_declaredBy.title=Completado por
rma_recordsmanagement.property.rma_declaredBy.decription=Completado por
rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Identificador de componente de documento de archivo
rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Identificador de componente de documento de archivo
rma_recordsmanagement.property.rma_identifier.title=Identificador
rma_recordsmanagement.property.rma_identifier.decription=Identificador \u00fanico de documento de archivo
rma_recordsmanagement.property.rma_dbUniquenessId.title=Singularidad de la base de datos
rma_recordsmanagement.property.rma_dbUniquenessId.decription=Singularidad de la base de datos
rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Definici\u00f3n de documento de archivo vital
rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Definici\u00f3n de documento de archivo vital
rma_recordsmanagement.property.rma_reviewPeriod.title=Per\u00edodo de revisi\u00f3n
rma_recordsmanagement.property.rma_reviewPeriod.decription=Per\u00edodo de revisi\u00f3n
rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Indicador de documento de archivo vital
rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Indicador de documento de archivo vital
rma_recordsmanagement.aspect.rma_record.title=Documento de archivo
rma_recordsmanagement.aspect.rma_record.decription=Documento de archivo
rma_recordsmanagement.property.rma_dateFiled.title=Fecha de archivado
rma_recordsmanagement.property.rma_dateFiled.decription=Fecha de archivado
rma_recordsmanagement.property.rma_publicationDate.title=Fecha de publicaci\u00f3n
rma_recordsmanagement.property.rma_publicationDate.decription=Fecha de publicaci\u00f3n
rma_recordsmanagement.property.rma_originator.title=Creador
rma_recordsmanagement.property.rma_originator.decription=Creador
rma_recordsmanagement.property.rma_originatingOrganization.title=Organizaci\u00f3n creadora
rma_recordsmanagement.property.rma_originatingOrganization.decription=Organizaci\u00f3n creadora
rma_recordsmanagement.property.rma_mediaType.title=Tipo de medio
rma_recordsmanagement.property.rma_mediaType.decription=Tipo de medio
rma_recordsmanagement.property.rma_format.title=Formato
rma_recordsmanagement.property.rma_format.decription=Formato
rma_recordsmanagement.property.rma_dateReceived.title=Fecha de recepci\u00f3n
rma_recordsmanagement.property.rma_dateReceived.decription=Fecha de recepci\u00f3n
rma_recordsmanagement.property.rma_address.title=Destinatario
rma_recordsmanagement.property.rma_address.decription=Destinatario
rma_recordsmanagement.property.rma_otherAddress.title=Otro destinatario
rma_recordsmanagement.property.rma_otherAddress.decription=Otro destinatario
rma_recordsmanagement.property.rma_origionalName=Nombre original
rma_recordsmanagement.aspect.rma_recordMetaData.title=Metadatos del documento de archivo
rma_recordsmanagement.aspect.rma_recordMetaData.description=Aspecto de marcador para metadatos del documento de archivo
rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Detalles de documento de archivo com\u00fan
rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Metadatos comunes a todos los tipos de documento de archivo
rma_recordsmanagement.property.rma_location.title=Ubicaci\u00f3n
rma_recordsmanagement.property.rma_location.decription=Ubicaci\u00f3n
rma_recordsmanagement.aspect.rma_vitalRecord.title=Documento de archivo vital
rma_recordsmanagement.aspect.rma_vitalRecord.decription=Documento de archivo vital
rma_recordsmanagement.property.rma_reviewAsOf.title=Pr\u00f3xima revisi\u00f3n
rma_recordsmanagement.property.rma_reviewAsOf.decription=Pr\u00f3xima revisi\u00f3n
rma_recordsmanagement.property.rma_notificationIssued.title=Indica que se ha emitido una notificaci\u00f3n de pendiente de revisi\u00f3n para este documento de archivo
rma_recordsmanagement.property.rma_notificationIssued.decription=Indica que se ha emitido una notificaci\u00f3n de pendiente de revisi\u00f3n para este documento de archivo
rma_recordsmanagement.aspect.rma_scheduled.title=Planificado
rma_recordsmanagement.aspect.rma_scheduled.decription=Planificado
rma_recordsmanagement.association.rma_dispositionSchedule.title=Planificaci\u00f3n de disposici\u00f3n
rma_recordsmanagement.association.rma_dispositionSchedule.decription=Planificaci\u00f3n de disposici\u00f3n
rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Ciclo de vida de disposici\u00f3n
rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Ciclo de vida de disposici\u00f3n
rma_recordsmanagement.association.rma_nextDispositionAction.title=Pr\u00f3xima acci\u00f3n de disposici\u00f3n
rma_recordsmanagement.association.rma_nextDispositionAction.decription=Pr\u00f3xima acci\u00f3n de disposici\u00f3n
rma_recordsmanagement.association.rma_dispositionActionHistory.title=Historial de acciones de disposici\u00f3n
rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Historial de acciones de disposici\u00f3n
rma_recordsmanagement.aspect.rma_cutOff.title=Interrumpir
rma_recordsmanagement.aspect.rma_cutOff.decription=Interrumpir
rma_recordsmanagement.property.rma_cutOffDate.title=Fecha de interrupci\u00f3n
rma_recordsmanagement.property.rma_cutOffDate.decription=Fecha de interrupci\u00f3n
rma_recordsmanagement.aspect.rma_transferred.title=Transferido
rma_recordsmanagement.aspect.rma_transferred.decription=Transferido
rma_recordsmanagement.aspect.rma_ascended.title=Ascendido
rma_recordsmanagement.aspect.rma_ascended.decription=Ascendido
rma_recordsmanagement.aspect.rma_frozen.title=Congelado
rma_recordsmanagement.aspect.rma_frozen.decription=Congelado
rma_recordsmanagement.property.rma_frozenAt.title=Congelado en
rma_recordsmanagement.property.rma_frozenAt.decription=Congelado en
rma_recordsmanagement.property.rma_frozenBy.title=Congelado por
rma_recordsmanagement.property.rma_frozenBy.decription=Congelado por
rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Ra\u00edz de configuraci\u00f3n de advertencia
rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Ra\u00edz de configuraci\u00f3n de advertencia
rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Configuraci\u00f3n de advertencia
rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Configuraci\u00f3n de advertencia
rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Ra\u00edz de configuraci\u00f3n de correo electr\u00f3nico
rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Ra\u00edz de configuraci\u00f3n de correo electr\u00f3nico
rma_recordsmanagement.association.rma_emailConfigAssoc.title=Configuraci\u00f3n de correo electr\u00f3nico
rma_recordsmanagement.association.rma_emailConfigAssoc.description=Configuraci\u00f3n de correo electr\u00f3nico
rma_recordsmanagement.aspect.rma_recordSearch.title=B\u00fasqueda de documentos de archivo
rma_recordsmanagement.aspect.rma_recordSearch.decription=Informaci\u00f3n de b\u00fasqueda acumulada para b\u00fasqueda de gesti\u00f3n de documentos de archivo
rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Tiene planificaci\u00f3n de disposici\u00f3n
rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Indica si el elemento tiene planificaci\u00f3n de disposici\u00f3n asociada
rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Nombre de acci\u00f3n de disposici\u00f3n
rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=El nombre de la siguiente acci\u00f3n de disposici\u00f3n
rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Acci\u00f3n de disposici\u00f3n de
rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=La fecha en la cual la pr\u00f3xima acci\u00f3n de disposici\u00f3n ser\u00e1 reunir\u00e1 los requisitos
rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Per\u00edodo de disposici\u00f3n
rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Per\u00edodo de disposici\u00f3n
rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Expresi\u00f3n de per\u00edodo de disposici\u00f3n
rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Expresi\u00f3n de per\u00edodo de disposici\u00f3n
rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Eventos de disposici\u00f3n que re\u00fanen los requisitos
rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Eventos de disposici\u00f3n que re\u00fanen los requisitos
rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Eventos de disposici\u00f3n
rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Eventos de disposici\u00f3n
rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Autoridad de disposici\u00f3n
rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Autoridad de disposici\u00f3n
rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Instrucciones de disposici\u00f3n
rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Instrucciones de disposici\u00f3n
rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Raz\u00f3n de bloqueo
rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Raz\u00f3n de bloqueo
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=Per\u00edodo de revisi\u00f3n de documento de archivo vital
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=Per\u00edodo de revisi\u00f3n de documento de archivo vital
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Expresi\u00f3n de per\u00edodo de revisi\u00f3n
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Expresi\u00f3n de per\u00edodo de revisi\u00f3n
rma_recordsmanagement.aspect.rma_versionedRecord.title=Documento de archivo versionado
rma_recordsmanagement.aspect.rma_versionedRecord.decription=Documento de archivo versionado
rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Actualizaci\u00f3n sin publicar
rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Actualizaci\u00f3n sin publicar
rma_recordsmanagement.property.rma_unpublishedUpdate.title=Actualizaci\u00f3n sin publicar
rma_recordsmanagement.property.rma_unpublishedUpdate.description=Indica si existe una actualizaci\u00f3n sin publicar
rma_recordsmanagement.property.rma_updateTo.title=Actualizar a
rma_recordsmanagement.property.rma_updateTo.description=Destino de la actualizaci\u00f3n
rma_recordsmanagement.property.rma_updatedProperties.title=Propiedades actualizadas
rma_recordsmanagement.property.rma_updatedProperties.description=Las propiedades actualizadas
rma_recordsmanagement.property.rma_publishInProgress.title=Publicaci\u00f3n en curso
rma_recordsmanagement.property.rma_publishInProgress.description=Indica si una publicaci\u00f3n se encuentra en curso
rma_recordsmanagement.aspect.dod_ghosted.title=Documento de archivo reflejado
rma_recordsmanagement.aspect.dod_ghosted.description=Documento de archivo reflejado
listconstraint.rmc_tlList.title=Ubicaciones de la transferencia
listconstraint.rmc_smList.title=Marcas complementarias

View File

@@ -0,0 +1,281 @@
rma_recordsmanagement.description=Mod\u00e8le de contenu de gestion d'archivage \u00e9lectronique
rma_recordsmanagement.type.rma_rmsite.title=Site de gestion d'archivage \u00e9lectronique
rma_recordsmanagement.type.rma_rmsite.description=Site sp\u00e9cialis\u00e9 de gestion d'archivage \u00e9lectronique
rma_recordsmanagement.type.rma_caveatConfig.title=Configuration de mise en garde
rma_recordsmanagement.type.rma_caveatConfig.decription=Configuration de mise en garde
rma_recordsmanagement.type.rma_emailConfig.title=Configuration d'e-mail
rma_recordsmanagement.type.rma_emailConfig.decription=Configuration d'e-mail
rma_recordsmanagement.type.rma_recordsManagementContainer.title=Conteneur de gestion d'archivage \u00e9lectronique
rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Conteneur de gestion d'archivage \u00e9lectronique
rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Conteneur de racine de gestion d'archivage \u00e9lectronique
rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Conteneur de racine de gestion d'archivage \u00e9lectronique
rma_recordsmanagement.type.rma_dispositionSchedule.title=Planification de disposition
rma_recordsmanagement.type.rma_dispositionSchedule.decription=Planification de disposition
rma_recordsmanagement.property.rma_dispositionAuthority.title=Droit de disposition
rma_recordsmanagement.property.rma_dispositionAuthority.decription=Droit de disposition
rma_recordsmanagement.property.rma_dispositionInstructions.title=Instructions de disposition
rma_recordsmanagement.property.rma_dispositionInstructions.decription=Instructions de disposition
rma_recordsmanagement.property.rma_recordLevelDisposition.title=Disposition au niveau du document d'archives
rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Disposition au niveau du document d'archives
rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Actions de disposition
rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Actions de disposition
rma_recordsmanagement.type.rma_dispositionActionDefinition.title=D\u00e9finition de l'action de disposition
rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=D\u00e9finition de l'action de disposition
rma_recordsmanagement.property.rma_dispositionActionName.title=Nom d'action de disposition
rma_recordsmanagement.property.rma_dispositionActionName.decription=Nom d'action de disposition
rma_recordsmanagement.property.rma_dispositionDescription.title=Description de disposition
rma_recordsmanagement.property.rma_dispositionDescription.decription=Description de disposition
rma_recordsmanagement.property.rma_dispositionLocation.title=Emplacement de disposition
rma_recordsmanagement.property.rma_dispositionLocation.decription=Emplacement de disposition
rma_recordsmanagement.property.rma_dispositionPeriod.title=P\u00e9riode de disposition
rma_recordsmanagement.property.rma_dispositionPeriod.decription=P\u00e9riode de disposition
rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Propri\u00e9t\u00e9 de la p\u00e9riode de disposition
rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Propri\u00e9t\u00e9 de la p\u00e9riode de disposition
rma_recordsmanagement.property.rma_dispositionEvent.title=\u00c9v\u00e9nement de disposition
rma_recordsmanagement.property.rma_dispositionEvent.decription=\u00c9v\u00e9nement de disposition
rma_recordsmanagement.property.rma_dispositionEventCombination.title=Combinaison d'\u00e9v\u00e9nements de disposition
rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Combinaison d'\u00e9v\u00e9nements de disposition
rma_recordsmanagement.type.rma_recordFolder.title=Dossier d'archives
rma_recordsmanagement.type.rma_recordFolder.decription=Dossier d'archives
rma_recordsmanagement.property.rma_isClosed.title=Document d'archives
rma_recordsmanagement.property.rma_isClosed.decription=Document d'archives
rma_recordsmanagement.type.rma_recordCategory.title=Cat\u00e9gorie de document d'archives
rma_recordsmanagement.type.rma_recordCategory.decription=Cat\u00e9gorie de document d'archives
rma_recordsmanagement.type.rma_nonElectronicDocument.title=Document non \u00e9lectronique
rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Document non \u00e9lectronique
rma_recordsmanagement.property.rma_physicalSize.title=Taille physique
rma_recordsmanagement.property.rma_physicalSize.decription=Taille du document mesur\u00e9e en m\u00e8tres lin\u00e9aires.
rma_recordsmanagement.property.rma_numberOfCopies.title=Nombre de copies
rma_recordsmanagement.property.rma_numberOfCopies.description=Nombre de copies du document.
rma_recordsmanagement.property.rma_storageLocation.title=Emplacement de stockage
rma_recordsmanagement.property.rma_storageLocation.decription=Emplacement de stockage physique du document d'archives.
rma_recordsmanagement.property.rma_shelf.title=Etag\u00e8re
rma_recordsmanagement.property.rma_shelf.decription=\u00c9tag\u00e8re o\u00f9 se trouve le document d'archives.
rma_recordsmanagement.property.rma_box.title=Bo\u00eete
rma_recordsmanagement.property.rma_box.description=Bo\u00eete o\u00f9 se trouve le document d'archives.
rma_recordsmanagement.property.rma_file.title=Fichier
rma_recordsmanagement.property.rma_file.decription=Fichier du document d'archives.
rma_recordsmanagement.type.rma_dispositionAction.title=Action de disposition
rma_recordsmanagement.type.rma_dispositionAction.decription=Action de disposition
rma_recordsmanagement.property.rma_dispositionActionId.title=Identifiant de l'action de disposition
rma_recordsmanagement.property.rma_dispositionActionId.decription=Identifiant de l'action de disposition
rma_recordsmanagement.property.rma_dispositionAction.title=Action de disposition
rma_recordsmanagement.property.rma_dispositionAction.decription=Action de disposition
rma_recordsmanagement.property.rma_dispositionAsOf.title=Action de disposition
rma_recordsmanagement.property.rma_dispositionAsOf.decription=Action de disposition
rma_recordsmanagement.property.rma_dispositionEventsEligible.title=\u00c9v\u00e9nements de disposition \u00e9ligibles
rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=\u00c9v\u00e9nements de disposition \u00e9ligibles
rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Action de disposition d\u00e9marr\u00e9e \u00e0
rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Action de disposition d\u00e9marr\u00e9e \u00e0
rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Action de disposition d\u00e9marr\u00e9e par
rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Action de disposition d\u00e9marr\u00e9e par
rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Action de disposition termin\u00e9e \u00e0
rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Action de disposition termin\u00e9e \u00e0
rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Action de disposition termin\u00e9e par
rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Action de disposition termin\u00e9e par
rma_recordsmanagement.association.rma_eventExecutions.title=Ex\u00e9cutions d'\u00e9v\u00e9nement
rma_recordsmanagement.association.rma_eventExecutions.decription=Ex\u00e9cutions d'\u00e9v\u00e9nement
rma_recordsmanagement.type.rma_eventExecution.title=Ex\u00e9cution d'\u00e9v\u00e9nement
rma_recordsmanagement.type.rma_eventExecution.decription=Ex\u00e9cution d'\u00e9v\u00e9nement
rma_recordsmanagement.property.rma_eventExecutionName.title=Nom d'\u00e9v\u00e9nement
rma_recordsmanagement.property.rma_eventExecutionName.decription=Nom d'\u00e9v\u00e9nement
rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=\u00c9v\u00e9nement automatique
rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=\u00c9v\u00e9nement automatique
rma_recordsmanagement.property.rma_eventExecutionComplete.title=\u00c9v\u00e9nement termin\u00e9
rma_recordsmanagement.property.rma_eventExecutionComplete.decription=\u00c9v\u00e9nement termin\u00e9
rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=\u00c9v\u00e9nement termin\u00e9 par
rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=\u00c9v\u00e9nement termin\u00e9 par
rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=\u00c9v\u00e9nement termin\u00e9 \u00e0
rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=\u00c9v\u00e9nement termin\u00e9 \u00e0
rma_recordsmanagement.type.rma_hold.title=Suspendre
rma_recordsmanagement.type.rma_hold.decription=Suspendre
rma_recordsmanagement.property.rma_holdReason.title=Motif de suspension
rma_recordsmanagement.property.rma_holdReason.decription=Motif de suspension
rma_recordsmanagement.association.rma_frozenRecords.title=Documents d'archives gel\u00e9s
rma_recordsmanagement.association.rma_frozenRecords.decription=Documents d'archives gel\u00e9s
rma_recordsmanagement.type.rma_transfer.title=Transf\u00e9rer
rma_recordsmanagement.type.rma_transfer.decription=Transf\u00e9rer
rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Transf\u00e9rer l'indicateur d'acc\u00e8s
rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Transf\u00e9rer l'indicateur d'acc\u00e8s
rma_recordsmanagement.property.rma_transferPDFIndicator.title=Transf\u00e9rer l'indicateur PDF
rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Transf\u00e9rer l'indicateur PDF
rma_recordsmanagement.property.rma_transferLocation.title=Transf\u00e9rer PDF
rma_recordsmanagement.property.rma_transferLocation.decription=Transf\u00e9rer PDF
rma_recordsmanagement.association.rma_transferred.title=Transf\u00e9r\u00e9
rma_recordsmanagement.association.rma_transferred.decription=Transf\u00e9r\u00e9
rma_recordsmanagement.aspect.rma_filePlanComponent.title=Composant de plan de fichier
rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Composant de plan de fichier
rma_recordsmanagement.property.rma_rootNodeRef.title=N\u0153ud racine
rma_recordsmanagement.property.rma_rootNodeRef.decription=N\u0153ud racine
rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Racine de gestion d'archivage \u00e9lectronique
rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Racine de gestion d'archivage \u00e9lectronique
rma_recordsmanagement.association.rma_holds.title=Suspensions
rma_recordsmanagement.association.rma_holds.decription=Suspensions
rma_recordsmanagement.association.rma_transfers.title=Transferts
rma_recordsmanagement.association.rma_transfers.decription=Transferts
rma_recordsmanagement.aspect.rma_declaredRecord.title=Document d'archives complet
rma_recordsmanagement.aspect.rma_declaredRecord.decription=Document d'archives complet
rma_recordsmanagement.property.rma_declaredAt.title=Date d'ach\u00e8vement
rma_recordsmanagement.property.rma_declaredAt.decription=Date d'ach\u00e8vement
rma_recordsmanagement.property.rma_declaredBy.title=Compl\u00e9t\u00e9 par
rma_recordsmanagement.property.rma_declaredBy.decription=Compl\u00e9t\u00e9 par
rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Identificateur de composant de document d'archives
rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Identificateur de composant de document d'archives
rma_recordsmanagement.property.rma_identifier.title=Identificateur
rma_recordsmanagement.property.rma_identifier.decription=Identificateur de document d'archives unique
rma_recordsmanagement.property.rma_dbUniquenessId.title=Unicit\u00e9 de base de donn\u00e9es
rma_recordsmanagement.property.rma_dbUniquenessId.decription=Unicit\u00e9 de base de donn\u00e9es
rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=D\u00e9finition du document d'archives essentiel
rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=D\u00e9finition du document d'archives essentiel
rma_recordsmanagement.property.rma_reviewPeriod.title=P\u00e9riode de v\u00e9rification
rma_recordsmanagement.property.rma_reviewPeriod.decription=P\u00e9riode de v\u00e9rification
rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Identificateur de document d'archives essentiel
rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Identificateur de document d'archives essentiel
rma_recordsmanagement.aspect.rma_record.title=Document d'archives
rma_recordsmanagement.aspect.rma_record.decription=Document d'archives
rma_recordsmanagement.property.rma_dateFiled.title=Date d'archivage
rma_recordsmanagement.property.rma_dateFiled.decription=Date d'archivage
rma_recordsmanagement.property.rma_publicationDate.title=Date de publication
rma_recordsmanagement.property.rma_publicationDate.decription=Date de publication
rma_recordsmanagement.property.rma_originator.title=\u00c9metteur
rma_recordsmanagement.property.rma_originator.decription=\u00c9metteur
rma_recordsmanagement.property.rma_originatingOrganization.title=Organisation \u00e9mettrice
rma_recordsmanagement.property.rma_originatingOrganization.decription=Organisation \u00e9mettrice
rma_recordsmanagement.property.rma_mediaType.title=Type de support
rma_recordsmanagement.property.rma_mediaType.decription=Type de support
rma_recordsmanagement.property.rma_format.title=Format
rma_recordsmanagement.property.rma_format.decription=Format
rma_recordsmanagement.property.rma_dateReceived.title=Date de r\u00e9ception
rma_recordsmanagement.property.rma_dateReceived.decription=Date de r\u00e9ception
rma_recordsmanagement.property.rma_address.title=Destinataire
rma_recordsmanagement.property.rma_address.decription=Destinataire
rma_recordsmanagement.property.rma_otherAddress.title=Autre destinataire
rma_recordsmanagement.property.rma_otherAddress.decription=Autre destinataire
rma_recordsmanagement.property.rma_origionalName=Nom d'origine
rma_recordsmanagement.aspect.rma_recordMetaData.title=M\u00e9tadonn\u00e9es du document d'archives
rma_recordsmanagement.aspect.rma_recordMetaData.description=Aspect du marqueur de m\u00e9tadonn\u00e9es de document d'archives
rma_recordsmanagement.aspect.rma_commonRecordDetails.title=D\u00e9tails des documents d'archives communs
rma_recordsmanagement.aspect.rma_commonRecordDetails.description=M\u00e9tadonn\u00e9es communes \u00e0 tous les types de document d'archives
rma_recordsmanagement.property.rma_location.title=Emplacement
rma_recordsmanagement.property.rma_location.decription=Emplacement
rma_recordsmanagement.aspect.rma_vitalRecord.title=Document d'archives essentiel
rma_recordsmanagement.aspect.rma_vitalRecord.decription=Document d'archives essentiel
rma_recordsmanagement.property.rma_reviewAsOf.title=V\u00e9rification suivante
rma_recordsmanagement.property.rma_reviewAsOf.decription=V\u00e9rification suivante
rma_recordsmanagement.property.rma_notificationIssued.title=Indique qu'une notification de v\u00e9rification n\u00e9cessaire a \u00e9t\u00e9 \u00e9mise pour le document d'archives.
rma_recordsmanagement.property.rma_notificationIssued.decription=Indique qu'une notification de v\u00e9rification n\u00e9cessaire a \u00e9t\u00e9 \u00e9mise pour le document d'archives.
rma_recordsmanagement.aspect.rma_scheduled.title=Planifi\u00e9
rma_recordsmanagement.aspect.rma_scheduled.decription=Planifi\u00e9
rma_recordsmanagement.association.rma_dispositionSchedule.title=Planification de disposition
rma_recordsmanagement.association.rma_dispositionSchedule.decription=Planification de disposition
rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Cycle de vie de disposition
rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Cycle de vie de disposition
rma_recordsmanagement.association.rma_nextDispositionAction.title=Action de la disposition suivante
rma_recordsmanagement.association.rma_nextDispositionAction.decription=Action de la disposition suivante
rma_recordsmanagement.association.rma_dispositionActionHistory.title=Historique des actions de disposition
rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Historique des actions de disposition
rma_recordsmanagement.aspect.rma_cutOff.title=Limiter
rma_recordsmanagement.aspect.rma_cutOff.decription=Limiter
rma_recordsmanagement.property.rma_cutOffDate.title=Date limite
rma_recordsmanagement.property.rma_cutOffDate.decription=Date limite
rma_recordsmanagement.aspect.rma_transferred.title=Transf\u00e9r\u00e9
rma_recordsmanagement.aspect.rma_transferred.decription=Transf\u00e9r\u00e9
rma_recordsmanagement.aspect.rma_ascended.title=Mont\u00e9
rma_recordsmanagement.aspect.rma_ascended.decription=Mont\u00e9
rma_recordsmanagement.aspect.rma_frozen.title=Gel\u00e9
rma_recordsmanagement.aspect.rma_frozen.decription=Gel\u00e9
rma_recordsmanagement.property.rma_frozenAt.title=Gel\u00e9 \u00e0
rma_recordsmanagement.property.rma_frozenAt.decription=Gel\u00e9 \u00e0
rma_recordsmanagement.property.rma_frozenBy.title=Gel\u00e9 par
rma_recordsmanagement.property.rma_frozenBy.decription=Gel\u00e9 par
rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Racine de configuration de mise en garde
rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Racine de configuration de mise en garde
rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Configuration de mise en garde
rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Configuration de mise en garde
rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Racine de configuration d'e-mail
rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Racine de configuration d'e-mail
rma_recordsmanagement.association.rma_emailConfigAssoc.title=Configuration d'e-mail
rma_recordsmanagement.association.rma_emailConfigAssoc.description=Configuration d'e-mail
rma_recordsmanagement.aspect.rma_recordSearch.title=Recherche de document d'archives
rma_recordsmanagement.aspect.rma_recordSearch.decription=Informations de recherches cumul\u00e9es pour prendre en charge la gestion d'archivage \u00e9lectronique
rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=A une planification de disposition
rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Indique si l'\u00e9l\u00e9ment a une planification de disposition associ\u00e9e.
rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Nom d'action de disposition
rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=Nom de l'action de disposition suivante
rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Action de disposition de
rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=Date \u00e0 laquelle l'action de disposition suivante devient \u00e9ligible
rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=P\u00e9riode de disposition
rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=P\u00e9riode de disposition
rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Expression de la p\u00e9riode de disposition
rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Expression de la p\u00e9riode de disposition
rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=\u00c9v\u00e9nements de disposition \u00e9ligibles
rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=\u00c9v\u00e9nements de disposition \u00e9ligibles
rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=\u00c9v\u00e9nements de disposition
rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=\u00c9v\u00e9nements de disposition
rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Droit de disposition
rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Droit de disposition
rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Instructions de disposition
rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Instructions de disposition
rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Motif de suspension
rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Motif de suspension
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=P\u00e9riode de v\u00e9rification de document d'archives essentiel
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=P\u00e9riode de v\u00e9rification de document d'archives essentiel
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Expression de p\u00e9riode de v\u00e9rification
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Expression de p\u00e9riode de v\u00e9rification
rma_recordsmanagement.aspect.rma_versionedRecord.title=Document d'archives versionn\u00e9
rma_recordsmanagement.aspect.rma_versionedRecord.decription=Document d'archives versionn\u00e9
rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Mise \u00e0 jour non publi\u00e9e
rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Mise \u00e0 jour non publi\u00e9e
rma_recordsmanagement.property.rma_unpublishedUpdate.title=Mise \u00e0 jour non publi\u00e9e
rma_recordsmanagement.property.rma_unpublishedUpdate.description=Indique s'il existe une mise \u00e0 jour non publi\u00e9e
rma_recordsmanagement.property.rma_updateTo.title=Mettre \u00e0 jour vers
rma_recordsmanagement.property.rma_updateTo.description=Destination de la mise \u00e0 jour
rma_recordsmanagement.property.rma_updatedProperties.title=Propri\u00e9t\u00e9s mises \u00e0 jour
rma_recordsmanagement.property.rma_updatedProperties.description=Les propri\u00e9t\u00e9s mises \u00e0 jour
rma_recordsmanagement.property.rma_publishInProgress.title=Publication en cours
rma_recordsmanagement.property.rma_publishInProgress.description=Indique si une publication est en cours
rma_recordsmanagement.aspect.dod_ghosted.title=Document d'archives dupliqu\u00e9
rma_recordsmanagement.aspect.dod_ghosted.description=Document d'archives dupliqu\u00e9
listconstraint.rmc_tlList.title=Transf\u00e9rer les emplacements
listconstraint.rmc_smList.title=Marquages compl\u00e9mentaires

View File

@@ -0,0 +1,281 @@
rma_recordsmanagement.description=Modello di contenuto della gestione dei record
rma_recordsmanagement.type.rma_rmsite.title=Sito di gestione dei record
rma_recordsmanagement.type.rma_rmsite.description=Sito specializzato per la gestione dei record
rma_recordsmanagement.type.rma_caveatConfig.title=Configurazione avvertenza
rma_recordsmanagement.type.rma_caveatConfig.decription=Configurazione avvertenza
rma_recordsmanagement.type.rma_emailConfig.title=Configurazione e-mail
rma_recordsmanagement.type.rma_emailConfig.decription=Configurazione e-mail
rma_recordsmanagement.type.rma_recordsManagementContainer.title=Contenitore di gestione dei record
rma_recordsmanagement.type.rma_recordsManagementContainer.decription=Contenitore di gestione dei record
rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=Contenitore radice di gestione dei record
rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=Contenitore radice di gestione dei record
rma_recordsmanagement.type.rma_dispositionSchedule.title=Pianificazione della disposizione
rma_recordsmanagement.type.rma_dispositionSchedule.decription=Pianificazione della disposizione
rma_recordsmanagement.property.rma_dispositionAuthority.title=Autorit\u00e0 di disposizione
rma_recordsmanagement.property.rma_dispositionAuthority.decription=Autorit\u00e0 di disposizione
rma_recordsmanagement.property.rma_dispositionInstructions.title=Istruzioni di disposizione
rma_recordsmanagement.property.rma_dispositionInstructions.decription=Istruzioni di disposizione
rma_recordsmanagement.property.rma_recordLevelDisposition.title=Disposizione a livello di record
rma_recordsmanagement.property.rma_recordLevelDisposition.decription=Disposizione a livello di record
rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=Azioni di disposizione
rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=Azioni di disposizione
rma_recordsmanagement.type.rma_dispositionActionDefinition.title=Definizione di azione di disposizione
rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=Definizione di azione di disposizione
rma_recordsmanagement.property.rma_dispositionActionName.title=Nome dell'azione di disposizione
rma_recordsmanagement.property.rma_dispositionActionName.decription=Nome dell'azione di disposizione
rma_recordsmanagement.property.rma_dispositionDescription.title=Descrizione della disposizione
rma_recordsmanagement.property.rma_dispositionDescription.decription=Descrizione della disposizione
rma_recordsmanagement.property.rma_dispositionLocation.title=Posizione della disposizione
rma_recordsmanagement.property.rma_dispositionLocation.decription=Posizione della disposizione
rma_recordsmanagement.property.rma_dispositionPeriod.title=Periodo della disposizione
rma_recordsmanagement.property.rma_dispositionPeriod.decription=Periodo della disposizione
rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=Propriet\u00e0 periodo della disposizione
rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=Propriet\u00e0 periodo della disposizione
rma_recordsmanagement.property.rma_dispositionEvent.title=Evento di disposizione
rma_recordsmanagement.property.rma_dispositionEvent.decription=Evento di disposizione
rma_recordsmanagement.property.rma_dispositionEventCombination.title=Combinazione di eventi di disposizione
rma_recordsmanagement.property.rma_dispositionEventCombination.decription=Combinazione di eventi di disposizione
rma_recordsmanagement.type.rma_recordFolder.title=Cartella record
rma_recordsmanagement.type.rma_recordFolder.decription=Cartella record
rma_recordsmanagement.property.rma_isClosed.title=Record
rma_recordsmanagement.property.rma_isClosed.decription=Record
rma_recordsmanagement.type.rma_recordCategory.title=Categoria record
rma_recordsmanagement.type.rma_recordCategory.decription=Categoria record
rma_recordsmanagement.type.rma_nonElectronicDocument.title=Documento non elettronico
rma_recordsmanagement.type.rma_nonElectronicDocument.decription=Documento non elettronico
rma_recordsmanagement.property.rma_physicalSize.title=Dimensioni fisiche
rma_recordsmanagement.property.rma_physicalSize.decription=Le dimensioni del documento misurate in metri lineari.
rma_recordsmanagement.property.rma_numberOfCopies.title=Numero di copie
rma_recordsmanagement.property.rma_numberOfCopies.description=Il numero di copie del documento.
rma_recordsmanagement.property.rma_storageLocation.title=Posizione di archiviazione
rma_recordsmanagement.property.rma_storageLocation.decription=La posizione di archiviazione fisica del record.
rma_recordsmanagement.property.rma_shelf.title=Scaffale
rma_recordsmanagement.property.rma_shelf.decription=Lo scaffale su cui si trova il record.
rma_recordsmanagement.property.rma_box.title=Scatola
rma_recordsmanagement.property.rma_box.description=La scatola in cui si trova il record.
rma_recordsmanagement.property.rma_file.title=File
rma_recordsmanagement.property.rma_file.decription=Il file in cui si trova il record.
rma_recordsmanagement.type.rma_dispositionAction.title=Azione di disposizione
rma_recordsmanagement.type.rma_dispositionAction.decription=Azione di disposizione
rma_recordsmanagement.property.rma_dispositionActionId.title=Id azione di disposizione
rma_recordsmanagement.property.rma_dispositionActionId.decription=Id azione di disposizione
rma_recordsmanagement.property.rma_dispositionAction.title=Azione di disposizione
rma_recordsmanagement.property.rma_dispositionAction.decription=Azione di disposizione
rma_recordsmanagement.property.rma_dispositionAsOf.title=Azione di disposizione
rma_recordsmanagement.property.rma_dispositionAsOf.decription=Azione di disposizione
rma_recordsmanagement.property.rma_dispositionEventsEligible.title=Eventi di disposizione idonei
rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=Eventi di disposizione idonei
rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=Azione di disposizione iniziata alle
rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=Azione di disposizione iniziata alle
rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=Azione di disposizione iniziata da
rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=Azione di disposizione iniziata da
rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=Azione di disposizione completata alle
rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=Azione di disposizione completata alle
rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=Azione di disposizione completata da
rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=Azione di disposizione completata da
rma_recordsmanagement.association.rma_eventExecutions.title=Esecuzioni eventi
rma_recordsmanagement.association.rma_eventExecutions.decription=Esecuzioni eventi
rma_recordsmanagement.type.rma_eventExecution.title=Esecuzione evento
rma_recordsmanagement.type.rma_eventExecution.decription=Esecuzione evento
rma_recordsmanagement.property.rma_eventExecutionName.title=Nome evento
rma_recordsmanagement.property.rma_eventExecutionName.decription=Nome evento
rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=Evento automatico
rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=Evento automatico
rma_recordsmanagement.property.rma_eventExecutionComplete.title=Evento completato
rma_recordsmanagement.property.rma_eventExecutionComplete.decription=Evento completato
rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=Evento completato da
rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=Evento completato da
rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=Evento completato alle
rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=Evento completato alle
rma_recordsmanagement.type.rma_hold.title=Esenzione
rma_recordsmanagement.type.rma_hold.decription=Esenzione
rma_recordsmanagement.property.rma_holdReason.title=Motivo esenzione
rma_recordsmanagement.property.rma_holdReason.decription=Motivo esenzione
rma_recordsmanagement.association.rma_frozenRecords.title=Record bloccati
rma_recordsmanagement.association.rma_frozenRecords.decription=Record bloccati
rma_recordsmanagement.type.rma_transfer.title=Trasferisci
rma_recordsmanagement.type.rma_transfer.decription=Trasferisci
rma_recordsmanagement.property.rma_transferAccessionIndicator.title=Trasferisci indicatore di inserimento
rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=Trasferisci indicatore di inserimento
rma_recordsmanagement.property.rma_transferPDFIndicator.title=Trasferisci indicatore PDF
rma_recordsmanagement.property.rma_transferPDFIndicator.decription=Trasferisci indicatore PDF
rma_recordsmanagement.property.rma_transferLocation.title=Trasferisci PDF
rma_recordsmanagement.property.rma_transferLocation.decription=Trasferisci PDF
rma_recordsmanagement.association.rma_transferred.title=Trasferito
rma_recordsmanagement.association.rma_transferred.decription=Trasferito
rma_recordsmanagement.aspect.rma_filePlanComponent.title=Componente piano file
rma_recordsmanagement.aspect.rma_filePlanComponent.decription=Componente piano file
rma_recordsmanagement.property.rma_rootNodeRef.title=Nodo radice
rma_recordsmanagement.property.rma_rootNodeRef.decription=Nodo radice
rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=Radice di gestione dei record
rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=Radice di gestione dei record
rma_recordsmanagement.association.rma_holds.title=Esenzioni
rma_recordsmanagement.association.rma_holds.decription=Esenzioni
rma_recordsmanagement.association.rma_transfers.title=Trasferimenti
rma_recordsmanagement.association.rma_transfers.decription=Trasferimenti
rma_recordsmanagement.aspect.rma_declaredRecord.title=Record completato
rma_recordsmanagement.aspect.rma_declaredRecord.decription=Record completato
rma_recordsmanagement.property.rma_declaredAt.title=Data di completamento
rma_recordsmanagement.property.rma_declaredAt.decription=Data di completamento
rma_recordsmanagement.property.rma_declaredBy.title=Completato da
rma_recordsmanagement.property.rma_declaredBy.decription=Completato da
rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=Identificatore componente record
rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=Identificatore componente record
rma_recordsmanagement.property.rma_identifier.title=Identificativo
rma_recordsmanagement.property.rma_identifier.decription=Identificatore record unico
rma_recordsmanagement.property.rma_dbUniquenessId.title=Unicit\u00e0 database
rma_recordsmanagement.property.rma_dbUniquenessId.decription=Unicit\u00e0 database
rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=Definizione di record essenziale
rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=Definizione di record essenziale
rma_recordsmanagement.property.rma_reviewPeriod.title=Periodo di revisione
rma_recordsmanagement.property.rma_reviewPeriod.decription=Periodo di revisione
rma_recordsmanagement.property.rma_vitalRecordIndicator.title=Indicatore record essenziale
rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=Indicatore record essenziale
rma_recordsmanagement.aspect.rma_record.title=Record
rma_recordsmanagement.aspect.rma_record.decription=Record
rma_recordsmanagement.property.rma_dateFiled.title=Data di archiviazione
rma_recordsmanagement.property.rma_dateFiled.decription=Data di archiviazione
rma_recordsmanagement.property.rma_publicationDate.title=Data di pubblicazione
rma_recordsmanagement.property.rma_publicationDate.decription=Data di pubblicazione
rma_recordsmanagement.property.rma_originator.title=Iniziatore
rma_recordsmanagement.property.rma_originator.decription=Iniziatore
rma_recordsmanagement.property.rma_originatingOrganization.title=Organizzazione di origine
rma_recordsmanagement.property.rma_originatingOrganization.decription=Organizzazione di origine
rma_recordsmanagement.property.rma_mediaType.title=Tipo di supporto
rma_recordsmanagement.property.rma_mediaType.decription=Tipo di supporto
rma_recordsmanagement.property.rma_format.title=Formato
rma_recordsmanagement.property.rma_format.decription=Formato
rma_recordsmanagement.property.rma_dateReceived.title=Data di ricezione
rma_recordsmanagement.property.rma_dateReceived.decription=Data di ricezione
rma_recordsmanagement.property.rma_address.title=Destinatario
rma_recordsmanagement.property.rma_address.decription=Destinatario
rma_recordsmanagement.property.rma_otherAddress.title=Altro destinatario
rma_recordsmanagement.property.rma_otherAddress.decription=Altro destinatario
rma_recordsmanagement.property.rma_origionalName=Nome originale
rma_recordsmanagement.aspect.rma_recordMetaData.title=Metadati del record
rma_recordsmanagement.aspect.rma_recordMetaData.description=Aspetto degli indicatori dei metadati del record
rma_recordsmanagement.aspect.rma_commonRecordDetails.title=Dettagli dei record comuni
rma_recordsmanagement.aspect.rma_commonRecordDetails.description=Metadati comuni a tutti i tipi di record
rma_recordsmanagement.property.rma_location.title=Localit\u00e0
rma_recordsmanagement.property.rma_location.decription=Localit\u00e0
rma_recordsmanagement.aspect.rma_vitalRecord.title=Record essenziale
rma_recordsmanagement.aspect.rma_vitalRecord.decription=Record essenziale
rma_recordsmanagement.property.rma_reviewAsOf.title=Prossima revisione
rma_recordsmanagement.property.rma_reviewAsOf.decription=Prossima revisione
rma_recordsmanagement.property.rma_notificationIssued.title=Indica che \u00e8 stata emessa una notifica di revisione necessaria per questo record
rma_recordsmanagement.property.rma_notificationIssued.decription=Indica che \u00e8 stata emessa una notifica di revisione necessaria per questo record
rma_recordsmanagement.aspect.rma_scheduled.title=Pianificato
rma_recordsmanagement.aspect.rma_scheduled.decription=Pianificato
rma_recordsmanagement.association.rma_dispositionSchedule.title=Pianificazione della disposizione
rma_recordsmanagement.association.rma_dispositionSchedule.decription=Pianificazione della disposizione
rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=Ciclo di vita della disposizione
rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=Ciclo di vita della disposizione
rma_recordsmanagement.association.rma_nextDispositionAction.title=Prossima azione di disposizione
rma_recordsmanagement.association.rma_nextDispositionAction.decription=Prossima azione di disposizione
rma_recordsmanagement.association.rma_dispositionActionHistory.title=Cronologia azioni di disposizione
rma_recordsmanagement.association.rma_dispositionActionHistory.decription=Cronologia azioni di disposizione
rma_recordsmanagement.aspect.rma_cutOff.title=Taglio
rma_recordsmanagement.aspect.rma_cutOff.decription=Taglio
rma_recordsmanagement.property.rma_cutOffDate.title=Data limite
rma_recordsmanagement.property.rma_cutOffDate.decription=Data limite
rma_recordsmanagement.aspect.rma_transferred.title=Trasferito
rma_recordsmanagement.aspect.rma_transferred.decription=Trasferito
rma_recordsmanagement.aspect.rma_ascended.title=Salito
rma_recordsmanagement.aspect.rma_ascended.decription=Salito
rma_recordsmanagement.aspect.rma_frozen.title=Bloccato
rma_recordsmanagement.aspect.rma_frozen.decription=Bloccato
rma_recordsmanagement.property.rma_frozenAt.title=Bloccato alle
rma_recordsmanagement.property.rma_frozenAt.decription=Bloccato alle
rma_recordsmanagement.property.rma_frozenBy.title=Bloccato da
rma_recordsmanagement.property.rma_frozenBy.decription=Bloccato da
rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=Radice configurazione avvertenza
rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=Radice configurazione avvertenza
rma_recordsmanagement.association.rma_caveatConfigAssoc.title=Configurazione avvertenza
rma_recordsmanagement.association.rma_caveatConfigAssoc.description=Configurazione avvertenza
rma_recordsmanagement.aspect.rma_emailConfigRoot.title=Radice configurazione e-mail
rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=Radice configurazione e-mail
rma_recordsmanagement.association.rma_emailConfigAssoc.title=Configurazione e-mail
rma_recordsmanagement.association.rma_emailConfigAssoc.description=Configurazione e-mail
rma_recordsmanagement.aspect.rma_recordSearch.title=Ricerca record
rma_recordsmanagement.aspect.rma_recordSearch.decription=Informazioni di ricerca riportate per supportare la ricerca della gestione dei record
rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=Ha una pianificazione di disposizione
rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=Indica se l'elemento ha una pianificazione di disposizione associata
rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=Nome dell'azione di disposizione
rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=Il nome dell'azione di disposizione successiva
rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=Azione di disposizione di
rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=La data in cui l'azione di disposizione successiva diventa idonea
rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=Periodo della disposizione
rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=Periodo della disposizione
rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=Espressione del periodo di disposizione
rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=Espressione del periodo di disposizione
rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=Eventi di disposizione idonei
rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=Eventi di disposizione idonei
rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=Eventi di disposizione
rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=Eventi di disposizione
rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=Autorit\u00e0 di disposizione
rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=Autorit\u00e0 di disposizione
rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=Istruzioni di disposizione
rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=Istruzioni di disposizione
rma_recordsmanagement.property.rma_recordSearchHoldReason.title=Motivo esenzione
rma_recordsmanagement.property.rma_recordSearchHoldReason.description=Motivo esenzione
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=Periodo di revisione dei record essenziali
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=Periodo di revisione dei record essenziali
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=Espressione del periodo di revisione
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=Espressione del periodo di revisione
rma_recordsmanagement.aspect.rma_versionedRecord.title=Record con versione
rma_recordsmanagement.aspect.rma_versionedRecord.decription=Record con versione
rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=Aggiornamento non pubblicato
rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=Aggiornamento non pubblicato
rma_recordsmanagement.property.rma_unpublishedUpdate.title=Aggiornamento non pubblicato
rma_recordsmanagement.property.rma_unpublishedUpdate.description=Indica se \u00e8 presente un aggiornamento non pubblicato
rma_recordsmanagement.property.rma_updateTo.title=Aggiorna su
rma_recordsmanagement.property.rma_updateTo.description=Destinazione dell'aggiornamento
rma_recordsmanagement.property.rma_updatedProperties.title=Propriet\u00e0 aggiornate
rma_recordsmanagement.property.rma_updatedProperties.description=Le propriet\u00e0 aggiornate
rma_recordsmanagement.property.rma_publishInProgress.title=Pubblicazione in corso
rma_recordsmanagement.property.rma_publishInProgress.description=Indica se una pubblicazione \u00e8 attualmente in corso
rma_recordsmanagement.aspect.dod_ghosted.title=Record fantasma
rma_recordsmanagement.aspect.dod_ghosted.description=Record fantasma
listconstraint.rmc_tlList.title=Trasferisci posizioni
listconstraint.rmc_smList.title=Contrassegni supplementari

View File

@@ -0,0 +1,281 @@
rma_recordsmanagement.description=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u30e2\u30c7\u30eb
rma_recordsmanagement.type.rma_rmsite.title=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30b5\u30a4\u30c8
rma_recordsmanagement.type.rma_rmsite.description=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u7528\u306e\u5c02\u9580\u30b5\u30a4\u30c8
rma_recordsmanagement.type.rma_caveatConfig.title=\u8b66\u544a\u8a2d\u5b9a
rma_recordsmanagement.type.rma_caveatConfig.decription=\u8b66\u544a\u8a2d\u5b9a
rma_recordsmanagement.type.rma_emailConfig.title=E\u30e1\u30fc\u30eb\u8a2d\u5b9a
rma_recordsmanagement.type.rma_emailConfig.decription=E\u30e1\u30fc\u30eb\u8a2d\u5b9a
rma_recordsmanagement.type.rma_recordsManagementContainer.title=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30b3\u30f3\u30c6\u30ca\u30fc
rma_recordsmanagement.type.rma_recordsManagementContainer.decription=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30b3\u30f3\u30c6\u30ca\u30fc
rma_recordsmanagement.type.rma_recordsManagementRootContainer.title=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8\u30b3\u30f3\u30c6\u30ca\u30fc
rma_recordsmanagement.type.rma_recordsManagementRootContainer.decription=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8\u30b3\u30f3\u30c6\u30ca\u30fc
rma_recordsmanagement.type.rma_dispositionSchedule.title=\u5ec3\u68c4\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb
rma_recordsmanagement.type.rma_dispositionSchedule.decription=\u5ec3\u68c4\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb
rma_recordsmanagement.property.rma_dispositionAuthority.title=\u5ec3\u68c4\u6a29\u9650
rma_recordsmanagement.property.rma_dispositionAuthority.decription=\u5ec3\u68c4\u6a29\u9650
rma_recordsmanagement.property.rma_dispositionInstructions.title=\u5ec3\u68c4\u6307\u793a
rma_recordsmanagement.property.rma_dispositionInstructions.decription=\u5ec3\u68c4\u6307\u793a
rma_recordsmanagement.property.rma_recordLevelDisposition.title=\u30ec\u30b3\u30fc\u30c9\u30ec\u30d9\u30eb\u5ec3\u68c4
rma_recordsmanagement.property.rma_recordLevelDisposition.decription=\u30ec\u30b3\u30fc\u30c9\u30ec\u30d9\u30eb\u5ec3\u68c4
rma_recordsmanagement.association.rma_dispositionActionDefinitions.title=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3
rma_recordsmanagement.association.rma_dispositionActionDefinitions.decription=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3
rma_recordsmanagement.type.rma_dispositionActionDefinition.title=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u5b9a\u7fa9
rma_recordsmanagement.type.rma_dispositionActionDefinition.decription=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u5b9a\u7fa9
rma_recordsmanagement.property.rma_dispositionActionName.title=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u540d\u524d
rma_recordsmanagement.property.rma_dispositionActionName.decription=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u540d\u524d
rma_recordsmanagement.property.rma_dispositionDescription.title=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u8aac\u660e
rma_recordsmanagement.property.rma_dispositionDescription.decription=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u8aac\u660e
rma_recordsmanagement.property.rma_dispositionLocation.title=\u5ec3\u68c4\u5834\u6240
rma_recordsmanagement.property.rma_dispositionLocation.decription=\u5ec3\u68c4\u5834\u6240
rma_recordsmanagement.property.rma_dispositionPeriod.title=\u5ec3\u68c4\u671f\u9593
rma_recordsmanagement.property.rma_dispositionPeriod.decription=\u5ec3\u68c4\u671f\u9593
rma_recordsmanagement.property.rma_dispositionPeriodProperty.title=\u5ec3\u68c4\u671f\u9593\u306e\u30d7\u30ed\u30d1\u30c6\u30a3
rma_recordsmanagement.property.rma_dispositionPeriodProperty.decription=\u5ec3\u68c4\u671f\u9593\u306e\u30d7\u30ed\u30d1\u30c6\u30a3
rma_recordsmanagement.property.rma_dispositionEvent.title=\u5ec3\u68c4\u30a4\u30d9\u30f3\u30c8
rma_recordsmanagement.property.rma_dispositionEvent.decription=\u5ec3\u68c4\u30a4\u30d9\u30f3\u30c8
rma_recordsmanagement.property.rma_dispositionEventCombination.title=\u5ec3\u68c4\u30a4\u30d9\u30f3\u30c8\u306e\u7d44\u307f\u5408\u308f\u305b
rma_recordsmanagement.property.rma_dispositionEventCombination.decription=\u5ec3\u68c4\u30a4\u30d9\u30f3\u30c8\u306e\u7d44\u307f\u5408\u308f\u305b
rma_recordsmanagement.type.rma_recordFolder.title=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
rma_recordsmanagement.type.rma_recordFolder.decription=\u30ec\u30b3\u30fc\u30c9\u30d5\u30a9\u30eb\u30c0
rma_recordsmanagement.property.rma_isClosed.title=\u30ec\u30b3\u30fc\u30c9
rma_recordsmanagement.property.rma_isClosed.decription=\u30ec\u30b3\u30fc\u30c9
rma_recordsmanagement.type.rma_recordCategory.title=\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea
rma_recordsmanagement.type.rma_recordCategory.decription=\u30ec\u30b3\u30fc\u30c9\u30ab\u30c6\u30b4\u30ea
rma_recordsmanagement.type.rma_nonElectronicDocument.title=\u975e\u96fb\u5b50\u6587\u66f8
rma_recordsmanagement.type.rma_nonElectronicDocument.decription=\u975e\u96fb\u5b50\u6587\u66f8
rma_recordsmanagement.property.rma_physicalSize.title=\u7269\u7406\u7684\u306a\u30b5\u30a4\u30ba
rma_recordsmanagement.property.rma_physicalSize.decription=\u6587\u66f8\u306e\u30b5\u30a4\u30ba\u306f\u30ea\u30cb\u30a2\u30e1\u30fc\u30bf\u30fc\u3067\u8a08\u6e2c\u3055\u308c\u307e\u3059\u3002
rma_recordsmanagement.property.rma_numberOfCopies.title=\u30b3\u30d4\u30fc\u6570
rma_recordsmanagement.property.rma_numberOfCopies.description=\u6587\u66f8\u306e\u30b3\u30d4\u30fc\u6570\u3067\u3059\u3002
rma_recordsmanagement.property.rma_storageLocation.title=\u4fdd\u7ba1\u5834\u6240
rma_recordsmanagement.property.rma_storageLocation.decription=\u30ec\u30b3\u30fc\u30c9\u306e\u7269\u7406\u7684\u306a\u4fdd\u7ba1\u5834\u6240\u3067\u3059\u3002
rma_recordsmanagement.property.rma_shelf.title=\u68da
rma_recordsmanagement.property.rma_shelf.decription=\u30ec\u30b3\u30fc\u30c9\u3092\u4fdd\u7ba1\u3057\u3066\u304a\u304f\u68da\u3067\u3059\u3002
rma_recordsmanagement.property.rma_box.title=\u7bb1
rma_recordsmanagement.property.rma_box.description=\u30ec\u30b3\u30fc\u30c9\u3092\u4fdd\u7ba1\u3057\u3066\u304a\u304f\u7bb1\u3067\u3059\u3002
rma_recordsmanagement.property.rma_file.title=\u6574\u7406\u4fdd\u7ba1
rma_recordsmanagement.property.rma_file.decription=\u30ec\u30b3\u30fc\u30c9\u3092\u4fdd\u7ba1\u3057\u3066\u304a\u304f\u30d5\u30a1\u30a4\u30eb\u3067\u3059\u3002
rma_recordsmanagement.type.rma_dispositionAction.title=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3
rma_recordsmanagement.type.rma_dispositionAction.decription=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3
rma_recordsmanagement.property.rma_dispositionActionId.title=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3ID
rma_recordsmanagement.property.rma_dispositionActionId.decription=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3ID
rma_recordsmanagement.property.rma_dispositionAction.title=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3
rma_recordsmanagement.property.rma_dispositionAction.decription=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3
rma_recordsmanagement.property.rma_dispositionAsOf.title=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3
rma_recordsmanagement.property.rma_dispositionAsOf.decription=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3
rma_recordsmanagement.property.rma_dispositionEventsEligible.title=\u5ec3\u68c4\u30a4\u30d9\u30f3\u30c8\u304c\u8a31\u53ef\u6e08\u307f
rma_recordsmanagement.property.rma_dispositionEventsEligible.decription=\u5ec3\u68c4\u30a4\u30d9\u30f3\u30c8\u304c\u8a31\u53ef\u6e08\u307f
rma_recordsmanagement.property.rma_dispositionActionStartedAt.title=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u958b\u59cb\u65e5\u6642
rma_recordsmanagement.property.rma_dispositionActionStartedAt.decription=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u958b\u59cb\u65e5\u6642
rma_recordsmanagement.property.rma_dispositionActionStartedBy.title=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u958b\u59cb\u8005
rma_recordsmanagement.property.rma_dispositionActionStartedBy.decription=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u958b\u59cb\u8005
rma_recordsmanagement.property.rma_dispositionActionCompletedAt.title=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u5b8c\u4e86\u65e5\u6642
rma_recordsmanagement.property.rma_dispositionActionCompletedAt.decription=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u5b8c\u4e86\u65e5\u6642
rma_recordsmanagement.property.rma_dispositionActionCompletedBy.title=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u5b8c\u4e86\u8005
rma_recordsmanagement.property.rma_dispositionActionCompletedBy.decription=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u5b8c\u4e86\u8005
rma_recordsmanagement.association.rma_eventExecutions.title=\u30a4\u30d9\u30f3\u30c8\u306e\u5b9f\u884c
rma_recordsmanagement.association.rma_eventExecutions.decription=\u30a4\u30d9\u30f3\u30c8\u306e\u5b9f\u884c
rma_recordsmanagement.type.rma_eventExecution.title=\u30a4\u30d9\u30f3\u30c8\u306e\u5b9f\u884c
rma_recordsmanagement.type.rma_eventExecution.decription=\u30a4\u30d9\u30f3\u30c8\u306e\u5b9f\u884c
rma_recordsmanagement.property.rma_eventExecutionName.title=\u30a4\u30d9\u30f3\u30c8\u540d
rma_recordsmanagement.property.rma_eventExecutionName.decription=\u30a4\u30d9\u30f3\u30c8\u540d
rma_recordsmanagement.property.rma_eventExecutionAutomatic.title=\u30a4\u30d9\u30f3\u30c8\u306e\u81ea\u52d5\u5316
rma_recordsmanagement.property.rma_eventExecutionAutomatic.decription=\u30a4\u30d9\u30f3\u30c8\u306e\u81ea\u52d5\u5316
rma_recordsmanagement.property.rma_eventExecutionComplete.title=\u30a4\u30d9\u30f3\u30c8\u5b8c\u4e86
rma_recordsmanagement.property.rma_eventExecutionComplete.decription=\u30a4\u30d9\u30f3\u30c8\u5b8c\u4e86
rma_recordsmanagement.property.rma_eventExecutionCompletedBy.title=\u30a4\u30d9\u30f3\u30c8\u306e\u5b8c\u4e86\u8005
rma_recordsmanagement.property.rma_eventExecutionCompletedBy.decription=\u30a4\u30d9\u30f3\u30c8\u306e\u5b8c\u4e86\u8005
rma_recordsmanagement.property.rma_eventExecutionCompletedAt.title=\u30a4\u30d9\u30f3\u30c8\u306e\u5b8c\u4e86\u65e5\u6642
rma_recordsmanagement.property.rma_eventExecutionCompletedAt.decription=\u30a4\u30d9\u30f3\u30c8\u306e\u5b8c\u4e86\u65e5\u6642
rma_recordsmanagement.type.rma_hold.title=\u4fdd\u7559
rma_recordsmanagement.type.rma_hold.decription=\u4fdd\u7559
rma_recordsmanagement.property.rma_holdReason.title=\u4fdd\u7559\u7406\u7531
rma_recordsmanagement.property.rma_holdReason.decription=\u4fdd\u7559\u7406\u7531
rma_recordsmanagement.association.rma_frozenRecords.title=\u56fa\u5b9a\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
rma_recordsmanagement.association.rma_frozenRecords.decription=\u56fa\u5b9a\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
rma_recordsmanagement.type.rma_transfer.title=\u8ee2\u9001
rma_recordsmanagement.type.rma_transfer.decription=\u8ee2\u9001
rma_recordsmanagement.property.rma_transferAccessionIndicator.title=\u767b\u9332\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc\u306e\u8ee2\u9001
rma_recordsmanagement.property.rma_transferAccessionIndicator.decription=\u767b\u9332\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc\u306e\u8ee2\u9001
rma_recordsmanagement.property.rma_transferPDFIndicator.title=PDF\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc\u306e\u8ee2\u9001
rma_recordsmanagement.property.rma_transferPDFIndicator.decription=PDF\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc\u306e\u8ee2\u9001
rma_recordsmanagement.property.rma_transferLocation.title=PDF\u306e\u8ee2\u9001
rma_recordsmanagement.property.rma_transferLocation.decription=PDF\u306e\u8ee2\u9001
rma_recordsmanagement.association.rma_transferred.title=\u8ee2\u9001\u6e08\u307f
rma_recordsmanagement.association.rma_transferred.decription=\u8ee2\u9001\u6e08\u307f
rma_recordsmanagement.aspect.rma_filePlanComponent.title=\u30d5\u30a1\u30a4\u30eb\u30d7\u30e9\u30f3\u306e\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8
rma_recordsmanagement.aspect.rma_filePlanComponent.decription=\u30d5\u30a1\u30a4\u30eb\u30d7\u30e9\u30f3\u306e\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8
rma_recordsmanagement.property.rma_rootNodeRef.title=\u30eb\u30fc\u30c8\u30ce\u30fc\u30c9
rma_recordsmanagement.property.rma_rootNodeRef.decription=\u30eb\u30fc\u30c8\u30ce\u30fc\u30c9
rma_recordsmanagement.aspect.rma_recordsManagementRoot.title=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8
rma_recordsmanagement.aspect.rma_recordsManagementRoot.decription=\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u30eb\u30fc\u30c8
rma_recordsmanagement.association.rma_holds.title=\u4fdd\u7559
rma_recordsmanagement.association.rma_holds.decription=\u4fdd\u7559
rma_recordsmanagement.association.rma_transfers.title=\u8ee2\u9001
rma_recordsmanagement.association.rma_transfers.decription=\u8ee2\u9001
rma_recordsmanagement.aspect.rma_declaredRecord.title=\u5b8c\u4e86\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
rma_recordsmanagement.aspect.rma_declaredRecord.decription=\u5b8c\u4e86\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
rma_recordsmanagement.property.rma_declaredAt.title=\u5b8c\u4e86\u65e5
rma_recordsmanagement.property.rma_declaredAt.decription=\u5b8c\u4e86\u65e5
rma_recordsmanagement.property.rma_declaredBy.title=\u5b8c\u4e86\u8005
rma_recordsmanagement.property.rma_declaredBy.decription=\u5b8c\u4e86\u8005
rma_recordsmanagement.aspect.rma_recordComponentIdentifier.title=\u30ec\u30b3\u30fc\u30c9\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8ID
rma_recordsmanagement.aspect.rma_recordComponentIdentifier.decription=\u30ec\u30b3\u30fc\u30c9\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8ID
rma_recordsmanagement.property.rma_identifier.title=ID
rma_recordsmanagement.property.rma_identifier.decription=\u4e00\u610f\u306a\u30ec\u30b3\u30fc\u30c9ID
rma_recordsmanagement.property.rma_dbUniquenessId.title=\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u4e00\u610f\u6027
rma_recordsmanagement.property.rma_dbUniquenessId.decription=\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u4e00\u610f\u6027
rma_recordsmanagement.aspect.rma_vitalRecordDefinition.title=\u5fc5\u9808\u30ec\u30b3\u30fc\u30c9\u5b9a\u7fa9
rma_recordsmanagement.aspect.rma_vitalRecordDefinition.decription=\u5fc5\u9808\u30ec\u30b3\u30fc\u30c9\u5b9a\u7fa9
rma_recordsmanagement.property.rma_reviewPeriod.title=\u671f\u9593\u306e\u30ec\u30d3\u30e5\u30fc
rma_recordsmanagement.property.rma_reviewPeriod.decription=\u671f\u9593\u306e\u30ec\u30d3\u30e5\u30fc
rma_recordsmanagement.property.rma_vitalRecordIndicator.title=\u5fc5\u9808\u30ec\u30b3\u30fc\u30c9\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc
rma_recordsmanagement.property.rma_vitalRecordIndicator.decription=\u5fc5\u9808\u30ec\u30b3\u30fc\u30c9\u30a4\u30f3\u30b8\u30b1\u30fc\u30bf\u30fc
rma_recordsmanagement.aspect.rma_record.title=\u30ec\u30b3\u30fc\u30c9
rma_recordsmanagement.aspect.rma_record.decription=\u30ec\u30b3\u30fc\u30c9
rma_recordsmanagement.property.rma_dateFiled.title=\u6574\u7406\u4fdd\u7ba1\u65e5
rma_recordsmanagement.property.rma_dateFiled.decription=\u6574\u7406\u4fdd\u7ba1\u65e5
rma_recordsmanagement.property.rma_publicationDate.title=\u767a\u884c\u65e5
rma_recordsmanagement.property.rma_publicationDate.decription=\u767a\u884c\u65e5
rma_recordsmanagement.property.rma_originator.title=\u767a\u4fe1\u5143
rma_recordsmanagement.property.rma_originator.decription=\u767a\u4fe1\u5143
rma_recordsmanagement.property.rma_originatingOrganization.title=\u767a\u4fe1\u5143\u7d44\u7e54
rma_recordsmanagement.property.rma_originatingOrganization.decription=\u767a\u4fe1\u5143\u7d44\u7e54
rma_recordsmanagement.property.rma_mediaType.title=\u30e1\u30c7\u30a3\u30a2\u30bf\u30a4\u30d7
rma_recordsmanagement.property.rma_mediaType.decription=\u30e1\u30c7\u30a3\u30a2\u30bf\u30a4\u30d7
rma_recordsmanagement.property.rma_format.title=\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
rma_recordsmanagement.property.rma_format.decription=\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
rma_recordsmanagement.property.rma_dateReceived.title=\u53d7\u4fe1\u65e5
rma_recordsmanagement.property.rma_dateReceived.decription=\u53d7\u4fe1\u65e5
rma_recordsmanagement.property.rma_address.title=\u53d7\u4fe1\u8005
rma_recordsmanagement.property.rma_address.decription=\u53d7\u4fe1\u8005
rma_recordsmanagement.property.rma_otherAddress.title=\u305d\u306e\u4ed6\u306e\u53d7\u4fe1\u8005
rma_recordsmanagement.property.rma_otherAddress.decription=\u305d\u306e\u4ed6\u306e\u53d7\u4fe1\u8005
rma_recordsmanagement.property.rma_origionalName=\u5143\u306e\u540d\u524d
rma_recordsmanagement.aspect.rma_recordMetaData.title=\u30ec\u30b3\u30fc\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf
rma_recordsmanagement.aspect.rma_recordMetaData.description=\u30ec\u30b3\u30fc\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u30de\u30fc\u30ab\u30fc\u30a2\u30b9\u30da\u30af\u30c8
rma_recordsmanagement.aspect.rma_commonRecordDetails.title=\u5171\u901a\u306a\u30ec\u30b3\u30fc\u30c9\u7d30\u90e8
rma_recordsmanagement.aspect.rma_commonRecordDetails.description=\u3059\u3079\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u30bf\u30a4\u30d7\u306b\u5171\u901a\u306a\u30e1\u30bf\u30c7\u30fc\u30bf
rma_recordsmanagement.property.rma_location.title=\u5834\u6240
rma_recordsmanagement.property.rma_location.decription=\u5834\u6240
rma_recordsmanagement.aspect.rma_vitalRecord.title=\u5fc5\u9808\u30ec\u30b3\u30fc\u30c9
rma_recordsmanagement.aspect.rma_vitalRecord.decription=\u5fc5\u9808\u30ec\u30b3\u30fc\u30c9
rma_recordsmanagement.property.rma_reviewAsOf.title=\u6b21\u56de\u306e\u30ec\u30d3\u30e5\u30fc
rma_recordsmanagement.property.rma_reviewAsOf.decription=\u6b21\u56de\u306e\u30ec\u30d3\u30e5\u30fc
rma_recordsmanagement.property.rma_notificationIssued.title=\u3053\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u30ec\u30d3\u30e5\u30fc\u671f\u9650\u304c\u901a\u77e5\u3055\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u793a\u3059
rma_recordsmanagement.property.rma_notificationIssued.decription=\u3053\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u30ec\u30d3\u30e5\u30fc\u671f\u9650\u304c\u901a\u77e5\u3055\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u793a\u3059
rma_recordsmanagement.aspect.rma_scheduled.title=\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u6e08\u307f
rma_recordsmanagement.aspect.rma_scheduled.decription=\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u6e08\u307f
rma_recordsmanagement.association.rma_dispositionSchedule.title=\u5ec3\u68c4\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb
rma_recordsmanagement.association.rma_dispositionSchedule.decription=\u5ec3\u68c4\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb
rma_recordsmanagement.aspect.rma_dispositionLifecycle.title=\u5ec3\u68c4\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb
rma_recordsmanagement.aspect.rma_dispositionLifecycle.decription=\u5ec3\u68c4\u30e9\u30a4\u30d5\u30b5\u30a4\u30af\u30eb
rma_recordsmanagement.association.rma_nextDispositionAction.title=\u6b21\u56de\u306e\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3
rma_recordsmanagement.association.rma_nextDispositionAction.decription=\u6b21\u56de\u306e\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3
rma_recordsmanagement.association.rma_dispositionActionHistory.title=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u5c65\u6b74
rma_recordsmanagement.association.rma_dispositionActionHistory.decription=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u5c65\u6b74
rma_recordsmanagement.aspect.rma_cutOff.title=\u30ab\u30c3\u30c8\u30aa\u30d5
rma_recordsmanagement.aspect.rma_cutOff.decription=\u30ab\u30c3\u30c8\u30aa\u30d5
rma_recordsmanagement.property.rma_cutOffDate.title=\u30ab\u30c3\u30c8\u30aa\u30d5\u65e5
rma_recordsmanagement.property.rma_cutOffDate.decription=\u30ab\u30c3\u30c8\u30aa\u30d5\u65e5
rma_recordsmanagement.aspect.rma_transferred.title=\u8ee2\u9001\u6e08\u307f
rma_recordsmanagement.aspect.rma_transferred.decription=\u8ee2\u9001\u6e08\u307f
rma_recordsmanagement.aspect.rma_ascended.title=\u6607\u9806\u6e08\u307f
rma_recordsmanagement.aspect.rma_ascended.decription=\u6607\u9806\u6e08\u307f
rma_recordsmanagement.aspect.rma_frozen.title=\u56fa\u5b9a\u6e08\u307f
rma_recordsmanagement.aspect.rma_frozen.decription=\u56fa\u5b9a\u6e08\u307f
rma_recordsmanagement.property.rma_frozenAt.title=\u56fa\u5b9a\u65e5\u6642
rma_recordsmanagement.property.rma_frozenAt.decription=\u56fa\u5b9a\u65e5\u6642
rma_recordsmanagement.property.rma_frozenBy.title=\u56fa\u5b9a\u8005
rma_recordsmanagement.property.rma_frozenBy.decription=\u56fa\u5b9a\u8005
rma_recordsmanagement.aspect.rma_caveatConfigRoot.title=\u8b66\u544a\u8a2d\u5b9a\u30eb\u30fc\u30c8
rma_recordsmanagement.aspect.rma_caveatConfigRoot.decription=\u8b66\u544a\u8a2d\u5b9a\u30eb\u30fc\u30c8
rma_recordsmanagement.association.rma_caveatConfigAssoc.title=\u8b66\u544a\u8a2d\u5b9a
rma_recordsmanagement.association.rma_caveatConfigAssoc.description=\u8b66\u544a\u8a2d\u5b9a
rma_recordsmanagement.aspect.rma_emailConfigRoot.title=E\u30e1\u30fc\u30eb\u8a2d\u5b9a\u30eb\u30fc\u30c8
rma_recordsmanagement.aspect.rma_emailConfigRoot.decription=E\u30e1\u30fc\u30eb\u8a2d\u5b9a\u30eb\u30fc\u30c8
rma_recordsmanagement.association.rma_emailConfigAssoc.title=E\u30e1\u30fc\u30eb\u8a2d\u5b9a
rma_recordsmanagement.association.rma_emailConfigAssoc.description=E\u30e1\u30fc\u30eb\u8a2d\u5b9a
rma_recordsmanagement.aspect.rma_recordSearch.title=\u30ec\u30b3\u30fc\u30c9\u691c\u7d22
rma_recordsmanagement.aspect.rma_recordSearch.decription=\u691c\u7d22\u60c5\u5831\u3092\u4e0a\u65b9\u306b\u30b9\u30af\u30ed\u30fc\u30eb\u3057\u3066\u30ec\u30b3\u30fc\u30c9\u7ba1\u7406\u691c\u7d22\u3092\u884c\u3046
rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.title=\u5ec3\u68c4\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u304c\u3042\u308b
rma_recordsmanagement.property.rma_recordSearchHasDispositionSchedule.description=\u95a2\u9023\u3059\u308b\u5ec3\u68c4\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u304c\u30a2\u30a4\u30c6\u30e0\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u793a\u3059
rma_recordsmanagement.property.rma_recordSearchDispositionActionName.title=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u540d\u524d
rma_recordsmanagement.property.rma_recordSearchDispositionActionName.description=\u6b21\u56de\u306e\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u306e\u540d\u524d
rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.title=\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3
rma_recordsmanagement.property.rma_recordSearchDispositionActionAsOf.description=\u6b21\u56de\u306e\u5ec3\u68c4\u30a2\u30af\u30b7\u30e7\u30f3\u304c\u8a31\u53ef\u3055\u308c\u308b\u65e5
rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.title=\u5ec3\u68c4\u671f\u9593
rma_recordsmanagement.property.rma_recordSearchDispositionPeriod.description=\u5ec3\u68c4\u671f\u9593
rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.title=\u5ec3\u68c4\u671f\u9593\u306e\u8868\u73fe
rma_recordsmanagement.property.rma_recordSearchDispositionPeriodExpression.description=\u5ec3\u68c4\u671f\u9593\u306e\u8868\u73fe
rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.title=\u5ec3\u68c4\u30a4\u30d9\u30f3\u30c8\u304c\u8a31\u53ef\u6e08\u307f
rma_recordsmanagement.property.rma_recordSearchDispositionEventsEligible.description=\u5ec3\u68c4\u30a4\u30d9\u30f3\u30c8\u304c\u8a31\u53ef\u6e08\u307f
rma_recordsmanagement.property.rma_recordSearchDispositionEvents.title=\u5ec3\u68c4\u30a4\u30d9\u30f3\u30c8
rma_recordsmanagement.property.rma_recordSearchDispositionEvents.description=\u5ec3\u68c4\u30a4\u30d9\u30f3\u30c8
rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.title=\u5ec3\u68c4\u6a29\u9650
rma_recordsmanagement.property.rma_recordSearchDispositionAuthority.description=\u5ec3\u68c4\u6a29\u9650
rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.title=\u5ec3\u68c4\u6307\u793a
rma_recordsmanagement.property.rma_recordSearchDispositionInstructions.description=\u5ec3\u68c4\u6307\u793a
rma_recordsmanagement.property.rma_recordSearchHoldReason.title=\u4fdd\u7559\u7406\u7531
rma_recordsmanagement.property.rma_recordSearchHoldReason.description=\u4fdd\u7559\u7406\u7531
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.title=\u5fc5\u9808\u30ec\u30b3\u30fc\u30c9\u306e\u30ec\u30d3\u30e5\u30fc\u671f\u9593
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriod.description=\u5fc5\u9808\u30ec\u30b3\u30fc\u30c9\u306e\u30ec\u30d3\u30e5\u30fc\u671f\u9593
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.title=\u30ec\u30d3\u30e5\u30fc\u671f\u9593\u306e\u8868\u73fe
rma_recordsmanagement.property.rma_recordSearchVitalRecordReviewPeriodExpression.description=\u30ec\u30d3\u30e5\u30fc\u671f\u9593\u306e\u8868\u73fe
rma_recordsmanagement.aspect.rma_versionedRecord.title=\u30d0\u30fc\u30b8\u30e7\u30f3\u7ba1\u7406\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9
rma_recordsmanagement.aspect.rma_versionedRecord.decription=\u30d0\u30fc\u30b8\u30e7\u30f3\u7ba1\u7406\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9
rma_recordsmanagement.aspect.rma_unpublishedUpdate.title=\u975e\u516c\u958b\u306e\u66f4\u65b0
rma_recordsmanagement.aspect.rma_unpublishedUpdate.decription=\u975e\u516c\u958b\u306e\u66f4\u65b0
rma_recordsmanagement.property.rma_unpublishedUpdate.title=\u975e\u516c\u958b\u306e\u66f4\u65b0
rma_recordsmanagement.property.rma_unpublishedUpdate.description=\u975e\u516c\u958b\u306e\u66f4\u65b0\u304c\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u793a\u3059
rma_recordsmanagement.property.rma_updateTo.title=\u66f4\u65b0\u5148
rma_recordsmanagement.property.rma_updateTo.description=\u66f4\u65b0\u5148
rma_recordsmanagement.property.rma_updatedProperties.title=\u66f4\u65b0\u6e08\u307f\u30d7\u30ed\u30d1\u30c6\u30a3
rma_recordsmanagement.property.rma_updatedProperties.description=\u66f4\u65b0\u6e08\u307f\u30d7\u30ed\u30d1\u30c6\u30a3
rma_recordsmanagement.property.rma_publishInProgress.title=\u516c\u958b\u304c\u9032\u884c\u4e2d
rma_recordsmanagement.property.rma_publishInProgress.description=\u516c\u958b\u304c\u73fe\u5728\u9032\u884c\u4e2d\u3067\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u793a\u3059
rma_recordsmanagement.aspect.dod_ghosted.title=\u4ee3\u4f5c\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
rma_recordsmanagement.aspect.dod_ghosted.description=\u4ee3\u4f5c\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
listconstraint.rmc_tlList.title=\u8ee2\u9001\u5834\u6240
listconstraint.rmc_smList.title=\u88dc\u8db3\u30de\u30fc\u30ad\u30f3\u30b0

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