Merged V4.1-BUG-FIX (4.1.1) to HEAD

38219: ALF-14674: DOS voodoo to make start_deployment.bat work, as installed by Bitrock
   38214: ALF-14340 CLONE: Alfresco crashes when viewing doclib / previewing - PDF with CMap
      - Proper fix for build start up issue. The transformer.PdfToImage bean was still being used by
        transformer.complex.AdobeIllustrator.Image in 4.1.1 (not in 3.4.11) but had been removed in 3.4.11
        so when the merge tock place to 4.1.1 the bean could not be found.
        - Similar approach taken for application/illustrator as was done for application/pdf in 3.4.11
          so that the transformer.PdfToImage (which used PDFRenderer and PDFBox) was no longer needed.
   38209: Tweaks to code merged over recently from 3.4 relating to doclib filters query simplification.
   38197: Temporary fix to get Alfresco start up working again
   38196: Merged V3.4-BUG-FIX to V4.1-BUG-FIX
      38172: ALF-12081: Ensure that docs edited online via VTI can be cancelled
      38194: Mergd V3.4 to V3.4-BUG-FIX
         38174: ALF-13578: Merged V4.0-BUG-FIX to V3.4
            35169: ALF-13401, ALF-12393: Added exception translation to AbstractReindexComponent retrying transactions, following change in r35162
   
   38185: Improvements to Lucene query used by Image Summary dashlet after large load testing on 4.0 - from 15sec down to 0.1sec
   38181: Chinese translation updates from Gloria, based on EN r37907.
   38178: ALF-14720: Get rid of big, unused class
   38164: Merged V3.4-BUG-FIX to V4.1-BUG-FIX
      38162: Merged V3.4 to V3.4-BUG-FIX
         38145: ALF-13578: Merged V4.0-BUG-FIX to V3.4
            35162: Removed attempt to force a concurrency exception for getNodePair after a node had actually been deleted. Code would retry 40 times before failing.
            35169: ALF-13401, ALF-12393: Added exception translation to AbstractReindexComponent retrying transactions, following change in r35162

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@38222 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Alan Davis
2012-06-22 18:13:17 +00:00
parent cde2394640
commit d933341888
10 changed files with 675 additions and 23303 deletions

View File

@@ -379,6 +379,22 @@
</property>
</bean>
<bean id="transformer.double.ImageMagick"
class="org.alfresco.repo.content.transform.ComplexContentTransformer"
parent="unregisteredBaseContentTransformer">
<property name="transformers">
<list>
<ref bean="transformer.ImageMagick" />
<ref bean="transformer.ImageMagick" />
</list>
</property>
<property name="intermediateMimetypes">
<list>
<value>image/png</value>
</list>
</property>
</bean>
<!-- Supports the same transformations as the previous version by using either a single
ImageMagick transformation to png or two ImageMagick transformation via png. -->
<bean id="transformer.complex.PDF.Image"
@@ -389,7 +405,7 @@
<!-- Requires a single ImageMagick transformation.
Not used unless called as part of another transformer as
the ImageMagick transformation declares this as EXPLICIT
so take priority. -->
so takes priority. -->
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/pdf</value></property>
<property name="targetMimetype"><value>image/png</value></property>
@@ -403,6 +419,14 @@
<property name="sourceMimetype"><value>application/pdf</value></property>
<property name="targetMimetype"><value>image/jp2</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/pdf</value></property>
<property name="targetMimetype"><value>image/vnd.adobe.photoshop</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/pdf</value></property>
<property name="targetMimetype"><value>image/vnd.adobe.premiere</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/pdf</value></property>
<property name="targetMimetype"><value>image/cgm</value></property>
@@ -484,38 +508,116 @@
<property name="transformers">
<list>
<ref bean="transformer.ImageMagick"/>
<bean class="org.alfresco.repo.content.transform.ComplexContentTransformer"
parent="unregisteredBaseContentTransformer" >
<property name="transformers">
<list>
<ref bean="transformer.ImageMagick" />
<ref bean="transformer.ImageMagick" />
</list>
</property>
<property name="intermediateMimetypes">
<list>
<value>image/png</value>
</list>
</property>
</bean>
<ref bean="transformer.double.ImageMagick"/>
</list>
</property>
</bean>
<!-- Recent Adobe Illustrator files are, in fact, PDF files -->
<bean id="transformer.complex.AdobeIllustrator.Image" class="org.alfresco.repo.content.transform.ComplexContentTransformer"
parent="baseContentTransformer">
<!-- Adobe Illustrator files are, in fact, PDF files -->
<!-- Supports the same transformations as the previous version by using either a single
ImageMagick transformation to png or two ImageMagick transformation via png. -->
<bean id="transformer.complex.AdobeIllustrator.Image"
class="org.alfresco.repo.content.transform.FailoverContentTransformer"
parent="baseContentTransformer" >
<property name="supportedTransformations">
<list>
<!-- Requires a single ImageMagick transformation.
Not used unless called as part of another transformer as
the ImageMagick transformation declares this as EXPLICIT
so takes priority. -->
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/png</value></property>
</bean>
<!-- Requires a double ImageMagick transformation via png -->
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>application/eps</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/jp2</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/vnd.adobe.photoshop</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/vnd.adobe.premiere</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/cgm</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/gif</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/ief</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/bmp</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/jpeg</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/x-portable-bitmap</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/x-portable-graymap</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/x-portable-anymap</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/x-portable-pixmap</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/x-cmu-raster</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/tiff</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/x-xbitmap</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/x-xpixmap</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/x-xwindowdump</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/x-dwg</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.SupportedTransformation" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/x-dwt</value></property>
</bean>
</list>
</property>
<property name="explicitTransformations">
<list>
<bean class="org.alfresco.repo.content.transform.ExplictTransformationDetails" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/jpeg</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.ExplictTransformationDetails" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/png</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.ExplictTransformationDetails" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/gif</value></property>
@@ -524,13 +626,8 @@
</property>
<property name="transformers">
<list>
<ref bean="transformer.PdfToImage" />
<ref bean="transformer.ImageMagick" />
</list>
</property>
<property name="intermediateMimetypes">
<list>
<value>image/png</value>
<ref bean="transformer.ImageMagick"/>
<ref bean="transformer.double.ImageMagick"/>
</list>
</property>
</bean>
@@ -879,6 +976,10 @@
<property name="sourceMimetype"><value>application/pdf</value></property>
<property name="targetMimetype"><value>image/png</value></property>
</bean>
<bean class="org.alfresco.repo.content.transform.ExplictTransformationDetails" >
<property name="sourceMimetype"><value>application/illustrator</value></property>
<property name="targetMimetype"><value>image/png</value></property>
</bean>
</list>
</property>
</bean>

View File

@@ -1,163 +1,169 @@
# Labels used in bootstrap Space definitions
spaces.company_home.name=\u516C\u53F8\u4E3B\u9875
spaces.company_home.description=\u516C\u53F8\u7684\u6839\u7A7A\u95F4
spaces.company_home.name=\u516c\u53f8\u4e3b\u9875
spaces.company_home.description=\u516c\u53f8\u7684\u6839\u7a7a\u95f4
spaces.dictionary.name=\u6570\u636E\u5B57\u5178
spaces.dictionary.description=\u7528\u6237\u7BA1\u7406\u7684\u5B9A\u4E49
spaces.dictionary.name=\u6570\u636e\u5b57\u5178
spaces.dictionary.description=\u7528\u6237\u7ba1\u7406\u7684\u5b9a\u4e49
spaces.imapConfig.name=IMAP \u914D\u7F6E
spaces.imapConfig.description=IMAP \u914D\u7F6E
spaces.imapConfig.name=IMAP \u914d\u7f6e
spaces.imapConfig.description=IMAP \u914d\u7f6e
spaces.imap_templates.name=\u6A21\u677F
spaces.imap_templates.description=IMAP \u6240\u751F\u6210\u6D88\u606F\u7684\u6A21\u677F
spaces.imap_templates.name=\u6a21\u677f
spaces.imap_templates.description=IMAP \u6240\u751f\u6210\u6d88\u606f\u7684\u6a21\u677f
spaces.imap_templates.emailbody_textplain.description=\u7528\u4E8E\u751F\u6210"multipart/alternative" IMAP \u6D88\u606F\u6B63\u6587\uFF08"text/plain"\u90E8\u5206\uFF09\u7684\u7535\u5B50\u90AE\u4EF6\u6A21\u677F\u3002
spaces.imap_templates.emailbody_texthtml.description=\u7528\u4E8E\u751F\u6210"multipart/alternative" IMAP \u6D88\u606F\u6B63\u6587\uFF08"text/html"\u90E8\u5206\uFF09\u7684\u7535\u5B50\u90AE\u4EF6\u6A21\u677F\u3002
spaces.imap_templates.emailbody_textplain.description=\u7528\u4e8e\u751f\u6210''multipart/alternative'' IMAP \u6d88\u606f\u6b63\u6587\uff08''text/plain''\u90e8\u5206\uff09\u7684\u7535\u5b50\u90ae\u4ef6\u6a21\u677f\u3002
spaces.imap_templates.emailbody_texthtml.description=\u7528\u4e8e\u751f\u6210''multipart/alternative'' IMAP \u6d88\u606f\u6b63\u6587\uff08''text/html''\u90e8\u5206\uff09\u7684\u7535\u5b50\u90ae\u4ef6\u6a21\u677f\u3002
spaces.emailActions.name=\u7535\u5B50\u90AE\u4EF6\u64CD\u4F5C
spaces.emailActions.description=\u7535\u5B50\u90AE\u4EF6\u64CD\u4F5C
spaces.emailActions.name=\u7535\u5b50\u90ae\u4ef6\u64cd\u4f5c
spaces.emailActions.description=\u7535\u5b50\u90ae\u4ef6\u64cd\u4f5c
spaces.searchAction.name=\u641C\u7D22
spaces.searchAction.description=\u641C\u7D22
spaces.searchAction.name=\u641c\u7d22
spaces.searchAction.description=\u641c\u7d22
spaces.templates.name=\u7A7A\u95F4\u6A21\u677F
spaces.templates.description=\u7A7A\u95F4\u6587\u4EF6\u5939\u6A21\u677F
spaces.templates.name=\u7a7a\u95f4\u6a21\u677f
spaces.templates.description=\u7a7a\u95f4\u6587\u4ef6\u5939\u6a21\u677f
spaces.templates.content.name=\u6F14\u793A\u6A21\u677F
spaces.templates.content.description=\u6F14\u793A\u6A21\u677F
spaces.templates.content.name=\u6f14\u793a\u6a21\u677f
spaces.templates.content.description=\u6f14\u793a\u6a21\u677f
spaces.templates.email.name=\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.templates.email.description=\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.templates.email.name=\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
spaces.templates.email.description=\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
spaces.invite_templates.email.name=\u9080\u8BF7\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.invite_templates.email.description=\u9080\u8BF7\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.invite_templates.email.name=\u9080\u8bf7\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
spaces.invite_templates.email.description=\u9080\u8bf7\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
spaces.notify_templates.email.name=\u901A\u77E5\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.notify_templates.email.description=\u901A\u77E5\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.notify_templates.email.name=\u901a\u77e5\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
spaces.notify_templates.email.description=\u901a\u77e5\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
spaces.templates.rss.name=RSS \u6A21\u677F
spaces.templates.rss.description=RSS \u6A21\u677F
spaces.templates.rss.name=RSS \u6a21\u677f
spaces.templates.rss.description=RSS \u6a21\u677f
spaces.actions.scheduled_actions.name=\u8BA1\u5212\u7684\u64CD\u4F5C
spaces.actions.scheduled_actions.description=\u8BA1\u5212\u4F55\u65F6\u6267\u884C\u6301\u4E45\u5316\u64CD\u4F5C
spaces.actions.scheduled_actions.name=\u8ba1\u5212\u7684\u64cd\u4f5c
spaces.actions.scheduled_actions.description=\u8ba1\u5212\u4f55\u65f6\u6267\u884c\u6301\u4e45\u5316\u64cd\u4f5c
spaces.publishing.root.name=\u53D1\u5E03\u6839
spaces.publishing.root.description=PublishingService \u7684\u6839\u6587\u4EF6\u5939\u3002
spaces.publishing.root.name=\u53d1\u5e03\u6839
spaces.publishing.root.description=PublishingService \u7684\u6839\u6587\u4ef6\u5939\u3002
spaces.rendition.rendering_actions.name=\u5448\u73B0\u64CD\u4F5C\u7A7A\u95F4
spaces.rendition.rendering_actions.description=\u7CFB\u7EDF\u7528\u4E8E\u4F7F\u5448\u73B0\u64CD\u4F5C\u6301\u4E45\u5316\u7684\u7A7A\u95F4\u3002
spaces.remote_credentials.root.name=\u8fdc\u7a0b\u51ed\u636e
spaces.remote_credentials.root.description=\u5171\u4eab\u8fdc\u7a0b\u51ed\u636e\u7684\u6839\u6587\u4ef6\u5939
spaces.replication.replication_actions.name=\u590D\u5236\u64CD\u4F5C\u7A7A\u95F4
spaces.replication.replication_actions.description=\u7CFB\u7EDF\u7528\u4E8E\u4F7F\u590D\u5236\u64CD\u4F5C\u6301\u4E45\u5316\u7684\u7A7A\u95F4\u3002
spaces.rendition.rendering_actions.name=\u5448\u73b0\u64cd\u4f5c\u7a7a\u95f4
spaces.rendition.rendering_actions.description=\u7cfb\u7edf\u7528\u4e8e\u4f7f\u5448\u73b0\u64cd\u4f5c\u6301\u4e45\u5316\u7684\u7a7a\u95f4\u3002
spaces.savedsearches.name=\u4FDD\u5B58\u7684\u641C\u7D22
spaces.savedsearches.description=\u4FDD\u5B58\u7684\u641C\u7D22
spaces.replication.replication_actions.name=\u590d\u5236\u64cd\u4f5c\u7a7a\u95f4
spaces.replication.replication_actions.description=\u7cfb\u7edf\u7528\u4e8e\u4f7f\u590d\u5236\u64cd\u4f5c\u6301\u4e45\u5316\u7684\u7a7a\u95f4\u3002
spaces.guest_home.name=\u8BBF\u5BA2\u4E3B\u9875
spaces.guest_home.description=\u8BBF\u5BA2\u6839\u7A7A\u95F4
spaces.syncset_definitions.root.name=SyncSet \u5b9a\u4e49
spaces.syncset_definitions.root.description=SyncSet \u5b9a\u4e49\u7684\u6839\u6587\u4ef6\u5939
spaces.scripts.name=\u811A\u672C
spaces.scripts.description=JavaScript \u6587\u4EF6
spaces.savedsearches.name=\u4fdd\u5b58\u7684\u641c\u7d22
spaces.savedsearches.description=\u4fdd\u5b58\u7684\u641c\u7d22
spaces.guest_home.name=\u8bbf\u5ba2\u4e3b\u9875
spaces.guest_home.description=\u8bbf\u5ba2\u6839\u7a7a\u95f4
spaces.scripts.name=\u811a\u672c
spaces.scripts.description=JavaScript \u6587\u4ef6
spaces.scripts.example.workflow.name=start-pooled-review-workflow.js
spaces.scripts.example.workflow.title=\u542F\u52A8\u5165\u6C60\u590D\u67E5\u548C\u6279\u51C6\u5DE5\u4F5C\u6D41\u7A0B
spaces.scripts.example.workflow.description=\u4E3A\u6587\u6863\u6240\u5C5E\u7AD9\u70B9\u7684\u6240\u6709\u6210\u5458\u542F\u52A8\u5165\u6C60\u590D\u67E5\u548C\u6279\u51C6\u5DE5\u4F5C\u6D41\u7A0B
spaces.scripts.example.workflow.title=\u542f\u52a8\u5165\u6c60\u590d\u67e5\u548c\u6279\u51c6\u5de5\u4f5c\u6d41\u7a0b
spaces.scripts.example.workflow.description=\u4e3a\u6587\u6863\u6240\u5c5e\u7ad9\u70b9\u7684\u6240\u6709\u6210\u5458\u542f\u52a8\u5165\u6c60\u590d\u67e5\u548c\u6279\u51c6\u5de5\u4f5c\u6d41\u7a0b
spaces.wcm.name=Web \u9879\u76EE
spaces.wcm.description=Web \u5185\u5BB9\u7BA1\u7406\u7A7A\u95F4
spaces.wcm.name=Web \u9879\u76ee
spaces.wcm.description=Web \u5185\u5bb9\u7ba1\u7406\u7a7a\u95f4
spaces.wcm_content_forms.name=Web \u7A97\u4F53
spaces.wcm_content_forms.description=Web \u5185\u5BB9\u7A97\u4F53
spaces.wcm_content_forms.name=Web \u7a97\u4f53
spaces.wcm_content_forms.description=Web \u5185\u5bb9\u7a97\u4f53
spaces.user_homes.name=\u7528\u6237\u4E3B\u7A7A\u95F4
spaces.user_homes.description=\u7528\u6237\u4E3B\u7A7A\u95F4
spaces.user_homes.name=\u7528\u6237\u4e3b\u7a7a\u95f4
spaces.user_homes.description=\u7528\u6237\u4e3b\u7a7a\u95f4
spaces.content_forms.name=\u7A97\u4F53
spaces.content_forms.description=\u5185\u5BB9\u7A97\u4F53
spaces.content_forms.name=\u7a97\u4f53
spaces.content_forms.description=\u5185\u5bb9\u7a97\u4f53
spaces.sites.name=\u7AD9\u70B9
spaces.sites.description=\u7AD9\u70B9\u5408\u4F5C\u7A7A\u95F4
spaces.sites.name=\u7ad9\u70b9
spaces.sites.description=\u7ad9\u70b9\u5408\u4f5c\u7a7a\u95f4
spaces.templates.email.invite.name=\u9080\u8BF7
spaces.templates.email.invite.description=\u9080\u8BF7\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.templates.email.invite.name=\u9080\u8bf7
spaces.templates.email.invite.description=\u9080\u8bf7\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
spaces.imap_home.name=IMAP \u4E3B\u7A7A\u95F4
spaces.imap_home.description=IMAP \u4E3B\u7A7A\u95F4
spaces.imap_home.name=IMAP \u4e3b\u7a7a\u95f4
spaces.imap_home.description=IMAP \u4e3b\u7a7a\u95f4
spaces.templates.email.invite1.name=\u9080\u8BF7\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.templates.email.invite1.description=\u9080\u8BF7\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.templates.email.invite1.name=\u9080\u8bf7\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
spaces.templates.email.invite1.description=\u9080\u8bf7\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
spaces.templates.email.notify.name=\u901A\u77E5\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.templates.email.notify.description=\u901A\u77E5\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.templates.email.notify.name=\u901a\u77e5\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
spaces.templates.email.notify.description=\u901a\u77e5\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
spaces.templates.email.generate_the_invite_email.description=\u7528\u4E8E\u4E3A Alfresco Share \u751F\u6210\u9080\u8BF7\u7535\u5B50\u90AE\u4EF6\u7684\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.templates.email.generate_the_invite_email.description=\u7528\u4e8e\u4e3a Alfresco Share \u751f\u6210\u9080\u8bf7\u7535\u5b50\u90ae\u4ef6\u7684\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
spaces.templates.email.generate_the_wf_notification_email.description=\u7528\u4E8E\u901A\u77E5\u7528\u6237\u6709\u5173\u65B0\u5DE5\u4F5C\u6D41\u7A0B\u4EFB\u52A1\u4E8B\u9879\u7684\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.templates.email.generate_the_wf_notification_email.description=\u7528\u4e8e\u901a\u77e5\u7528\u6237\u6709\u5173\u65b0\u5de5\u4f5c\u6d41\u7a0b\u4efb\u52a1\u4e8b\u9879\u7684\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
email.template.email_template_for_notifying_users=\u89C4\u5219\u6216\u64CD\u4F5C\u4E2D\u7528\u4E8E\u901A\u77E5\u7528\u6237\u7684\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
email.template.email_template_for_notifying_users=\u89c4\u5219\u6216\u64cd\u4f5c\u4e2d\u7528\u4e8e\u901a\u77e5\u7528\u6237\u7684\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
email.template.email_template_for_notifying_users.sample=\u89C4\u5219\u6216\u64CD\u4F5C\u4E2D\u7528\u4E8E\u901A\u77E5\u7528\u6237\u7684\u6837\u672C\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
email.template.email_template_for_notifying_users_of_an_Invite=\u7528\u4E8E\u901A\u77E5\u7528\u6237\u83B7\u9080\u8BBF\u95EE\u67D0\u4E2A\u7A7A\u95F4\u6216\u6587\u6863\u7684\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
email.template.email_template_for_notifying_users.sample=\u89c4\u5219\u6216\u64cd\u4f5c\u4e2d\u7528\u4e8e\u901a\u77e5\u7528\u6237\u7684\u6837\u672c\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
email.template.email_template_for_notifying_users_of_an_Invite=\u7528\u4e8e\u901a\u77e5\u7528\u6237\u83b7\u9080\u8bbf\u95ee\u67d0\u4e2a\u7a7a\u95f4\u6216\u6587\u6863\u7684\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
email.templates.email_template_for_notifying_new_users=\u7528\u4E8E\u901A\u77E5\u65B0\u7528\u6237\u6709\u5173\u5176\u5E10\u6237\u4E8B\u9879\u7684\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
email.templates.email_template_for_notifying_new_users=\u7528\u4e8e\u901a\u77e5\u65b0\u7528\u6237\u6709\u5173\u5176\u5e10\u6237\u4e8b\u9879\u7684\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
spaces.templates.email.following.name=\u5173\u6CE8\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.templates.email.following.description=\u5173\u6CE8\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.templates.email.following.name=\u5173\u6ce8\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
spaces.templates.email.following.description=\u5173\u6ce8\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
email.templates.email_template_for_following_notifications=\u7528\u4E8E\u751F\u6210\u5173\u6CE8\u901A\u77E5\u7535\u5B50\u90AE\u4EF6\u7684\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
email.templates.email_template_for_following_notifications=\u7528\u4e8e\u751f\u6210\u5173\u6ce8\u901a\u77e5\u7535\u5b50\u90ae\u4ef6\u7684\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
version.default=\u9ED8\u8BA4\u7248\u672C
version.french=\u6CD5\u8BED\u7248\u672C
version.german=\u5FB7\u8BED\u7248\u672C
version.italian=\u610F\u5927\u5229\u8BED\u7248\u672C
version.japanese=\u65E5\u8BED\u7248\u672C
version.spanish=\u897F\u73ED\u7259\u8BED\u7248\u672C
version.dutch=\u8377\u5170\u8BED\u7248\u672C
version.default=\u9ed8\u8ba4\u7248\u672c
version.french=\u6cd5\u8bed\u7248\u672c
version.german=\u5fb7\u8bed\u7248\u672c
version.italian=\u610f\u5927\u5229\u8bed\u7248\u672c
version.japanese=\u65e5\u8bed\u7248\u672c
version.spanish=\u897f\u73ed\u7259\u8bed\u7248\u672c
version.dutch=\u8377\u5170\u8bed\u7248\u672c
spaces.web.client.extension.name=Web \u5BA2\u6237\u7AEF\u6269\u5C55
spaces.web.client.extension.title=\u5B9A\u5236\u7684 Web \u5BA2\u6237\u7AEF
spaces.web.client.extension.description=\u5B9A\u5236\u7684 Web \u5BA2\u6237\u7AEF
spaces.web.client.extension.name=Web \u5ba2\u6237\u7aef\u6269\u5c55
spaces.web.client.extension.title=\u5b9a\u5236\u7684 Web \u5ba2\u6237\u7aef
spaces.web.client.extension.description=\u5b9a\u5236\u7684 Web \u5ba2\u6237\u7aef
spaces.models.name=\u6A21\u578B
spaces.models.title=\u5B9A\u5236\u7684\u6A21\u578B
spaces.models.description=\u5B9A\u5236\u7684\u6A21\u578B
spaces.models.name=\u6a21\u578b
spaces.models.title=\u5b9a\u5236\u7684\u6a21\u578b
spaces.models.description=\u5b9a\u5236\u7684\u6a21\u578b
spaces.messages.name=\u6D88\u606F
spaces.messages.title=\u5B9A\u5236\u7684\u6D88\u606F
spaces.messages.description=\u5B9A\u5236\u7684\u6D88\u606F
spaces.messages.name=\u6d88\u606f
spaces.messages.title=\u5b9a\u5236\u7684\u6d88\u606f
spaces.messages.description=\u5b9a\u5236\u7684\u6d88\u606f
spaces.workflow.definitions.name=\u5DE5\u4F5C\u6D41\u7A0B\u5B9A\u4E49
spaces.workflow.definitions.title=\u5B9A\u5236\u7684\u5DE5\u4F5C\u6D41\u7A0B\u8FDB\u7A0B\u5B9A\u4E49
spaces.workflow.definitions.description=\u5B9A\u5236\u7684\u5DE5\u4F5C\u6D41\u7A0B\u8FDB\u7A0B\u5B9A\u4E49
spaces.workflow.definitions.name=\u5de5\u4f5c\u6d41\u7a0b\u5b9a\u4e49
spaces.workflow.definitions.title=\u5b9a\u5236\u7684\u5de5\u4f5c\u6d41\u7a0b\u8fdb\u7a0b\u5b9a\u4e49
spaces.workflow.definitions.description=\u5b9a\u5236\u7684\u5de5\u4f5c\u6d41\u7a0b\u8fdb\u7a0b\u5b9a\u4e49
spaces.templates.email.activities.name=\u6D3B\u52A8
spaces.templates.email.activities.description=\u6D3B\u52A8\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.templates.email.activities.name=\u6d3b\u52a8
spaces.templates.email.activities.description=\u6d3b\u52a8\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
spaces.templates.email.generate_the_activities_email.description=\u7528\u4E8E\u4E3A Alfresco Share \u751F\u6210\u6D3B\u52A8\u7535\u5B50\u90AE\u4EF6\u7684\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.templates.email.generate_the_activities_email.description=\u7528\u4e8e\u4e3a Alfresco Share \u751f\u6210\u6d3b\u52a8\u7535\u5b50\u90ae\u4ef6\u7684\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
spaces.transfers.name=\u4F20\u8F93
spaces.transfers.title=\u4F20\u8F93
spaces.transfers.description=\u4F20\u8F93\u5B50\u7CFB\u7EDF\u6240\u7528\u6587\u4EF6\u5939
spaces.transfers.name=\u4f20\u8f93
spaces.transfers.title=\u4f20\u8f93
spaces.transfers.description=\u4f20\u8f93\u5b50\u7cfb\u7edf\u6240\u7528\u6587\u4ef6\u5939
spaces.transfer_groups.name=\u4F20\u8F93\u76EE\u6807\u7EC4
spaces.transfer_groups.title=\u4F20\u8F93\u76EE\u6807\u7EC4
spaces.transfer_groups.description=\u5305\u542B\u4F20\u8F93\u76EE\u6807\u7EC4\u7684\u6587\u4EF6\u5939
spaces.transfer_groups.name=\u4f20\u8f93\u76ee\u6807\u7ec4
spaces.transfer_groups.title=\u4f20\u8f93\u76ee\u6807\u7ec4
spaces.transfer_groups.description=\u5305\u542b\u4f20\u8f93\u76ee\u6807\u7ec4\u7684\u6587\u4ef6\u5939
spaces.transfer_groups_default.name=\u9ED8\u8BA4\u7EC4
spaces.transfer_groups_default.title=\u9ED8\u8BA4\u7EC4
spaces.transfer_groups_default.description=\u8BF7\u5C06\u60A8\u7684\u4F20\u8F93\u76EE\u6807\u653E\u5728\u6B64\u6587\u4EF6\u5939\u4E2D
spaces.transfer_groups_default.name=\u9ed8\u8ba4\u7ec4
spaces.transfer_groups_default.title=\u9ed8\u8ba4\u7ec4
spaces.transfer_groups_default.description=\u8bf7\u5c06\u60a8\u7684\u4f20\u8f93\u76ee\u6807\u653e\u5728\u6b64\u6587\u4ef6\u5939\u4e2d
spaces.transfer_temp.name=\u4E34\u65F6
spaces.transfer_temp.title=\u4E34\u65F6
spaces.transfer_temp.description=\u4F20\u8F93\u671F\u95F4\u7528\u4E8E\u5B58\u50A8\u4E34\u65F6\u8282\u70B9\u7684\u6587\u4EF6\u5939
spaces.transfer_temp.name=\u4e34\u65f6
spaces.transfer_temp.title=\u4e34\u65f6
spaces.transfer_temp.description=\u4f20\u8f93\u671f\u95f4\u7528\u4e8e\u5b58\u50a8\u4e34\u65f6\u8282\u70b9\u7684\u6587\u4ef6\u5939
spaces.inbound_transfer_records.name=\u5165\u7AD9\u4F20\u8F93\u8BB0\u5F55
spaces.inbound_transfer_records.title=\u5165\u7AD9\u4F20\u8F93\u8BB0\u5F55
spaces.inbound_transfer_records.description=\u5176\u4E2D\u5305\u542B\u5165\u7AD9\u4F20\u8F93\u8BB0\u5F55\u7684\u6587\u4EF6\u5939
spaces.inbound_transfer_records.name=\u5165\u7ad9\u4f20\u8f93\u8bb0\u5f55
spaces.inbound_transfer_records.title=\u5165\u7ad9\u4f20\u8f93\u8bb0\u5f55
spaces.inbound_transfer_records.description=\u5176\u4e2d\u5305\u542b\u5165\u7ad9\u4f20\u8f93\u8bb0\u5f55\u7684\u6587\u4ef6\u5939
spaces.templates.email.workflowNotification.name=\u5DE5\u4F5C\u6D41\u7A0B\u901A\u77E5
spaces.templates.email.workflowNotification.description=\u5DE5\u4F5C\u6D41\u7A0B\u901A\u77E5\u7535\u5B50\u90AE\u4EF6\u6A21\u677F
spaces.templates.email.workflowNotification.name=\u5de5\u4f5c\u6d41\u7a0b\u901a\u77e5
spaces.templates.email.workflowNotification.description=\u5de5\u4f5c\u6d41\u7a0b\u901a\u77e5\u7535\u5b50\u90ae\u4ef6\u6a21\u677f
spaces.nodeTemplatesSpace.name=\u8282\u70B9\u6A21\u677F
spaces.nodeTemplatesSpace.description=Share \u7684\u6A21\u677F\u8282\u70B9 - \u65B0\u5EFA\u6587\u6863
spaces.nodeTemplatesSpace.name=\u8282\u70b9\u6a21\u677f
spaces.nodeTemplatesSpace.description=Share \u7684\u6a21\u677f\u8282\u70b9 - \u65b0\u5efa\u6587\u6863

View File

@@ -1,360 +1,363 @@
# Display labels for Content Domain Model
cm_contentmodel.description=Alfresco \u5185\u5BB9\u57DF\u6A21\u578B
cm_contentmodel.description=Alfresco \u5185\u5bb9\u57df\u6a21\u578b
cm_contentmodel.type.cm_object.title=\u5BF9\u8C61
cm_contentmodel.type.cm_object.description=\u57FA\u5185\u5BB9\u57DF\u5BF9\u8C61
cm_contentmodel.property.cm_name.title=\u540D\u79F0
cm_contentmodel.property.cm_name.description=\u540D\u79F0
cm_contentmodel.type.cm_object.title=\u5bf9\u8c61
cm_contentmodel.type.cm_object.description=\u57fa\u5185\u5bb9\u57df\u5bf9\u8c61
cm_contentmodel.property.cm_name.title=\u540d\u79f0
cm_contentmodel.property.cm_name.description=\u540d\u79f0
cm_contentmodel.type.cm_folder.title=\u6587\u4EF6\u5939
cm_contentmodel.type.cm_folder.description=\u6587\u4EF6\u5939
cm_contentmodel.property.cm_orderedchildren.title=\u6709\u5E8F\u5B50\u7EA7
cm_contentmodel.property.cm_orderedchildren.description=\u6307\u793A\u6587\u4EF6\u5939\u7684\u5B50\u7EA7\u662F\u5426\u5DF2\u6392\u5E8F
cm_contentmodel.association.cm_contains.title=\u5305\u542B
cm_contentmodel.association.cm_contains.description=\u5305\u542B
cm_contentmodel.type.cm_folder.title=\u6587\u4ef6\u5939
cm_contentmodel.type.cm_folder.description=\u6587\u4ef6\u5939
cm_contentmodel.property.cm_orderedchildren.title=\u6709\u5e8f\u5b50\u7ea7
cm_contentmodel.property.cm_orderedchildren.description=\u6307\u793a\u6587\u4ef6\u5939\u7684\u5b50\u7ea7\u662f\u5426\u5df2\u6392\u5e8f
cm_contentmodel.association.cm_contains.title=\u5305\u542b
cm_contentmodel.association.cm_contains.description=\u5305\u542b
cm_contentmodel.type.cm_content.title=\u5185\u5BB9
cm_contentmodel.type.cm_content.description=\u57FA\u5185\u5BB9\u5BF9\u8C61
cm_contentmodel.property.cm_content.title=\u5185\u5BB9
cm_contentmodel.property.cm_content.description=\u5185\u5BB9
cm_contentmodel.type.cm_content.title=\u5185\u5bb9
cm_contentmodel.type.cm_content.description=\u57fa\u5185\u5bb9\u5bf9\u8c61
cm_contentmodel.property.cm_content.title=\u5185\u5bb9
cm_contentmodel.property.cm_content.description=\u5185\u5bb9
cm_contentmodel.type.cm_linkfile.title=\u6587\u4EF6\u94FE\u63A5
cm_contentmodel.type.cm_linkfile.description=\u94FE\u63A5\u5230\u53E6\u4E00\u4E2A\u6587\u4EF6
cm_contentmodel.property.cm_path.title=\u94FE\u63A5\u6587\u4EF6\u8DEF\u5F84
cm_contentmodel.property.cm_path.description=\u88AB\u94FE\u63A5\u6587\u4EF6\u7684\u8DEF\u5F84
cm_contentmodel.type.cm_linkfile.title=\u6587\u4ef6\u94fe\u63a5
cm_contentmodel.type.cm_linkfile.description=\u94fe\u63a5\u5230\u53e6\u4e00\u4e2a\u6587\u4ef6
cm_contentmodel.property.cm_path.title=\u94fe\u63a5\u6587\u4ef6\u8def\u5f84
cm_contentmodel.property.cm_path.description=\u88ab\u94fe\u63a5\u6587\u4ef6\u7684\u8def\u5f84
cm_contentmodel.type.cm_savedquery.title=\u4FDD\u5B58\u7684\u67E5\u8BE2
cm_contentmodel.type.cm_savedquery.description=\u4FDD\u5B58\u7684\u67E5\u8BE2
cm_contentmodel.type.cm_savedquery.title=\u4fdd\u5b58\u7684\u67e5\u8be2
cm_contentmodel.type.cm_savedquery.description=\u4fdd\u5b58\u7684\u67e5\u8be2
cm_contentmodel.type.cm_systemfolder.title=\u7CFB\u7EDF\u6587\u4EF6\u5939
cm_contentmodel.type.cm_systemfolder.description=\u7528\u4E8E\u5B58\u653E\u7CFB\u7EDF\u7EA7\u9879\u7684\u6587\u4EF6\u5939
cm_contentmodel.type.cm_systemfolder.title=\u7cfb\u7edf\u6587\u4ef6\u5939
cm_contentmodel.type.cm_systemfolder.description=\u7528\u4e8e\u5b58\u653e\u7cfb\u7edf\u7ea7\u9879\u7684\u6587\u4ef6\u5939
cm_contentmodel.type.cm_person.title=\u4EBA\u5458
cm_contentmodel.type.cm_person.description=\u4EBA\u5458
cm_contentmodel.type.cm_person.title=\u4eba\u5458
cm_contentmodel.type.cm_person.description=\u4eba\u5458
cm_contentmodel.property.cm_userName.title=\u7528\u6237\u540D
cm_contentmodel.property.cm_userName.description=\u4EBA\u5458\u7684\u7528\u6237\u540D
cm_contentmodel.property.cm_homeFolder.title=\u4E3B\u6587\u4EF6\u5939
cm_contentmodel.property.cm_homeFolder.description=\u4EBA\u5458\u7684\u4E3B\u6587\u4EF6\u5939
cm_contentmodel.property.cm_firstName.title=\u540D\u5B57
cm_contentmodel.property.cm_firstName.description=\u4EBA\u5458\u7684\u540D\u5B57
cm_contentmodel.property.cm_lastName.title=\u59D3\u6C0F
cm_contentmodel.property.cm_lastName.description=\u4EBA\u5458\u7684\u59D3\u6C0F
cm_contentmodel.property.cm_middleName.title=\u4E2D\u95F4\u540D
cm_contentmodel.property.cm_middleName.description=\u4EBA\u5458\u7684\u4E2D\u95F4\u540D
cm_contentmodel.property.cm_email.title=\u7535\u5B50\u90AE\u4EF6\u5730\u5740
cm_contentmodel.property.cm_email.description=\u4EBA\u5458\u7684\u7535\u5B50\u90AE\u4EF6\u5730\u5740
cm_contentmodel.property.cm_homeFolderProvider.title=\u4E3B\u6587\u4EF6\u5939\u63D0\u4F9B\u8005
cm_contentmodel.property.cm_homeFolderProvider.description=\u4E3B\u6587\u4EF6\u5939\u63D0\u4F9B\u8005
cm_contentmodel.property.cm_defaultHomeFolderPath.title=\u4E3B\u6587\u4EF6\u5939\u8DEF\u5F84
cm_contentmodel.property.cm_defaultHomeFolderPath.description=\u4EBA\u5458\u4E3B\u6587\u4EF6\u5939\u7684\u8DEF\u5F84
cm_contentmodel.property.cm_presenceProvider.title=\u5728\u7EBF\u72B6\u6001\u63D0\u4F9B\u8005
cm_contentmodel.property.cm_presenceProvider.description=\u5728\u7EBF\u72B6\u6001\u63D0\u4F9B\u8005
cm_contentmodel.property.cm_presenceUsername.title=\u5728\u7EBF\u72B6\u6001\u7528\u6237\u540D
cm_contentmodel.property.cm_presenceUsername.description=\u5728\u7EBF\u72B6\u6001\u7528\u6237\u540D
cm_contentmodel.property.cm_jobtitle.title=\u804C\u4F4D
cm_contentmodel.property.cm_jobtitle.description=\u4EBA\u5458\u7684\u804C\u4F4D
cm_contentmodel.property.cm_location.title=\u4F4D\u7F6E
cm_contentmodel.property.cm_location.description=\u4EBA\u5458\u7684\u4F4D\u7F6E
cm_contentmodel.property.cm_userName.title=\u7528\u6237\u540d
cm_contentmodel.property.cm_userName.description=\u4eba\u5458\u7684\u7528\u6237\u540d
cm_contentmodel.property.cm_homeFolder.title=\u4e3b\u6587\u4ef6\u5939
cm_contentmodel.property.cm_homeFolder.description=\u4eba\u5458\u7684\u4e3b\u6587\u4ef6\u5939
cm_contentmodel.property.cm_firstName.title=\u540d\u5b57
cm_contentmodel.property.cm_firstName.description=\u4eba\u5458\u7684\u540d\u5b57
cm_contentmodel.property.cm_lastName.title=\u59d3\u6c0f
cm_contentmodel.property.cm_lastName.description=\u4eba\u5458\u7684\u59d3\u6c0f
cm_contentmodel.property.cm_middleName.title=\u4e2d\u95f4\u540d
cm_contentmodel.property.cm_middleName.description=\u4eba\u5458\u7684\u4e2d\u95f4\u540d
cm_contentmodel.property.cm_email.title=\u7535\u5b50\u90ae\u4ef6\u5730\u5740
cm_contentmodel.property.cm_email.description=\u4eba\u5458\u7684\u7535\u5b50\u90ae\u4ef6\u5730\u5740
cm_contentmodel.property.cm_homeFolderProvider.title=\u4e3b\u6587\u4ef6\u5939\u63d0\u4f9b\u8005
cm_contentmodel.property.cm_homeFolderProvider.description=\u4e3b\u6587\u4ef6\u5939\u63d0\u4f9b\u8005
cm_contentmodel.property.cm_defaultHomeFolderPath.title=\u4e3b\u6587\u4ef6\u5939\u8def\u5f84
cm_contentmodel.property.cm_defaultHomeFolderPath.description=\u4eba\u5458\u4e3b\u6587\u4ef6\u5939\u7684\u8def\u5f84
cm_contentmodel.property.cm_presenceProvider.title=\u5728\u7ebf\u72b6\u6001\u63d0\u4f9b\u8005
cm_contentmodel.property.cm_presenceProvider.description=\u5728\u7ebf\u72b6\u6001\u63d0\u4f9b\u8005
cm_contentmodel.property.cm_presenceUsername.title=\u5728\u7ebf\u72b6\u6001\u7528\u6237\u540d
cm_contentmodel.property.cm_presenceUsername.description=\u5728\u7ebf\u72b6\u6001\u7528\u6237\u540d
cm_contentmodel.property.cm_jobtitle.title=\u804c\u4f4d
cm_contentmodel.property.cm_jobtitle.description=\u4eba\u5458\u7684\u804c\u4f4d
cm_contentmodel.property.cm_location.title=\u4f4d\u7f6e
cm_contentmodel.property.cm_location.description=\u4eba\u5458\u7684\u4f4d\u7f6e
cm_contentmodel.property.cm_persondescription.title=\u6458\u8981
cm_contentmodel.property.cm_persondescription.description=\u4EBA\u5458\u7684\u6458\u8981
cm_contentmodel.property.cm_telephone.title=\u7535\u8BDD
cm_contentmodel.property.cm_telephone.description=\u4EBA\u5458\u7684\u7535\u8BDD\u53F7\u7801
cm_contentmodel.property.cm_mobile.title=\u79FB\u52A8\u7535\u8BDD
cm_contentmodel.property.cm_mobile.description=\u4EBA\u5458\u7684\u79FB\u52A8\u7535\u8BDD\u53F7\u7801
cm_contentmodel.property.cm_organizationId.title=\u7EC4\u7EC7 ID
cm_contentmodel.property.cm_organizationId.description=\u4EBA\u5458\u7684\u7EC4\u7EC7 ID
cm_contentmodel.property.cm_organization.title=\u516C\u53F8
cm_contentmodel.property.cm_organization.description=\u4EBA\u5458\u7684\u516C\u53F8
cm_contentmodel.property.cm_persondescription.description=\u4eba\u5458\u7684\u6458\u8981
cm_contentmodel.property.cm_telephone.title=\u7535\u8bdd
cm_contentmodel.property.cm_telephone.description=\u4eba\u5458\u7684\u7535\u8bdd\u53f7\u7801
cm_contentmodel.property.cm_mobile.title=\u79fb\u52a8\u7535\u8bdd
cm_contentmodel.property.cm_mobile.description=\u4eba\u5458\u7684\u79fb\u52a8\u7535\u8bdd\u53f7\u7801
cm_contentmodel.property.cm_organizationId.title=\u7ec4\u7ec7 ID
cm_contentmodel.property.cm_organizationId.description=\u4eba\u5458\u7684\u7ec4\u7ec7 ID
cm_contentmodel.property.cm_organization.title=\u516c\u53f8
cm_contentmodel.property.cm_organization.description=\u4eba\u5458\u7684\u516c\u53f8
cm_contentmodel.property.cm_companyaddress1.title=\u5730\u5740
cm_contentmodel.property.cm_companyaddress1.description=\u4EBA\u5458\u7684\u516C\u53F8\u5730\u5740\u7B2C\u4E00\u884C
cm_contentmodel.property.cm_companyaddress2.title=\u5730\u5740\u7B2C 2 \u884C
cm_contentmodel.property.cm_companyaddress2.description=\u4EBA\u5458\u7684\u516C\u53F8\u5730\u5740\u7B2C\u4E8C\u884C
cm_contentmodel.property.cm_companyaddress3.title=\u5730\u5740\u7B2C 3 \u884C
cm_contentmodel.property.cm_companyaddress3.description=\u4EBA\u5458\u7684\u516C\u53F8\u5730\u5740\u7B2C\u4E09\u884C
cm_contentmodel.property.cm_companypostcode.title=\u90AE\u653F\u7F16\u7801
cm_contentmodel.property.cm_companypostcode.description=\u4EBA\u5458\u7684\u516C\u53F8\u90AE\u653F\u7F16\u7801
cm_contentmodel.property.cm_companytelephone.title=\u7535\u8BDD
cm_contentmodel.property.cm_companytelephone.description=\u4EBA\u5458\u7684\u516C\u53F8\u7535\u8BDD\u53F7\u7801
cm_contentmodel.property.cm_companyfax.title=\u4F20\u771F
cm_contentmodel.property.cm_companyfax.description=\u4EBA\u5458\u7684\u516C\u53F8\u4F20\u771F\u53F7\u7801
cm_contentmodel.property.cm_companyemail.title=\u7535\u5B50\u90AE\u4EF6
cm_contentmodel.property.cm_companyemail.description=\u4EBA\u5458\u7684\u516C\u53F8\u7535\u5B50\u90AE\u4EF6\u5730\u5740
cm_contentmodel.property.cm_companyaddress1.description=\u4eba\u5458\u7684\u516c\u53f8\u5730\u5740\u7b2c\u4e00\u884c
cm_contentmodel.property.cm_companyaddress2.title=\u5730\u5740\u7b2c 2 \u884c
cm_contentmodel.property.cm_companyaddress2.description=\u4eba\u5458\u7684\u516c\u53f8\u5730\u5740\u7b2c\u4e8c\u884c
cm_contentmodel.property.cm_companyaddress3.title=\u5730\u5740\u7b2c 3 \u884c
cm_contentmodel.property.cm_companyaddress3.description=\u4eba\u5458\u7684\u516c\u53f8\u5730\u5740\u7b2c\u4e09\u884c
cm_contentmodel.property.cm_companypostcode.title=\u90ae\u653f\u7f16\u7801
cm_contentmodel.property.cm_companypostcode.description=\u4eba\u5458\u7684\u516c\u53f8\u90ae\u653f\u7f16\u7801
cm_contentmodel.property.cm_companytelephone.title=\u7535\u8bdd
cm_contentmodel.property.cm_companytelephone.description=\u4eba\u5458\u7684\u516c\u53f8\u7535\u8bdd\u53f7\u7801
cm_contentmodel.property.cm_companyfax.title=\u4f20\u771f
cm_contentmodel.property.cm_companyfax.description=\u4eba\u5458\u7684\u516c\u53f8\u4f20\u771f\u53f7\u7801
cm_contentmodel.property.cm_companyemail.title=\u7535\u5b50\u90ae\u4ef6
cm_contentmodel.property.cm_companyemail.description=\u4eba\u5458\u7684\u516c\u53f8\u7535\u5b50\u90ae\u4ef6\u5730\u5740
cm_contentmodel.property.cm_skype.title=Skype
cm_contentmodel.property.cm_skype.description=\u4EBA\u5458\u7684 Skype \u7528\u6237 ID
cm_contentmodel.property.cm_skype.description=\u4eba\u5458\u7684 Skype \u7528\u6237 ID
cm_contentmodel.property.cm_instantmsg.title=IM
cm_contentmodel.property.cm_instantmsg.description=\u4EBA\u5458\u7684\u5373\u65F6\u6D88\u606F\u7528\u6237 ID
cm_contentmodel.property.cm_userStatus.title=\u72B6\u6001
cm_contentmodel.property.cm_userStatus.description=\u4EBA\u5458\u7684\u5F53\u524D\u72B6\u6001
cm_contentmodel.property.cm_userStatusTime.title=\u72B6\u6001\u65F6\u95F4
cm_contentmodel.property.cm_userStatusTime.description=\u4EBA\u5458\u72B6\u6001\u7684\u4E0A\u6B21\u66F4\u65B0\u65F6\u95F4
cm_contentmodel.property.cm_googleusername.title=Google \u7528\u6237\u540D
cm_contentmodel.property.cm_googleusername.description=\u4EBA\u5458\u7684 Google \u7528\u6237\u540D
cm_contentmodel.property.cm_sizeCurrent.title=\u4F7F\u7528\u91CF
cm_contentmodel.property.cm_sizeCurrent.description=\u4EBA\u5458\u6B63\u5728\u4F7F\u7528\u7684\u78C1\u76D8\u7A7A\u95F4\u91CF
cm_contentmodel.property.cm_sizeQuota.title=\u914D\u989D
cm_contentmodel.property.cm_sizeQuota.description=\u4EBA\u5458\u53EF\u4F7F\u7528\u7684\u6700\u5927\u78C1\u76D8\u7A7A\u95F4\u91CF
cm_contentmodel.property.cm_emailFeedId.title=\u7535\u5B50\u90AE\u4EF6\u8BA2\u9605\u6E90 ID
cm_contentmodel.property.cm_emailFeedId.description=\u4EBA\u5458\u7684\u7535\u5B50\u90AE\u4EF6\u8BA2\u9605\u6E90 ID \u7684 ID
cm_contentmodel.association.cm_avatar.title=\u7528\u6237\u6807\u8BC6\u56FE
cm_contentmodel.association.cm_avatar.description=\u4EBA\u5458\u7684\u7528\u6237\u6807\u8BC6\u56FE
cm_contentmodel.property.cm_instantmsg.description=\u4eba\u5458\u7684\u5373\u65f6\u6d88\u606f\u7528\u6237 ID
cm_contentmodel.property.cm_userStatus.title=\u72b6\u6001
cm_contentmodel.property.cm_userStatus.description=\u4eba\u5458\u7684\u5f53\u524d\u72b6\u6001
cm_contentmodel.property.cm_userStatusTime.title=\u72b6\u6001\u65f6\u95f4
cm_contentmodel.property.cm_userStatusTime.description=\u4eba\u5458\u72b6\u6001\u7684\u4e0a\u6b21\u66f4\u65b0\u65f6\u95f4
cm_contentmodel.property.cm_googleusername.title=Google \u7528\u6237\u540d
cm_contentmodel.property.cm_googleusername.description=\u4eba\u5458\u7684 Google \u7528\u6237\u540d
cm_contentmodel.property.cm_sizeCurrent.title=\u4f7f\u7528\u91cf
cm_contentmodel.property.cm_sizeCurrent.description=\u4eba\u5458\u6b63\u5728\u4f7f\u7528\u7684\u78c1\u76d8\u7a7a\u95f4\u91cf
cm_contentmodel.property.cm_sizeQuota.title=\u914d\u989d
cm_contentmodel.property.cm_sizeQuota.description=\u4eba\u5458\u53ef\u4f7f\u7528\u7684\u6700\u5927\u78c1\u76d8\u7a7a\u95f4\u91cf
cm_contentmodel.property.cm_emailFeedId.title=\u7535\u5b50\u90ae\u4ef6\u8ba2\u9605\u6e90 ID
cm_contentmodel.property.cm_emailFeedId.description=\u4eba\u5458\u7684\u7535\u5b50\u90ae\u4ef6\u8ba2\u9605\u6e90 ID \u7684 ID
cm_contentmodel.association.cm_avatar.title=\u7528\u6237\u6807\u8bc6\u56fe
cm_contentmodel.association.cm_avatar.description=\u4eba\u5458\u7684\u7528\u6237\u6807\u8bc6\u56fe
cm_contentmodel.type.cm_category_root.title=\u7C7B\u522B\u6839
cm_contentmodel.type.cm_category_root.description=\u6839\u7C7B\u522B
cm_contentmodel.association.cm_categories.title=\u7C7B\u522B
cm_contentmodel.association.cm_categories.description=\u7C7B\u522B\u6839\u5185\u7684\u7C7B\u522B
cm_contentmodel.type.cm_category_root.title=\u7c7b\u522b\u6839
cm_contentmodel.type.cm_category_root.description=\u6839\u7c7b\u522b
cm_contentmodel.association.cm_categories.title=\u7c7b\u522b
cm_contentmodel.association.cm_categories.description=\u7c7b\u522b\u6839\u5185\u7684\u7c7b\u522b
cm_contentmodel.type.cm_category.title=\u7C7B\u522B
cm_contentmodel.type.cm_category.description=\u7C7B\u522B
cm_contentmodel.association.cm_subcategories.title=\u7C7B\u522B
cm_contentmodel.association.cm_subcategories.description=\u7C7B\u522B\u5185\u7684\u5B50\u7C7B\u522B
cm_contentmodel.type.cm_category.title=\u7c7b\u522b
cm_contentmodel.type.cm_category.description=\u7c7b\u522b
cm_contentmodel.association.cm_subcategories.title=\u7c7b\u522b
cm_contentmodel.association.cm_subcategories.description=\u7c7b\u522b\u5185\u7684\u5b50\u7c7b\u522b
cm_contentmodel.aspect.cm_titled.title=\u5E26\u6807\u9898
cm_contentmodel.aspect.cm_titled.description=\u5E26\u6807\u9898
cm_contentmodel.aspect.cm_titled.title=\u5e26\u6807\u9898
cm_contentmodel.aspect.cm_titled.description=\u5e26\u6807\u9898
cm_contentmodel.property.cm_title.title=\u6807\u9898
cm_contentmodel.property.cm_title.description=\u5185\u5BB9\u6807\u9898
cm_contentmodel.property.cm_description.title=\u8BF4\u660E
cm_contentmodel.property.cm_description.description=\u5185\u5BB9\u8BF4\u660E
cm_contentmodel.property.cm_title.description=\u5185\u5bb9\u6807\u9898
cm_contentmodel.property.cm_description.title=\u8bf4\u660e
cm_contentmodel.property.cm_description.description=\u5185\u5bb9\u8bf4\u660e
cm_contentmodel.aspect.cm_auditable.title=\u53EF\u5BA1\u6838
cm_contentmodel.aspect.cm_auditable.description=\u53EF\u5BA1\u6838
cm_contentmodel.property.cm_created.title=\u521B\u5EFA\u65E5\u671F
cm_contentmodel.property.cm_created.description=\u521B\u5EFA\u65E5\u671F
cm_contentmodel.property.cm_creator.title=\u521B\u5EFA\u8005
cm_contentmodel.property.cm_creator.description=\u521B\u5EFA\u6B64\u9879\u7684\u4EBA\u5458
cm_contentmodel.property.cm_modified.title=\u4FEE\u6539\u65E5\u671F
cm_contentmodel.property.cm_modified.description=\u4E0A\u6B21\u4FEE\u6539\u6B64\u9879\u7684\u65F6\u95F4
cm_contentmodel.property.cm_modifier.title=\u4FEE\u6539\u8005
cm_contentmodel.property.cm_modifier.description=\u4E0A\u6B21\u4FEE\u6539\u6B64\u9879\u7684\u4EBA\u5458
cm_contentmodel.property.cm_accessed.title=\u4E0A\u6B21\u8BBF\u95EE\u65E5\u671F
cm_contentmodel.property.cm_accessed.description=\u4E0A\u6B21\u8BBF\u95EE\u6B64\u9879\u7684\u65F6\u95F4
cm_contentmodel.aspect.cm_auditable.title=\u53ef\u5ba1\u6838
cm_contentmodel.aspect.cm_auditable.description=\u53ef\u5ba1\u6838
cm_contentmodel.property.cm_created.title=\u521b\u5efa\u65e5\u671f
cm_contentmodel.property.cm_created.description=\u521b\u5efa\u65e5\u671f
cm_contentmodel.property.cm_creator.title=\u521b\u5efa\u8005
cm_contentmodel.property.cm_creator.description=\u521b\u5efa\u6b64\u9879\u7684\u4eba\u5458
cm_contentmodel.property.cm_modified.title=\u4fee\u6539\u65e5\u671f
cm_contentmodel.property.cm_modified.description=\u4e0a\u6b21\u4fee\u6539\u6b64\u9879\u7684\u65f6\u95f4
cm_contentmodel.property.cm_modifier.title=\u4fee\u6539\u8005
cm_contentmodel.property.cm_modifier.description=\u4e0a\u6b21\u4fee\u6539\u6b64\u9879\u7684\u4eba\u5458
cm_contentmodel.property.cm_accessed.title=\u4e0a\u6b21\u8bbf\u95ee\u65e5\u671f
cm_contentmodel.property.cm_accessed.description=\u4e0a\u6b21\u8bbf\u95ee\u6b64\u9879\u7684\u65f6\u95f4
cm_contentmodel.aspect.cm_author.title=\u4F5C\u8005
cm_contentmodel.aspect.cm_author.description=\u4F5C\u8005
cm_contentmodel.property.cm_author.title=\u4F5C\u8005
cm_contentmodel.property.cm_author.description=\u4F5C\u8005
cm_contentmodel.aspect.cm_author.title=\u4f5c\u8005
cm_contentmodel.aspect.cm_author.description=\u4f5c\u8005
cm_contentmodel.property.cm_author.title=\u4f5c\u8005
cm_contentmodel.property.cm_author.description=\u4f5c\u8005
cm_contentmodel.aspect.cm_localizable.title=\u53EF\u672C\u5730\u5316
cm_contentmodel.aspect.cm_localizable.description=\u53EF\u672C\u5730\u5316
cm_contentmodel.property.cm_locale.title=\u533A\u57DF\u8BBE\u7F6E
cm_contentmodel.property.cm_locale.description=\u533A\u57DF\u8BBE\u7F6E
cm_contentmodel.aspect.cm_localizable.title=\u53ef\u672c\u5730\u5316
cm_contentmodel.aspect.cm_localizable.description=\u53ef\u672c\u5730\u5316
cm_contentmodel.property.cm_locale.title=\u533a\u57df\u8bbe\u7f6e
cm_contentmodel.property.cm_locale.description=\u533a\u57df\u8bbe\u7f6e
cm_contentmodel.aspect.cm_translatable.title=\u53EF\u7FFB\u8BD1
cm_contentmodel.aspect.cm_translatable.description=\u53EF\u7FFB\u8BD1
cm_contentmodel.association.cm_translations.title=\u7FFB\u8BD1
cm_contentmodel.association.cm_translations.description=\u7FFB\u8BD1
cm_contentmodel.aspect.cm_translatable.title=\u53ef\u7ffb\u8bd1
cm_contentmodel.aspect.cm_translatable.description=\u53ef\u7ffb\u8bd1
cm_contentmodel.association.cm_translations.title=\u7ffb\u8bd1
cm_contentmodel.association.cm_translations.description=\u7ffb\u8bd1
cm_contentmodel.aspect.cm_transformable.title=\u53EF\u8F6C\u6362
cm_contentmodel.aspect.cm_transformable.description=\u53EF\u8F6C\u6362
cm_contentmodel.association.cm_formats.title=\u683C\u5F0F
cm_contentmodel.association.cm_formats.description=\u8F6C\u6362\u540E\u7684\u9879
cm_contentmodel.aspect.cm_transformable.title=\u53ef\u8f6c\u6362
cm_contentmodel.aspect.cm_transformable.description=\u53ef\u8f6c\u6362
cm_contentmodel.association.cm_formats.title=\u683c\u5f0f
cm_contentmodel.association.cm_formats.description=\u8f6c\u6362\u540e\u7684\u9879
cm_contentmodel.aspect.cm_templatable.title=\u53EF\u8BBE\u7F6E\u6A21\u677F
cm_contentmodel.aspect.cm_templatable.description=\u53EF\u8BBE\u7F6E\u6A21\u677F
cm_contentmodel.property.cm_template.title=\u6A21\u677F
cm_contentmodel.property.cm_template.description=\u6A21\u677F
cm_contentmodel.aspect.cm_templatable.title=\u53ef\u8bbe\u7f6e\u6a21\u677f
cm_contentmodel.aspect.cm_templatable.description=\u53ef\u8bbe\u7f6e\u6a21\u677f
cm_contentmodel.property.cm_template.title=\u6a21\u677f
cm_contentmodel.property.cm_template.description=\u6a21\u677f
cm_contentmodel.aspect.cm_complianceable.title=\u53EF\u5408\u89C4
cm_contentmodel.aspect.cm_complianceable.description=\u53EF\u5408\u89C4
cm_contentmodel.property.cm_removeAfter.title=\u79FB\u9664\u5F00\u59CB\u65F6\u95F4
cm_contentmodel.property.cm_removeAfter.description=\u79FB\u9664\u5F00\u59CB\u65F6\u95F4
cm_contentmodel.aspect.cm_complianceable.title=\u53ef\u5408\u89c4
cm_contentmodel.aspect.cm_complianceable.description=\u53ef\u5408\u89c4
cm_contentmodel.property.cm_removeAfter.title=\u79fb\u9664\u5f00\u59cb\u65f6\u95f4
cm_contentmodel.property.cm_removeAfter.description=\u79fb\u9664\u5f00\u59cb\u65f6\u95f4
cm_contentmodel.aspect.cm_ownable.title=\u53EF\u62E5\u6709
cm_contentmodel.aspect.cm_ownable.description=\u53EF\u62E5\u6709
cm_contentmodel.aspect.cm_ownable.title=\u53ef\u62e5\u6709
cm_contentmodel.aspect.cm_ownable.description=\u53ef\u62e5\u6709
cm_contentmodel.property.cm_owner.title=\u6240\u6709\u8005
cm_contentmodel.property.cm_owner.description=\u6240\u6709\u8005
cm_contentmodel.aspect.cm_dublincore.title=\u90FD\u67CF\u6797\u6838\u5FC3
cm_contentmodel.aspect.cm_dublincore.description=\u90FD\u67CF\u6797\u6838\u5FC3
cm_contentmodel.property.cm_publisher.title=\u53D1\u5E03\u8005
cm_contentmodel.property.cm_publisher.description=\u53D1\u5E03\u8005
cm_contentmodel.property.cm_contributor.title=\u8D21\u732E\u8005
cm_contentmodel.property.cm_contributor.description=\u8D21\u732E\u8005
cm_contentmodel.property.cm_type.title=\u7C7B\u578B
cm_contentmodel.property.cm_type.description=\u7C7B\u578B
cm_contentmodel.property.cm_identifier.title=\u6807\u8BC6\u7B26
cm_contentmodel.property.cm_identifier.description=\u6807\u8BC6\u7B26
cm_contentmodel.property.cm_dcsource.title=\u6E90
cm_contentmodel.property.cm_dcsource.description=\u6E90
cm_contentmodel.property.cm_coverage.title=\u8986\u76D6
cm_contentmodel.property.cm_coverage.description=\u8986\u76D6
cm_contentmodel.aspect.cm_dublincore.title=\u90fd\u67cf\u6797\u6838\u5fc3
cm_contentmodel.aspect.cm_dublincore.description=\u90fd\u67cf\u6797\u6838\u5fc3
cm_contentmodel.property.cm_publisher.title=\u53d1\u5e03\u8005
cm_contentmodel.property.cm_publisher.description=\u53d1\u5e03\u8005
cm_contentmodel.property.cm_contributor.title=\u8d21\u732e\u8005
cm_contentmodel.property.cm_contributor.description=\u8d21\u732e\u8005
cm_contentmodel.property.cm_type.title=\u7c7b\u578b
cm_contentmodel.property.cm_type.description=\u7c7b\u578b
cm_contentmodel.property.cm_identifier.title=\u6807\u8bc6\u7b26
cm_contentmodel.property.cm_identifier.description=\u6807\u8bc6\u7b26
cm_contentmodel.property.cm_dcsource.title=\u6e90
cm_contentmodel.property.cm_dcsource.description=\u6e90
cm_contentmodel.property.cm_coverage.title=\u8986\u76d6
cm_contentmodel.property.cm_coverage.description=\u8986\u76d6
cm_contentmodel.property.cm_rights.title=\u6743\u9650
cm_contentmodel.property.cm_rights.description=\u6743\u9650
cm_contentmodel.property.cm_subject.title=\u4E3B\u9898
cm_contentmodel.property.cm_subject.description=\u4E3B\u9898
cm_contentmodel.property.cm_subject.title=\u4e3b\u9898
cm_contentmodel.property.cm_subject.description=\u4e3b\u9898
cm_contentmodel.aspect.cm_basable.title=\u53EF\u4F5C\u4E3A\u57FA
cm_contentmodel.aspect.cm_basable.description=\u53EF\u4F5C\u4E3A\u57FA
cm_contentmodel.association.cm_basis.title=\u57FA\u7840
cm_contentmodel.association.cm_basis.description=\u57FA\u7840
cm_contentmodel.aspect.cm_basable.title=\u53ef\u4f5c\u4e3a\u57fa
cm_contentmodel.aspect.cm_basable.description=\u53ef\u4f5c\u4e3a\u57fa
cm_contentmodel.association.cm_basis.title=\u57fa\u7840
cm_contentmodel.association.cm_basis.description=\u57fa\u7840
cm_contentmodel.aspect.cm_partable.title=\u53EF\u62C6\u5206
cm_contentmodel.aspect.cm_partable.description=\u53EF\u62C6\u5206
cm_contentmodel.association.cm_parts.title=\u90E8\u5206
cm_contentmodel.association.cm_parts.description=\u90E8\u5206
cm_contentmodel.aspect.cm_partable.title=\u53ef\u62c6\u5206
cm_contentmodel.aspect.cm_partable.description=\u53ef\u62c6\u5206
cm_contentmodel.association.cm_parts.title=\u90e8\u5206
cm_contentmodel.association.cm_parts.description=\u90e8\u5206
cm_contentmodel.aspect.cm_referencing.title=\u5F15\u7528
cm_contentmodel.aspect.cm_referencing.description=\u5F15\u7528
cm_contentmodel.association.cm_references.title=\u5F15\u7528
cm_contentmodel.association.cm_references.description=\u5F15\u7528
cm_contentmodel.aspect.cm_referencing.title=\u5f15\u7528
cm_contentmodel.aspect.cm_referencing.description=\u5f15\u7528
cm_contentmodel.association.cm_references.title=\u5f15\u7528
cm_contentmodel.association.cm_references.description=\u5f15\u7528
cm_contentmodel.aspect.cm_replacable.title=\u53EF\u66FF\u6362
cm_contentmodel.aspect.cm_replacable.description=\u53EF\u66FF\u6362
cm_contentmodel.association.cm_replaces.title=\u66FF\u6362
cm_contentmodel.association.cm_replaces.description=\u66FF\u6362
cm_contentmodel.aspect.cm_replacable.title=\u53ef\u66ff\u6362
cm_contentmodel.aspect.cm_replacable.description=\u53ef\u66ff\u6362
cm_contentmodel.association.cm_replaces.title=\u66ff\u6362
cm_contentmodel.association.cm_replaces.description=\u66ff\u6362
cm_contentmodel.aspect.cm_effectivity.title=\u6709\u6548\u6027
cm_contentmodel.aspect.cm_effectivity.description=\u6709\u6548\u6027
cm_contentmodel.property.cm_from.title=\u6709\u6548\u5F00\u59CB\u65F6\u95F4
cm_contentmodel.property.cm_from.description=\u6709\u6548\u5F00\u59CB\u65F6\u95F4
cm_contentmodel.property.cm_to.title=\u6709\u6548\u622A\u6B62\u65F6\u95F4
cm_contentmodel.property.cm_to.description=\u6709\u6548\u622A\u6B62\u65F6\u95F4
cm_contentmodel.property.cm_from.title=\u6709\u6548\u5f00\u59cb\u65f6\u95f4
cm_contentmodel.property.cm_from.description=\u6709\u6548\u5f00\u59cb\u65f6\u95f4
cm_contentmodel.property.cm_to.title=\u6709\u6548\u622a\u6b62\u65f6\u95f4
cm_contentmodel.property.cm_to.description=\u6709\u6548\u622a\u6b62\u65f6\u95f4
cm_contentmodel.aspect.cm_summarizable.title=\u53EF\u6458\u8981
cm_contentmodel.aspect.cm_summarizable.description=\u53EF\u6458\u8981
cm_contentmodel.aspect.cm_summarizable.title=\u53ef\u6458\u8981
cm_contentmodel.aspect.cm_summarizable.description=\u53ef\u6458\u8981
cm_contentmodel.property.cm_summary.title=\u6458\u8981
cm_contentmodel.property.cm_summary.description=\u6458\u8981
cm_contentmodel.aspect.cm_countable.title=\u53EF\u8BA1\u6570
cm_contentmodel.aspect.cm_countable.description=\u53EF\u8BA1\u6570
cm_contentmodel.property.cm_hits.title=\u547D\u4E2D\u6570
cm_contentmodel.property.cm_hits.description=\u547D\u4E2D\u6570
cm_contentmodel.aspect.cm_countable.title=\u53ef\u8ba1\u6570
cm_contentmodel.aspect.cm_countable.description=\u53ef\u8ba1\u6570
cm_contentmodel.property.cm_hits.title=\u547d\u4e2d\u6570
cm_contentmodel.property.cm_hits.description=\u547d\u4e2d\u6570
cm_contentmodel.aspect.cm_copiedFrom.title=\u590D\u5236\u6765\u6E90
cm_contentmodel.aspect.cm_copiedFrom.description=\u590D\u5236\u6765\u6E90
cm_contentmodel.property.cm_source.title=\u6E90
cm_contentmodel.property.cm_source.description=\u6E90
cm_contentmodel.aspect.cm_copiedFrom.title=\u590d\u5236\u6765\u6e90
cm_contentmodel.aspect.cm_copiedFrom.description=\u590d\u5236\u6765\u6e90
cm_contentmodel.property.cm_source.title=\u6e90
cm_contentmodel.property.cm_source.description=\u6e90
cm_contentmodel.aspect.cm_workingcopy.title=\u5DE5\u4F5C\u526F\u672C
cm_contentmodel.aspect.cm_workingcopy.description=\u5DE5\u4F5C\u526F\u672C
cm_contentmodel.property.cm_workingCopyOwner.title=\u5DE5\u4F5C\u526F\u672C\u6240\u6709\u8005
cm_contentmodel.property.cm_workingCopyOwner.description=\u5DE5\u4F5C\u526F\u672C\u6240\u6709\u8005
cm_contentmodel.aspect.cm_workingcopy.title=\u5de5\u4f5c\u526f\u672c
cm_contentmodel.aspect.cm_workingcopy.description=\u5de5\u4f5c\u526f\u672c
cm_contentmodel.property.cm_workingCopyOwner.title=\u5de5\u4f5c\u526f\u672c\u6240\u6709\u8005
cm_contentmodel.property.cm_workingCopyOwner.description=\u5de5\u4f5c\u526f\u672c\u6240\u6709\u8005
cm_contentmodel.aspect.cm_versionable.title=\u53EF\u8BBE\u7F6E\u7248\u672C
cm_contentmodel.aspect.cm_versionable.description=\u53EF\u8BBE\u7F6E\u7248\u672C
cm_contentmodel.property.cm_versionLabel.title=\u7248\u672C\u6807\u7B7E
cm_contentmodel.property.cm_versionLabel.description=\u7248\u672C\u6807\u7B7E
cm_contentmodel.property.cm_autoVersion.title=\u81EA\u52A8\u7248\u672C
cm_contentmodel.property.cm_autoVersion.description=\u81EA\u52A8\u7248\u672C
cm_contentmodel.property.cm_initialVersion.title=\u521D\u59CB\u7248\u672C
cm_contentmodel.property.cm_initialVersion.description=\u521D\u59CB\u7248\u672C
cm_contentmodel.aspect.cm_versionable.title=\u53ef\u8bbe\u7f6e\u7248\u672c
cm_contentmodel.aspect.cm_versionable.description=\u53ef\u8bbe\u7f6e\u7248\u672c
cm_contentmodel.property.cm_versionLabel.title=\u7248\u672c\u6807\u7b7e
cm_contentmodel.property.cm_versionLabel.description=\u7248\u672c\u6807\u7b7e
cm_contentmodel.property.cm_autoVersion.title=\u81ea\u52a8\u7248\u672c
cm_contentmodel.property.cm_autoVersion.description=\u81ea\u52a8\u7248\u672c
cm_contentmodel.property.cm_initialVersion.title=\u521d\u59cb\u7248\u672c
cm_contentmodel.property.cm_initialVersion.description=\u521d\u59cb\u7248\u672c
cm_contentmodel.aspect.cm_lockable.title=\u53EF\u9501\u5B9A
cm_contentmodel.aspect.cm_lockable.description=\u53EF\u9501\u5B9A
cm_contentmodel.property.cm_lockOwner.title=\u9501\u5B9A\u6240\u6709\u8005
cm_contentmodel.property.cm_lockOwner.description=\u9501\u5B9A\u6240\u6709\u8005
cm_contentmodel.property.cm_lockType.title=\u9501\u5B9A\u7C7B\u578B
cm_contentmodel.property.cm_lockType.description=\u9501\u5B9A\u7C7B\u578B
cm_contentmodel.property.cm_expiryDate.title=\u5230\u671F\u65E5\u671F
cm_contentmodel.property.cm_expiryDate.description=\u5230\u671F\u65E5\u671F
cm_contentmodel.property.cm_lockIsDeep.title=\u6DF1\u5EA6\u9501\u5B9A
cm_contentmodel.property.cm_lockIsDeep.description=\u6DF1\u5EA6\u9501\u5B9A
cm_contentmodel.aspect.cm_lockable.title=\u53ef\u9501\u5b9a
cm_contentmodel.aspect.cm_lockable.description=\u53ef\u9501\u5b9a
cm_contentmodel.property.cm_lockOwner.title=\u9501\u5b9a\u6240\u6709\u8005
cm_contentmodel.property.cm_lockOwner.description=\u9501\u5b9a\u6240\u6709\u8005
cm_contentmodel.property.cm_lockType.title=\u9501\u5b9a\u7c7b\u578b
cm_contentmodel.property.cm_lockType.description=\u9501\u5b9a\u7c7b\u578b
cm_contentmodel.property.cm_expiryDate.title=\u5230\u671f\u65e5\u671f
cm_contentmodel.property.cm_expiryDate.description=\u5230\u671f\u65e5\u671f
cm_contentmodel.property.cm_lockIsDeep.title=\u6df1\u5ea6\u9501\u5b9a
cm_contentmodel.property.cm_lockIsDeep.description=\u6df1\u5ea6\u9501\u5b9a
cm_contentmodel.aspect.cm_subscribable.title=\u53EF\u8BA2\u9605
cm_contentmodel.aspect.cm_subscribable.description=\u53EF\u8BA2\u9605
cm_contentmodel.association.cm_subscribedBy.title=\u8BA2\u9605\u8005
cm_contentmodel.association.cm_subscribedBy.description=\u8BA2\u9605\u8005
cm_contentmodel.aspect.cm_subscribable.title=\u53ef\u8ba2\u9605
cm_contentmodel.aspect.cm_subscribable.description=\u53ef\u8ba2\u9605
cm_contentmodel.association.cm_subscribedBy.title=\u8ba2\u9605\u8005
cm_contentmodel.association.cm_subscribedBy.description=\u8ba2\u9605\u8005
cm_contentmodel.aspect.cm_classifiable.title=\u53EF\u5206\u7C7B
cm_contentmodel.aspect.cm_classifiable.description=\u53EF\u5206\u7C7B
cm_contentmodel.aspect.cm_classifiable.title=\u53ef\u5206\u7c7b
cm_contentmodel.aspect.cm_classifiable.description=\u53ef\u5206\u7c7b
cm_contentmodel.aspect.cm_generalclassifiable.title=\u53EF\u5206\u7C7B
cm_contentmodel.aspect.cm_generalclassifiable.description=\u53EF\u5206\u7C7B
cm_contentmodel.property.cm_categories.title=\u7C7B\u522B
cm_contentmodel.property.cm_categories.description=\u7C7B\u522B
cm_contentmodel.aspect.cm_generalclassifiable.title=\u53ef\u5206\u7c7b
cm_contentmodel.aspect.cm_generalclassifiable.description=\u53ef\u5206\u7c7b
cm_contentmodel.property.cm_categories.title=\u7c7b\u522b
cm_contentmodel.property.cm_categories.description=\u7c7b\u522b
cm_contentmodel.aspect.cm_taggable.title=\u53EF\u8BBE\u7F6E\u6807\u8BB0
cm_contentmodel.aspect.cm_taggable.description=\u53EF\u8BBE\u7F6E\u6807\u8BB0
cm_contentmodel.property.cm_taggable.title=\u6807\u8BB0
cm_contentmodel.property.cm_taggable.description=\u6807\u8BB0
cm_contentmodel.aspect.cm_taggable.title=\u53ef\u8bbe\u7f6e\u6807\u8bb0
cm_contentmodel.aspect.cm_taggable.description=\u53ef\u8bbe\u7f6e\u6807\u8bb0
cm_contentmodel.property.cm_taggable.title=\u6807\u8bb0
cm_contentmodel.property.cm_taggable.description=\u6807\u8bb0
cm_contentmodel.aspect.cm_attachable.title=\u53EF\u9644\u52A0
cm_contentmodel.aspect.cm_attachable.description=\u5141\u8BB8\u9644\u52A0\u5176\u4ED6\u5B58\u50A8\u5E93\u5BF9\u8C61
cm_contentmodel.association.cm_attachments.title=\u9644\u4EF6
cm_contentmodel.association.cm_attachments.description=\u9644\u52A0\u7684\u5B58\u50A8\u5E93\u5BF9\u8C61
cm_contentmodel.aspect.cm_attachable.title=\u53ef\u9644\u52a0
cm_contentmodel.aspect.cm_attachable.description=\u5141\u8bb8\u9644\u52a0\u5176\u4ed6\u5b58\u50a8\u5e93\u5bf9\u8c61
cm_contentmodel.association.cm_attachments.title=\u9644\u4ef6
cm_contentmodel.association.cm_attachments.description=\u9644\u52a0\u7684\u5b58\u50a8\u5e93\u5bf9\u8c61
cm_contentmodel.aspect.cm_emailed.title=\u7535\u5B50\u90AE\u4EF6\u65B9\u5F0F
cm_contentmodel.aspect.cm_emailed.description=\u7535\u5B50\u90AE\u4EF6\u65B9\u5F0F
cm_contentmodel.property.cm_originator.title=\u59CB\u53D1\u4EBA
cm_contentmodel.property.cm_originator.description=\u59CB\u53D1\u4EBA
cm_contentmodel.property.cm_addressee.title=\u6536\u4EF6\u4EBA
cm_contentmodel.property.cm_addressee.description=\u6536\u4EF6\u4EBA
cm_contentmodel.property.cm_addressees.title=\u6536\u4EF6\u4EBA
cm_contentmodel.property.cm_addressees.description=\u6536\u4EF6\u4EBA
cm_contentmodel.property.cm_subjectline.title=\u4E3B\u9898
cm_contentmodel.property.cm_subjectline.description=\u4E3B\u9898
cm_contentmodel.property.cm_sentdate.title=\u53D1\u9001\u65E5\u671F
cm_contentmodel.property.cm_sentdate.description=\u53D1\u9001\u65E5\u671F
cm_contentmodel.aspect.cm_emailed.title=\u7535\u5b50\u90ae\u4ef6\u65b9\u5f0f
cm_contentmodel.aspect.cm_emailed.description=\u7535\u5b50\u90ae\u4ef6\u65b9\u5f0f
cm_contentmodel.property.cm_originator.title=\u59cb\u53d1\u4eba
cm_contentmodel.property.cm_originator.description=\u59cb\u53d1\u4eba
cm_contentmodel.property.cm_addressee.title=\u6536\u4ef6\u4eba
cm_contentmodel.property.cm_addressee.description=\u6536\u4ef6\u4eba
cm_contentmodel.property.cm_addressees.title=\u6536\u4ef6\u4eba
cm_contentmodel.property.cm_addressees.description=\u6536\u4ef6\u4eba
cm_contentmodel.property.cm_subjectline.title=\u4e3b\u9898
cm_contentmodel.property.cm_subjectline.description=\u4e3b\u9898
cm_contentmodel.property.cm_sentdate.title=\u53d1\u9001\u65e5\u671f
cm_contentmodel.property.cm_sentdate.description=\u53d1\u9001\u65e5\u671f
cm_contentmodel.aspect.cm_geographic.title=\u5730\u7406
cm_contentmodel.aspect.cm_geographic.description=\u5730\u7406
cm_contentmodel.property.cm_latitude.title=\u7EAC\u5EA6
cm_contentmodel.property.cm_latitude.description=\u7EAC\u5EA6
cm_contentmodel.property.cm_longitude.title=\u7ECF\u5EA6
cm_contentmodel.property.cm_longitude.description=\u7ECF\u5EA6
cm_contentmodel.property.cm_latitude.title=\u7eac\u5ea6
cm_contentmodel.property.cm_latitude.description=\u7eac\u5ea6
cm_contentmodel.property.cm_longitude.title=\u7ecf\u5ea6
cm_contentmodel.property.cm_longitude.description=\u7ecf\u5ea6
cm_contentmodel.aspect.exif_exif.title=EXIF
cm_contentmodel.aspect.exif_exif.description=\u6807\u51C6 EXIF \u5143\u6570\u636E\u7684\u5B50\u96C6
cm_contentmodel.property.exif_dateTimeOriginal.title=\u65E5\u671F\u548C\u65F6\u95F4
cm_contentmodel.property.exif_dateTimeOriginal.description=\u539F\u59CB\u56FE\u50CF\u7684\u751F\u6210\u65E5\u671F\u548C\u65F6\u95F4
cm_contentmodel.property.exif_pixelXDimension.title=\u56FE\u50CF\u5BBD\u5EA6
cm_contentmodel.property.exif_pixelXDimension.description=\u56FE\u50CF\u7684\u5BBD\u5EA6\uFF08\u50CF\u7D20\uFF09
cm_contentmodel.property.exif_pixelYDimension.title=\u56FE\u50CF\u9AD8\u5EA6
cm_contentmodel.property.exif_pixelYDimension.description=\u56FE\u50CF\u7684\u9AD8\u5EA6\uFF08\u50CF\u7D20\uFF09
cm_contentmodel.property.exif_exposureTime.title=\u66DD\u5149\u65F6\u95F4
cm_contentmodel.property.exif_exposureTime.description=\u66DD\u5149\u65F6\u95F4\uFF08\u79D2\uFF09
cm_contentmodel.property.exif_fNumber.title=\u5149\u5708\u503C
cm_contentmodel.property.exif_fNumber.description=\u5149\u5708\u503C
cm_contentmodel.property.exif_flash.title=\u6FC0\u6D3B\u95EA\u5149\u706F
cm_contentmodel.property.exif_flash.description=\u62CD\u6444\u7167\u7247\u65F6\u662F\u5426\u6FC0\u6D3B\u4E86\u95EA\u5149\u706F
cm_contentmodel.property.exif_focalLength.title=\u7126\u8DDD
cm_contentmodel.property.exif_focalLength.description=\u955C\u5934\u7684\u7126\u8DDD\uFF08\u6BEB\u7C73\uFF09
cm_contentmodel.property.exif_isoSpeedRatings.title=ISO \u901F\u5EA6
cm_contentmodel.property.exif_isoSpeedRatings.description=ISO \u901F\u5EA6
cm_contentmodel.property.exif_manufacturer.title=\u76F8\u673A\u5236\u9020\u5546
cm_contentmodel.property.exif_manufacturer.description=\u7528\u4E8E\u62CD\u6444\u6B64\u7167\u7247\u7684\u76F8\u673A\u7684\u5236\u9020\u5546
cm_contentmodel.property.exif_model.title=\u76F8\u673A\u578B\u53F7
cm_contentmodel.property.exif_model.description=\u7528\u4E8E\u62CD\u6444\u6B64\u7167\u7247\u7684\u76F8\u673A\u7684\u578B\u53F7
cm_contentmodel.property.exif_software.title=\u76F8\u673A\u8F6F\u4EF6
cm_contentmodel.property.exif_software.description=\u7528\u4E8E\u62CD\u6444\u6B64\u7167\u7247\u7684\u76F8\u673A\u4E0A\u5B89\u88C5\u7684\u8F6F\u4EF6
cm_contentmodel.property.exif_orientation.title=\u65B9\u5411
cm_contentmodel.property.exif_orientation.description=\u7167\u7247\u7684\u65B9\u5411
cm_contentmodel.property.exif_xResolution.title=\u6C34\u5E73\u5206\u8FA8\u7387
cm_contentmodel.property.exif_xResolution.description=\u6C34\u5E73\u5206\u8FA8\u7387\uFF08\u5355\u4F4D\u50CF\u7D20\uFF09
cm_contentmodel.property.exif_yResolution.title=\u5782\u76F4\u5206\u8FA8\u7387
cm_contentmodel.property.exif_yResolution.description=\u5782\u76F4\u5206\u8FA8\u7387\uFF08\u5355\u4F4D\u50CF\u7D20\uFF09
cm_contentmodel.property.exif_resolutionUnit.title=\u5206\u8FA8\u7387\u5355\u4F4D
cm_contentmodel.property.exif_resolutionUnit.description=\u7528\u4E8E\u6C34\u5E73\u548C\u5782\u76F4\u5206\u8FA8\u7387\u7684\u5355\u4F4D
cm_contentmodel.aspect.exif_exif.description=\u6807\u51c6 EXIF \u5143\u6570\u636e\u7684\u5b50\u96c6
cm_contentmodel.property.exif_dateTimeOriginal.title=\u65e5\u671f\u548c\u65f6\u95f4
cm_contentmodel.property.exif_dateTimeOriginal.description=\u539f\u59cb\u56fe\u50cf\u7684\u751f\u6210\u65e5\u671f\u548c\u65f6\u95f4
cm_contentmodel.property.exif_pixelXDimension.title=\u56fe\u50cf\u5bbd\u5ea6
cm_contentmodel.property.exif_pixelXDimension.description=\u56fe\u50cf\u7684\u5bbd\u5ea6\uff08\u50cf\u7d20\uff09
cm_contentmodel.property.exif_pixelYDimension.title=\u56fe\u50cf\u9ad8\u5ea6
cm_contentmodel.property.exif_pixelYDimension.description=\u56fe\u50cf\u7684\u9ad8\u5ea6\uff08\u50cf\u7d20\uff09
cm_contentmodel.property.exif_exposureTime.title=\u66dd\u5149\u65f6\u95f4
cm_contentmodel.property.exif_exposureTime.description=\u66dd\u5149\u65f6\u95f4\uff08\u79d2\uff09
cm_contentmodel.property.exif_fNumber.title=\u5149\u5708\u503c
cm_contentmodel.property.exif_fNumber.description=\u5149\u5708\u503c
cm_contentmodel.property.exif_flash.title=\u6fc0\u6d3b\u95ea\u5149\u706f
cm_contentmodel.property.exif_flash.description=\u62cd\u6444\u7167\u7247\u65f6\u662f\u5426\u6fc0\u6d3b\u4e86\u95ea\u5149\u706f
cm_contentmodel.property.exif_focalLength.title=\u7126\u8ddd
cm_contentmodel.property.exif_focalLength.description=\u955c\u5934\u7684\u7126\u8ddd\uff08\u6beb\u7c73\uff09
cm_contentmodel.property.exif_isoSpeedRatings.title=ISO \u901f\u5ea6
cm_contentmodel.property.exif_isoSpeedRatings.description=ISO \u901f\u5ea6
cm_contentmodel.property.exif_manufacturer.title=\u76f8\u673a\u5236\u9020\u5546
cm_contentmodel.property.exif_manufacturer.description=\u7528\u4e8e\u62cd\u6444\u6b64\u7167\u7247\u7684\u76f8\u673a\u7684\u5236\u9020\u5546
cm_contentmodel.property.exif_model.title=\u76f8\u673a\u578b\u53f7
cm_contentmodel.property.exif_model.description=\u7528\u4e8e\u62cd\u6444\u6b64\u7167\u7247\u7684\u76f8\u673a\u7684\u578b\u53f7
cm_contentmodel.property.exif_software.title=\u76f8\u673a\u8f6f\u4ef6
cm_contentmodel.property.exif_software.description=\u7528\u4e8e\u62cd\u6444\u6b64\u7167\u7247\u7684\u76f8\u673a\u4e0a\u5b89\u88c5\u7684\u8f6f\u4ef6
cm_contentmodel.property.exif_orientation.title=\u65b9\u5411
cm_contentmodel.property.exif_orientation.description=\u7167\u7247\u7684\u65b9\u5411
cm_contentmodel.property.exif_xResolution.title=\u6c34\u5e73\u5206\u8fa8\u7387
cm_contentmodel.property.exif_xResolution.description=\u6c34\u5e73\u5206\u8fa8\u7387\uff08\u5355\u4f4d\u50cf\u7d20\uff09
cm_contentmodel.property.exif_yResolution.title=\u5782\u76f4\u5206\u8fa8\u7387
cm_contentmodel.property.exif_yResolution.description=\u5782\u76f4\u5206\u8fa8\u7387\uff08\u5355\u4f4d\u50cf\u7d20\uff09
cm_contentmodel.property.exif_resolutionUnit.title=\u5206\u8fa8\u7387\u5355\u4f4d
cm_contentmodel.property.exif_resolutionUnit.description=\u7528\u4e8e\u6c34\u5e73\u548c\u5782\u76f4\u5206\u8fa8\u7387\u7684\u5355\u4f4d
cm_contentmodel.aspect.audio_audio.title=\u97F3\u9891
cm_contentmodel.aspect.audio_audio.description=\u6807\u51C6 xmpDM \u97F3\u9891\u5143\u6570\u636E\u7684\u5B50\u96C6
cm_contentmodel.property.audio_album.title=\u4E13\u8F91
cm_contentmodel.property.audio_album.description=\u4E13\u8F91
cm_contentmodel.property.audio_artist.title=\u827A\u672F\u5BB6
cm_contentmodel.property.audio_artist.description=\u8868\u6F14\u6B64\u4F5C\u54C1\u7684\u827A\u672F\u5BB6
cm_contentmodel.property.audio_composer.title=\u4F5C\u66F2\u5BB6
cm_contentmodel.property.audio_composer.description=\u4E3A\u6B64\u4F5C\u54C1\u4F5C\u66F2\u7684\u4F5C\u66F2\u5BB6
cm_contentmodel.property.audio_engineer.title=\u5DE5\u7A0B\u5E08
cm_contentmodel.property.audio_engineer.description=\u5F55\u97F3\u5DE5\u7A0B\u5E08
cm_contentmodel.property.audio_genre.title=\u6D41\u6D3E
cm_contentmodel.property.audio_genre.description=\u97F3\u4E50\u7684\u6D41\u6D3E
cm_contentmodel.property.audio_trackNumber.title=\u97F3\u8F68\u53F7
cm_contentmodel.property.audio_trackNumber.description=\u4F5C\u54C1\u5728\u4E13\u8F91\u4E2D\u7684\u97F3\u8F68\u53F7
cm_contentmodel.property.audio_releaseDate.title=\u53D1\u884C\u65E5\u671F
cm_contentmodel.property.audio_releaseDate.description=\u53D1\u884C\u65E5\u671F
cm_contentmodel.property.audio_sampleRate.title=\u91C7\u6837\u7387
cm_contentmodel.property.audio_sampleRate.description=\u91C7\u6837\u7387
cm_contentmodel.property.audio_sampleType.title=\u91C7\u6837\u7C7B\u578B
cm_contentmodel.property.audio_sampleType.description=\u97F3\u9891\u91C7\u6837\u7C7B\u578B\uFF0C\u901A\u5E38\u4E3A 8Int\u300116Int\u300132Int \u6216 32Float \u4E4B\u4E00
cm_contentmodel.property.audio_channelType.title=\u58F0\u9053\u7C7B\u578B
cm_contentmodel.property.audio_channelType.description=\u97F3\u9891\u58F0\u9053\u7C7B\u578B\uFF0C\u901A\u5E38\u4E3A\u5355\u58F0\u9053\u3001\u7ACB\u4F53\u58F0\u30015.1 \u6216 7.1 \u4E4B\u4E00
cm_contentmodel.property.audio_compressor.title=\u538B\u7F29\u683C\u5F0F
cm_contentmodel.property.audio_compressor.description=\u6240\u7528\u97F3\u9891\u538B\u7F29\u683C\u5F0F\uFF0C\u5982 MP3 \u6216 FLAC
cm_contentmodel.aspect.audio_audio.title=\u97f3\u9891
cm_contentmodel.aspect.audio_audio.description=\u6807\u51c6 xmpDM \u97f3\u9891\u5143\u6570\u636e\u7684\u5b50\u96c6
cm_contentmodel.property.audio_album.title=\u4e13\u8f91
cm_contentmodel.property.audio_album.description=\u4e13\u8f91
cm_contentmodel.property.audio_artist.title=\u827a\u672f\u5bb6
cm_contentmodel.property.audio_artist.description=\u8868\u6f14\u6b64\u4f5c\u54c1\u7684\u827a\u672f\u5bb6
cm_contentmodel.property.audio_composer.title=\u4f5c\u66f2\u5bb6
cm_contentmodel.property.audio_composer.description=\u4e3a\u6b64\u4f5c\u54c1\u4f5c\u66f2\u7684\u4f5c\u66f2\u5bb6
cm_contentmodel.property.audio_engineer.title=\u5de5\u7a0b\u5e08
cm_contentmodel.property.audio_engineer.description=\u5f55\u97f3\u5de5\u7a0b\u5e08
cm_contentmodel.property.audio_genre.title=\u6d41\u6d3e
cm_contentmodel.property.audio_genre.description=\u97f3\u4e50\u7684\u6d41\u6d3e
cm_contentmodel.property.audio_trackNumber.title=\u97f3\u8f68\u53f7
cm_contentmodel.property.audio_trackNumber.description=\u4f5c\u54c1\u5728\u4e13\u8f91\u4e2d\u7684\u97f3\u8f68\u53f7
cm_contentmodel.property.audio_releaseDate.title=\u53d1\u884c\u65e5\u671f
cm_contentmodel.property.audio_releaseDate.description=\u53d1\u884c\u65e5\u671f
cm_contentmodel.property.audio_sampleRate.title=\u91c7\u6837\u7387
cm_contentmodel.property.audio_sampleRate.description=\u91c7\u6837\u7387
cm_contentmodel.property.audio_sampleType.title=\u91c7\u6837\u7c7b\u578b
cm_contentmodel.property.audio_sampleType.description=\u97f3\u9891\u91c7\u6837\u7c7b\u578b\uff0c\u901a\u5e38\u4e3a 8Int\u300116Int\u300132Int \u6216 32Float \u4e4b\u4e00
cm_contentmodel.property.audio_channelType.title=\u58f0\u9053\u7c7b\u578b
cm_contentmodel.property.audio_channelType.description=\u97f3\u9891\u58f0\u9053\u7c7b\u578b\uff0c\u901a\u5e38\u4e3a\u5355\u58f0\u9053\u3001\u7acb\u4f53\u58f0\u30015.1 \u6216 7.1 \u4e4b\u4e00
cm_contentmodel.property.audio_compressor.title=\u538b\u7f29\u683c\u5f0f
cm_contentmodel.property.audio_compressor.description=\u6240\u7528\u97f3\u9891\u538b\u7f29\u683c\u5f0f\uff0c\u5982 MP3 \u6216 FLAC
cm_contentmodel.aspect.cm_indexControl.title=\u7D22\u5F15\u63A7\u4EF6
cm_contentmodel.aspect.cm_indexControl.description=\u63A7\u5236\u7D22\u5F15\u884C\u4E3A
cm_contentmodel.property.cm_isIndexed.title=\u5DF2\u5EFA\u7ACB\u7D22\u5F15
cm_contentmodel.property.cm_isIndexed.description=\u662F\u5426\u5DF2\u4E3A\u6B64\u8282\u70B9\u5EFA\u7ACB\u7D22\u5F15\u5E76\u53EF\u901A\u8FC7\u641C\u7D22\u67E5\u627E\u3002
cm_contentmodel.property.cm_isContentIndexed.title=\u662F\u5426\u5DF2\u4E3A\u5185\u5BB9\u5EFA\u7ACB\u7D22\u5F15
cm_contentmodel.property.cm_isContentIndexed.description=\u662F\u5426\u5DF2\u4E3A\u8282\u70B9\u7684 d:content \u5C5E\u6027\u5EFA\u7ACB\u7D22\u5F15\uFF1F
cm_contentmodel.aspect.cm_indexControl.title=\u7d22\u5f15\u63a7\u4ef6
cm_contentmodel.aspect.cm_indexControl.description=\u63a7\u5236\u7d22\u5f15\u884c\u4e3a
cm_contentmodel.property.cm_isIndexed.title=\u5df2\u5efa\u7acb\u7d22\u5f15
cm_contentmodel.property.cm_isIndexed.description=\u662f\u5426\u5df2\u4e3a\u6b64\u8282\u70b9\u5efa\u7acb\u7d22\u5f15\u5e76\u53ef\u901a\u8fc7\u641c\u7d22\u67e5\u627e\u3002
cm_contentmodel.property.cm_isContentIndexed.title=\u662f\u5426\u5df2\u4e3a\u5185\u5bb9\u5efa\u7acb\u7d22\u5f15
cm_contentmodel.property.cm_isContentIndexed.description=\u662f\u5426\u5df2\u4e3a\u8282\u70b9\u7684 d:content \u5c5e\u6027\u5efa\u7acb\u7d22\u5f15\uff1f
cm_contentmodel.property.cm_tagScopeSummary.title=\u6807\u8bb0\u6458\u8981
cm_contentmodel.property.cm_tagScopeSummary.description=\u6807\u8bb0\u6458\u8981

View File

@@ -0,0 +1,5 @@
# Display labels for Site Model
st_siteModel.property.st_sitePreset.title=\u7ad9\u70b9\u9884\u8bbe
st_siteModel.property.st_sitePreset.description=\u7ad9\u70b9\u9884\u8bbe
st_siteModel.property.st_siteVisibility.title=\u7ad9\u70b9\u53ef\u89c1\u6027
st_siteModel.property.st_siteVisibility.description=\u7ad9\u70b9\u53ef\u89c1\u6027

View File

@@ -3,77 +3,77 @@
# Note to Translators: Only some of the strings below should be localised
# Those that should be localised are between START TRANSLATION and END TRANSLATION comment lines.
system.err.property_not_set=Property ''{0}'' has not been set: {1} ({2})
system.err.duplicate_name=Duplicate child name not allowed: {0}
system.err.property_not_set=\u5c1a\u672a\u8bbe\u7f6e\u5c5e\u6027 ''{0}''\uff1a{1} ({2})
system.err.duplicate_name=\u4e0d\u5141\u8bb8\u91cd\u590d\u7684\u5b50\u540d\u79f0\uff1a{0}
# Bootstrap configuration check messages
system.config_check.warn.dir_root=The Alfresco ''dir.root'' property is set to a relative path ''{0}''. ''dir.root'' should be overridden to point to a specific folder.
system.config_check.msg.dir_root=The Alfresco root data directory (''dir.root'') is: {0}
system.config_check.err.indexes.duplicate_root_node=The store ''{0}'' has a duplicate root node entry.
system.config_check.err.missing_index=CONTENT INTEGRITY ERROR: Indexes not found for {0} stores.
system.config_check.err.missing_content=CONTENT INTEGRITY ERROR: System content not found in content store.
system.config_check.err.fix_dir_root=Ensure that the ''dir.root'' property is pointing to the correct data location.
system.config_check.msg.howto_index_recover=You may set 'index.recovery.mode=FULL' if you need to rebuild the indexes.
system.config_check.warn.starting_with_errors=Alfresco is starting with errors.
system.config_check.warn.dir_root=Alfresco ''dir.root'' \u5c5e\u6027\u8bbe\u7f6e\u4e3a\u76f8\u5bf9\u8def\u5f84 ''{0}''\u3002 \u5e94\u8986\u76d6 ''dir.root'' \u4ee5\u6307\u5411\u7279\u5b9a\u6587\u4ef6\u5939\u3002
system.config_check.msg.dir_root=Alfresco \u6839\u6570\u636e\u76ee\u5f55 (''dir.root'') \u4e3a\uff1a{0}
system.config_check.err.indexes.duplicate_root_node=\u5e93 ''{0}'' \u6709\u4e00\u4e2a\u91cd\u590d\u7684\u6839\u8282\u70b9\u6761\u76ee\u3002
system.config_check.err.missing_index=\u5185\u5bb9\u5b8c\u6574\u6027\u9519\u8bef\uff1a\u672a\u627e\u5230 {0} \u4e2a\u5e93\u7684\u7d22\u5f15\u3002
system.config_check.err.missing_content=\u5185\u5bb9\u5b8c\u6574\u6027\u9519\u8bef\uff1a\u5185\u5bb9\u5e93\u4e2d\u672a\u627e\u5230\u7cfb\u7edf\u5185\u5bb9\u3002
system.config_check.err.fix_dir_root=\u8bf7\u786e\u4fdd\u201cdir.root\u201d\u5c5e\u6027\u6307\u5411\u6b63\u786e\u7684\u6570\u636e\u4f4d\u7f6e\u3002
system.config_check.msg.howto_index_recover=\u5982\u679c\u9700\u8981\u91cd\u5efa\u7d22\u5f15\uff0c\u53ef\u4ee5\u8bbe\u7f6e\u201cindex.recovery.mode=FULL\u201d\u3002
system.config_check.warn.starting_with_errors=Alfresco \u542f\u52a8\u65f6\u51fa\u9519\u3002
# Schema comparator messages
# Log messages...
system.schema_comp.debug.no_ref_file=No reference schema file, expected: {0}
system.schema_comp.debug.time_taken=Schema validation took {0} ms
system.schema_comp.info.all_ok=Compared database schema with reference schema (all OK): {0}
system.schema_comp.warn.problems_found=Schema validation found {0} potential problems, results written to: {1}
system.schema_comp.debug.no_ref_file=\u65e0\u5f15\u7528\u67b6\u6784\u6587\u4ef6\uff1b\u5e94\u8be5\u6709\uff1a{0}
system.schema_comp.debug.time_taken=\u67b6\u6784\u9a8c\u8bc1\u4f7f\u7528\u4e86 {0} ms
system.schema_comp.info.all_ok=\u5df2\u5c06\u6570\u636e\u5e93\u67b6\u6784\u4e0e\u5f15\u7528\u67b6\u6784\u8fdb\u884c\u6bd4\u8f83\uff08\u4e00\u5207\u6b63\u5e38\uff09\uff1a{0}
system.schema_comp.warn.problems_found=\u67b6\u6784\u9a8c\u8bc1\u53d1\u73b0\u4e86 {0} \u4e2a\u6f5c\u5728\u7684\u95ee\u9898\uff0c\u5e76\u4e14\u5df2\u5c06\u7ed3\u679c\u5199\u5165\uff1a{1}
# Generic differencing, validation and redundancy messages...
system.schema_comp.diff=Difference: expected {0} {1}="{2}", but was {3}="{4}"
system.schema_comp.diff.ref_only=Difference: missing {0} from database, expected at path: {1}
system.schema_comp.diff.target_only=Difference: unexpected {0} found in database with path: {1}
system.schema_comp.redundant_obj=Redundancy: {0} items matching {1}, matches: {2}
system.schema_comp.redundant_obj.many_matches={0} redundant items? reference: {1}, matches: {2} and {3} more...
system.schema_comp.validation=Validation: {0} {1}="{2}" fails to match rule: {3}
system.schema_comp.diff=\u533a\u522b\uff1a\u672c\u5e94\u4e3a {0} {1}="{2}"\uff0c\u5b9e\u9645\u4e3a {3}="{4}"
system.schema_comp.diff.ref_only=\u533a\u522b\uff1a\u6570\u636e\u5e93\u4e2d\u7f3a\u5c11 {0}\uff1b\u672c\u5e94\u4f4d\u4e8e\u4ee5\u4e0b\u8def\u5f84\uff1a{1}
system.schema_comp.diff.target_only=\u533a\u522b\uff1a\u6570\u636e\u5e93\u4e2d\u4ee5\u4e0b\u8def\u5f84\u5185\u627e\u5230\u4e86\u4e0d\u5e94\u5b58\u5728\u7684 {0}\uff1a{1}
system.schema_comp.redundant_obj=\u5197\u4f59\uff1a{0} \u9879\u5339\u914d {1}\uff0c\u5339\u914d\u9879\u6570\u4e3a\uff1a{2}
system.schema_comp.redundant_obj.many_matches=\u662f\u5426\u6709 {0} \u4e2a\u5197\u4f59\u9879\uff1f \u53c2\u8003\uff1a{1}\uff0c\u5339\u914d\u9879\u6570\uff1a\u8fd8\u6709 {2} \u548c {3} \u4e2a...
system.schema_comp.validation=\u9a8c\u8bc1\uff1a{0} {1}="{2}" \u4e0d\u5339\u914d\u89c4\u5219\uff1a{3}
# Specific validator (implementations) messages...
system.schema_comp.name_validator=name must match pattern ''{0}''
system.schema_comp.schema_version_validator=version must be at least ''{0}''
system.schema_comp.name_validator=\u540d\u79f0\u5fc5\u987b\u5339\u914d\u6a21\u5f0f ''{0}''
system.schema_comp.schema_version_validator=\u7248\u672c\u5fc5\u987b\u81f3\u5c11\u4e3a ''{0}''
# OpenOffice
system.openoffice.info.connection_verified=The connection to OpenOffice has been established.
system.openoffice.err.connection_failed=An initial OpenOffice connection could not be established.
system.openoffice.err.connection_lost=The OpenOffice connection has been lost.
system.openoffice.err.connection_remade=The OpenOffice connection was re-established.
system.openoffice.info.connection_verified=\u5df2\u5efa\u7acb\u4e86\u4e0e OpenOffice \u7684\u8fde\u63a5\u3002
system.openoffice.err.connection_failed=\u65e0\u6cd5\u5efa\u7acb\u521d\u59cb OpenOffice \u8fde\u63a5\u3002
system.openoffice.err.connection_lost=OpenOffice \u8fde\u63a5\u5df2\u4e22\u5931\u3002
system.openoffice.err.connection_remade=\u5df2\u91cd\u65b0\u5efa\u7acb\u4e86 OpenOffice \u8fde\u63a5\u3002
# Locks
system.locks.err.failed_to_acquire_lock=Failed to get lock ''{0}'' using token ''{1}''.
system.locks.err.lock_resource_missing=Failed to manipulate lock ''{0}'' using token ''{1}''. The lock resource no longer exists.
system.locks.err.lock_update_count=Failed to update lock ''{0}'' using token ''{1}''. {2} locks were updated when {3} should have been.
system.locks.err.failed_to_release_lock=Failed to release lock ''{0}'' using token ''{1}''. The lock has expired and been taken by another process.
system.locks.err.excl_lock_exists=Failed to get lock ''{0}'' using token ''{1}''. An exclusive lock exists: {2}
system.locks.err.failed_to_acquire_lock=\u4f7f\u7528\u4ee4\u724c ''{1}'' \u83b7\u53d6\u9501\u5b9a ''{0}'' \u5931\u8d25\u3002
system.locks.err.lock_resource_missing=\u4f7f\u7528\u4ee4\u724c ''{1}'' \u5904\u7406\u9501\u5b9a ''{0}'' \u5931\u8d25\u3002 \u9501\u5b9a\u8d44\u6e90\u4e0d\u518d\u5b58\u5728\u3002
system.locks.err.lock_update_count=\u4f7f\u7528\u4ee4\u724c ''{1}'' \u66f4\u65b0\u9501\u5b9a ''{0}'' \u5931\u8d25\u3002 \u66f4\u65b0\u4e86 {2} \u4e2a\u9501\u5b9a\uff0c\u4f46\u662f\u5e94\u66f4\u65b0\u4e86 {3} \u4e2a\u3002
system.locks.err.failed_to_release_lock=\u4f7f\u7528\u4ee4\u724c ''{1}'' \u91ca\u653e\u9501\u5b9a ''{0}'' \u5931\u8d25\u3002 \u9501\u5b9a\u5df2\u5230\u671f\uff0c\u5e76\u4e14\u5df2\u88ab\u53e6\u4e00\u4e2a\u8fdb\u7a0b\u63a5\u7ba1\u3002
system.locks.err.excl_lock_exists=\u4f7f\u7528\u4ee4\u724c ''{1}'' \u83b7\u53d6\u9501\u5b9a ''{0}'' \u5931\u8d25\u3002 \u5b58\u5728\u72ec\u5360\u9501\u5b9a\uff1a{2}
# Multi-Tenant
system.mt.warn.upgrade_mt_admin_context=Please update your alfresco/extension/mt/mt-admin-context.xml (to use latest alfresco/extension/mt/mt-admin-context.xml.sample).
system.mt.disabled=Tenant is disabled: {0}
system.mt.warn.upgrade_mt_admin_context=\u8bf7\u66f4\u65b0\u60a8\u7684 alfresco/extension/mt/mt-admin-context.xml\uff08\u4ee5\u4f7f\u7528\u6700\u65b0\u7684 alfresco/extension/mt/mt-admin-context.xml.sample\uff09\u3002
system.mt.disabled=\u5df2\u7981\u7528\u79df\u6237\uff1a{0}
# Usages
system.usage.err.no_txn=RepoUsageComponent must be called in a transaction.
system.usage.err.no_txn_readwrite=RepoUsageComponent must be called in a read-write transaction.
system.usage.err.no_txn=\u5fc5\u987b\u5728\u4e8b\u52a1\u4e2d\u8c03\u7528 RepoUsageComponent\u3002
system.usage.err.no_txn_readwrite=\u5fc5\u987b\u5728\u8bfb\u5199\u4e8b\u52a1\u4e2d\u8c03\u7528 RepoUsageComponent\u3002
# START TRANSLATION
system.usage.warn.limit_users_approached=\u5373\u5C06\u8FBE\u5230\u5141\u8BB8\u7684\u7528\u6237\u9650\u989D {0}\u3002 \u7CFB\u7EDF\u4E2D\u6709 {1} \u4F4D\u7528\u6237\u3002
system.usage.warn.limit_users_reached=\u5DF2\u7ECF\u8FBE\u5230\u5141\u8BB8\u7684\u7528\u6237\u9650\u989D {0}\u3002 \u7CFB\u7EDF\u4E2D\u6709 {1} \u4F4D\u7528\u6237\u3002
system.usage.warn.limit_documents_approached=\u5373\u5C06\u8FBE\u5230\u5141\u8BB8\u7684\u5185\u5BB9\u9650\u989D {0}\u3002 \u7CFB\u7EDF\u4E2D\u6709 {1} \u4E2A\u5185\u5BB9\u5BF9\u8C61\u3002
system.usage.warn.limit_documents_reached=\u5DF2\u7ECF\u8FBE\u5230\u5141\u8BB8\u7684\u5185\u5BB9\u9650\u989D {0}\u3002 \u7CFB\u7EDF\u4E2D\u6709 {1} \u4E2A\u5185\u5BB9\u5BF9\u8C61\u3002
system.usage.err.limit_users_exceeded=\u5DF2\u7ECF\u8D85\u8FC7\u5141\u8BB8\u7684\u7528\u6237\u9650\u989D {0}\u3002 \u7CFB\u7EDF\u4E2D\u76EE\u524D\u6709 {1} \u4F4D\u7528\u6237\u3002
system.usage.err.limit_users_exceeded_verbose=\u5DF2\u7ECF\u8D85\u8FC7\u5141\u8BB8\u7684\u7528\u6237\u9650\u989D {0}\u3002 \u6DFB\u52A0\u7684\u7528\u6237\u6570\uFF1A{1}
system.usage.err.limit_documents_exceeded=\u5DF2\u7ECF\u8D85\u8FC7\u5141\u8BB8\u7684\u5185\u5BB9\u9650\u989D {0}\u3002 \u7CFB\u7EDF\u4E2D\u76EE\u524D\u6709 {1} \u4E2A\u5185\u5BB9\u5BF9\u8C61\u3002
system.usage.err.limit_license_expiring=Alfresco \u8BB8\u53EF\u8BC1\u5C06\u5728 {0} \u5929\u540E\u5230\u671F\u3002
system.usage.err.limit_license_expired=Alfresco \u8BB8\u53EF\u8BC1\u5DF2\u5230\u671F\u3002
system.usage.warn.limit_users_approached=\u5373\u5c06\u8fbe\u5230\u5141\u8bb8\u7684\u7528\u6237\u9650\u989d {0}\u3002 \u7cfb\u7edf\u4e2d\u6709 {1} \u4f4d\u7528\u6237\u3002
system.usage.warn.limit_users_reached=\u5df2\u7ecf\u8fbe\u5230\u5141\u8bb8\u7684\u7528\u6237\u9650\u989d {0}\u3002 \u7cfb\u7edf\u4e2d\u6709 {1} \u4f4d\u7528\u6237\u3002
system.usage.warn.limit_documents_approached=\u5373\u5c06\u8fbe\u5230\u5141\u8bb8\u7684\u5185\u5bb9\u9650\u989d {0}\u3002 \u7cfb\u7edf\u4e2d\u6709 {1} \u4e2a\u5185\u5bb9\u5bf9\u8c61\u3002
system.usage.warn.limit_documents_reached=\u5df2\u7ecf\u8fbe\u5230\u5141\u8bb8\u7684\u5185\u5bb9\u9650\u989d {0}\u3002 \u7cfb\u7edf\u4e2d\u6709 {1} \u4e2a\u5185\u5bb9\u5bf9\u8c61\u3002
system.usage.err.limit_users_exceeded=\u5df2\u7ecf\u8d85\u8fc7\u5141\u8bb8\u7684\u7528\u6237\u9650\u989d {0}\u3002 \u7cfb\u7edf\u4e2d\u76ee\u524d\u6709 {1} \u4f4d\u7528\u6237\u3002
system.usage.err.limit_users_exceeded_verbose=\u5df2\u7ecf\u8d85\u8fc7\u5141\u8bb8\u7684\u7528\u6237\u9650\u989d {0}\u3002 \u6dfb\u52a0\u7684\u7528\u6237\u6570\uff1a{1}
system.usage.err.limit_documents_exceeded=\u5df2\u7ecf\u8d85\u8fc7\u5141\u8bb8\u7684\u5185\u5bb9\u9650\u989d {0}\u3002 \u7cfb\u7edf\u4e2d\u76ee\u524d\u6709 {1} \u4e2a\u5185\u5bb9\u5bf9\u8c61\u3002
system.usage.err.limit_license_expiring=Alfresco \u8bb8\u53ef\u8bc1\u5c06\u5728 {0} \u5929\u540e\u5230\u671f\u3002
system.usage.err.limit_license_expired=Alfresco \u8bb8\u53ef\u8bc1\u5df2\u5230\u671f\u3002
# License
system.license.msg.unknown=\u672A\u77E5
system.license.msg.unlimited=\u4E0D\u53D7\u9650\u5236
system.license.msg.does_not_expire=\u4E0D\u4F1A\u5230\u671F
system.license.msg.reloaded=Alfresco \u8BB8\u53EF\u8BC1\u5DF2\u88AB\u91CD\u8F7D\u3002
system.license.err.reloadFailed=\u91CD\u8F7D\u8BB8\u53EF\u8BC1\u5931\u8D25\uFF1A{0}
system.license.msg.unknown=\u672a\u77e5
system.license.msg.unlimited=\u4e0d\u53d7\u9650\u5236
system.license.msg.does_not_expire=\u4e0d\u4f1a\u5230\u671f
system.license.msg.reloaded=Alfresco \u8bb8\u53ef\u8bc1\u5df2\u88ab\u91cd\u8f7d\u3002
system.license.err.reloadFailed=\u91cd\u8f7d\u8bb8\u53ef\u8bc1\u5931\u8d25\uff1a{0}
# END TRANSLATION
# Startup message
system.info.startup=Alfresco started ({0}{1}{2}). Current version: {3} schema {4}. Originally installed version: {5} schema {6}.
system.warn.readonly=Alfresco is currently in read-only mode. Please check your license.
system.info.startup=Alfresco \u5df2\u542f\u52a8 ({0}{1}{2})\u3002 \u5f53\u524d\u7248\u672c\uff1a{3} \u67b6\u6784 {4}\u3002 \u6700\u521d\u5b89\u88c5\u7684\u7248\u672c\uff1a{5} \u67b6\u6784 {6}\u3002
system.warn.readonly=Alfresco \u5f53\u524d\u5904\u4e8e\u53ea\u8bfb\u6a21\u5f0f\u3002 \u8bf7\u68c0\u67e5\u60a8\u7684\u8bb8\u53ef\u8bc1\u3002

View File

@@ -1,88 +1,77 @@
#translatable.ftl
templates.translatable.translatable=\u53EF\u7FFB\u8BD1\uFF1A
templates.translatable.yes=\u662F
templates.translatable.translatable=\u53ef\u7ffb\u8bd1\uff1a
templates.translatable.yes=\u662f
templates.translatable.no=\u5426
templates.translatable.no_document_found=\u672A\u627E\u5230\u4EFB\u4F55\u6587\u6863
templates.translatable.no_document_found=\u672a\u627e\u5230\u4efb\u4f55\u6587\u6863
#show_audit.ftl
templates.show_audit.current_document_audit_info=\u5F53\u524D\u6587\u6863\u5BA1\u6838\u4FE1\u606F
templates.show_audit.name=\u540D\u79F0\uFF1A
templates.show_audit.user_name=\u7528\u6237\u540D
templates.show_audit.application=\u5E94\u7528\u7A0B\u5E8F
templates.show_audit.service=\u670D\u52A1
templates.show_audit.method=\u65B9\u6CD5
templates.show_audit.timestamp=\u65F6\u95F4\u6233\u8BB0
templates.show_audit.values=\u5BA1\u6838\u6761\u76EE\u503C
templates.show_audit.failed=\u5931\u8D25
templates.show_audit.message=\u6D88\u606F
templates.show_audit.arg_1=\u53C2\u6570 1
templates.show_audit.arg_2=\u53C2\u6570 2
templates.show_audit.arg_3=\u53C2\u6570 3
templates.show_audit.arg_4=\u53C2\u6570 4
templates.show_audit.arg_5=\u53C2\u6570 5
templates.show_audit.return=\u8FD4\u56DE
templates.show_audit.thowable=\u53EF\u5F15\u53D1
templates.show_audit.tx=TX
templates.show_audit.current_space_audit_info=\u5F53\u524D\u7A7A\u95F4\u5BA1\u6838\u4FE1\u606F\uFF1A
templates.show_audit.current_document_audit_info=\u5f53\u524d\u6587\u6863\u5ba1\u6838\u4fe1\u606f
templates.show_audit.name=\u540d\u79f0\uff1a
templates.show_audit.user_name=\u7528\u6237\u540d
templates.show_audit.application=\u5e94\u7528\u7a0b\u5e8f
templates.show_audit.method=\u65b9\u6cd5
templates.show_audit.timestamp=\u65f6\u95f4\u6233\u8bb0
templates.show_audit.values=\u5ba1\u6838\u6761\u76ee\u503c
templates.show_audit.current_space_audit_info=\u5f53\u524d\u7a7a\u95f4\u5ba1\u6838\u4fe1\u606f\uff1a
#recent_docs.ftl
templates.recent_docs.documents_created_or_modified_in_the_last_week=\u4E0A\u5468\u521B\u5EFA\u6216\u4FEE\u6539\u7684\u6587\u6863
templates.recent_docs.name=\u540D\u79F0
templates.recent_docs.created_date=\u521B\u5EFA\u65E5\u671F
templates.recent_docs.modified_date=\u4FEE\u6539\u65E5\u671F
templates.recent_docs.documents_created_or_modified_in_the_last_week=\u4e0a\u5468\u521b\u5efa\u6216\u4fee\u6539\u7684\u6587\u6863
templates.recent_docs.name=\u540d\u79f0
templates.recent_docs.created_date=\u521b\u5efa\u65e5\u671f
templates.recent_docs.modified_date=\u4fee\u6539\u65e5\u671f
#my_summary.ftl
templates.my_summary.name=\u540D\u79F0\uFF1A
templates.my_summary.user=\u7528\u6237\uFF1A
templates.my_summary.home_space_location=\u4E3B\u7A7A\u95F4\u4F4D\u7F6E\uFF1A
templates.my_summary.items_in_home_space=\u4E3B\u7A7A\u95F4\u4E2D\u7684\u9879\uFF1A
templates.my_summary.items_in_company_space=\u516C\u53F8\u7A7A\u95F4\u4E2D\u7684\u9879\uFF1A
templates.my_summary.name=\u540d\u79f0\uff1a
templates.my_summary.user=\u7528\u6237\uff1a
templates.my_summary.home_space_location=\u4e3b\u7a7a\u95f4\u4f4d\u7f6e\uff1a
templates.my_summary.items_in_home_space=\u4e3b\u7a7a\u95f4\u4e2d\u7684\u9879\uff1a
templates.my_summary.items_in_company_space=\u516c\u53f8\u7a7a\u95f4\u4e2d\u7684\u9879\uff1a
#my_docs.ftl
templates.my_docs.name=\u540D\u79F0
templates.my_docs.size=\u5927\u5C0F
templates.my_docs.modified.date=\u4FEE\u6539\u65E5\u671F
templates.my_docs.locked=\u5DF2\u9501\u5B9A
templates.my_docs.name=\u540d\u79f0
templates.my_docs.size=\u5927\u5c0f
templates.my_docs.modified.date=\u4fee\u6539\u65e5\u671f
templates.my_docs.locked=\u5df2\u9501\u5b9a
templates.my_docs.kb=KB
templates.my_docs.yes=\u662F
templates.my_docs.yes=\u662f
#localizable.ftl
templates.localizable.localisable=\u53EF\u672C\u5730\u5316\uFF1A
templates.localizable.yes=\u662F
templates.localizable.locale=\u533A\u57DF\u8BBE\u7F6E\uFF1A
templates.localizable.localisable=\u53ef\u672c\u5730\u5316\uff1a
templates.localizable.yes=\u662f
templates.localizable.locale=\u533a\u57df\u8bbe\u7f6e\uff1a
templates.localizable.no=\u5426
templates.localizable.no_document_found=\u672A\u627E\u5230\u4EFB\u4F55\u6587\u6863\uFF01
templates.localizable.no_document_found=\u672a\u627e\u5230\u4efb\u4f55\u6587\u6863\uff01
#general_example.ftl
templates.general_example.example_template_start======\u793A\u4F8B\u6A21\u677F\u5F00\u59CB=====
templates.general_example.company_home_space=\u516C\u53F8\u4E3B\u7A7A\u95F4\uFF1A
templates.general_example.my_home_space=\u6211\u7684\u4E3B\u7A7A\u95F4\uFF1A
templates.general_example.company_home_children_count=\u516C\u53F8\u4E3B\u7A7A\u95F4\u5B50\u7EA7\u8BA1\u6570\uFF1A
templates.general_example.company_home_first_child_node_name=\u516C\u53F8\u4E3B\u7A7A\u95F4\u7B2C\u4E00\u4E2A\u5B50\u8282\u70B9\u540D\u79F0\uFF1A
templates.general_example.current_document_name=\u5F53\u524D\u6587\u6863\u540D\u79F0\uFF1A
templates.general_example.current_space_name=\u5F53\u524D\u7A7A\u95F4\u540D\u79F0\uFF1A
templates.general_example.list_of_child_spaces_in_my_home_space=\u6211\u7684\u4E3B\u7A7A\u95F4\u4E2D\u7684\u5B50\u7A7A\u95F4\u5217\u8868\uFF1A
templates.general_example.path=\u8DEF\u5F84\uFF1A
templates.general_example.list_of_docs_in_my_home_space=\u6211\u7684\u4E3B\u7A7A\u95F4\u4E2D\u7684\u6587\u6863\u5217\u8868\uFF08\u4EC5\u5305\u542B\u6587\u672C\u7684\u5185\u5BB9\u76F4\u63A5\u663E\u793A\uFF0CJPG \u56FE\u50CF\u663E\u793A\u4E3A\u7F29\u7565\u56FE\uFF09\uFF1A
templates.general_example.assoc_example=Assoc \u793A\u4F8B\uFF1A
templates.general_example.example_template_end======\u793A\u4F8B\u6A21\u677F\u7ED3\u675F=====
templates.general_example.example_template_start======\u793a\u4f8b\u6a21\u677f\u5f00\u59cb=====
templates.general_example.company_home_space=\u516c\u53f8\u4e3b\u7a7a\u95f4\uff1a
templates.general_example.my_home_space=\u6211\u7684\u4e3b\u7a7a\u95f4\uff1a
templates.general_example.company_home_children_count=\u516c\u53f8\u4e3b\u7a7a\u95f4\u5b50\u7ea7\u8ba1\u6570\uff1a
templates.general_example.company_home_first_child_node_name=\u516c\u53f8\u4e3b\u7a7a\u95f4\u7b2c\u4e00\u4e2a\u5b50\u8282\u70b9\u540d\u79f0\uff1a
templates.general_example.current_document_name=\u5f53\u524d\u6587\u6863\u540d\u79f0\uff1a
templates.general_example.current_space_name=\u5f53\u524d\u7a7a\u95f4\u540d\u79f0\uff1a
templates.general_example.list_of_child_spaces_in_my_home_space=\u6211\u7684\u4e3b\u7a7a\u95f4\u4e2d\u7684\u5b50\u7a7a\u95f4\u5217\u8868\uff1a
templates.general_example.path=\u8def\u5f84\uff1a
templates.general_example.list_of_docs_in_my_home_space=\u6211\u7684\u4e3b\u7a7a\u95f4\u4e2d\u7684\u6587\u6863\u5217\u8868\uff08\u4ec5\u5305\u542b\u6587\u672c\u7684\u5185\u5bb9\u76f4\u63a5\u663e\u793a\uff0cJPG \u56fe\u50cf\u663e\u793a\u4e3a\u7f29\u7565\u56fe\uff09\uff1a
templates.general_example.assoc_example=Assoc \u793a\u4f8b\uff1a
templates.general_example.example_template_end======\u793a\u4f8b\u6a21\u677f\u7ed3\u675f=====
#doc_info.ftl
templates.doc_info.current_document_info=\u5F53\u524D\u6587\u6863\u4FE1\u606F\uFF1A
templates.doc_info.name=\u540D\u79F0\uFF1A
templates.doc_info.ref=\u5F15\u7528\uFF1A
templates.doc_info.type=\u7C7B\u578B\uFF1A
templates.doc_info.dbid=DBID\uFF1A
templates.doc_info.content_url=\u5185\u5BB9 URL\uFF1A
templates.doc_info.locked=\u5DF2\u9501\u5B9A\uFF1A
templates.doc_info.counter=\u8BA1\u6570\u5668\uFF1A
templates.doc_info.aspects=\u5207\u9762\uFF1A
templates.doc_info.assocs=Assoc\uFF1A
templates.doc_info.properties=\u5C5E\u6027\uFF1A
templates.doc_info.no_document_found=\u672A\u627E\u5230\u4EFB\u4F55\u6587\u6863\uFF01
templates.doc_info.current_document_info=\u5f53\u524d\u6587\u6863\u4fe1\u606f\uff1a
templates.doc_info.name=\u540d\u79f0\uff1a
templates.doc_info.ref=\u5f15\u7528\uff1a
templates.doc_info.type=\u7c7b\u578b\uff1a
templates.doc_info.dbid=DBID\uff1a
templates.doc_info.content_url=\u5185\u5bb9 URL\uff1a
templates.doc_info.locked=\u5df2\u9501\u5b9a\uff1a
templates.doc_info.counter=\u8ba1\u6570\u5668\uff1a
templates.doc_info.aspects=\u5207\u9762\uff1a
templates.doc_info.assocs=Assoc\uff1a
templates.doc_info.properties=\u5c5e\u6027\uff1a
templates.doc_info.no_document_found=\u672a\u627e\u5230\u4efb\u4f55\u6587\u6863\uff01
#invite_user_email.ftl
templates.invite_user_email.invited_to_space={1} \u5DF2\u9080\u8BF7\u60A8\u8BBF\u95EE ''{0}''
templates.invite_user_email.role=\u60A8\u7684\u89D2\u8272\u4E3A\uFF1A{0}
templates.invite_user_email.you_can_view_the_space=\u60A8\u53EF\u901A\u8FC7 Alfresco \u5BA2\u6237\u7AEF\u67E5\u770B\u6B64\u7A7A\u95F4
templates.invite_user_email.regards=\u987A\u795D\u5546\u797A
templates.invite_user_email.invited_to_space={1} \u5df2\u9080\u8bf7\u60a8\u8bbf\u95ee ''{0}''
templates.invite_user_email.role=\u60a8\u7684\u89d2\u8272\u4e3a\uff1a{0}
templates.invite_user_email.you_can_view_the_space=\u60a8\u53ef\u901a\u8fc7 Alfresco \u5ba2\u6237\u7aef\u67e5\u770b\u6b64\u7a7a\u95f4
templates.invite_user_email.regards=\u987a\u795d\u5546\u797a

View File

@@ -687,14 +687,14 @@ public class TransformerDebug
if (mimetypeService == null)
{
sb.append(mimetype);
sb.append(' ');
}
else
{
String mimetypeExt = mimetypeService.getExtension(mimetype);
sb.append(mimetypeExt);
sb.append(spaces(5-mimetypeExt.length())); // Pad to normal max ext (4) plus 1
sb.append(spaces(4-mimetypeExt.length())); // Pad to normal max ext (4)
}
sb.append(' ');
return sb.toString();
}

View File

@@ -182,8 +182,10 @@ public abstract class AbstractImageMagickContentTransformerWorker extends Conten
}
// Add limited support (so lots of other transforms are not supported) for PDF to PNG. An ALF-14303 workaround.
// Will only be used as part of failover transformer.PdfToImage
if (sourceMimetype.equals(MimetypeMap.MIMETYPE_PDF) && targetMimetype.equals(MimetypeMap.MIMETYPE_IMAGE_PNG))
// Will only be used as part of failover transformer.PdfToImage. Note .ai is the same format as .pdf
if ( (MimetypeMap.MIMETYPE_PDF.equals(sourceMimetype) ||
MimetypeMap.MIMETYPE_APPLICATION_ILLUSTRATOR.equals(sourceMimetype)) &&
MimetypeMap.MIMETYPE_IMAGE_PNG.equals(targetMimetype))
{
return true; // ALF-14303 workaround
}

View File

@@ -25,7 +25,6 @@ import javax.transaction.UserTransaction;
import junit.framework.TestCase;
import org.alfresco.model.ContentModel;
import org.alfresco.repo.avm.util.HrefBearingRequestPathNameMatcher;
import org.alfresco.repo.dictionary.DictionaryDAO;
import org.alfresco.repo.dictionary.M2Model;
import org.alfresco.repo.node.BaseNodeServiceTest;