presentation_en.properties 172 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237
  1. addedit.channel.id.zero=Channel not found[Id={0}]
  2. addedit.channel.notFound=Channel not found[Id={0}]
  3. addedit.channel.view.not.found=View or distribution channel is not assigned a view not found!
  4. addedit.class.notFound=the system cannot find the specified type![ID={0}]
  5. addedit.doc.id.zero=Did not find the document [Id = {0}]
  6. addedit.oobj.not.found=The user default store channel cannot be found!
  7. addedit.paraWrong=Parameter error
  8. addedit.view.notFound=The view [Id={0]]cannot be found
  9. addedit_dowith.failed.for.wrongAttri=The attribute value is incorrect.Failed to save Keyword!
  10. addedit_dowith.locked=Keyword is the user [{0}] locked!
  11. addedit_dowith.obj.not.found=Cannot find the specified keyword[ID={0}]!
  12. addedit_include.exchange.error=Conversion Appendixs collection object as an XML string failed!
  13. advance_search.jsp.label.runtimeexception=metaviewdata_query.jsp runtime exception!
  14. advance_search.runExce=metaviewdata_query.jspruntime exception!
  15. app_of_views.noRight=You have no right to run the check!
  16. attachPhotoProps_deit.jsp.noiddoc=cannot find ID {0}
  17. attachPhotoProps_edit.jsp.noidpicclassic=cannot find the picture categoryID{0}
  18. attachPhotoProps_edit.jsp.novalidpicclassicid=Do not import valid picture classification ID!
  19. auth.button.addgroup=Select User Group
  20. auth.button.addrole=Selelct Role
  21. auth.button.adduser=Select User
  22. auth.button.dropall=Delete All
  23. auth.button.saveright=Save
  24. auth.label.addedit=Create/Modify Permissions
  25. auth.label.channel=Channel
  26. auth.label.desc=Permission Description
  27. auth.label.document=Document
  28. auth.label.doright=
  29. auth.label.error=Error to interactive with server
  30. auth.label.flow=Workflow
  31. auth.label.group=User Group
  32. auth.label.grouplist=User Group
  33. auth.label.index=Permission Index
  34. auth.label.info=Permission Info
  35. auth.label.list=Permission List
  36. auth.label.name=Permission Name
  37. auth.label.noproppermission=The current user [{0}] no system properties access for setting!
  38. auth.label.nopropperssion="The current user [ {0} ] has no permission to set."
  39. auth.label.noviewperssion="It is forbidden to view or set permission in new mode. Type : [{0}], ID : [{1}]."
  40. auth.label.objtype=Object Type
  41. auth.label.operatechannel=Channel
  42. auth.label.operatedocument=Document
  43. auth.label.operateflow=Workflow
  44. auth.label.operatesite=Site
  45. auth.label.operatesysattr=System
  46. auth.label.operatetemplate=Template
  47. auth.label.register=User Register
  48. auth.label.rightset=Permission Settings
  49. auth.label.role=Role
  50. auth.label.rolelist=Roles
  51. auth.label.site=Site
  52. auth.label.sysdefined=System Defined Permissions
  53. auth.label.system=System
  54. auth.label.template=Template
  55. auth.label.usergroup=User Group
  56. auth.label.userlist=User
  57. auth.label.viewoperset=Can visit operational Settings
  58. auth.tip.add=Create Permissions
  59. auth.tip.addgroup=Select User Group
  60. auth.tip.addrole=Select Role
  61. auth.tip.adduser=Select User
  62. auth.tip.drop=Delete Selected Permissions
  63. auth.tip.dropall=Del All Settings
  64. auth.tip.refresh=Refresh Current Page
  65. auth.tip.return=Return
  66. auth.tip.saveright=Save
  67. base_parameter_set.empty=Resource sample object is null
  68. base_parameter_set.id.zero=No Widget object[Id={0}] is found
  69. base_parameter_set.noeffect=No valid widgetInstanceId is imported.
  70. basechannel.label.default_of_agrument=Default
  71. basechannel.label.name_of_agrument=Parameter Name
  72. basechannel.label.noset_of_agrument=<font color=GRAY>Not Set</font>
  73. basechannel.label.select_nest_of_agrument=Choose inner template...
  74. basechannel.label.template_argument=Template Arguments List
  75. basechannel.label.template_of_agrument=Template
  76. basechannel.label.title_of_agrument=Name
  77. basechannel.label.value_of_agrument=Parameter Values
  78. basechannel.tip.drop_of_argument=Reset Parameter Settings
  79. basechannel.tip.refresh_of_argument=Refresh this Page
  80. bonus_stat.get=The bonus(£¤)
  81. bonus_stat.month=Month
  82. bonus_stat.sent=The amount of published document
  83. bookmark.button.add=Create Bookmark
  84. bookmark.button.addchildmarkkind=Create Subfolder
  85. bookmark.button.cancelshared=Cancel Bookmark Share
  86. bookmark.button.cancelsharedmarkkind=Cancel Folder Share
  87. bookmark.button.drop=Delete Bookmark
  88. bookmark.button.dropmarkkind=Delete Folder
  89. bookmark.button.editmarkkind=Modify Folder
  90. bookmark.button.move=Move Bookmark
  91. bookmark.button.share=Share Bookmark
  92. bookmark.button.sharemarkkind=Share Current Folder
  93. bookmark.button.viewshared=View Shared Bookmark
  94. bookmark.button.viewsharedmarkkind=View Share Folder
  95. bookmark.label.addedit=Create/Modify Bookmark
  96. bookmark.label.isshared=Shared
  97. bookmark.label.list=Bookmarks List
  98. bookmark.label.list_of_shared=Shared Bookmarks List
  99. bookmark.label.markkindfolder=Bookmark Folder
  100. bookmark.label.name=Name
  101. bookmark.label.textname=Name
  102. bookmark.label.textroot=My Favorites
  103. bookmark.label.url=URL
  104. bookmark.tip.add=Create Bookmark
  105. bookmark.tip.addchildmarkkind=Create Bookmark Folder
  106. bookmark.tip.cancelshared=Cancel Bookmark Share
  107. bookmark.tip.cancelsharedmarkkind=Cancel Current Folder Share
  108. bookmark.tip.drop=Delete Bookmark
  109. bookmark.tip.dropmarkkind=Delete Current Bookmark Folder
  110. bookmark.tip.editmarkkind=Modify Current Folder
  111. bookmark.tip.move=Move Bookmark
  112. bookmark.tip.refresh=Delete Bookmark
  113. bookmark.tip.return=Return
  114. bookmark.tip.share=Share Bookmark
  115. bookmark.tip.sharedmarkkind=Share Folder
  116. bookmark.tip.viewshared=View My Shared Bookmark
  117. bookmark.tip.viewsharedmarkkind=View Your Shared Bookmark Folder
  118. change_doclevel.jsp.getdoclevelex=Exception occur when getting the document security level
  119. change_status.label.document=Document
  120. change_status.label.photo=Picture
  121. channel.button.addchannel=Create Channel
  122. channel.button.allpublish=Completely Publish
  123. channel.button.contentlink=Hot Words
  124. channel.button.custompage=Customize Page
  125. channel.button.dispenseset=Distribution Settings
  126. channel.button.drop=Delete
  127. channel.button.edit=Modify
  128. channel.button.expandfield=Extended Field
  129. channel.button.export=Export Channel
  130. channel.button.import=Import Channel
  131. channel.button.increasepublish=Increased Publish
  132. channel.button.modify=Modify
  133. channel.button.move=Move
  134. channel.button.preview=Preview
  135. channel.button.property=Properties
  136. channel.button.publishproperty=Publish Properties
  137. channel.button.quitedrop=Completely Delete
  138. channel.button.recycle=Recycle Bin
  139. channel.button.replacecontent=Replacement
  140. channel.button.restore=Restore
  141. channel.button.setright=Set Permissions
  142. channel.button.similar=Analogously Create
  143. channel.button.templateargument=Template Variable
  144. channel.button.vindicate=Channel Maintenance
  145. channel.findbyid.channeldelete=The current channel has been deleted.
  146. channel.findbyid.runtimeexception=Run-time exception.
  147. channel.label.addedit=Add/Modify Channel
  148. channel.label.argumentaddedit=Add/Modify Template variable
  149. channel.label.basechannelrestore=Channel Restore Page
  150. channel.label.baseinfo=Base Info
  151. channel.label.belongsite=Site
  152. channel.label.channelid=Channel ID
  153. channel.label.channelselect=Select Channel
  154. channel.label.chnllinkintro=(Linked Channel Link Address)
  155. channel.label.chnlname=Unique Name
  156. channel.label.chnlnameintro=(Channel Unique Name, Cannot be diplex in same Site)
  157. channel.label.chnlpathintro=(Channel Saving Path)
  158. channel.label.content_of_agrument=Content
  159. channel.label.content_of_replace=Content
  160. channel.label.contentaddpage=Content Create and Edit page
  161. channel.label.contentlistpage=Content List Page
  162. channel.label.contentviewpage=Content View Page
  163. channel.label.createfrom=Channel Analogously Create
  164. channel.label.creator=Creator
  165. channel.label.crtime=Created
  166. channel.label.cruser=Creator
  167. channel.label.customform=Customized Infoview
  168. channel.label.custompage=Customize Page
  169. channel.label.datapath=Local Path
  170. channel.label.deliveryset=Distribution Settings
  171. channel.label.detailtemplate=Content Template
  172. channel.label.direction=Position
  173. channel.label.endtime=End Time
  174. channel.label.explain=Tips: Click to enter Create/Modify Template page
  175. channel.label.explorertitle_uploadsureform=Upload Shusheng Form File
  176. channel.label.export=Channel Export
  177. channel.label.gotodefault=Reset to Default Value
  178. channel.label.id=Channel ID
  179. channel.label.import=Channel Import
  180. channel.label.intervaltime=Interval Time
  181. channel.label.linkurl=URL
  182. channel.label.move=Move Channel
  183. channel.label.move_to_channel=Move to Channel
  184. channel.label.move_to_site=Move to Current Site
  185. channel.label.mutiaday=Multi-Run a day
  186. channel.label.name=Channel Name
  187. channel.label.none=None
  188. channel.label.onceaday=Run once a day
  189. channel.label.orderby=Order By
  190. channel.label.outlinetemplate=Outline Template
  191. channel.label.parent=Parent Channel
  192. channel.label.previous=Previous Channel
  193. channel.label.publishname=Publish Name
  194. channel.label.publishset=Publish Settings
  195. channel.label.relatedimage=Related Photo
  196. channel.label.replaceaddedit=Create/Modify Replacement
  197. channel.label.replacelist=Replacement List
  198. channel.label.replacemanage=Replacement Admin
  199. channel.label.restore=Restore
  200. channel.label.restorechannel=Restore Channel
  201. channel.label.restoresite=Restore Selected Site(s)
  202. channel.label.runtime=Execution Time
  203. channel.label.select_of_basechannel=Select Site/Channel
  204. channel.label.showname=Show Name
  205. channel.label.starttime=Start Time
  206. channel.label.sureform=Infoview Template
  207. channel.label.title_of_replace=Title
  208. channel.label.type=Channel Type
  209. channel.label.website=Site
  210. channel.label.websiteId=ID
  211. channel.label.where=Search Condition
  212. channel.label.workflowset=Workflow
  213. channel.message.allowpublish=Allow to Publish This Channel
  214. channel.message.chnllinkintro=(Linked Channel's Link address)
  215. channel.message.chnlnameintro=(Channel Unique Name, Unique in it's Site)
  216. channel.message.chnlpathintro=(Channel Saving Path)
  217. channel.message.chnlsureformintro=(infoview template that postfix is sef)
  218. channel.message.considerright=Consider channel Permissions while flowing document
  219. channel.message.createfromwait=Executing Channel Analogously Creation,Please Wait........
  220. channel.message.custompagealert=Noted: Customize Page must be the programming page of current WCM APP
  221. channel.message.datapathintro=Channel Show Name, all chars accepted
  222. channel.message.export=Exporting Channel, please wait........
  223. channel.message.extendfield=Reset the Extended Fields of all sub-channels, inherit from parent channel
  224. channel.message.extendparentset=Inherited Extended Field Setting
  225. channel.message.importwait=Importing Channel, please wait......
  226. channel.message.justusewhere=Only Search with Search Condition
  227. channel.message.linkchanneldoclist=Linked Channel Cannot manage Document
  228. channel.message.managenode=Only as managed node, no data
  229. channel.message.movewait=Moving Channel, please Wait........
  230. channel.message.shownameintro=(Channel Show Name, All Chars Available)
  231. channel.message.viewpreview=Click to View Preview Page
  232. channel.message.wait_of_basechannel=Executing, please wait........
  233. channel.object.not.found=Find no ID for {0} column
  234. channel.publish.propublish=Advanced Publish
  235. channel.publish.publishoption=Advanced Publish
  236. channel.publish.publishoption1=Advanced Publish
  237. channel.publish.quickpublish=Fast Publish
  238. channel.select.html.selectchnl=Select Channel
  239. channel.tip.add_of_replace=Create Replaced Content
  240. channel.tip.addchannel=Create Channel in Current Channel
  241. channel.tip.allpublish=Completely Publish to Current Channel
  242. channel.tip.drop=Delete Current Channel
  243. channel.tip.drop_of_replace=Delete Selected Replacement
  244. channel.tip.edit=Edit Site Properties
  245. channel.tip.export=Export Current Channel
  246. channel.tip.import=Import Channel
  247. channel.tip.increasepublish=Increased Publish Current Channel
  248. channel.tip.modify=Edit Channel Properties
  249. channel.tip.move=Remove Current Channel
  250. channel.tip.preview=Preview Publish Effect
  251. channel.tip.property=Show Channel Properties
  252. channel.tip.propublish=Advanced Publish Settings
  253. channel.tip.publishoption=Advanced Settings for Publishing
  254. channel.tip.quitedrop=Completely delete selected page(s)
  255. channel.tip.refresh_of_replace=Refresh Current Page
  256. channel.tip.restore=Restore Selected Channels
  257. channel.tip.setright=Set Current Channel Permissions
  258. channel.tip.similar=Create Channel from System existed Channel Module
  259. channel_addedit.label.channel=channel [
  260. channel_addedit.label.lock=] you can't edit.
  261. channel_addedit.label.user=] is locked by user [
  262. channel_findbyid.object.not.found=The current channel [ID = {0}] has been deleted.
  263. channel_findbyid.type=service(com.trs.ajaxservice.ChannelServiceProvider.findbyid)The return type is not Channel,but {0},please confrim.
  264. channel_position_set.object.not.found=The current channel [ID = {0}] has been deleted.
  265. channel_save_outline.jsp.label.toolong=Your choice of view field too much, please reduce field choice, this setting failure!
  266. channel_select_likecopy.label.crtime=Created
  267. channel_select_likecopy.label.cruser=Creator
  268. channel_select_likecopy.label.id=ID
  269. channel_select_likecopy.label.name=Name
  270. channel_thumb_query.jsp.objnotfound=Structure ["+ channel +"] permission information!
  271. channelcontentlink_add_edit.jsp.getkeywords=Get a collection of hot words!
  272. channelcontentlink_add_edit.jsp.notfindchnlkeyword=Not found with ID {0} channel hot words
  273. channelcontentlink_findbtyid.jsp.runtimeex=channelcontentlink_findbyid.jspRuntime exception!
  274. channelcontentlink_findbyid.jsp.servicecertain=service(com.trs.ajaxservice.ContentLinkServiceProvider.findbyid)the return collection is not ChannelContentLink,but{0},please confirm.
  275. channelcontentlink_import_query.jsp.runtimeex=template_query.jsp runtime exception!
  276. channelcontentlink_import_query.jsp.servicereturncertain=service(com.trs.ajaxservice.ContentLinkServiceProvider.query)The return collection is not ContentLinkTypes, but {0}, please confirm.
  277. channelcontentlink_query.jsp.chnlctlnkruntimeex=channelcontentlink_query.jsp runtime exception!
  278. channelcontentlink_query.jsp.servicereturncertain=Services (com.trs.ajaxservice.ContentLinkServiceProvider.query) returns the object set type is not ChannelContentLinks, and for the {0}, please confirm.
  279. channelsyn.button.selectchannel=Select Channel
  280. channelsyn.label.add=Create Channel Distribution Setting
  281. channelsyn.label.addedit=Create/Modify Channel Distribution Settings
  282. channelsyn.label.avilabletime=Available Time
  283. channelsyn.label.condition=Distribution Condition
  284. channelsyn.label.copy=Copy
  285. channelsyn.label.createbetween=Document Created within
  286. channelsyn.label.docstatus=Distributable Document Status
  287. channelsyn.label.docsyntime=Document Creation Time
  288. channelsyn.label.edit=Modify Channel Distribution Settings
  289. channelsyn.label.endtime=Distribution End Time
  290. channelsyn.label.link=Refer
  291. channelsyn.label.list=Channel Distribution Setting List
  292. channelsyn.label.mirror=Mirror
  293. channelsyn.label.searchword=Search Word
  294. channelsyn.label.selectchannel=Select Channel
  295. channelsyn.label.starttime=Distribution Start Time
  296. channelsyn.label.syntime=Sync Execute Time
  297. channelsyn.label.tochannel=Target Channel
  298. channelsyn.label.transmittype=Distribution Mode
  299. channelsyn.label.wheresql=Select Condition(SQL)
  300. channelsyn.tip.add=Create Channel Distribution Settings
  301. channelsyn.tip.drop=Delete Selected Channel Distribution Settings
  302. channelsyn.tip.refresh=Refresh Current Page
  303. channelsyn_findbyid.jsp.servicenoobject=service(com.trs.ajaxservice.DocumentSynServiceProvider.findbyid)The return collection is not ChannelSyn, but {0}, please confirm.
  304. channelsyn_findbyid.label.copy=Copy
  305. channelsyn_findbyid.label.mirror=Mirror
  306. channelsyn_findbyid.label.quote=Link
  307. channelsyn_findbyid.label.unknown=Unknown
  308. channelsyn_findbyid.runtime.error=channelsyn_findbyid.jspAn exception occurs while running.
  309. channelsyn_query.jsp.chnlsynqueryruntimeex=channelsyn_query.jspRuntime exception!
  310. channelsyn_query.jsp.servicenoobject=Services (com.trs.ajaxservice.DocumentSynServiceProvider.query) returns the object set type is not ChannelSyns, and for the {0}, please confirm.
  311. channelsyn_query.label.copy=Copy
  312. channelsyn_query.label.mirror=Mirror
  313. channelsyn_query.label.quote=Link
  314. channelsyn_query.label.unknown=Unknown
  315. channelsyncol_findbyid.jsp.servicenotobject=service(com.trs.ajaxservice.DocumentSynServiceProvider.findbyid)The return type is not ChannelContentLink, , but {0}, please confirm!
  316. channelsyncol_findbyid.label.copy=Copy
  317. channelsyncol_findbyid.label.mirror=Mirror
  318. channelsyncol_findbyid.label.quote=Link
  319. channelsyncol_findbyid.label.unknown=Unknown
  320. channelsyncol_findbyid.runtime.error2=channelsyncol_findbyid.jspAn exception occurs while running.
  321. channelsyncol_query.jsp.chnlsyncolqueryruntimeex=channelsyncol_query.jsp runtime exception!
  322. channelsyncol_query.jsp.servicenoobject=service(com.trs.ajaxservice.DocumentSynServiceProvider.query)The return type is not ChannelSyns,but{0},please confirm.
  323. channelsyncol_query.label.copy=Copy
  324. channelsyncol_query.label.mirror=Mirror
  325. channelsyncol_query.label.quote=Link
  326. channelsyncol_query.label.unknown=Unknown
  327. chnl_barchartdata.chnl=Channel:{0}<br>filen volum:
  328. chnlrectycle_findbyid.jsp.servicenoobject=Services (com.trs.ajaxservice.ChannelServiceProvider.findbyid) returns the object type is not Channel, and for the {0}, please confirm.
  329. chnlrecycle_findbyid.label.none=None
  330. chnlrecycle_findbyid.object.not.found=Cannot fine the channel[ID={0}].
  331. chnlrecycle_query.jsp.chnlrecqueryruntimeex=chnlrecycle_query.jsp runtime exception!
  332. chnlrecycle_query.jsp.servicenoobject=service(com.trs.ajaxservice.ChannelServiceProvider.query the return collection type is not Channels,but{0},please confirm.
  333. classic_list_select.construct.failed=Structure [{0}] permissions information!
  334. classic_list_select.record=Record ID
  335. classinfo)_select_query.jsp.runtimeex=classic_select_query.jsp runtime exception!
  336. classinfo.label.classinfoId=ClassInfo ID
  337. classinfo.label.crtime=Creation Time
  338. classinfo.label.cruser=Creator
  339. classinfo.label.name=Name
  340. classinfo_findbyid.jsp.classinfo_findbyidruntimeex=classinfo_findbyid.jsp runtime exception!
  341. classinfo_findbyid.jsp.servicenoobject=Services (com.trs.components.metadata.service.ClassInfoServiceProvider.findbyid) returns the object type is not classinfo, and for the {0}, please confirm.
  342. classinfo_query.jsp.runtimeex=classinfo_query.jspRuntime exception!
  343. classinfo_query.jsp.servicenoobject=service(com.trs.components.metadata.service.ClassInfoServiceProvider.query)The return collection is not classinfos, but {0}, please confirm!
  344. classinfo_query.jsp.youarenotmng=You are not administrator. You have no permission to manage list of classification!
  345. classinfo_select_query.jsp.servicenoobject=service(com.trs.ajaxservice.ClassInfoServiceProvider.query)The return collection is not ClassInfos, but {0}, please confirm!
  346. config_manager_dowith.jsp.label.info=The original registration code and registration code different from the current cluster node, registration code modification failed
  347. config_manager_label_notadmin=You are not administrator, can't be carried out the operation!
  348. contact.button.add=New
  349. contact.button.add_of_group=Create Contact Group
  350. contact.button.addchild_of_group=Create Child Contact Group
  351. contact.button.addtogroup=Create Contact to
  352. contact.button.copy=Copy
  353. contact.button.drop=Delete
  354. contact.button.drop_of_group=Delete Contact Group
  355. contact.button.importsysuser=Import System User
  356. contact.button.modify_of_group=Modify Contact Group
  357. contact.button.quitedrop=Completely Delete
  358. contact.button.refresh=Refresh
  359. contact.label.addedit_of_group=Create/Modify Child Contact Group
  360. contact.label.address=Address
  361. contact.label.attribute=Others
  362. contact.label.crtime=Created
  363. contact.label.desc=Description
  364. contact.label.desc_of_group=Description
  365. contact.label.email=Email
  366. contact.label.email_of_group=Group Email
  367. contact.label.info=Contact Information
  368. contact.label.list=Contacts List
  369. contact.label.mobile=Mobile
  370. contact.label.myaddress=Contact Group
  371. contact.label.name=Name
  372. contact.label.name_of_group=Name
  373. contact.label.nickname=Nickname
  374. contact.label.parent_of_group=Parent Group
  375. contact.label.selectgrp=Select Contact Group
  376. contact.label.tel=Telephone
  377. contact.tip.add=Create
  378. contact.tip.add_of_group=Create Contact Group
  379. contact.tip.addchild_of_group=Create Contact Group
  380. contact.tip.addtogroup=Create Contact to Top Contact Group
  381. contact.tip.copy=Copy
  382. contact.tip.drop=Delete Selected Contact
  383. contact.tip.drop_of_group=Delete Current Contact Group
  384. contact.tip.importsysuser=Import System User as Contact
  385. contact.tip.modify_of_group=Modify Current Contact Group
  386. contact.tip.quitedrop=Completely Delete the Selected Contact
  387. contact.tip.refresh=Refresh Current Page
  388. contact.tip.return=Return
  389. content_style_addedit.jsp.edit=Edit
  390. content_style_addedit.jsp.fail2get_widget_type=Failed to obtain resource type [Id:{0}]!
  391. content_style_addedit.jsp.have_noright_alter=You do not have the right to modify style[Id:{0}]! vvvvvvc
  392. content_style_addedit.jsp.have_noright_new=You do not have the right to create style!
  393. content_style_addedit.jsp.id=Flag
  394. content_style_addedit.jsp.new=New
  395. content_style_addedit_1.jsp.distance2pic_limit=Input content of the distance to icon
  396. content_style_addedit_1.jsp.font_size_format_limit=Input content of font size
  397. content_style_addedit_1.jsp.font_size_limit=Input content of font size
  398. content_style_addedit_1.jsp.label.distance2pic_warning=Margin to icon format must be:Integer+Unit(pt/em/px)
  399. content_style_addedit_1.jsp.label.font_size_format=The size of font must be: Integer+ Unit)
  400. content_style_addedit_1.jsp.label.font_size_warning=The size of font must be:Integer+Unit(pt/em/px)
  401. content_style_addedit_1.jsp.titleheightinputcontent=Input content of title height
  402. content_style_addedit_2.jsp.container_height_format_limit=Input content of container height
  403. content_style_addedit_2.jsp.container_height_limit=Input content of container height
  404. content_style_addedit_2.jsp.font_size_format_limit=Input content of font size
  405. content_style_addedit_2.jsp.label.container_height=The container height must be:Integer+Unit(pt/em/px)
  406. content_style_addedit_2.jsp.label.container_height_format=The width of container must be:Integer+Unit(pt/em/px)
  407. content_style_addedit_2.jsp.label.font_size_format=The size of font must be:Integer+Unit(pt/em/px)
  408. content_style_addedit_2.jsp.label.padding_format=Margin format must be: consist of 0-4 group of integer divided by blank space + Unit (pt/em/px)
  409. content_style_addedit_2.jsp.label.prompt_content=The height of content must be :Integer+Unit(pt/em/px)
  410. content_style_addedit_2.jsp.label.runtimeexception=Container width must be:Integer+Unit(pt/em/px)
  411. content_style_addedit_2.jsp.label.title_height=The title height must be:Integer+Unit(pt/em/px)
  412. content_style_addedit_2.jsp.padding_format_limit=Margin adjustment
  413. content_style_addedit_2.jsp.prompt_content_limit=Input content of content height
  414. content_style_addedit_2.jsp.title_height_limit=Input content of title height
  415. content_style_addedit_customstyle.jsp.label.please_input_css_content=Please input css text...
  416. content_style_addedit_for_ajax.jsp.fail2get_content_style=Failed to obtain content style[Id:{0}]
  417. content_style_select.jsp.label.cruser=Creater:
  418. content_style_select.jsp.label.Id=Serial number:
  419. contentextfield.label.checkbox=Check box
  420. contentextfield.label.editor=Simple editor
  421. contentextfield.label.eidtor=Simple editor
  422. contentextfield.label.float=Float
  423. contentextfield.label.inputselect=Combo box
  424. contentextfield.label.int=Integer
  425. contentextfield.label.multitext=Multi-line text
  426. contentextfield.label.noExtField=No extension fields exist
  427. contentextfield.label.normaltext=Plain text
  428. contentextfield.label.password=Cipher text
  429. contentextfield.label.pleaseSel=--please select--
  430. contentextfield.label.radio=Radio box
  431. contentextfield.label.select=Drop-down list
  432. contentextfield.label.selfdefine=Custom type
  433. contentextfield.label.text=Varchar
  434. contentextfield.label.time=Time
  435. contentextfield.label.timetemp=Time
  436. contentextfield.label.undefined=Unknown type
  437. contentextfield_position_set_dowith.jsp.label.norights=Have no jurisdiction in the current columns[
  438. contentextfield_position_set_dowith.jsp.noidchnl=Not found with ID [{0}] of the channel!
  439. contentextfield_position_set_dowith.jsp.noidextendfield=Not found with ID [{0}] of the extension field!
  440. contentlink.label.addedit=Create/Modify Hot Words
  441. contentlink.label.content=Content
  442. contentlink.label.desc=Description
  443. contentlink.label.info=Hot Words Info
  444. contentlink.label.list=Hot Words List
  445. contentlink.label.name=Name
  446. contentlink.label.title=Title
  447. contentlink.label.url=URL
  448. contentlink.tip.add=Create Hot Words
  449. contentlink.tip.drop=Delete Selected Hot Words
  450. contentlink.tip.refresh=Refresh Current Page
  451. contentlink.tip.return=Return
  452. contentstyle_query.jsp.label.click2alter=title='Click and mofify the style thumbnail'
  453. contentstyle_query.jsp.name_crtime=Name:{0}&Name:{1}!
  454. contentstyle_query.jsp.name_name=Name:{0}&Name:{1}!
  455. copy_content_style_to.jsp.fail2get_style=Failed to obtain style[Id={0}]!
  456. copy_page_style.jsp.fail2get_page_style=Failed to obtain page style [Id:{0}]!
  457. copy_page_style.jsp.label.have_noright2_create_style=You do not have the right to create new style!
  458. copy_resource_style_to.jsp.fail2get_page_content=Failed to obtain page style[Id={0}]!
  459. create_app_of_views.label.createViewRelation=All View application have been generated.
  460. create_interview_host.createError=Create a guest interviews part structural background error occurred!!
  461. create_interview_host.getError=Get an error when visit guests interview channel!
  462. create_interview_host.interview=host.interview
  463. create_interview_host.notFind=Interviews with guests not find the specified master!
  464. create_interview_host.setError=Interview channel template set error!
  465. cssflag_used_info.jsp.label.sys_level=System level->
  466. defaultLayoutsGenerator.jsp.label.creating_default_layout= Create subject default layout ......<br/>
  467. defaultLayoutsGenerator.jsp.label.successs2create_default_layout=Succeed in creating subject default layout!
  468. design_init_data_build_include.jsp.cannot_use_visual_edit=The template[[{0}] is not visual and cannot be visual edited
  469. design_init_data_build_include.jsp.design_special=Design subject [[{0}]
  470. design_init_data_build_include.jsp.design_template=Design template[[{0}]
  471. design_init_data_build_include.jsp.label.sys_config_notfound=The document configured by system is not found! Please re-set systen config
  472. design_init_data_build_include.jsp.pointed_specialobj_notfound=The subject object [{0}] does not exist!
  473. design_init_data_build_include.jsp.pointed_template_notexists=The template [[{0}] does not exist
  474. doAction.notExist=Interview with the corresponding part does not exist!
  475. doc_detail_list.audio=Audio
  476. doc_detail_list.copy=Copy
  477. doc_detail_list.image=Picture
  478. doc_detail_list.origin=Original manuscript
  479. doc_detail_list.quote=Quote
  480. doc_detail_list.unknow=Unknown
  481. doc_detail_list.user.not.found=User [{0}] is not found
  482. doc_detail_list.video=Video
  483. doc_detail_list.word=Charactor
  484. doc_list_forGroup.audio=Audio
  485. doc_list_forGroup.copy=Copy
  486. doc_list_forGroup.id.zero=No group [Id-{0}] is found
  487. doc_list_forGroup.pic=Picture
  488. doc_list_forGroup.quote=Quote
  489. doc_list_forGroup.src=Original manuscript
  490. doc_list_forGroup.unkonw=Unknown
  491. doc_list_forGroup.video=Video
  492. doc_list_forGroup.word=Character
  493. doc_stat.audio=Audio
  494. doc_stat.back=Redo
  495. doc_stat.check=Auditing
  496. doc_stat.chnl=Statistics list of channel filen volume
  497. doc_stat.chnl.name=Channel name
  498. doc_stat.copy=Copy
  499. doc_stat.edited=Edited
  500. doc_stat.new.doc=New manuscript
  501. doc_stat.num=Sequence number
  502. doc_stat.pic=Picture
  503. doc_stat.quote=Quote
  504. doc_stat.resent=Rodo
  505. doc_stat.sent=Published
  506. doc_stat.signed=Signed
  507. doc_stat.site=Site
  508. doc_stat.sourcedoc=Original manuscript
  509. doc_stat.total=Total amount of filen
  510. doc_stat.video=Audio
  511. doc_stat.word=Character
  512. doc_stat_include.start=Start to inquire the search statistics of user and department...
  513. doc_statofsite_list.audio=Audio
  514. doc_statofsite_list.back=Redo
  515. doc_statofsite_list.check=Auditing
  516. doc_statofsite_list.copy=Copy
  517. doc_statofsite_list.edited=Edited
  518. doc_statofsite_list.id.zero=No channel[Id={0}] is found
  519. doc_statofsite_list.image=Picture
  520. doc_statofsite_list.newdoc=New manuscript
  521. doc_statofsite_list.origin=Manuscript
  522. doc_statofsite_list.quote=Quote
  523. doc_statofsite_list.sent=Published
  524. doc_statofsite_list.signed=Signed
  525. doc_statofsite_list.unknow=Unknown
  526. doc_statofsite_list.video=Video
  527. doc_statofsite_list.word=Character
  528. docbak_query.jsp.runtimeex=docbak_query.jspruntime exception!
  529. docbak_query.jsp.servicenoobjects=Services (com.trs.ajaxservice.DocumentBakServiceProvider.query) returns the object set type is not DocBaks, and for the {0}, please confirm.
  530. doclevel.confidence=Confidence
  531. doclevel.general=Common
  532. doclevel.secret=Secret
  533. doclevel.top-secret=Top confidential
  534. docrecycle.jsp.runtimeex=chnldoc_query.jsp runtime exception!
  535. docrecycle_findbyid.label.unknow=Unknown
  536. docrecycle_findbyid.runtime.error=docrecycle_findbyid.jspAn exception occurs while running.
  537. docrecycle_query.jsp.servicenoobject=service(com.trs.ajaxservice.viewdocumentServiceProvider.query)The return type is not ViewDocuments,but {0},please confirm.
  538. document.button.adddoc=Create Document
  539. document.button.addrelated=Add
  540. document.button.cancel=Cancel
  541. document.button.channelpublish=Publish Channel
  542. document.button.clearall=Clean Recycle Bin
  543. document.button.comeback=Restore Document
  544. document.button.copyto=Copy All Documents to
  545. document.button.drop=Completely Delete Document
  546. document.button.edit=Modify
  547. document.button.editionmanage=Version Admin
  548. document.button.export=Document Export
  549. document.button.file=File
  550. document.button.image=Photo
  551. document.button.import=Document Import
  552. document.button.link=Link
  553. document.button.moveto=Move All Files to
  554. document.button.newscomment=Comment Admin
  555. document.button.perform=Execute
  556. document.button.publish=Publish Document
  557. document.button.publishhistory=Publish History
  558. document.button.publishoption=Advanced Publish
  559. document.button.quickpublish=Fast Publish
  560. document.button.restoreall=Restore All Documents
  561. document.button.return=Return to Document List
  562. document.button.return_of_draft=Back to Draft
  563. document.button.saveadd=Save and Create
  564. document.button.saveclose=Save and Close
  565. document.button.savepublish=Save and Publish
  566. document.detail.show.flownodeerror=.
  567. document.detail.show.flownodenot=Error to get the Workflow Node ID
  568. document.detail.show.tracing=The content specified [Type=
  569. document.detail.show.tracingnot=] not found [
  570. document.label.add=Create Document
  571. document.label.add_of_mapping=Create Mapping File
  572. document.label.add_of_status=Create Document Status
  573. document.label.addedit_of_source=Create/Modify Document Source
  574. document.label.addedit_of_status=Create/Modify Document Status
  575. document.label.appendix=Attachment Management
  576. document.label.author=Document Author
  577. document.label.autodesc_of_source=Auto Set Source Description
  578. document.label.backup=Save Version
  579. document.label.baseproperty=Base Properties
  580. document.label.basicset=Common
  581. document.label.belongchannel=Document Channel
  582. document.label.changestatus=Change Status
  583. document.label.channel=Channel
  584. document.label.channel_of_search=Channel
  585. document.label.clickselect=Please Click to Select
  586. document.label.content=Document Content
  587. document.label.contentlink=Hot Words
  588. document.label.crtime=Creation Time
  589. document.label.crtime_of_source=Created
  590. document.label.crtime_of_status=Created
  591. document.label.cruse_of_sourcer=Creator
  592. document.label.cruser_of_source=Creator
  593. document.label.cruser_of_status=Creator
  594. document.label.deletetime=Delete Time
  595. document.label.deleteuser=Delete User
  596. document.label.desc_of_source=Description
  597. document.label.desc_of_status=Description
  598. document.label.docappendix=Document Attachment
  599. document.label.docattribute=Document Properties
  600. document.label.docauthor=Document Author
  601. document.label.docchannel=Channel
  602. document.label.docplace=URL:
  603. document.label.docsecurity=Security Level
  604. document.label.docsource=Document Source
  605. document.label.docsource_hostsite=Site
  606. document.label.docstatus=Document Status
  607. document.label.doctitle=Document Title
  608. document.label.documenttype=Type
  609. document.label.draft=Draft
  610. document.label.drop_of_status=Delete Selected Document Status
  611. document.label.edit=Modify Document
  612. document.label.endtime=End Time
  613. document.label.export=Document Import
  614. document.label.exportappendix=Do you want to export document attachments?
  615. document.label.exportfields=Exported Fields
  616. document.label.extend=Ext Field
  617. document.label.extendedfield=Extension Field
  618. document.label.humanrelate=Relative documents by hand-set
  619. document.label.image=Document Photo
  620. document.label.import=Document Import
  621. document.label.info=View Document Info
  622. document.label.info_of_delete=Document Deleting Info
  623. document.label.info_of_restore=Document Restoring Info
  624. document.label.info_of_source=Document Source Info
  625. document.label.info_of_status=Document Status Info
  626. document.label.intervaltime=Start Time
  627. document.label.isused_of_status=Use or Not
  628. document.label.keyword=Keyword
  629. document.label.keywordrelate=Documents related through keyword
  630. document.label.link_of_source=Link
  631. document.label.linkappendix=Linked Attachment
  632. document.label.list_of_channel=Channel Documents List
  633. document.label.list_of_mapping=Mapping File List
  634. document.label.list_of_recycle=Document Recycle
  635. document.label.list_of_search=Document Advanced Searching Result List
  636. document.label.list_of_site=Site Document List
  637. document.label.list_of_source=Document Source List
  638. document.label.list_of_status=Document Status List
  639. document.label.list_of_user=Personal Document List
  640. document.label.mutiaday=Multi-Run a day
  641. document.label.name=Channel Name
  642. document.label.name_of_source=Name
  643. document.label.name_of_status=Name
  644. document.label.onceaday=Run once a day
  645. document.label.operate=Operation
  646. document.label.otherproperty=Other Properties
  647. document.label.otherset=Others
  648. document.label.previewdoc=View Document
  649. document.label.publish_time_limit=Time Limited Publish
  650. document.label.publisher=Publisher
  651. document.label.publishset=Publish Settings
  652. document.label.publishtime=Publish Time
  653. document.label.publishtiming=Timing Publish
  654. document.label.pubset=Advanced Settings
  655. document.label.pubtime=Publish Time
  656. document.label.putime=Document Publish Time
  657. document.label.recycle_of_draft=Draft Recycle Bin
  658. document.label.refresh_of_status=Refresh this Page
  659. document.label.relate=Refer to
  660. document.label.related=Related Documents
  661. document.label.relatedmanage=Related Document Admin
  662. document.label.relatedocument_bykeywords=Documents related by keyword
  663. document.label.relatedocument_byrelations=Manual Setting related Document
  664. document.label.relatewords=Related Words
  665. document.label.rightindex_of_status=Permission Index
  666. document.label.rightset=Set Permissions
  667. document.label.runtime=Execute Time
  668. document.label.safelevel=Security Level
  669. document.label.saveas=Save as
  670. document.label.savedbtime=Store Time
  671. document.label.schedule=Schedule Publish
  672. document.label.searchauthor=Author
  673. document.label.searchcruser=Send User
  674. document.label.searchfield=Search Field
  675. document.label.searchkeyword=Keyword
  676. document.label.searchtitle=Title
  677. document.label.searchword=Search Word
  678. document.label.select=Select Document
  679. document.label.selecttemplate=Select Template
  680. document.label.show_of_status=Display
  681. document.label.showdoc=View Page
  682. document.label.simplesource=Origin
  683. document.label.simplesummary=Abstract
  684. document.label.simpletype=Type
  685. document.label.site_of_source=Host Site
  686. document.label.source=Document Source
  687. document.label.sourceorder=Previous Source
  688. document.label.status=Status
  689. document.label.statusmodify=Change Status to
  690. document.label.statusnow=Current Status
  691. document.label.subtitle=Subtitle
  692. document.label.summary=Abstract
  693. document.label.template=Document Template
  694. document.label.textsearch=Text Search
  695. document.label.timeafter=later than
  696. document.label.timebefore=earlier than
  697. document.label.timesearch=Search Time
  698. document.label.title=Document Title
  699. document.label.topset=Set as Top
  700. document.label.type=Document Type
  701. document.label.view=View Document
  702. document.label.viewdocedition=Check Document Versions
  703. document.label.writetime=Write Time
  704. document.label.xmladdedit=Edit Mapping File
  705. document.message.begin_of_restore=You are ready to restore the document.
  706. document.message.begindelete_of_delete=You are submitting Document Deleting Operation.
  707. document.message.belongtochannel_of_delete=Belong to Channel
  708. document.message.citebychannel_of_delete=and referred by following Channels
  709. document.message.import=Support XML,ZIP files
  710. document.message.importwait=Importing Document, please wait......
  711. document.message.showdoc_of_restore=Are you sure to restore all Documents to
  712. document.message.showdocdelete_of_delete=Do you want to delete all documents as
  713. document.message.systeminfo_of_delete=Confirm
  714. document.message.systeminfo_of_restore=Confirm
  715. document.tip.add=Create Calendar Event Type
  716. document.tip.add_of_mapping=Create Mapping File
  717. document.tip.add_of_source=Create Document Source
  718. document.tip.add_of_status=Create Document Status
  719. document.tip.adddoc=Create Document
  720. document.tip.addrelated=Create Related Document
  721. document.tip.channelpublish=Increased Publish Current Channel
  722. document.tip.clearall=Delete All Document from Recycle Bin
  723. document.tip.comeback=Restore Selected Documents
  724. document.tip.copy=Copy Selected Document(s) to New Channel
  725. document.tip.copyalldocument=Copy Selected Document(s) to New Channel
  726. document.tip.deletedocbak=Delete selected Document(s) version
  727. document.tip.drop=Delete Selected Document(s)
  728. document.tip.drop_of_mapping=Delete Selected Mapping File
  729. document.tip.drop_of_source=Delete Selected Document Source
  730. document.tip.drop_of_status=Delete Selected Document Status
  731. document.tip.droprelated=Delete Related Documents
  732. document.tip.editdoc=Edit Document
  733. document.tip.editionmanage=Manage Document Version
  734. document.tip.editionsave=Save Current Document Version
  735. document.tip.export=Export Document
  736. document.tip.import=Import Document to Channel, XML, trs file type supported
  737. document.tip.move=Move Selected Document(s) to a New Channel
  738. document.tip.movealldocument=Move Selected Document(s) to a New Channel
  739. document.tip.propublish=Advanced Document Publish Operation
  740. document.tip.publish=Publish Selected Document
  741. document.tip.recycle=View Document Recycle Bin
  742. document.tip.refer=Refer Selected Document(s) to a New Channel
  743. document.tip.refresh=Refresh Current Page
  744. document.tip.refresh_of_source=Refresh Current Page
  745. document.tip.refresh_of_status=Refresh Current Page
  746. document.tip.restoreall=Restore All Recycle Bin Documents
  747. document.tip.restoredocediton=Restore Current version
  748. document.tip.return=Return
  749. document.tip.return_of_draft=Return to Draft
  750. document.tip.return_of_recycle=Back to Document List
  751. document.tip.return_of_source=Return
  752. document.tip.return_of_status=Return
  753. document.tip.view_recycle_of_draft=View Recycle Bin of Draft
  754. document_addedit.jsp.docForm=Belongs
  755. document_addedit.jsp.docuType=Type
  756. document_addedit.jsp.pureFile=File
  757. document_addedit.jsp.PureLink=Link
  758. document_addedit.jsp.pureText=Plain Text
  759. document_addedit.label.audio=Audio
  760. document_addedit.label.AUDIO=Audio
  761. document_addedit.label.document=Document
  762. document_addedit.label.FILE=File
  763. document_addedit.label.id.zero=Video ID[{0}] is in the recycle bin. You cannot operate it!
  764. document_addedit.label.isEnterReadonly=Are you sure to enter into readonly mode, click ok to enter?
  765. document_addedit.label.LINK=Link
  766. document_addedit.label.LITERY=Text
  767. document_addedit.label.litery=Text
  768. document_addedit.label.pic=Picture
  769. document_addedit.label.PIC=Picture
  770. document_addedit.label.TEXT=Plain
  771. document_addedit.label.unknown=Unknown
  772. document_addedit.label.UNKNOWN=Unknown
  773. document_addedit.label.VIDEO=Video
  774. document_addedit.label.video=Video
  775. document_addedit.lable.currEffectiveUser=Current Operator Is:&nbsp;
  776. document_addedit.lable.isLocked=is locked by
  777. document_addedit.lable.lock= lock. You cannot modify.
  778. document_addedit.lable.locked=
  779. document_addedit.lable.user= by the user
  780. document_addedit_extendedfield.jsp.getfieldattrfailue=Get the first [{0}] of extended field attribute failed!
  781. document_addedit_extendedfield.jsp.getthisextendfieldfailure=This extended field properties for failure!
  782. document_addedit_extendfield.label.Decimal=Decimal
  783. document_addedit_extendfield.label.extendfield=Extend Field [
  784. document_addedit_extendfield.label.Integer=Integer
  785. document_addedit_extendfield.label.Text=String
  786. document_addedit_extendfield.label.Time=Time
  787. document_addedit_label_1=The document [
  788. document_addedit_label_10=Failed to convert the Relations collection object to the XML string.
  789. document_addedit_label_11=The file name is null.
  790. document_addedit_label_12=During the exporting of all documents, the ChannelId or SiteId is not specified.
  791. document_addedit_label_13=The site [
  792. document_addedit_label_14=] is not found.
  793. document_addedit_label_15=The ChannelId or SiteId is not specified.
  794. document_addedit_label_16=The extension field [
  795. document_addedit_label_17=] is not found.
  796. document_addedit_label_18=The document or channel [
  797. document_addedit_label_19=] is not found.
  798. document_addedit_label_2=] is not found.
  799. document_addedit_label_20=] is not found.
  800. document_addedit_label_3=The channel [
  801. document_addedit_label_4=] is not found.
  802. document_addedit_label_5=It is deleted. Please refresh the channel tree.
  803. document_addedit_label_6=The channel where the created document belong is not specified.
  804. document_addedit_label_7=The document [
  805. document_addedit_label_8=] is in the Recycle Bin. It cannot be operated now.
  806. document_addedit_label_9=Failed to convert the Appendix collection object to the XML string.
  807. document_detail.label.unknownDoc=Unknown type of document
  808. document_detail_53.jsp.label.content=Content
  809. document_detail_53.jsp.label.subject=Subject
  810. document_detail_label_sep=Page break
  811. document_export.jsp.hasdocsanswerrequestandimportmaxdocs=Total <span class="doc-number">{0}</span> chapter documents meet the requirements. <br/> Export up to <span class="doc-number">500</span> documents each. <br/><hr/>
  812. document_exportAsDoc.jsp.connectopoficeserverfailure=OpenOffice server connection fails, check to see if OpenOffice is installed or the service has been launched!
  813. document_exportAsDoc.jsp.jdkversiontoolow=Your JDK version is too low, use OpenOffice services need to upgrade to JDK version 1.5 and above!
  814. document_exportAsDoc.jsp.notfinddocid=Cannot find the specified document[ID={0}]!
  815. document_field_showset_dowith.jsp.channellocked=The channel is locked by the user!
  816. document_field_showset_dowith.jsp.fail2synchannel=Synchronization settings part [{0}] The document list displays the fields failed! Part by the user [{1}] locked!
  817. document_field_showset_dowith.jsp.setchannelsdoclist=Synchronization settings channel [{0}] list display field successfully!
  818. document_field_showset_dowith.jsp.success2setchannel=Set the document list display field: a total of [{0}] channels, the success of {1}
  819. document_field_showset_dowith.jsp.success2updatedoclist=synchronize channel [{0}]the document lists filed successfully!!
  820. document_field_showset_dowith_a.jsp.setchannelsdoclist=synchronize channel [{0}]the document lists reveal filed successfully!
  821. document_findbyid.label.unknown=Unknown
  822. document_findbyid.runtime.error=document_findbyid.jspAn exception occurs while running.
  823. document_hitscount.chnlownedto=Channel
  824. document_hitscount.crtime=Created
  825. document_hitscount.departmentName=Department name
  826. document_hitscount.hitscount=Click rate
  827. document_hitscount.null=None
  828. document_hitscount.num=Sequence number
  829. document_hitscount.title=Title
  830. document_hitscount.total.hitscount=Statistics list of manuscript click rate
  831. document_hitscount.user=User name
  832. document_hitscount_table.doc=Manuscript
  833. document_hitscount_table.null=None
  834. document_photo_attachments_import.jsp.getwatermarksfailure=Failed to obtain site watermark collection!
  835. document_photo_setwatermark.jsp.getwatermarksfailure=Failed to obtain site watermark collection!
  836. document_position_set.label.document=document
  837. document_position_set.label.photo=Picture
  838. document_position_set_dowith.jsp.norightatcurrchnlmodifyrecordsort=No permission to change record order in current channel [{0}][ID={1}]!
  839. document_position_set_dowith.jsp.notfindchnlid=Not found with ID [{0}] of the channel!
  840. document_position_set_dowith.jsp.notfinddocid=Cannot find file ID[{0}]!
  841. document_preview.channel.getFail=Get ChannelID to [{0}] of the Channel failed!
  842. document_preview.doc.getFail=Incoming document ID is invalid, not found with ID [{0}] of document!
  843. document_props.label.none=None
  844. document_props_showset_dowith.jsp.chnlblockedbyuser=Channel by the user [{0}] locked!
  845. document_props_showset_dowith.nosave=Save attribute to set failure.
  846. document_query.jsp.label.cruser=Creator
  847. document_query.jsp.label.doctitle=Document Title
  848. document_query.jsp.label.keyword=Keyword
  849. document_query.label.unknown=Unknown
  850. document_query_import_4_extfield_query.jsp.getextendfieldsfailure=Failure to obtain a collection of extended field!
  851. document_query_import_4_extfield_query.jsp.notfindextendfieldid=cannot find Id {0}Extension Field
  852. document_show.channel.cannot.find=Can not find the channel!
  853. document_show.channel.notFit=The channell is not configured to effectively customized form can not be edited under the document!
  854. document_show.channel.type.wrong=The channell is not configured to effectively customized form can not be edited under the document!
  855. document_show.document.getFailed=Failed to obtain ID[{0}]!
  856. document_show.id.zero=Channel Id is 0, can not find the channel!
  857. document_show.newDoc.noRight=You have no permission to construct new file !
  858. document_show.noRight=You do not have permission to view ID [{0}] of the document!
  859. document_show_inflowdoc.channe.not.found=cannot find {0}!
  860. document_show_inflowdoc.channel.notFit=The channell is not configured to effectively customized form can not be edited under the document!
  861. document_show_inflowdoc.channel.typeWrong=The channell is not configured to effectively customized form can not be edited under the document!
  862. document_show_inflowdoc.document.getFailed=For ID [{0}] of the document to fail!
  863. document_show_inflowdoc.schanne.not.found=Channel Id is 0, can not find the channel!
  864. document_show_inflowdoc.sdocument.notFound=Not found [FlowDocId = {0}] transfer document object!
  865. document_trs_mapping_edit.label.docAppendix=Attachments
  866. dom_addedit_1.marginwarning=Margin format must be: consist of 0-4 group of integer divided by blank space + Unit (pt/em/px)
  867. dom_addedit_1.warningheight=Container height must be: Integer+Unit(pt/em/px)
  868. dom_addedit_1.warningwidth=The width of container must be:Integer+Unit(pt/em/px)
  869. edit_dowith.modifyError=The original registration code is not the current cluster node machine code.Failed to modify registration code!
  870. edit_dowith.modifyError.para=The registration Incorrect parameters to obtain the registration code, registration code modification failed!
  871. edit_dowith.restart=registration code changed successfully, you need to manually restart the application service to take effect!
  872. editor.Accessibility=Accessibility
  873. editor.AdInTrs=AdInTrs
  874. editor.Anchor=Anchor
  875. editor.AutoSaveHistory=AutoSaveHistory
  876. editor.BGColor=BGColor
  877. editor.Bold=Bold
  878. editor.CKMSpellCheck=CKMSpellCheck
  879. editor.Comment=Comment
  880. editor.ContentLink=ContentLink
  881. editor.ContentUnLink=ContentUnLink
  882. editor.Copy=Copy
  883. editor.Cut=Cut
  884. editor.DocumentProps=DocumentProps
  885. editor.Enter=Enter
  886. editor.Find=Find
  887. editor.FitWindow=FitWindow
  888. editor.Flash=Flash
  889. editor.FlashLib=FlashLib
  890. editor.FontName=FontName
  891. editor.FontSize=FontSize
  892. editor.Image=Image
  893. editor.ImportFlash=Introduction of external video source way
  894. editor.Indent=Indent
  895. editor.InlineLink=InlineLink
  896. editor.Italic=Italic
  897. editor.JustifyCenter=JustifyCenter
  898. editor.JustifyFull=JustifyFull
  899. editor.JustifyLeft=JustifyLeft
  900. editor.JustifyRight=JustifyRight
  901. editor.Link=Link
  902. editor.OrderedList=OrderedList
  903. editor.Outdent=Outdent
  904. editor.PageBreak=PageBreak
  905. editor.pageTitle=PageTitle
  906. editor.Paste=Paste
  907. editor.PasteText=PasteText
  908. editor.PasteWord=PasteWord
  909. editor.PhotoLib=PhotoLib
  910. editor.Print=Print
  911. editor.Redo=Redo
  912. editor.RemoveFormat=RemoveFormat
  913. editor.Replace=Replace
  914. editor.Rule=Rule
  915. editor.SelectAll=SelectAll
  916. editor.Separate=Separate
  917. editor.Smiley=Smiley
  918. editor.SpecialChar=SpecialChar
  919. editor.StrikeThrough=StrikeThrough
  920. editor.Style=Style
  921. editor.Subscript=Subscript
  922. editor.Superscript=Superscript
  923. editor.Table=Table
  924. editor.Templates=Templates
  925. editor.TextColor=TextColor
  926. editor.Underline=Underline
  927. editor.Undo=Undo
  928. editor.Unlink=Unlink
  929. editor.UnorderedList=UnorderedList
  930. epresschannel_creat.jsp.label.none=Without
  931. epresschannel_create.jsp.nocreatechnlright=Sorry, you do not have permission to create the channel!
  932. epresschannel_create.jsp.notvalidparameter=No specified parameter!
  933. epresschannel_create.jsp.parentchnlnotfondordeleted=The parent channel is not found or deleted! [Id = {0}]
  934. epresschannel_create.jsp.sitenotfondordeleted=Site not found or deleted! [Id = {0}]
  935. error.jsp.label.occurerror=System error
  936. error.jsp.label.sys_error=System error
  937. error.jsp.label.syserror=System errors
  938. error.jsp.label.unknown=unknown
  939. error.jsp.label.unknownerror=unknown error!
  940. error.jsp.syserror=System error
  941. error.jsp.sysmessage=System message: {0}
  942. error.label.close=Close
  943. error.label.connecterror=An error occurs during the connection to the server.
  944. error.label.copyToClipboard=Copy to Clipboard
  945. error.label.systemerror=An error occurs in the system.
  946. error.label.unknown=Unknown
  947. error.label.unknownError=Unknown error.
  948. error_for_dialog.jsp.label.sys_error=System error!
  949. error_for_dialog.jsp.label.syserror=system error
  950. error_for_dialog.jsp.syserror=System error
  951. errorforAuth.jsp.syserror=System error
  952. etadbfield_findbyid.type=service(com.trs.components.metadata.service.MetaDataDefServiceProvider.findbyid)The return collection type is not MetaDBField,but ({0}),please confirm.
  953. etaviewdata_findbyid.runExce=metaviewdata_findbyid.jsp runtime exception!
  954. event.button.calendaradd=New
  955. event.button.lastmonth=Last Month
  956. event.button.lastweek=Last Week
  957. event.button.nextmonth=Next Month
  958. event.button.nextweek=Next Week
  959. event.button.thisday=Today
  960. event.button.thismonth=This Month
  961. event.button.thisweek=This Week
  962. event.button.tomorrow=Tomorrow
  963. event.button.yestoday=Yesterday
  964. event.label.addedit=Create/Modify Arrangement
  965. event.label.addedit_of_eventtype=Create/Modify Calendar Event Type
  966. event.label.alertahead=Remind in advance
  967. event.label.alertemail=Email remind
  968. event.label.alertmobile=Mobile remind
  969. event.label.alertonline=Online remind
  970. event.label.calendar=My Arrangement
  971. event.label.cancelshare=Cancel All
  972. event.label.content=Description
  973. event.label.crtime=Created
  974. event.label.cruser=Creator
  975. event.label.desc=Description
  976. event.label.endtime=End Time
  977. event.label.info=Calendar Event Type Info
  978. event.label.list=Calendar Event Type List
  979. event.label.name=Name
  980. event.label.private=Personal
  981. event.label.property=Event Properties
  982. event.label.public=Public
  983. event.label.remindway=Remind Way
  984. event.label.share=Share Arrangement
  985. event.label.sharetogroup=Share to Group
  986. event.label.sharetouser=Share to Person
  987. event.label.show=View Arrangement
  988. event.label.starttime=Start Time
  989. event.label.title=Title
  990. event.label.type=Type
  991. event.message.aheadtime=reminding time
  992. event.message.alerttimehead=
  993. event.message.alerttimetail=&nbsp;minutes in advance to remind
  994. event.tip.add=Add
  995. event.tip.calendaradd=Create Calendar Arrangement
  996. event.tip.calendarrefresh=Refresh Current Page
  997. event.tip.drop=Delete
  998. event.tip.lastmonth=View Previous Month Calendar Arrangement
  999. event.tip.lastweek=View Last Week Calendar Arrangement
  1000. event.tip.nextmonth=View Next Month Calendar Arrangement
  1001. event.tip.nextweek=View Next Week Calendar Arrangement
  1002. event.tip.refresh=Refresh
  1003. event.tip.thisday=View today Calendar Arrangement
  1004. event.tip.thismonth=View This Month Calendar Arrangement
  1005. event.tip.thisweek=View This Week Calendar Arrangement
  1006. event.tip.tomorrow=View Next Day Calendar Arrangement
  1007. event.tip.yestoday=View Previous Day Calendar Arrangement
  1008. expected_error.jsp.label.occurerror=System error
  1009. expected_error.jsp.label.unknown=Unknown
  1010. expected_error.jsp.label.unknownerror=Unknown error!
  1011. expected_error.jsp.sysmessage=System message: {0}
  1012. export_bonus_stat.get=The bonus (£¤) of click rate
  1013. export_bonus_stat.info=User reward list({0}-{1})
  1014. export_bonus_stat.null=None
  1015. export_bonus_stat.num=Sequence number
  1016. export_bonus_stat.partment=Department
  1017. export_bonus_stat.send=The bonus (£¤) of published document
  1018. export_bonus_stat.totle=Total(£¤)
  1019. export_bonus_stat.user=User name
  1020. export_channel_hitscount.chnlname=Channel name
  1021. export_channel_hitscount.chnlnum=Sequence number
  1022. export_channel_hitscount.clickMount=Click rate
  1023. export_channel_hitscount.departmentName=Department name
  1024. export_channel_hitscount.increaseRate=Increase exponent
  1025. export_channel_hitscount.num=Sequence number
  1026. export_channel_hitscount.site=Site
  1027. export_channel_hitscount.statistic.chart=Statistics list of channel click rate
  1028. export_excel.ip=Creator IP
  1029. export_group_hitscount.departmentName=Department name
  1030. export_group_hitscount.hitscount.chart=Statistics list of department click rate
  1031. export_group_hitscount.num=Sequence number
  1032. export_group_hitscount.total.hitscount=Total click rate
  1033. export_hits_bonus_stat.channel=Channel
  1034. export_hits_bonus_stat.clicknum=Click rate
  1035. export_hits_bonus_stat.get=Bonus(£¤)
  1036. export_hits_bonus_stat.info=[{0}]bonus statistics list({0}¡ª{1})
  1037. export_hits_bonus_stat.month=Month
  1038. export_hits_bonus_stat.num=Sequence number
  1039. export_hits_bonus_stat.title=Document title
  1040. export_site_doc_stat.audio=Audio
  1041. export_site_doc_stat.back=Redo
  1042. export_site_doc_stat.check=Auditing
  1043. export_site_doc_stat.copy=Copy
  1044. export_site_doc_stat.edited=Edited
  1045. export_site_doc_stat.image=Picture
  1046. export_site_doc_stat.newdoc=New manuscript
  1047. export_site_doc_stat.num=Sequence number
  1048. export_site_doc_stat.origin=Original manuscript
  1049. export_site_doc_stat.quote=Quote
  1050. export_site_doc_stat.sent=Published
  1051. export_site_doc_stat.signed=Signed
  1052. export_site_doc_stat.site=Site name
  1053. export_site_doc_stat.site.fgl=Statistics list of site filen volum
  1054. export_site_doc_stat.total=Total amount of filen
  1055. export_site_doc_stat.video=Video
  1056. export_site_doc_stat.word=Character
  1057. export_site_hitscount.hitamount=Click rate
  1058. export_site_hitscount.increaseRate=Increase exponent
  1059. export_site_hitscount.num=Sequence number
  1060. export_site_hitscount.site=Site name
  1061. export_site_hitscount.table=Statistics list of site click rate
  1062. export_special_hitscount.departmentName=Department name
  1063. export_special_hitscount.hitmount=Click rate
  1064. export_special_hitscount.info=The statistics list of subject click rate
  1065. export_special_hitscount.num=Sequence number
  1066. export_special_hitscount.subject.name=Subject name
  1067. export_user_hitscount.departmentName=Department name
  1068. export_user_hitscount.null=None
  1069. export_user_hitscount.num=Sequence number
  1070. export_user_hitscount.total.hitscount=Total click rate
  1071. export_user_hitscount.total.user=Statistics list of click rate
  1072. export_user_hitscount.user=User name
  1073. export_userlogininfo_stat.address=IP address
  1074. export_userlogininfo_stat.depName=Departmrnt name
  1075. export_userlogininfo_stat.logging.info=Login sheet({0}to{1})
  1076. export_userlogininfo_stat.logging.time=Login time
  1077. export_userlogininfo_stat.null=None
  1078. export_userlogininfo_stat.num=Sequence number
  1079. export_userlogininfo_stat.userName=User name
  1080. extendedfield.label.addedit=Add/Edit Ext-Fields Page
  1081. extendedfield.label.creator=Creator
  1082. extendedfield.label.delete=Delete Extended Field
  1083. extendedfield.label.length=Max length
  1084. extendedfield.label.list=Ext-Fields List
  1085. extendedfield.label.name=Field Name
  1086. extendedfield.label.showname=Show Name
  1087. extendedfield.label.type=Field Type
  1088. extendedfield.label.value=Field Value
  1089. extendedfield.message.childreninherit_add=Create the Same Extended Field for all sub-channels
  1090. extendedfield.message.childreninherit_edit=Recreate same Extended Field for All sub-channels, Not to create if existed.
  1091. extendedfield.message.deleteinherited=Do you want to drop sub-channels' Synchronized Extended Field at the same time
  1092. extendedfield.text.childreninherit=Do you want to Sync to sub-channels
  1093. extendedfield.tip.add=Create Extended Field
  1094. extendedfield.tip.drop=Delete Selected Extended Field
  1095. extendedfield.tip.refresh=Refresh Current Page
  1096. extendfield.label.addedit=Create/Modify Extended Field
  1097. extendfield.label.creator=Creator
  1098. extendfield.label.desc=Field Description
  1099. extendfield.label.length=Max Length
  1100. extendfield.label.list=Extended Field List
  1101. extendfield.label.name=Field Name
  1102. extendfield.label.type=Field Type
  1103. fetch_document.id.zero=For ID [{0}] of the document to fail!
  1104. file.button.select=Choose File
  1105. file.label.filename=File Name
  1106. file.label.modifytime=Modify Time
  1107. file.label.select=Select
  1108. file.label.xslexist=Existed XSL File
  1109. file.upload.dowith.fileisworry=Invalid file.
  1110. file.upload.dowith.filenocontent=Invalid file.
  1111. file.upload.dowith.noncontent=The file does not include contents.
  1112. file.upload.dowith.title=File Upload Page
  1113. file.upload.fileerror=The file uploaded is wrong.
  1114. file.upload.filesize.toolarge=The file is too big.
  1115. file.upload.title=WCM V6.1 upload file
  1116. file_upload.not.selected=Did not select a file! (Support {0} format)
  1117. file_upload.support=only supports uploading {0} a file format!
  1118. file_upload.wrong.address=Do not enter http (s) or other remote access ftp address!
  1119. file_upload.wrongPath=File path is wrong! Please select {0} format!
  1120. file_upload_dowith.filesize.toolarge=Upload system configuration file size exceeds the maximum {0} K, please re-select the file!}
  1121. file_upload_dowith.jsp.forbid_upload_file=Syetem forhibits uploading [{0}]format file!
  1122. file_upload_dowith.jsp.forbid_upload_filetype=Systems prohibit the uploading of {0} format!
  1123. file_upload_dowith.jsp.forbidfile=The system prohibit the uploading of {0} format!
  1124. file_upload_dowith.jsp.label.error2import_file=The imported file is incorrect!
  1125. file_upload_dowith.jsp.label.import_files_content_is_null=No content is imported!
  1126. file_upload_dowith.jsp.label.runtimeexception=The imported file is incorrect!
  1127. file_upload_dowith.jsp.sysdenyuploadfile=The system forbid to upload file format {0}!!
  1128. file_upload_dowith.label.noContent=Invalid file.
  1129. file_upload_dowith.label.noFileFound=Invalid file.
  1130. file_upload_dowith_pic.jsp.forbid_upload_file=System prohibit uploading [{0}] format file!
  1131. file_upload_dowith_pic.jsp.label.error2import_file=The imported file is incorrect!
  1132. file_upload_dowith_pic.jsp.label.import_files_content_is_null=No content is imported!
  1133. fileupload.label.addr=Please do not enter address of http(s) or ftp.
  1134. fileupload.label.codefile=&nbsp;formats.
  1135. fileupload.label.createFailed=Failed to create file directory!
  1136. fileupload.label.errorcode=Incorrect file format. Please choose the&nbsp;
  1137. fileupload.label.file=&nbsp;formats file.
  1138. fileupload.label.filecode=&nbsp;formats.
  1139. fileupload.label.filecodemulti = &nbsp;formats.
  1140. fileupload.label.filecodesigle = &nbsp;format.
  1141. fileupload.label.filemulti=&nbsp;formats.
  1142. fileupload.label.filesigle=&nbsp;format.
  1143. fileupload.label.forbid=System it is forbidden to upload
  1144. fileupload.label.noselect=No file is selected. It supports only the&nbsp;
  1145. fileupload.label.onlyfor=You can upload only&nbsp;
  1146. fileupload.label.selectfile=Choose file:
  1147. fileupload.label.title=WCM V6.1 upload file
  1148. fileupload.label.value=Upload
  1149. fileupload_dowith.label.add=Did not implement the addfile interface.
  1150. fileupload_dowith.label.titlev61=WCM V6.1 File Upload Page
  1151. fileupload_dowith.label.undefined=Did not define parent
  1152. fileupload_error_message_include.jsp.syserror=System error
  1153. findbyid.runExce=metaview_findbyid.jspAn exception occurs while running.
  1154. findbyid.runtime.error=Runtime exception occurs in {0}_findbyid.jsp.
  1155. findbyid.type=(com.trs.components.metadata.service.MetaDataDefServiceProvider.findbyid)Returned object type is not MetaView, and for ({0}), please confirm.
  1156. flow.label.crtime=Created
  1157. flow.label.cruser=Creator
  1158. flow.label.flowId=Workflow ID
  1159. flow.query.jsp.flowtitle=Workflow-
  1160. flow.query.notknown=Unknown
  1161. flow.select.query.crtime=Created
  1162. flow.select.query.cruser=Creator
  1163. flow.select.query.flowname=Workflow name
  1164. flow.select.query.own=Belongs to
  1165. flow.select.query.owner=Owner
  1166. flow_addedit.jsp.label.chnlnotfind=Find no ID for {0} column
  1167. flow_addedit.jsp.label.sitenotfind=Find no ID for {0} site
  1168. flow_employee_view.jsp.label.chnlnotfind=Find no ID for {0} column
  1169. flow_findbyid.jsp.label.defaultchannel=workflow_findbyid.jspAn exception occurs while running.
  1170. flow_findbyid.metaviewdata_addedit.jsp.label.defaultchannel={0}_findbyid.jsp runtime exception!
  1171. flowcontent.label.title1=Reflowing the flowed documents
  1172. flowcontent.label.title2=Force to end the flowing process
  1173. flowcontent.label.title3=Forcibly Start Flowing Process
  1174. flowcontent.label.title4=Forcibly Finish Flowing Process
  1175. flowdoc.label.back=Redo
  1176. flowdoc.label.danrendedeal=The task delivered from {0} to {2} at [{1}] was completed at [{3}].
  1177. flowdoc.label.duorenkaishichuli=&nbsp;{0} has received it at [{1}] and will handle it.
  1178. flowdoc.label.duorenshiqing=The task was delivered from {0} to {2} at [{1}].
  1179. flowdoc.label.duorenwancheng=&nbsp;{0} has handled it at [{1}].
  1180. flowdoc.label.duorenweiqianshou=&nbsp;{0} received it at [{1}], but has not decided whether to handle it.
  1181. flowdoc.label.duorenweishoudao=&nbsp;{0} has not received it yet.
  1182. flowdoc.label.flowover=Flow completed.
  1183. flowdoc.label.forceend=Forcible Finish
  1184. flowdoc.label.notqianshou=The task was delivered from {0} to {2} at [{1}], but {2} has not received it yet.
  1185. flowdoc.label.postdesc=Opinion
  1186. flowdoc.label.posttime=Time
  1187. flowdoc.label.receivedbutnotdeal=] received, but didn't decide to handle.
  1188. flowdoc.label.refuse=Rejected
  1189. flowdoc.label.sdbingqianshou={0} delivered this document to {2} at [{1}]. {2} has received it at [{3}] and will handle it.
  1190. flowdoc.label.sdwqianshou=The task was delivered from {0} to {2} at [{1}]. {2} received it at [{3}], but has not decided whether to handle it.
  1191. flowemployee.object.not.found.channel=The specified channel [ID={0}] cannot be found.
  1192. flowemployee.object.not.found.lead=Not found with ID [{0}] review!
  1193. flowemployee.object.not.found.site=The specified site of the channel [ID={0}] cannot be found.
  1194. flowemployee.view.construct=Fail to construct the information of
  1195. flowemployee.view.right.info=permission.
  1196. for_style.noRight=You do not have the right to modify style thumbnail!
  1197. for_style.obj.not.found=No valid style object is obtained.
  1198. get_by_type_id.channel.hasBeenDeleted={0} has been deleted! Please refresh your channel tree.
  1199. get_by_type_id.channel.noRight=Sorry! You do no thave permission to see the channel [{0}] publishing !
  1200. get_by_type_id.channel.notFound=Cannot find channel[id={0}]!
  1201. get_by_type_id.document.noRight=Sorry! You do not see the document [{0}] Release History permission!
  1202. get_by_type_id.station.not.found=Sorry! You do no have permission to see the channel [{0}] publishing!
  1203. get_by_type_id.station_id.not.found=cannot find site [id={0}]!!
  1204. get_tokens.jsp.noright=You have no permission to operate!
  1205. getStyle.jsp.special_notfound=No subject ID[{0}] is found!
  1206. gettempid.jsp.channel_notfound=The channel[ObjectId=[{0}] does not exist!
  1207. group.button.addchildgroup=Create Child Group
  1208. group.button.addgroup=Create Group
  1209. group.button.addtopgroup=Create Root Group
  1210. group.button.adduser=Create User
  1211. group.button.appenduser=Add User
  1212. group.button.cancelgrpmanager=Disable Administrator
  1213. group.button.dropgroup=Delete Group
  1214. group.button.dropuser=Delete User
  1215. group.button.modifygroup=Modify Group
  1216. group.button.quitedropuser=Completely Delete User
  1217. group.button.setgroupright=Set Permissions
  1218. group.button.setgrpmanager=Set as Administrator
  1219. group.label.addedit=Create/Modify Group
  1220. group.label.crtime=Created
  1221. group.label.cruser=Creator
  1222. group.label.desc=Group Description
  1223. group.label.desc_of_group=Description
  1224. group.label.drop=Delete Group
  1225. group.label.ge=num
  1226. group.label.group=User Group
  1227. group.label.groupList=User Group
  1228. group.label.grouplist=User group list
  1229. group.label.isgroupadmin=Group Administrator
  1230. group.label.list=Groups List
  1231. group.label.name=Group Name
  1232. group.label.name_of_group=Group Name
  1233. group.label.org=Group
  1234. group.label.positionset=Adjust the Order of Group
  1235. group.label.positionsetgroup=Adjust the Order of Group
  1236. group.label.realname=Real Name/Unit
  1237. group.label.search=Search
  1238. group.label.select=Select Group
  1239. group.label.setright=Set Permissions
  1240. group.label.statusnow=Current Status
  1241. group.label.textcreate=Create
  1242. group.label.textcreatein=Create In
  1243. group.label.textdesc=Description
  1244. group.label.textname=Name
  1245. group.label.upper=Parent Group
  1246. group.label.userlist=Group User List
  1247. group.label.userList=User List
  1248. group.label.userlist1=User List
  1249. group.label.username=User Name
  1250. group.label.users=User
  1251. group.tip.addchildgroup=Create Child Group in Current Group
  1252. group.tip.addgroup=Create Group
  1253. group.tip.addtopgroup=Create Root Group
  1254. group.tip.adduser=Create User
  1255. group.tip.appenduser=Add User to Current Group
  1256. group.tip.cancelgrpmanager=Cancel Admin Permission
  1257. group.tip.dropgroup=Delete Current Group
  1258. group.tip.dropuser=Delete User from Group
  1259. group.tip.modifygroup=Edit Current Group
  1260. group.tip.quitedropuser=Completely Delete Selected User(s)
  1261. group.tip.refresh=Refresh
  1262. group.tip.setgroupright=Set Permissions for Current Group
  1263. group.tip.setgrpmanager=Set selected User as Administrators
  1264. group_doc_stat.audio=Audio
  1265. group_doc_stat.back=Redo
  1266. group_doc_stat.check=Auditing
  1267. group_doc_stat.copy=Copy
  1268. group_doc_stat.count=Statistics list of filen volum
  1269. group_doc_stat.department=Depertment
  1270. group_doc_stat.docnum=Filen volum
  1271. group_doc_stat.edited=Edited
  1272. group_doc_stat.newdoc=New manuscript
  1273. group_doc_stat.num=Sequence number
  1274. group_doc_stat.pic=Picture
  1275. group_doc_stat.quote=Quote
  1276. group_doc_stat.sent=Published
  1277. group_doc_stat.signed=Signed
  1278. group_doc_stat.src=Original manuscript
  1279. group_doc_stat.video=Audio
  1280. group_doc_stat.word=Character
  1281. group_include.org=of group[<span class=\"detail-hostname\">{0}</span>]
  1282. group_include.user=of user[<span class=\"detail-hostname\">{0}</span>]
  1283. group_piechartdata.null=(No data)
  1284. group_tree.jsp.createtime=Construction user [{0}] user group by using the time to [{1}] ms!
  1285. group_tree.obj.not.found=Specified user group [{0}] not found!
  1286. grouped.label.select.selectorg=Choose user in selected group
  1287. grouped.label.select.title=Choose user in selected group
  1288. grouped.label.select.wuxiaoinfo=Invalid type [
  1289. grpuser.label.list=User Management
  1290. hitscount_data_include.department=Department
  1291. hitscount_data_include.user=User
  1292. humb_query.not.administrator=You are not an administrator, not a list of rights management metadata!
  1293. humb_query.type=Services (com.trs.components.metadata.service.MetaDataDefServiceProvider.query) returns the object set type is not MetaDBTables, and for ({0}), please confirm.
  1294. iflowcontent.label.title1=Reassign
  1295. iflowcontent.label.title2=Can't Reassign
  1296. iflowcontent.query.dataformat=yy.MM.dd HH:mm
  1297. iflowcontent.query.label.chnnelname=Owner Channel:&nbsp{0};
  1298. iflowcontent.query.label.docid=Document ID:&nbsp;
  1299. iflowcontent.query.label.status=Status:{0};
  1300. iflowcontent_query.jsp.runtimeex=iflowcontent_query.jsp Runtime exception!
  1301. iflowcontent_query.jsp.servicenoobject=Services (com.trs.ajaxservice.ProcessService.query) returns the object set type is not IFlowContents, and for the {0}, please confirm.
  1302. image_for_style_upload.jsp.label.please_sel_upload_pic=Please select picture.
  1303. image_for_style_upload.jsp.label.uploaded=Uploaded
  1304. image_for_style_upload_dowith.jsp.label.error_upload_file=The imported file is incorrect!
  1305. import_appendix.jsp.label.fail2_upload_file=Failed to upload file!
  1306. import_appendix.jsp.label.local_file_not_exists=The local file does not exist
  1307. import_appendix.jsp.label.runtimeexception=Upload system configuration file size exceeds the maximum {0} K, please re-select the file!
  1308. import_office_doc.jsp.label.fail2create_digital_openoffice_link=Intelligence services created by OpenOffice connected invalid.
  1309. import_office_doc.jsp.label.fail2create_officeservice=Intelligent service request failed to create OfficeService.
  1310. import_office_doc.jsp.label.local_file_not_exists=The local file does not exist
  1311. import_office_doc.jsp.label.please_check=Please check parameter is not configured correctly or service is not started.
  1312. import_photos_appendix.jsp.label.over=Upload file size than the system configuration of the maximum {0} K, please chose to file!
  1313. import_photos_doc.jsp.label.notFound=The local file does not exist.
  1314. import_photos_doc.label.failure=Fail to upload the picture.
  1315. import_photos_doc.label.notFound=Local file does not exist.
  1316. indivadual.fileupload.dowith.errortype={Error:'Wrong file format.'}
  1317. indivadual.fileupload.dowith.fileerror={Error:'Wrong file format.'}
  1318. indivadual.fileupload.dowith.filenone={Error:'The file is empty.'}
  1319. indivadual.query.cancelecustomsite=Clear Selection of Personalized Site
  1320. indivadual.query.nocustomsite=Personalize Site Now
  1321. infoview.addedit.processbar=Create infoview
  1322. infoview.addedit.saveinfoviewerror=Save the infoview error
  1323. infoview.advsetting.searchsetting=search field setting
  1324. infoview.advsetting.serialcode=Infoview Serial Code Setting
  1325. infoview.advsetting.viewsetting=Customize View Setting
  1326. infoview.advsettingdesc.searchsetting=Set search field to construct advanced search page
  1327. infoview.advsettingdesc.serialcode=Set up Serial code management mechanism of Customize Infoview
  1328. infoview.advsettingdesc.viewsetting=Set Default Customize View for Infoview Channel
  1329. infoview.desc=Please enter Infoview Description
  1330. infoview.doc.export.error=] Error.
  1331. infoview.doc.export.error1= to get [
  1332. infoview.document.addedit.cancelbton=Cancel
  1333. infoview.document.addedit.dowith.newtitle=Customize Infoview Data
  1334. infoview.document.addedit.dowith.saveinfo=Infoview saved, processing Infoview flowing....
  1335. infoview.document.addedit.okbutton=OK
  1336. infoview.document.addedit.title1=Custom infoview data
  1337. infoview.document.export.excel=WCM Customize Infoview Document Data
  1338. infoview.document.list.of.channel.docid=DocId :&nbsp;
  1339. infoview.document.list.of.channel.ownerchannel=Channel:
  1340. infoview.document.show.close=Close
  1341. infoview.document.show.doctitle=Title:
  1342. infoview.document.show.print=Print
  1343. infoview.export.xsnfile.filekong=To document called empty!
  1344. infoview.export.xsnfile.infoviewid=The incoming form ID must be greater than 0!
  1345. infoview.export.xsnfile.loginerror=User logged out or login timeout!
  1346. infoview.export.xsnfile.writefileerr=Write documents failure
  1347. infoview.fieldattrs.appadix=Appendix
  1348. infoview.fieldattrs.boolean=Wrong type
  1349. infoview.fieldattrs.char=Character type
  1350. infoview.fieldattrs.checkbox=Checkboxes
  1351. infoview.fieldattrs.combox=Choose more drop-down box
  1352. infoview.fieldattrs.dadio=Single marquee
  1353. infoview.fieldattrs.data=Date controls
  1354. infoview.fieldattrs.downlist=Drop-down box
  1355. infoview.fieldattrs.edit=Text editor
  1356. infoview.fieldattrs.express=Expression
  1357. infoview.fieldattrs.float=Precision decimal type
  1358. infoview.fieldattrs.inadd=IP address
  1359. infoview.fieldattrs.input=Input box
  1360. infoview.fieldattrs.integer=Integer
  1361. infoview.fieldattrs.letternumxiahua=Letters, Numbers, underlined
  1362. infoview.fieldattrs.normallink=Common link
  1363. infoview.fieldattrs.photoapp=Pictures accessories
  1364. infoview.fieldattrs.reppet=Repeat form
  1365. infoview.fieldattrs.reppettype=Repeat item
  1366. infoview.fieldattrs.secondpattern=Binary type
  1367. infoview.fieldattrs.startletternumxiahua=To begin with a letter of letters, Numbers and underline them
  1368. infoview.fieldattrs.value=Data section
  1369. infoview.fieldattrs.zidingyi=Custom types
  1370. infoview.file.upload.filesize=File size [
  1371. infoview.file.upload.fileup=Support only upload
  1372. infoview.file.upload.fileupformat=Format file.
  1373. infoview.file.upload.lastlimit=K]Longer than the maximum limit [
  1374. infoview.file.upload.nonefile=No choose file.
  1375. infoview.file.upload.please.secondselect=K],Please choose again files.
  1376. infoview.file.upload.secondeselect=A file is not available, please chose to file.
  1377. infoview.file.upload.title=Upload files
  1378. infoview.fileupinfo=Documents suffixes not XSN, not standard InfoPath form file.
  1379. infoview.fileupinfo1=Filename invalid, not standard scholar of the form file.
  1380. infoview.fileupinfo2=Please first click "upload" will upload the file server and try again.
  1381. infoview.huoquid=Get ID for [
  1382. infoview.huoquiderror=]Custom form failure.
  1383. infoview.label.addedit_of_infoview=Add/modify custom form
  1384. infoview.label.applychannel=Apply Status
  1385. infoview.label.changefile=Change File
  1386. infoview.label.choosefile=Select File
  1387. infoview.label.crtime=Creation Time
  1388. infoview.label.cruser=Creator
  1389. infoview.label.desc_of_infoview=Infoview Description
  1390. infoview.label.doctitle=Title
  1391. infoview.label.file_of_infoview=Infoview File
  1392. infoview.label.name_of_infoview=Infoview Name
  1393. infoview.label.setting=Set Infoview Properties
  1394. infoview.label.settitlepattern=Set Title Pattern
  1395. infoview.label.title.uselist=View status of Customize Infoview
  1396. infoview.label.unlockerror=unlock fail
  1397. infoview.label.uselist.nouse=This Infoview has not been used
  1398. infoview.lable.advsetting=Infoview Advanced Setting
  1399. infoview.list.addoredit.next=Next(Edit)
  1400. infoview.list.addoredit.title=Add/Edit Customize Infoview
  1401. infoview.list.alertinfo=No INPUT define.
  1402. infoview.list.distributeresource=Synchronous Annex
  1403. infoview.list.infoviewerror=Error.
  1404. infoview.list.selectdelete.infoview.confirm=Are you sure to delete Infoview?
  1405. infoview.list.selectdelete.infoview.deleteinfoviewshibai=Fail to Delete Infoview
  1406. infoview.list.selectdelete.infoview.searcefieldlength=Search Field Size is ['
  1407. infoview.list.selectdelete.infoview.selectsite=Select Site
  1408. infoview.list.selectdelete.infoview.zifulength='].
  1409. infoview.list.selectdeleteinfoview=Please select Infoview to delete.
  1410. infoview.list.selectexport.infoview.onlyone=Only allow export a form!
  1411. infoview.list.selectexport.infoview.pleaseselect=Please first choose to export form!
  1412. infoview.list.showaplicationinfo=View situation of list apply
  1413. infoview.lobel.infoviewlist=Infoview List
  1414. infoview.locker=]Lock! You can't change the!
  1415. infoview.lockerinfo=Custom form[
  1416. infoview.lockeruser=]user[
  1417. infoview.message.uploaddesc=Please select the customize Infoview file you want to use, then click "Upload".
  1418. infoview.message.uploaddesc2=Notice, the table file created by MS InfoPath use postfix name "XSN".
  1419. infoview.name=Please enter Infoview Name
  1420. infoview.namedesclength=The length of the form not greater than the name describes200
  1421. infoview.namelength=The length of the form not greater than the name50
  1422. infoview.patterndesc.time1=Time: YYYY MM DD
  1423. infoview.patterndesc.time2=Time: YY MM DD
  1424. infoview.patterndesc.time3=time: YYYY-MM-DD
  1425. infoview.patterndesc.time4=time: YYYYMMDD
  1426. infoview.patterndesc.user=User Name
  1427. infoview.preview.closebutton=Closed
  1428. infoview.save.info.lock=Objects are being other users locking, cannot be modified. The current user: [
  1429. infoview.save.info.lockuser=] Locking-in users: [
  1430. infoview.selectinfofile=Please select Infoview file
  1431. infoview.selectinfofilelength=Form the length of the file name not greater than200
  1432. infoview.titlepattern.time1=${::time, yyyy MM dd}
  1433. infoview.titlepattern.time2=${::time, yy MM dd}
  1434. infoview.titlepattern.time3=${::time, yyyy-MM-dd}
  1435. infoview.titlepattern.time4=${::time, yyyyMMdd}
  1436. infoview.unlockerror=unlock fail
  1437. infoview.uselist.infoviewcrtime=Storage time:
  1438. infoview.uselist.infoviewcruse=Creator:
  1439. infoview.uselist.infoviewname=Form name:
  1440. infoview.uselist.usechannel=Application columns:
  1441. infoview_addedit_dowith.jsp.label.fail2create_infoview=Attribute value is incorrect.Failed to construct custom form in XML!
  1442. infoview_addedit_setting.jsp.fail2_get_infoviewId=For ID [{0}] custom infoview failed!
  1443. infoview_document_addedit.jsp.fail2_get_docId=For ID [{0}] of the document to fail!
  1444. infoview_document_addedit.jsp.label.channel_config_error_exception=The channel is not configured to effectively custom form can not be edited under the documentation!
  1445. infoview_document_addedit.jsp.label.channel_not_found_exception=The channel cannot be found!
  1446. infoview_document_addedit.jsp.label.channelId_not_found_exception=The channel is Id 0 cannot find it!
  1447. infoview_document_addedit.jsp.label.unable_edit_selfinfoview_exception=The channel is not a custom form channels can not be edited under the documentation!
  1448. infoview_document_addedit.jsp.noright_change_doc=You do not have permission to modify the ID [{0}] of document!
  1449. infoview_document_addedit.jsp.noright_change_doc_a=The file[{0}][{1}] is locked by user[{2}]! you cannot modify!
  1450. infoview_document_addedit.noRight=You are not authorized New Document!
  1451. infoview_document_addedit.object.not.found=Cannot find the flowing object[FlowDocId={0}]!
  1452. infoview_document_addedit_dowith.channel.not.found=Sorry, can not find the channel applications! Please check your WCM!
  1453. infoview_document_addedit_dowith.document.not.found=Sorry, cannot find applied file please check your WCM!
  1454. infoview_document_addedit_dowith.form.not.found=Sorry, could not find a custom application form! Please check your WCM!
  1455. infoview_document_addedit_dowith.getFail=Failed to obtain file ID[{0}]!
  1456. infoview_document_addedit_dowith.locked=The file[{0}][{1}] is locked by user [{2}]!You cannot modify!!
  1457. infoview_document_addedit_dowith.noRight=You do not have permission to modify the ID [{0}] of document!
  1458. infoview_document_addedit_dowith.not.config=The Channel is not configured to effectively custom form, unable to see the document under!
  1459. infoview_document_addedit_dowith.not.fit=The channel is not customized that cannot be edited the documents!
  1460. infoview_document_addedit_dowith.not.found=Can not find the channel!
  1461. infoview_document_addedit_dowith.not.permit=You are not authorized New Document!
  1462. infoview_document_addedit_dowith.object.not.found=The channel cannot be found!
  1463. infoview_document_export_excel.channel.failed=Failed to obtain the file ID [{0}]!
  1464. infoview_document_export_excel.jsp.label.doc_state=Document Title,Created,Creator,Creator IP,Document Status
  1465. infoview_document_export_excel.ont.fit=The channel is not a custom form or type of channel The channel is not configured to effectively custom form can not be edited under the documentation!
  1466. infoview_document_export_excel.reduce.failed=Failed to extract file to zip file.!
  1467. infoview_document_get_data.channel.not.found=Can not find the channel!
  1468. infoview_document_get_data.form.not.effective=The channell is not configured to effectively customized form can not be edited under the document!
  1469. infoview_document_get_data.form.not.fit=The channell is not configured to effectively customized form can not be edited under the document!
  1470. infoview_document_get_data.getFailed=For ID [{0}] of the document to fail!
  1471. infoview_document_get_data.id.not.found=Channel Id is 0, can not find the channel!
  1472. infoview_document_get_data.id.zero=Cannot find the file Id 0 !
  1473. infoview_document_get_data.noRight=trace the file usage situation ID[{0}]!
  1474. infoview_document_list_of_channel.document.not.get=Failed to obtain the [{0}] document attribute!
  1475. infoview_document_list_of_channel.exception=iflowcontent_query.jsp runtime exception!
  1476. infoview_document_list_of_channel.getFailed=Failed to obtain the channel ID[{0}]!!
  1477. infoview_field_set.id.zero=InfoViewId 0, can not find the InfoView!
  1478. infoview_field_set.obj.not.found=InfoView can not be found!
  1479. infoview_fieldattrs.field.not.found=Can not find the form field [IVFieldName = {0}, InfoViewId = {1}]!
  1480. infoview_fieldattrs.id.zero=InfoViewId is 0,cannot find InfoView!
  1481. infoview_fieldattrs.obj.not.found=cannot find InfoView!
  1482. infoview_fieldattrs_dowith.construct.failed=From XML to construct a custom form field property values due to incorrect failed!
  1483. infoview_fieldattrs_dowith.id.zero=InfoViewId is 0,cannot find InfoView!
  1484. infoview_fieldattrs_dowith.obj,ont.found=cannot find InfoView!
  1485. infoview_fields_select.id.zero=InfoViewId 0, can not find the InfoView!
  1486. infoview_fields_select.obj.not.found=InfoView can not be found!
  1487. infoview_fields_tree.id.zero=InfoViewId is 0,cannot find InfoView!
  1488. infoview_fields_tree.obj.not.found=Cannot find InfoView!
  1489. infoview_list.form.attribute.wrong=Failed to obtain the [{0}] form attribute!
  1490. infoview_load_views.getFailed=Failed to obtain customized form ID [{0}]!
  1491. infoview_save_group.attribute.wrong=Failed to form from the XML view of the construction of customized due to incorrect property values!
  1492. infoview_save_info.attribute.wrong=Construct a custom form from an XML attribute value is not correct due to fail!
  1493. infoview_save_view.attribute.wrong=Form from the XML view of the construction of custom property values ??due to incorrect and failed!
  1494. infoview_save_view.form.not.exist=Belongs to the form view does not exist!
  1495. infoviewdoc.findbyid.staturname=Unknown
  1496. infoviewdoc.list.channel.ownchannl=Subordinate columns [
  1497. infoviewdoc.list.channel.queotdoc=Reference document
  1498. infoviewdoc_findbyid.jsp.docnotfound=cannot findID {0}"
  1499. infoviewdoc_findbyid.jsp.label.runtimeexception=infoviewdoc_findbyid.jsp runtime exception!
  1500. introduction_dowith.jsp.label.fail2save_sys_config= An error occours while saving system conig
  1501. issuedamount_bonus_stat.info=User[{0}] bonus statistics list(Time{0} to {1})
  1502. issuedamount_bonus_stat.total=Total
  1503. jobworkertype.label.addedit=Create/Modify Schedule Type
  1504. jobworkertype.label.bean=Bean
  1505. jobworkertype.label.desc=Description
  1506. jobworkertype.label.name=Name
  1507. jobworkertype.label.param=Parameter
  1508. jobworkertype.message.bean=Bean must inherit from com.trs.infra.util.job.BaseJob or com.trs.infra.util.job.BaseStatefulJob
  1509. keyword_add.attribute.wrong=Failed to save Keyword due to the incorrect attribute!
  1510. keyword_addedit.key.getFailed=Failed to obtain ID[{0}]Keyword!
  1511. keyword_edit.id.zero=For ID [{0}] of Keyword failed!
  1512. layout_addedit.jsp.fail2get_layout=Failed to obtain layout ID[{0}]!
  1513. layout_addedit.jsp.label.have_no_right=Sorry. You do not have the right to modify and save the layout!
  1514. layout_query.jsp.collumn=Column number:{0}
  1515. layout_query.jsp.collumn_num=Number of column:[{0}]&#13!
  1516. layout_query.jsp.fixed_ratio=Fixed rate &#13;
  1517. layout_query.jsp.layout=Layout [{0}]
  1518. layout_query.jsp.percentage=Ratio:{0}
  1519. layout_query.jsp.percentage_ratio=Percent&#13;
  1520. layout_query.jsp.percentage_value=Percentage[{0}]&#13!
  1521. layout_query.jsp.ratio_type=Ratio type:
  1522. layout_query.jsp.serial_num=Serial number:[{0}]&#13!
  1523. layout_select.jsp.collumn=Number of column:[{0}]&#13!
  1524. layout_select.jsp.fixed_ratio=Fixed ratio&#13;
  1525. layout_select.jsp.layout=Layout[{0}]
  1526. layout_select.jsp.percentage_ratio=Percentage&#13;
  1527. layout_select.jsp.ratio_type=Ratio type:
  1528. layout_select.jsp.ratio_value=Rate value:[{0}]
  1529. layout_select.jsp.serial_num=Serial number:[{0}]&#13!
  1530. license_checker.error=License problems, illegal use!\n
  1531. license_checker.mes=Limit the number of sites beyond the current registration code, need for additional, please contact TRS, Thank you for using TRS product!\n
  1532. license_checker.wrong=registration code problem,the obtaining site is not approved!!\n
  1533. license_edit.jsp.label.licencesincorrect=Registration code is not correct or has expired, please enter a new registration code!
  1534. list_base.construct.failed=Structure [{0}] permissions information!
  1535. list_dowith.runExcep=keyword_list_dowith.jspRuntime exception!
  1536. list_redirect.channel.id.zero=For Site ID is [{0}] of the site failed!
  1537. list_redirect.doc.id.zero=Get ChannelID to [{0}] of the Channel failed!
  1538. list_redirect.noid=unspecified ChannelI and SiteId.
  1539. list_select.runExce=metaviewdata_classic_list_select.jsp runtime exception!
  1540. lock.label.canotLock=Cannot lock the object
  1541. lock.label.canotLockTwice=You cannot modify the object before unlocking it.
  1542. lock.label.lock=
  1543. lock.label.objHas=The object has been locked by&nbsp;
  1544. log.label.endtime=End Time
  1545. log.label.exectime=Total Time
  1546. log.label.info=System Log Info
  1547. log.label.list=System Logs List
  1548. log.label.logdesc=Details
  1549. log.label.logtype=Log Type
  1550. log.label.operobj=Operation Object
  1551. log.label.operobjid=Operation Object ID
  1552. log.label.operresult=Operation Result
  1553. log.label.opertime=Operation Time
  1554. log.label.opertype=Operation Type
  1555. log.label.operuser=Operation User
  1556. log.label.operuserip=Operation User IP
  1557. log.label.selecttimearea=Date
  1558. log.label.starttime=Start Time
  1559. log.tip.export=Import Selected Log(s)
  1560. log.tip.refresh=Refresh Current Page
  1561. log.tip.return=Return
  1562. logo_list.attribute.getFailed=Get the [{0}] Logo properties failed!
  1563. logo_list.getFailed=failed to obtain [{0}]Logo!
  1564. logo_list.jsp.PageNav1=Logo
  1565. logo_list.jsp.PageNav2=Unit
  1566. logo_list.jsp.title1Attr=Reorder the Logos
  1567. logo_list.notFound=cannot find [{0}] Logo!
  1568. logo_parameter_set.appendixmanage=Attachment Management
  1569. logo_parameter_set.choice=Please select
  1570. logo_parameter_set.empty=Resource sample object is null
  1571. logo_parameter_set.id.zero=No Widget object[Id={0}] is found.
  1572. logo_parameter_set.inputselect=Writeable drop-down
  1573. logo_parameter_set.inputtips=Writeable tip
  1574. logo_parameter_set.noteffect=No valid widgetInstanceId imported
  1575. logo_parameter_set.yes.no=Yes`1~No`0
  1576. LONGTEXT1='Do you need to open Office client extractive component?\n To open ActiveX component must set current site as creditable site'
  1577. LONGTEXT2='Your Office client extractive component is not installed correctly.\nTo open the ActiveX plug-in, you need to set the current web site to the trusted sites.\n\nDo you need to open the Office client extractive component?'
  1578. LONGTEXT3="WCM SOAP service config error."
  1579. LONGTEXT4="\nPossible reasons: \n1, current site has not been set as creditable site. \n2,FireWall holds up SOAP port ["
  1580. main.label.loginuser=Current Login User
  1581. main.label.logout=Log Out
  1582. main.label.logout2=Log out Current Session
  1583. main.label.mymsg=Click to go to 'My Message'
  1584. main.label.online=Current Online
  1585. main.label.receivemsg=Click to receive message
  1586. main.label.viewonline=View Online User(s)
  1587. manager_photos.jsp.style_notfound=Style [id={0}] does not exist.
  1588. markkind.label.addedit=Create/Modify Subfolder
  1589. markkind.label.desc=Description
  1590. markkind.label.list=Bookmark Folder List
  1591. markkind.label.list_of_shared=Share Bookmark Folder List
  1592. markkind.label.name=Name
  1593. markkind.label.share=Share Bookmark
  1594. markkind.tip.refresh=Refresh
  1595. markkind.tip.return=Return
  1596. master_addedit.jsp.label.have_no_right2alter_template=You do not have the right to modify motherboard[{0}]
  1597. master_addedit.jsp.label.have_no_right2create_template=You do not have the right to create motherboard
  1598. master_query.jsp.creator=Creater:{0}
  1599. master_query.jsp.crtime=Time:{0}
  1600. message.button.clearinbox=Clean Inbox
  1601. message.button.clearsentbox=Clean SendBox
  1602. message.button.drop=Delete
  1603. message.button.reply=Reply
  1604. message.button.send=Send
  1605. message.button.signallreaded=Set All as Read
  1606. message.button.signnotreaded=Mark as Unread
  1607. message.button.signreaded=Mark as Read
  1608. message.button.transmit=Forward
  1609. message.label.content=Content
  1610. message.label.info=Check Message
  1611. message.label.latestmsg=Create message
  1612. message.label.list=Message List
  1613. message.label.messageinfo=Check Messages
  1614. message.label.receiver=Receiver
  1615. message.label.send=Online Message(s)
  1616. message.label.sender=Sender
  1617. message.label.sendtime=Send Time
  1618. message.label.sendtype=Type
  1619. message.label.title=Title
  1620. message.query.dealdoc=dowith document
  1621. message.query.replymsg=reply message
  1622. message.tip.clearinbox=Clean Inbox
  1623. message.tip.clearsentbox=Clean SendBox
  1624. message.tip.drop=Delete Selected Message(s)
  1625. message.tip.refresh=Refresh Current Page
  1626. message.tip.reply=Reply Message
  1627. message.tip.send=Send a Message
  1628. message.tip.signallreaded=Mark All Unread Messages as Read
  1629. message.tip.signnotreaded=Mark Selected Message(s) as Unread
  1630. message.tip.signreaded=Mark Selected Message(s) Status as Read
  1631. message.tip.transmit=Forward Received Message
  1632. message_query.runExce=message_query.jsp runtime exception!
  1633. message_query.type=Services (com.trs.ajaxservice.MessageServiceProvider.query) returns the object set type is not Messages, and for ({0}), please confirm.
  1634. metadata_relation_select.document_addedit_label_15=Unspecified ChannelId
  1635. metadbfield.label.crtime=Creation Time
  1636. metadbfield.label.cruser=Creator
  1637. metadbfield.label.metadbfieldid=Metadata field id
  1638. metadbfield_findbyid.runExce=metadbfield_findbyid.jsp runtime exception!
  1639. metadbfield_query.runExce=An exception occurs while running metadbfield_query.jsp.
  1640. metadbfield_query.type=service(com.trs.components.metadata.service.MetaDataDefServiceProvider.query)The return object collection is not MetaDBFields, but {0}, please confirm!.
  1641. metadbtable.label.crtime=Creation Time
  1642. metadbtable.label.cruser=Creator
  1643. metadbtable.label.metadbtable=Metadata
  1644. metadbtable.label.metadbtableId=Metadata ID
  1645. metadbtable.label.metaview=VIew
  1646. metadbtable.label.rowId=ID
  1647. metadbtable_findbyid.runExce=metadbtable_findbyid.jsp runtime exception!
  1648. metadbtable_findbyid.type=Services (com.trs.components.metadata.service.MetaDataDefServiceProvider.findbyid) returns the object type is not MetaDBTable, and for ({0}), please confirm.
  1649. metadbtable_thumb_query.runExce=metadbtable_thumb_query.jsp runtime exception!
  1650. metarecdata.label.noChannel=No users found the default storage channel.
  1651. metarecdata.label.recid=Record ID
  1652. metarecdata.label.unknown=Unknow
  1653. metarecdata_findbyid.runExce=metarecdata_findbyid.jsp runtime exception!
  1654. metarecdata_findbyid.type=service(com.trs.components.metadata.service.MetaDataCenterServiceProvider.findbyid)return collection type is not ViewDocument,but ({0}),please confirm.
  1655. metarecdata_query.jsp.label.runtimeexception=metarecdata_query.jsp runtime exception!
  1656. metarecdata_query.label.runtimeexception=metareddata_query.jsp runtime exception!
  1657. metarecdata_query.runExce=metarecdata_query.jsp runtime exception!
  1658. metarecdata_query.type=Services (com.trs.components.metadata.service.MetaDataCenterServiceProvider.query) returns the object set type is not MetaViewDatas, and for ({0}), please confirm.
  1659. metaview.label.rowId=ID
  1660. metaview_channel_list.jsp.label.runtimeexception=The value of parameter MetaViewId must be greater than0!
  1661. metaview_channel_list.jsp.notfound=The view ID[{0}] is not found!
  1662. metaview_document_relation.jsp.pagetitle= TRS WCM {0}Management
  1663. metaview_document_relation.jsp.relationdataTitle={0}data title
  1664. metaview_document_relation.jsp.settingdatatitle=The related {0}data
  1665. metaview_findById.label.crtime=Creation Time
  1666. metaview_findById.label.cruser=Creator
  1667. metaview_findById.label.viewInfo=View ID
  1668. metaview_query.runExce=metaview_query.jsp runtime exception!
  1669. metaview_query.type=service(com.trs.components.metadata.service.MetaDataDefServiceProvider.query)The return collection is not MetaViews, but {0}, please confirm!
  1670. metaview_select.label.crtime=Creation Time
  1671. metaview_select.label.cruser=Creator
  1672. metaview_select.label.enfieldname=Unique Name
  1673. metaview_select.label.fieldname=Display Name
  1674. metaview_select.label.name=Name
  1675. metaview_select.label.owner=belong to
  1676. metaview_select.label.viewName=View Name
  1677. metaviewdata.label.classinfoNotExist=Classification information specified does not exist.
  1678. metaviewdata.label.classNotExist=The specified classification does not exist.
  1679. metaviewdata.label.clob=Clob
  1680. metaviewdata.label.VARCHAR=VARCHAR
  1681. metaviewdata.label.crtime=Creation Time
  1682. metaviewdata.label.cruser=Creator
  1683. metaviewdata.label.fileError=File is incorrect.
  1684. metaviewdata.label.no=No
  1685. metaviewdata.label.noContent=File is no contnet
  1686. metaviewdata.label.none=None
  1687. metaviewdata.label.recId=RecId
  1688. metaviewdata.label.recordId=Record ID
  1689. metaviewdata.label.reldocNotExist=There are no specified related documents
  1690. metaviewdata.label.yes=Yes
  1691. metaviewdata_addedit.jsp.classfiynotfound=System does not find the specified category! [ID = {0}]
  1692. metaviewdata_addedit.jsp.continuefill=Click here to fill out
  1693. metaviewdata_addedit.jsp.finishfill=Click here to fill out complete
  1694. metaviewdata_addedit.jsp.label.defaultchannel=No default channel is found!
  1695. metaviewdata_addedit.jsp.label.nextorgclassfiy=Sub-units of institutions of different categories
  1696. metaviewdata_addedit.jsp.label.null=Null
  1697. metaviewdata_addedit.jsp.label.orgclass=Organization classification
  1698. metaviewdata_addedit.jsp.label1=The view ID [{0}] is not used by any channel!
  1699. metaviewdata_addedit.jsp.newormodifydata=New/Moify [{0}] data
  1700. metaviewdata_addedit.jsp.otherattr=Other attributes include an attachment, position words, the record date, revocation date, relevant information and other metadata items, if you want to fill out, you can click here to {0} {1} completed>
  1701. metaviewdata_addedit.jsp.title=new/modify date[{0}]data
  1702. metaviewdata_addedit_inflow_right_redirect.jsp.noright_change_doc=You do not have the right to modify the document of ID [{0}]
  1703. metaviewdata_cls_query.jsp.runtimeexception=metaviewdata_query.jsp runtime exception!
  1704. metaviewdata_findbyid.type=Services (com.trs.components.metadata.service.MetaDataCenterServiceProvider.findbyid) returns the object type is not ViewDocument, and for ({0}), please confirm.
  1705. metaviewdata_query.jsp.label.crtime=Created:
  1706. metaviewdata_query.jsp.label.distance2pic_warning=<%The title height format must be:Integer+Unit(pt/em/px)
  1707. metaviewdata_query.jsp.label.runtimeexception=metaviewdata_query.jspRuntime exception!
  1708. metaviewdata_query.jsp.label.widget_style_name=Resource style name
  1709. metaviewdata_query.runExce=metaviewdata_query.jsp runtime exception!
  1710. metaviewdata_query.type=(com.trs.components.metadata.service.MetaDataCenterServiceProvider.query)the return collection is not MetaViewDatas,but({0}),please confirm.
  1711. metaviewdata_select_query.jsp.label.runtimeexception=metaviewdata_query.jsp runtime exception!
  1712. metaviewfield.label.classNotExist=Classification specified does not exist.
  1713. metaviewfield.label.crtime=Creation Time
  1714. metaviewfield.label.cruser=Creator
  1715. metaviewfield.label.viewfieldid=Field ID
  1716. metaviewfield.object.not.found=<font color=red>Specified classification does not exist! [ID = {0}]</font>
  1717. metaviewfield_findbyid.jsp.label.runtimeexception=metaviewfield_findbyid.jsp runtime exception!
  1718. metaviewfield_findbyid.jsp.result_not_matching=Services (com.trs.components.metadata.service.MetaDataDefServiceProvider.findbyid) returns the object type is not MetaViewField, and for the {0}, please confirm.
  1719. metaviewfield_query.jsp.label.runtimeexception=metaviewfield_query.jsp runtime exception!
  1720. metaviewfield_query.jsp.result_not_matching=service(com.trs.components.metadata.service.MetaDataDefServiceProvider.findbyid)The return type is not MetaViewField,but {0},please confirm.
  1721. metaviewfieldgroup_addedit.jsp.fail2get_MetaViewFieldGroup=!Failed to obtain MetaViewFieldGroup ID [{0}]!!
  1722. metaviewfieldgroup_addedit.jsp.label.valueof_MetaViewId_error=The value of parameter [MetaViewId] must be greater than 0!
  1723. metaviewfieldgroup_addedit_dowith.jsp.fail2get_MetaViewFieldGroup=No MetaViewFieldGroup ID[{0}] is found!
  1724. metaviewfieldgroup_addedit_dowith.jsp.label.fail2save=The attribute value is incorrect!Failed to save MetaViewFieldGroup!
  1725. metaviewfieldgroup_addedit_dowith.jsp.syn_by_user=MetaViewFieldGroup is locked by user [{0}]!
  1726. metaviewfieldgroup_exist.jsp.label.error_param=Invalid parameter!
  1727. metaviewfieldgroup_list.jsp.fail2get_Attribute=Failed to obtain the attribute of the [{0}]MetaViewFieldGroup!
  1728. metaviewfieldgroup_list.jsp.fail2get_MetaViewFieldGroup=Failed to obtain the[{0}]MetaViewFieldGroup!
  1729. metaviewfieldgroup_list.jsp.label.param_value_error=Parameter value [MetaViewId] must be greater than 0!
  1730. metaviewfieldgroup_show.jsp.param_error=The parameter is incorrect. No MetaViewFieldGroup ID[{0}] is found.
  1731. nav_tree.label.crtime=Created:&nbsp;
  1732. nav_tree.label.cruser=Creator:&nbsp;
  1733. nav_tree.label.dbId=ID:&nbsp;
  1734. nav_tree.label.id=Unique Name:&nbsp;
  1735. nav_tree.label.individualChnl=My Custom Channel
  1736. nav_tree.label.notBuyPicComponent=You did not buy it.
  1737. nav_tree.label.notBuyVideoComponent=You did not buy it.
  1738. nav_tree.label.objId=ID:&nbsp;
  1739. nav_tree.label.picWarehouse=Picture Library
  1740. nav_tree.label.resourceWarehouse=Resource Library
  1741. nav_tree.label.textWarehouse=Library
  1742. nav_tree.label.videoWarehouse=Video Library
  1743. nav_tree\nav_tree_select.jsp.website_notfound=cannot find the specified site![ID={0}]
  1744. nav_tree_select.jsp.not_supportmode=Do not support the specified mode!{0}
  1745. nav_tree_select_individual.jsp.channel_not_exists=Specified channel [{0}] does not exist!
  1746. nav_tree_select_individual.jsp.stitle=Number: {0} \ nCreator: {1} \ n created: {2}
  1747. nav_tree_select_node.object.not.found=Not found with ID {0} channel
  1748. nav_tree_select_test.jsp.label.pic_coll=Photo Gallery
  1749. nav_tree_select_test.jsp.label.vedio_coll=Video Library
  1750. nav_tree_select_test.jsp.label.word_coll=literal pool
  1751. nfoview_publicfill_setting.id.zero=InfoViewId 0, can not find the InfoView!
  1752. nfoview_publicfill_setting.obj.not.found=cannotfind InfoView!
  1753. nfoview_publicfill_setting.wrongNode=The current group node non-section node!
  1754. object.failed.found=Failed to find the object.
  1755. object.locked.modify=The object has been locked by {0}. You cannot modify the object before unlocking it.
  1756. object.locked.readonly=The object is locked by {0}. Are you sure to enter the read-only-mode?
  1757. object.not.found=The specified {1} [ID={0}] cannot be found.
  1758. object.not.found_a=Did not find the specified ID is [{0}] of the object!
  1759. onliners.noLogging=No users logged in!
  1760. onlines.label.loginIp=Login Address
  1761. onlines.label.time=Login Time
  1762. operator.error.label.unknownError=Unknown error!
  1763. opertype.label.addedit=Create/Modify Operation Type
  1764. opertype.label.desc=Description
  1765. opertype.label.info=Operation Type Info
  1766. opertype.label.list=Operation Type List
  1767. opertype.label.name=Name
  1768. opertype.tip.add=Create Operation Type
  1769. opertype.tip.drop=Delete Selected Operation Type
  1770. opertype.tip.refresh=Refresh Current Page
  1771. opertype.tip.return=Return
  1772. pager_generate.jsp.label.bottom_page=The end
  1773. pager_generate.jsp.label.home_page=Homepage
  1774. pager_generate.jsp.label.next_page=Next
  1775. pager_generate.jsp.label.preview_page=Previous
  1776. pagestyle_addedit.jsp.edit_style=Edit style
  1777. pagestyle_addedit.jsp.fail2get_style=Failed to obtain style [Id:{0}]!
  1778. pagestyle_addedit.jsp.have_noright2_alter_style=You do not have the right to modify style [{0}]!
  1779. pagestyle_addedit.jsp.have_noright2_create_style=You do not have the right to create style!
  1780. pagestyle_addedit.jsp.new_style=Create style
  1781. pagestyle_edit_main_index.jsp.fail2get_page_style=Failed to obtain page style [Id:{0}]!
  1782. pagestyle_edit_main_index.jsp.have_noright_alter_style=You do not have the right to modify style [{0}]!
  1783. pagestyle_query.jsp.label.click_here2_alter_style_thumb=title= \'Click and mofify the style thumbnail\'
  1784. pagestyle_query.jsp.label.en_name=English name:
  1785. pagestyle_query.jsp.label.zh_name=Chinese name:
  1786. pagestyle_query.jsp.who_and_when_create=create at {1}
  1787. pagestyle_select_query.jsp.service=The collection type of return object to service(com.trs.ajaxservice.PageStyleServiceProvider.query)is not PageStyles, but [{0}]. Please conirm.
  1788. parentTree.jsp.noidchnl=Not found with ID {0} channel
  1789. parentTree.jsp.noidsite=Not found with ID {0} sites
  1790. person.button.modify_of_password=Change Password
  1791. person.button.modify_of_user=Modify Information
  1792. person.label.config_of_locale=Customize Language Config
  1793. person.label.edit_of_password=Change Password
  1794. person.label.edit_of_userinfo=Modify User Information
  1795. person.tip.modify_of_locale=Modify Language Setting
  1796. person.tip.modify_of_password=Change Password
  1797. person.tip.modify_of_user=Edit User Info
  1798. photo.label.crtime=Creation Time
  1799. photo.label.cruser=Creator
  1800. photo_download.jsp.label.export_original_pic_error=An error occurred during export artwork!!
  1801. photo_download.jsp.pic_notfound=cannot find picture ID [{0}]!
  1802. photo_findbyid.jsp.label.runtimeexception=photo_findbyid.jsp runtime exceptions!
  1803. photo_findbyid.jsp.objtype_isnot_ViewDocument=Services (com.trs.ajaxservice.PhotoServiceProvider.findbyid) returns the object type is not ViewDocument, and for the {0}, please confirm.
  1804. photo_findbyid.label.unknown=Unknown
  1805. photo_importsyspics.jsp.channelId_not.found=Did not find the specified ID is [{0}] of the channel!
  1806. photo_importsyspics.jsp.label.fail2get_watermark_coll=Failed to obtain site watermark collection!
  1807. photo_importsyspics.label.choose=Choose
  1808. photo_list_editor.jsp.objtype_isnot_ViewDocument=service(com.trs.ajaxservice.PhotoServiceProvider.findbyid)The return type is not ViewDocument,but {0},please confirm.
  1809. photo_list_editor_query.jsp.chnldoc_notfound=Did not find the specified ID is [{0}] of chnldoc!
  1810. photo_list_editor_query.jsp.doc_notfound=Did not find the specified ID is [{0}] of document!
  1811. photo_list_editor_query.jsp.label.runtimeexception=watermark_query.jspruntime exception!
  1812. photo_origin_edit.jsp.doc_notfound=cannot find the channelID [{0}]!
  1813. photo_origin_edit.jsp.label.fail2get_watermark_coll=Failed to obtain site watermark collection!
  1814. photo_query.jsp.label.runtimeexception=photo_query.jsp runtime exception!
  1815. photo_query.jsp.objtype_isnot_ViewDocument=Services (com.trs.ajaxservice.PhotoServiceProvider.findbyid) returns the object type is not ViewDocument, and for the {0}, please confirm.
  1816. photo_reupload.jsp.channel_notfound=Cannot find the channelID[{0}]!
  1817. photo_reupload.jsp.doc_notfound=Do not find the file ID[{0}]!
  1818. photo_reupload.jsp.label.fail2get_watermark_coll=Failed to obtain site watermark collection!
  1819. photo_show.jsp.channel_notfound=Did not find the specified ID is [{0}] of the channel!
  1820. photo_show.jsp.noright_scan_pic=You do not have permission to view ID [{0}] of the picture!
  1821. photo_show.jsp.ondoc_notfound=Cannot find the file[{0}]!
  1822. photo_show.jsp.pic_notfound=Cannot find the specified picture ID[{0}]!
  1823. photo_show.jsp.website_notfound=Do not find the specified ID site [{0}]!
  1824. photo_show.label.unknown=Unknown
  1825. photo_show_editor.jsp.pic_notfound=Cannot find picture ID[{0}]!
  1826. photo_syspics_list.jsp.label.runtimeexception=photo_syspics_query.jsp runtime exception!
  1827. photo_syspics_query.jsp.doc_notfound=Do not find file ID [{0}]!!
  1828. photo_syspics_query.jsp.label.service=Services (com.trs.ajaxservice.viewDocumentServiceProvider.trsQuery) returns the object set type is not Appendixes, which is ({0}), please confirm.
  1829. photo_thumb_query.jsp.chnldoc_notfound=Not found with ID [{0}] of chnldoc!
  1830. photo_thumb_query.jsp.doc_notfound=Not found with ID [{0}] of document!
  1831. photo_thumb_query.jsp.label.runtimeexception=watermark_query.jsp runtime exception!
  1832. photo_thumb_query.jsp.objtype_isnot_ViewDocument=Services (com.trs.ajaxservice.PhotoServiceProvider.query) returns the object type is not ViewDocument, and for the {0}, please confirm.
  1833. photo_upload.jsp.channelId_notfound=Not found with ID [{0}] of the channel!
  1834. photo_upload.jsp.label.fail2get_watermark=Failure to obtain site watermark collection!
  1835. photo_upload.label.choose=Choose
  1836. photo_upload_editor.jsp.channelId_notfound=Cannot find chanel ID[{0}]!
  1837. photo_upload_editor.jsp.label.fail2get_watermark_coll=Failed to obtain site watermark collection !
  1838. photodoc_edit.jsp.channel_notfound=Not found channel ID [{0}]!!
  1839. photodoc_edit.jsp.doc_notfound=Not found with ID [{0}] of document!
  1840. photodoc_edit.label.picRelTime=Picture Creation Time
  1841. photoprops_edit.jsp.doc_notfound=Did not find the specified ID is [{0}] of document!
  1842. photoprops_edit.label.picRelTime=Date
  1843. photos_import.id.zero=Not found with ID {0} channel
  1844. photos_import.jsp.channel_notfound=No channel ID[{0}] is found
  1845. photos_import.jsp.label.fail2get_site_shuiyin_coll=Failed to obtain site watermark collection!
  1846. photos_import.label.choose=Choose
  1847. piechartdata..null=(None)
  1848. piechartdata.clickMount=Channel click rate
  1849. piechartdata.hitamount=Site click rate
  1850. piechartdata.hitmount=Subject click rate
  1851. piechartdata.hitscount=Department click rate
  1852. piechartdata.nodata=(None)
  1853. poll_list.error.notrun=Research config is incorrect or is not activated!
  1854. poll_list.id.invest=Research ID
  1855. poll_list.id.obj.empty=Resource sample object is null
  1856. poll_list.id.zero=No widget[Id={0}] is found
  1857. poll_list.noeffect=No valid widgetInstanceId is imported
  1858. position_set.channed.notFound=Not found with ID [{0}] of the channel!
  1859. position_set.document.notFound=cannot find ID[{0}]!
  1860. position_set.Set=Adjust the document <font color=blue>[{0}]</font> in the channel <font color=blue{1}</font>[] in order</font>
  1861. position_set.total.document=Article <input type='text' name='DocumentOrder' value='{0}' style='width:25px; text-align: center;' onfocus='this.select();'> Bit ({1} papers document)
  1862. public_server.construct.failed=Structure [{0}] permissions information!
  1863. public_server.logging.error=The user didn't logged in or log out!
  1864. public_thumb_upload_dowith.jsp.label.error_import_file=The imported file is incorrect!
  1865. public_thumb_upload_dowith.jsp.label.import_file_content_isnull=No content is imported!
  1866. publish.label.addedit=Create/Modify Publish Component
  1867. publish.label.addedit_of_distribution=Create/Modify Publish Distribution Config
  1868. publish.label.bean=Bean
  1869. publish.label.crtime=Creation Time
  1870. publish.label.cruser=Creator
  1871. publish.label.desc=Description
  1872. publish.label.info=Published Component Info
  1873. publish.label.list=Publish Component List
  1874. publish.label.name=Name
  1875. publish.label.setenable_of_distribution=Startup Configuration
  1876. publish.label.task_status_0=Unknown Status
  1877. publish.label.task_status_1=Waiting
  1878. publish.label.task_status_10=Canceling Task
  1879. publish.label.task_status_11=Invalid Parameter
  1880. publish.label.task_status_5=Running
  1881. publish.label.task_status_6=Finished with Warning
  1882. publish.label.task_status_7=Finished
  1883. publish.label.task_status_8=Task Over Time
  1884. publish.label.task_status_9=Failed
  1885. publish.label.templatemanage=Template Admin
  1886. publish.label.type_of_distribution=Type
  1887. publish.tip.add=Create Publish Component
  1888. publish.tip.drop=Delete Selected Publish Component
  1889. publish.tip.refresh=Refresh Current Page
  1890. publish.tip.return=Return
  1891. publishdistribution_findbyid.jsp.label.runtimeexception=publishdistribution_findbyid.jspruntime exception!
  1892. publishdistribution_findbyid.jsp.service=service(com.trs.ajaxservice.DistributeServiceProvider.findbyid)the return collection type PublishDistribution,but{0},please confirm.
  1893. publishdistribution_query.jsp.label.runtimeexception=publishdistribution_query.jsp runtime exception!
  1894. publishdistribution_query.jsp.service=service(com.trs.ajaxservice.DistributeServiceProvider.query)The return collection is not PublishDistributions , but {0}, please confirm.
  1895. publishdistribution_query.label.enable=Enabled
  1896. publishdistribution_query.label.unable=Disabled
  1897. read_excel.notLogging=User not logged in or logged out!
  1898. read_excel.writedoc.failed=failed to write file!
  1899. read_file.jsp.inputnullfilename=Incoming file name is null!
  1900. read_file.jsp.usernotload=User not logged in or logged out!
  1901. read_file.jsp.writefilefailure=Failed to write file
  1902. read_image.jsp.label.error_import_file=The imported file name is null.
  1903. read_image.jsp.label.fail_to_write_file=Failed to write file.
  1904. read_image.jsp.label.not_login_or_overtime=The user not logged in or logged out!!
  1905. read_image.jsp.label.null_file_name=Incoming file name is empty!!
  1906. read_image.jsp.label.user_not_login=You did not login, or the time is out!
  1907. read_image.jsp.label.write_file_failed=failed to writ file
  1908. record_export.need.id=Export all records, enter at least [ChannelID-ChannelId] or [Site ID-SiteId]!
  1909. record_position_set.channel.notFound=Not found with ID [{0}] of the channel!
  1910. record_position_set.id.zero=Not found with ID [{0}] of the record!
  1911. record_position_set_dowith.jsp.channelId_not_found=Cannot find the channel ID [{0}]!
  1912. record_position_set_dowith.jsp.docId_not_found=Not found with ID [{0}] of document!
  1913. record_position_set_dowith.jsp.noright_modify_currchannel=Without permission in the current channel [{0}] [ID = {1}] to change the record order!
  1914. recycle_findbyid.jsp.label.runtimeexception=photo_findbyid.jsp runtime exception!
  1915. recycle_findbyid.jsp.service=Services (com.trs.ajaxservice.PhotoServiceProvider.findbyid) returns the object type is not ViewDocument, and for the {0}, please confirm.
  1916. recycle_thumb_query.jsp.chnldoc_notfound=Cannot find ID [{0}]chnldoc!
  1917. recycle_thumb_query.jsp.doc_notfound=Not found with channel ID [{0}] !
  1918. recycle_thumb_query.jsp.label.runtimeexception=watermark_query.jspRuntime exception!
  1919. recycle_thumb_query.jsp.objtype_isnot_ViewDocument=service(com.trs.ajaxservice.PhotoServiceProvider.findbyid)The return collection is not ViewDocument,but{0},please confirm.
  1920. redirection.ChnlDoc.notFound=Did not find the specified document corresponding ChnlDoc [Document ID: {0}]!
  1921. redirection.doc.id=No specified file ID!
  1922. redirection.doc.notFound=Did not find the corresponding Channel [Document ID: {0}] or the Channel has been deleted!
  1923. redirection.sdoc.not.found=Did not find the specified document [{0}] or the document has been deleted!
  1924. redirection.site.notFound=Not find the specified [Document ID:{0}]site or the site has been deleted!
  1925. region.label.crtime=Creation time
  1926. region.label.cruser=Creator
  1927. region.label.regionId=Induction Numbers
  1928. region.query.jsp.regiontitle=Induction -
  1929. region_employ_show.jsp.channel_name={0}channel-{1}
  1930. region_employ_show.jsp.doc_name={0}Document-{1}
  1931. region_employ_show.jsp.website_name={0}Site-{1}
  1932. region_findbyid.jsp.label.exception={0}_findbyid.jspOn-the-go abnormal!
  1933. replace_addedit.label.edit=Edit Replacement
  1934. replace_addedit.label.new=Add Replacement
  1935. replace_findbyid.jsp.service=Services (com.trs.ajaxservice.ReplaceContentServiceProvider.findbyid) returns the object type is not Replace, and for the {0}, please confirm.
  1936. replace_findbyid.runtime.error=replace_findbyid.jspAn exception occurs while running.
  1937. replace_query.jsp.label.runtimeexception=replace_query.jsp runtime exception!
  1938. replace_query.jsp.service=service(com.trs.ajaxservice.ReplaceContentServiceProvider.query)the return collection is notReplaces,but{0},please confirm.
  1939. resource_distribute.id.zero=Not find the specified site, Id [{0}]
  1940. resource_preview_page_for_list.id.zero=Failed to obtain resource type [Id:{0}]
  1941. resource_style_addedit.jsp.create_widget_style=Create resource frame style
  1942. resource_style_addedit.jsp.edit_widget_style=Edit the resource frame style
  1943. resource_style_addedit.jsp.fail2get_widget_type=Failed to obtain resource type [Id:{0}].
  1944. resource_style_addedit.jsp.have_noright2_alter_style=You do not have the right to modify style[{0}]!
  1945. resource_style_addedit.jsp.have_noright2_new_style=You do not have the right to create style!
  1946. resource_style_addedit_1.jsp.label.border_format_limit='The width of margin must be:Integer+Unit(pt/em/px)'
  1947. resource_style_addedit_1.jsp.label.font_size_format_limit='The font size format must be: Integer+Unit(pt/em/px)'
  1948. resource_style_addedit_1.jsp.label.height_limit=Height format must be: Integer+Unit(pt/em/px)
  1949. resource_style_addedit_1.jsp.label.space_format_limit='Margin to frame format:consist of 0-4 group of integer divided by blank space + Unit (pt/em/px)
  1950. resource_style_addedit_1.jsp.label.space_format_limit_a='Margin to frame format:consist of 0-4 group of integer divided by blank space + Unit (pt/em/px)'
  1951. resource_style_addedit_1.jsp.label.width_format_limit='The width format must be:Integer+Unit(pt/em/px) or auto'
  1952. resource_style_addedit_for_ajax.jsp.getresourcetypefailed=Failed to obtain resource type[Id:{0}]
  1953. resource_style_addedit_translate.jsp.fontsizeformatintunitptempx=The size of font must be:Integer+Unit(pt/em/px)
  1954. resource_style_addedit_translate.jsp.framewidthformatbeintandunitptempx=The frame width must be: Integer+Unit(pt/em/px)
  1955. resource_style_addedit_translate.jsp.heightformatbeintandunitptempx=Height must be:Integer+Unit(pt/em/px)
  1956. resource_style_addedit_translate.jsp.leftspacingformatintunitptempx=Left margin format must be:Integer+Unit(pt/em/px)
  1957. resource_style_addedit_translate.jsp.rightspacingformatintunitptempx=Ritht margin format must be: Integer+Unit(pt/em/px)
  1958. resource_style_addedit_translate.jsp.upspacingformatintunitptempx=Top margin must be: Integer+Unit(pt/em/px)
  1959. resource_style_addedit_translate.jsp.widthformatbeintandunitptempxauto=The width must be:Integer+Unit(pt/em/px) or auto
  1960. resourcestyle_query.jsp.label.click_here2_alter_style_thumb=title=\'Click and mofify the style thumbnail\'
  1961. resourcestyle_query.jsp.label.id=Flag
  1962. resourcestyle_query.jsp.label.name=Name:
  1963. resourcestyle_query.jsp.who_and_when_create={0}create at {1}
  1964. right_edit.jsp.label.erroperoperator=Invalid operator type!
  1965. right_edit.label.site=Site:&nbsp;
  1966. right_edit_whole.jsp.label.invalidoperator=Invalid operator type!
  1967. right_edit_whole.jsp.orgnotfoundexception=Not found [id = {0}] of the organization!
  1968. right_edit_whole.jsp.rolenotfoundexception=Not found [id = {0}] of the role!
  1969. right_edit_whole.jsp.usernotfoundexception=cannot find user [id={0}]!
  1970. right_view.jsp.label.invalidoperator=Invalid operator type!
  1971. right_view.label.site=Site:&nbsp;
  1972. right_view_whole.jsp.label.invalidoperator=Invalid operator type!
  1973. right_view_whole.jsp.orgnotfoundexception=cannot find group [id={0}]!
  1974. right_view_whole.jsp.rolenotfoundexception=Do not find role [id={0}]!
  1975. right_view_whole.jsp.usernotfoundexception=Not found [id = {0}] of the user!
  1976. role.button.add=Create Role
  1977. role.button.addoperation=&nbsp;Add >>&nbsp;&nbsp;
  1978. role.button.appenduser=Add User
  1979. role.button.cancelbutton=Cancel
  1980. role.button.close=Closed
  1981. role.button.drop=Delete Role
  1982. role.button.dropoperation=&lt;&lt;Delete&nbsp;
  1983. role.button.dropuser=Delete User
  1984. role.button.modify=Modify Role
  1985. role.button.okbutton=OK
  1986. role.button.quitedropuser=Completely Delete User
  1987. role.button.setright=Set Permissions
  1988. role.label.addedit=Create/Modify Role
  1989. role.label.crtime=Created
  1990. role.label.cruser=Creator
  1991. role.label.desc=Description
  1992. role.label.drop=Delete Role
  1993. role.label.list=Roles List
  1994. role.label.name=Role Name
  1995. role.label.nonsystemrole=Non-system Role
  1996. role.label.normalmrole=Ordinary role
  1997. role.label.positionset=Adjust the Order of Role
  1998. role.label.positionsetrole=Adjust the Order of Role
  1999. role.label.realname=Real Name/Unit
  2000. role.label.roletype=Role Type
  2001. role.label.select=Role Select
  2002. role.label.setright=Set Permissions
  2003. role.label.setsystemright=Set SystemRole's Rights
  2004. role.label.siterole=Site level role
  2005. role.label.statusnow=Current Status
  2006. role.label.systemrole=System Role
  2007. role.label.textcreate=Creator
  2008. role.label.textcreatein=Date
  2009. role.label.textdesc=Description
  2010. role.label.textname=Name
  2011. role.label.texttype=Type
  2012. role.label.upper=Parent Role
  2013. role.label.userapplytime=Activating Time
  2014. role.label.useremail=Email
  2015. role.label.userlist=Role User
  2016. role.label.username=User Name
  2017. role.label.users=User
  2018. role.label.viewright=View permissions
  2019. role.label.viewsysright=View SystemRole's Rights
  2020. role.tip..quitedropuser=Completely remove the selected users, shortcut keys: C
  2021. role.tip.add=Create Role
  2022. role.tip.appenduser=Add User to Current Role
  2023. role.tip.drop=Delete Current Role
  2024. role.tip.dropuser=Delete User from Role
  2025. role.tip.modify=Modify Current Role
  2026. role.tip.operationlist=Operation list:
  2027. role.tip.quitedropuser=Completely Delete Selected User
  2028. role.tip.refresh=Refresh this page
  2029. role.tip.rights=Right
  2030. role.tip.selectopration=Selct from the operation list:
  2031. role.tip.set=Set
  2032. role.tip.setright=Set Permissions for Current Role
  2033. role.tip.view=View
  2034. save_outlinefields.channel.getFailed=Failed to obtain channel ID [{0}] !
  2035. save_outlinefields.channel.locked=Channel [{0}] [{1}] is the user [{2}] is locked! You can not modify!
  2036. save_outlinefields.noRight=You have no right to modify ID channel [{0}]!
  2037. save_outlinefields.toomany=You choose the view of the field too much, reduce the field of choice, the set failed!
  2038. schedule.button.add=Create Schedule Task
  2039. schedule.button.addworker=Create Schedule Type
  2040. schedule.button.drop=Delete Schedule Task
  2041. schedule.button.dropworker=Delete Schedule Type
  2042. schedule.button.modifyworker=Modify Schedule Type
  2043. schedule.label.addedit=Create/Modify Planning Schedule
  2044. schedule.label.crtime=Created
  2045. schedule.label.cruser=Creator
  2046. schedule.label.desc=Description
  2047. schedule.label.endtime=End Time
  2048. schedule.label.exectime=Execution Time
  2049. schedule.label.info=Planning Schedule Info
  2050. schedule.label.intervaltime=Interval Time
  2051. schedule.label.list=Planning Schedule List
  2052. schedule.label.name=Name
  2053. schedule.label.operarg=Operation Parameter
  2054. schedule.label.opertype=Operation Type
  2055. schedule.label.runmode=Running Mode
  2056. schedule.label.scheduleaddedit=Add/Modify Scheduling tasks
  2057. schedule.label.starttime=Start Time
  2058. schedule.label.textname=Name
  2059. schedule.label.textnamedefault=All Planning Schedule
  2060. schedule.tip.add=Create Planning Schedule
  2061. schedule.tip.addworker=Create Schedule Type
  2062. schedule.tip.drop=Delete Selected Planning Schedule
  2063. schedule.tip.dropworker=Delete Current Schedule Type
  2064. schedule.tip.modifyworker=Modify Current Schedule Type
  2065. schedule.tip.refresh=Refresh Current Page
  2066. search_config.jsp.crTime=Created
  2067. search_config.jsp.label.belong_channel=Where the channel
  2068. search_config.jsp.label.belong_website=belonged website
  2069. search_config.jsp.label.channel_order=Channel order
  2070. search_config.jsp.label.channel_type=channel_type
  2071. search_config.jsp.label.channelDesc=Channel description
  2072. search_config.jsp.label.channelId=the channel ID
  2073. search_config.jsp.label.crtime=creation time
  2074. search_config.jsp.label.cruser=Creator
  2075. search_config.jsp.label.doctitle=Document Title
  2076. search_config.jsp.label.keywords=keywords
  2077. search_config.jsp.label.parent_channelId=Parent channel ID
  2078. search_config.jsp.label.publish_address=Published Address
  2079. search_config.jsp.label.publish_time=pubulish time
  2080. search_config.jsp.label.save_place=Storage Directory
  2081. search_config.jsp.label.state=status
  2082. search_config.jsp.label.unique_channel_type=Columns that uniquely identifies.
  2083. search_config.jsp.label.websiteId=Site ID
  2084. search_config.jsp.no_result_ofsearch=Cannot find the search task ID[{0}]!
  2085. search_config_dowith.jsp.cannot_find_search_task=Cannot find search task ID [{0}]!
  2086. search_config_dowith.jsp.label.cannot_find_search_datasource=Data source is not specified!!
  2087. search_config_dowith.jsp.label.error_param=An argument is incorrect, please ensure that incoming information efficiently Server and GateWay!
  2088. search_config_dowith.jsp.trsgateway_notfound=cannot find ID[{0}]TRSGateway!
  2089. search_config_dowith.jsp.trsserver_notfound=Cannot find the specified TRSServer[ID={0}]!
  2090. search_gateway_dowith.jsp.cannot_find_search_task=Cannot find search task ID[{0}]!
  2091. search_gateway_dowith.jsp.trsgateway_notfound=cannot find ID[{0}]TRSGateway!
  2092. search_list.jsp.cannot_get_search_task=Article not found [{0}] a retrieval task!
  2093. search_list.jsp.channel=Channel
  2094. search_list.jsp.doc=document
  2095. search_list.jsp.fail2get_logo_attr=Failed to obtain property [{0}]!
  2096. search_list.jsp.fail2get_search_task=failed to obtain search task [{0}]!
  2097. search_list.jsp.PageNav1=Retrieval task
  2098. search_list.jsp.PageNav2=A
  2099. search_server_dowith.jsp.cannot_find_search_task=Cannot find search task ID[{0}]!
  2100. search_server_dowith.jsp.trsserver_notfound=Cannot find the specified TRSServer[ID={0}]!
  2101. security.label.addedit=Create/Modify Security Level
  2102. security.label.crtime=Created
  2103. security.label.cruser=Creator
  2104. security.label.desc=Description
  2105. security.label.info=Security Level Info
  2106. security.label.list=Security Level List
  2107. security.label.name=Name
  2108. security.label.show=Show
  2109. security.label.value=Value
  2110. security.tip.add=Create Security Level
  2111. security.tip.drop=Delete Selected Security Level
  2112. security.tip.refresh=Refresh Current Page
  2113. security.tip.return=Return
  2114. select_list.attribute.getFailed=Get the first [{0}] article attributes the organization failed!
  2115. select_list.id.zero=Not found with ID [{0}] The specified user group!
  2116. select_list.obj.not.found=Not found with ID [{0}] The specified user group!
  2117. select_list.org.getFailed=Failed to obtain group[{0}]!
  2118. select_list.record.attribute.getFailed=Failed to abtain record [{0}]property!
  2119. select_list.record.getFailed=Failed to obtain record[{0}]!
  2120. select_order.channel.notFit=The channel is not configured to effectively custom form can not be edited under the documentation!
  2121. select_order.channel.wrongType=The channel is not a custom form channel!
  2122. select_order.id.zero=Channel Id is 0, can not find the channel!
  2123. select_order.obj.not.found=Can not find the channel!
  2124. select_query.id.zero=cannot find the view ID[{0}]
  2125. select_query.runExce=view_select_query.jsp runtime exception!
  2126. select_query.runExces=metadbfield_select_query.jsp runtime exception!
  2127. select_query.type=service(com.trs.components.metadata.service.MetaDataDefServiceProvider.query)The return collection is not MetaDBFields, but {0}, please confirm.
  2128. show_search_channel.label.chnldesc=Channel name
  2129. show_search_channel.label.chnlname=Unique name
  2130. show_search_channel.label.chnnlid=Channel ID
  2131. show_search_channel.label.cruser=Creator
  2132. show_search_channel.label.latestusechannel=Recently used columns:
  2133. show_search_channel.searchchannel=Search[{0}]for[{1}]Columns get[{2}]a:
  2134. show_search_channel.searchchanneltatal=Were retrieved[{0}]A usable columns:
  2135. simple_save.id.zero=InfoViewId 0, can not find the InfoView!
  2136. simple_save.obj.not.found=InfoView can not be found!
  2137. site_create.jsp.label.sys_have_no_prew_set_site=System without any pre-site!
  2138. site_create.jsp.website_have_no_prew_set_site=Site [[{0}]] under no default style!
  2139. site_create.label.noaddr=Current site does not have demo address.
  2140. site_create.label.noimg=No picture attachments.
  2141. site_create.label.prestyle=Preview current style
  2142. site_create.label.selstyle=Select current style
  2143. site_create.label.seltemp=Click the picture to select the template
  2144. site_datatable.null=None
  2145. site_piechartdata.null=(None)
  2146. siterecycle_findbyid.jsp.service=service(com.trs.ajaxservice.WebSiteServiceProvider.findbyid)The return collection type is not WebSite,but{0},please confirm.
  2147. siterecycle_findbyid.label.none=None
  2148. siterecycle_findbyid.runtime.error=siterecycle_findbyid.jspAn exception occurs while running.
  2149. siterecycle_query.jsp.label.runtimeexception=website_query.jsp runtime exception!
  2150. siterecycle_query.jsp.service=Services (com.trs.ajaxservice.WebSiteServiceProvider.query) returns the object type is not WebSite, and for the {0}, please confirm.
  2151. siteUser_list_1=Failed to get the site which's ID is [
  2152. siteUser_list_2=] .
  2153. siteUser_list_3=Sorry, you has no right to view the [
  2154. siteUser_list_4=] site user.
  2155. siteUser_list_6=Failed to get the attribute of the user [
  2156. siteUser_list_7=] .
  2157. specia2_1.jsp.have_noright_edit=You do not have the right to modify subject[{0}]!
  2158. special.label.crtime=Creation time
  2159. special.label.cruser=Creator
  2160. special.label.ObjectId=Numbers
  2161. special.label.specialName=Project name
  2162. special1.jsp.label.have_noright=You do not have the right to create subject!
  2163. special_1.jsp.have_noright_edit=You do not have the right to modify subject [{0}]!
  2164. special_1.jsp.specialId_not_found=No subject [ID={0}] is found!
  2165. special_1.object.not.found=Do not find the specified object[ID={0}]]!
  2166. special_2.jsp.special_notfound=No subject ID [{0}]is found!
  2167. special_query.jsp.label.runtimeexception=special_query.jspAn exception occurs while running!
  2168. special_query.jsp.service=The collection type of return object to com.trs.ajaxservice.SpecialServiceProvider.query) is not Specials, but [{0}]. Please conirm.
  2169. stat.button.addfieldmap=Create
  2170. stat.button.cleardata_of_view=Delete Stat. Data
  2171. stat.button.fieldmap=Field Mapping
  2172. stat.button.generetedata_of_view=Generate Stat. Data
  2173. stat.label.addedit_of_host=Create/Modify Stat. Category
  2174. stat.label.addedit_of_view=Create/Modify Stat. Search
  2175. stat.label.addedit_of_view_child=Create/Modify Sub-Search
  2176. stat.label.atonce=Instant Stat.
  2177. stat.label.desc_of_fieldmap=Field Description
  2178. stat.label.desc_of_host=Category Description
  2179. stat.label.desc_of_view=Search Description
  2180. stat.label.drop_of_fieldmap=Delete
  2181. stat.label.endtime=End Time
  2182. stat.label.fieldmap=Field Mapping
  2183. stat.label.from_of_sql=From
  2184. stat.label.groupby_of_sql=Group By
  2185. stat.label.host= Stat. Category
  2186. stat.label.list=Stat. List
  2187. stat.label.list_of_fieldmap=Field Mapping
  2188. stat.label.list_of_host= Stat. Category List
  2189. stat.label.list_of_view=Statistical Search List
  2190. stat.label.location_of_fieldmap=Field Position
  2191. stat.label.method=Stat. Strategy
  2192. stat.label.name_of_fieldmap=Field Name
  2193. stat.label.name_of_host=Category Name
  2194. stat.label.name_of_view=Search Name
  2195. stat.label.orderby_of_sql=Order By
  2196. stat.label.select_of_sql=Select
  2197. stat.label.selecttimearea=Time Range
  2198. stat.label.starttime=Start Time
  2199. stat.label.timing=Timing Stat.
  2200. stat.label.top_of_fieldmap=First Field
  2201. stat.label.type_of_fieldmap=Field Type
  2202. stat.label.where_of_sql=Where
  2203. stat.tip.add_of_host=Create Stat. Category
  2204. stat.tip.add_of_view=Create Statistical Search
  2205. stat.tip.cleardata_of_view=Delete Stat. Data
  2206. stat.tip.drop_of_host=Delete Selected Stat. Category
  2207. stat.tip.drop_of_view=Delete Selected Stat. Search
  2208. stat.tip.generetedata_of_view=Create statistical data
  2209. stat.tip.refresh_of_host=Refresh Current Page
  2210. stat.tip.refresh_of_view=Refresh Current Page
  2211. stat_include.start=Start to inquire the search statistics of user or department...
  2212. static_common.audio=Video
  2213. static_common.check=Auditing
  2214. static_common.denied=Denied
  2215. static_common.edited=Edited
  2216. static_common.getTime.error=An error occours while obtaining time!
  2217. static_common.getTime.exception=An exception occurs while obtaining time.
  2218. static_common.getTime.time.exception=An exception occours while resolving statistics time
  2219. static_common.image=Picture
  2220. static_common.new.doc=New manuscript
  2221. static_common.return=Redo
  2222. static_common.sent=Published
  2223. static_common.signed=Signed
  2224. static_common.unknow=Unknown
  2225. static_common.unknow.type=Unknown type
  2226. static_common.video=Video
  2227. static_common.word=Character
  2228. statofchannel_list.audeo=Audio
  2229. statofchannel_list.back=Redo
  2230. statofchannel_list.check=Auditing
  2231. statofchannel_list.copy=Copy
  2232. statofchannel_list.edited=Edited
  2233. statofchannel_list.new=New manuscript
  2234. statofchannel_list.obj.not.found=No channel[Id={0}] is found
  2235. statofchannel_list.pic=Picture
  2236. statofchannel_list.quote=Quote
  2237. statofchannel_list.sent=Published
  2238. statofchannel_list.signed=Signed
  2239. statofchannel_list.src=Original manuscript
  2240. statofchannel_list.unknow=Unknown
  2241. statofchannel_list.video=Video
  2242. statofchannel_list.word=Character
  2243. statresult_export_toexcel.data.statistic.noRight=You do not have the right to view data statistics list!
  2244. statresult_export_toexcel.jsp.fail2get_data=Failed to obtain the[{0}]statistics data!
  2245. statresult_export_toexcel.jsp.thedata=The [{0}] statistics data is not found!
  2246. statresult_export_toexcel.jsp.thedata_property=Failed to obtain the [{0}] attribute of statistics data
  2247. statresult_export_toexcel.view.not.found=No statistics view ID[{0}] is found!
  2248. status.Accepted=Accepted
  2249. status.Accepted.Desc=Has been transferred to relevant departments.
  2250. status.Approved=Approved
  2251. status.Approved.Desc=The document is to be published.
  2252. status.Checking=Checking
  2253. status.Checking.Desc=The document is approved and can be published.
  2254. status.Edited=Edited
  2255. status.Edited.Desc=The document is edited.
  2256. status.New=New
  2257. status.New.Desc=The document is recently collected but not edited yet.
  2258. status.Published=Published
  2259. status.Published.Desc=The document is already published.
  2260. status.Redo=Redo
  2261. status.Redo.Desc=The document needs further modification.
  2262. status.Reject=Reject
  2263. status.Reject.Desc=The document is unqualified and is thus rejected.
  2264. status.To.be.Accepted=To be Accepted
  2265. status.To.be.Accepted.Desc=Department has not been assigned.
  2266. status.Draft=Draft
  2267. status.Draft.Desc=The document has not formally submitted.
  2268. status.New.STATUS=New Status
  2269. status.Edited.STATUS=Edited Status
  2270. status.Redo.STATUS=Redo Status
  2271. status.Published.STATUS=Published Status
  2272. status.Reject.STATUS=Reject Status
  2273. status.Approved.STATUS=Approved Status
  2274. status.Checking.STATUS=Checking Status
  2275. status.VerifyAgain=Verify Again
  2276. status.VerifyAgain.STATUS=Verify Again Status
  2277. status.VerifyCancel=Verify Cancel
  2278. status.VerifyCancel.STATUS=Verify Cancel Status
  2279. style_basic_info_addedit.id.zero=Failed to obtain page style [Id{0}]!
  2280. style_basic_info_addedit.noRight=You do not have the right to modify style [{0}]!
  2281. style_customize.id.zero=Failed to obtain page style[Id{0}]!
  2282. style_customize.input=Please input css text...
  2283. style_customize.noRight=You do not have the right to modify style [{0}]!
  2284. style_name_addedit.id.zero=Failed to obtain page style[Id={0}]!
  2285. style_name_addedit.newStyle.noRight=You do not have the right to create style!
  2286. style_name_addedit.noRight=You do not have the right to modify style [{0}]!
  2287. style_other_dom_addedit.id.zero=Failed to obtain page style[Id{0}]!
  2288. style_other_dom_addedit.noRight=You do not have the right to modify style [{0}]!
  2289. stylename_used_info.jsp.systemlevel=System level->
  2290. syn_document.jsp.label.involve_doc_nums=Totality [<b style='color:red;'>{0}</b>]<br>) documents are related.
  2291. syn_document.jsp.label.no_appoint_siteorchannel=To synchronize the document does not specify the site or channel ID [siteIds / channelIds]
  2292. syn_document.jsp.label.not_handle_nums=You do not have the right to deal<br> with [<b style='color:red;'>{0}</b>]
  2293. syn_document.jsp.label.syn_doc_finished=Document synchronization operation is completed.
  2294. sysconfig.label.addedit=Create/Modify System Config
  2295. sysconfig.label.content=Content
  2296. sysconfig.label.desc=Description
  2297. sysconfig.label.info=System Config Info
  2298. sysconfig.label.isencrypted=Encrypt or Not
  2299. sysconfig.label.list=System Config List
  2300. sysconfig.label.name=Name
  2301. sysconfig.label.type=Type
  2302. sysconfig.tip.add=Create System Config
  2303. sysconfig.tip.drop=Delete Selected System Config
  2304. sysconfig.tip.refresh=Refresh Current Page
  2305. sysconfig.tip.return=Return
  2306. syssecurekey=Security Key Name
  2307. syssecurekey.agi=Key Algorithm
  2308. syssecurekey.buton.export=Export Public Key
  2309. syssecurekey.buton.exportpri=Export Secure Key
  2310. syssecurekey.buton.remove=Delete
  2311. syssecurekey.label.list=System Key List
  2312. syssecurekey.lable.add=Add System Key
  2313. syssecurekey.len=Key Length
  2314. syssecurekey.tip.add=Add System Key
  2315. syssecurekey.tip.export=Export Public Key
  2316. syssecurekey.tip.exportpri=Export Key
  2317. syssecurekey.tip.remove=Delete Key
  2318. system.button.add=New
  2319. system.button.addgroup_of_include=Create User Group
  2320. system.button.addrole_of_include=Create Role
  2321. system.button.adduser_of_include=Create User
  2322. system.button.allpublish=Completely Publish
  2323. system.button.auth=User Group
  2324. system.button.cancel=Cancel
  2325. system.button.channel=Site Admin
  2326. system.button.close=Close
  2327. system.button.Collaboration=Collaboration
  2328. system.button.confirm=OK
  2329. system.button.cooperation=Collaboration
  2330. system.button.copy=Copy
  2331. system.button.copytoclipboard=Copy to Clipboard
  2332. system.button.deliverydocument=Deliver Document
  2333. system.button.document=Document Admin
  2334. system.button.drop=Delete
  2335. system.button.dropall_of_include=Delete All
  2336. system.button.dropdocument=Delete Document
  2337. system.button.export=Export
  2338. system.button.finish=Finish
  2339. system.button.import=Import
  2340. system.button.increasepublish=Increased Publish
  2341. system.button.inserttocursor=Insert to Cursor
  2342. system.button.integrate=Extended Function
  2343. system.button.laststep=Previous
  2344. system.button.modify=Modify
  2345. system.button.more=More
  2346. system.button.moredocument=More Documents
  2347. system.button.move=Move
  2348. system.button.mustfill=*
  2349. system.button.next=Next
  2350. system.button.ok=OK
  2351. system.button.oncancel=Cancel
  2352. system.button.onok=OK
  2353. system.button.onsave=Save
  2354. system.button.onSaveAndSetRight=Save and enter authority Settings
  2355. system.button.person=Personal Services
  2356. system.button.previous=Previous
  2357. system.button.publish=Publish
  2358. system.button.publishmanage=Publish Management
  2359. system.button.publishmonitor=Publish Monitor
  2360. system.button.quickpublish=Fast Publish
  2361. system.button.recycle=Recycle Bin
  2362. system.button.refer=Refer
  2363. system.button.refresh=Refresh
  2364. system.button.reset=Reset
  2365. system.button.restore=Restore
  2366. system.button.return=Return
  2367. system.button.save=Save
  2368. system.button.scan=Preview
  2369. system.button.search=Search
  2370. system.button.showallrole=Show All Roles
  2371. system.button.shownormrole=Only shows common role
  2372. system.button.showsiterole=Display only site level role
  2373. system.button.showsysrole=Show System Role
  2374. system.button.stat=Stat.
  2375. system.button.submint=Submit
  2376. system.button.system=System Config
  2377. system.button.template=Template Admin
  2378. system.button.test=Test
  2379. system.label.addedit=Create/Modify Contact
  2380. system.label.adjustorder=Adjust Order
  2381. system.label.all=All
  2382. system.label.and=and
  2383. system.label.belongchannel=Channel
  2384. system.label.channel=Channel
  2385. system.label.config_of_locale=Resource Config
  2386. system.label.copy=Copy
  2387. system.label.datapath=Save Path
  2388. system.label.defaultindextemplate=Default Homepage Template
  2389. system.label.defaultoutlinetemplate=Default Outline Template
  2390. system.label.delete=Delete
  2391. system.label.desc_of_include=Description
  2392. system.label.detailfileext=Content Page File Extended Name
  2393. system.label.detailtemplate=Content Template
  2394. system.label.drop=Delete
  2395. system.label.edit=Modify
  2396. system.label.end_of_character_max=bytes
  2397. system.label.end_of_character_min=bytes
  2398. system.label.endtime=End Time
  2399. system.label.exectime=Execution Time
  2400. system.label.filerule=Publish File Rule
  2401. system.label.flowcondition=Flowing Situation
  2402. system.label.friday=Friday
  2403. system.label.from=from
  2404. system.label.help=Help
  2405. system.label.hour=Hour
  2406. system.label.index=Homepage
  2407. system.label.indextemplate=Homepage Template
  2408. system.label.interval=Interval Time
  2409. system.label.language=Language
  2410. system.label.list=List
  2411. system.label.logout=Log Out
  2412. system.label.minute=Minute
  2413. system.label.modify=Modify
  2414. system.label.monday=Monday
  2415. system.label.more_times_day=Multi-Run a day
  2416. system.label.mustfill=*
  2417. system.label.myaddresslist=My Contacts List
  2418. system.label.mycalendar=My Calendar
  2419. system.label.needmanage=My Documents need to be handled
  2420. system.label.nesting=Nesting Template
  2421. system.label.no=No
  2422. system.label.nodefine=Undefined
  2423. system.label.number=Order Number
  2424. system.label.one_time_day=Run Once Daily
  2425. system.label.one_time_only=Run Once
  2426. system.label.online=Online Users
  2427. system.label.operate=Operation
  2428. system.label.operate_of_include=Operation
  2429. system.label.operate_of_include.cancel=Cancel
  2430. system.label.operate_of_include.confirm=OK
  2431. system.label.order=Order
  2432. system.label.otherindextemplate=Other Homepage Template(s)
  2433. system.label.otheroutlinetemplate=Other Outline Template(s)
  2434. system.label.outlinefilename=Listing Page Name
  2435. system.label.outlinetemplate=Outline Template
  2436. system.label.pageencoding=Page Coding
  2437. system.label.preview=Preview
  2438. system.label.property=Properties
  2439. system.label.publishschedule=Planning Publish
  2440. system.label.publishset=Publish Settings
  2441. system.label.publishsetview=Publish Settings
  2442. system.label.publishstatus=Publish Status
  2443. system.label.publishtemplate=Publish Template
  2444. system.label.quickdoor=Fast Channel
  2445. system.label.recentaccess=Recently Accessed Channels
  2446. system.label.recentmanage=My Recent Working Documents
  2447. system.label.refresh=Refresh
  2448. system.label.reload=Reload
  2449. system.label.reroleorder=Adjust Order
  2450. system.label.right=Permission
  2451. system.label.rootdomain=Site HTTP(S)
  2452. system.label.saturday=Saturday
  2453. system.label.select=Select
  2454. system.label.selectall=Select All
  2455. system.label.seqnum=No.
  2456. system.label.sequence=No.
  2457. system.label.settemplate=Set Template
  2458. system.label.show=View
  2459. system.label.site=Site
  2460. system.label.sitenavi=Site Navigation
  2461. system.label.source=Source
  2462. system.label.start_of_character_max=Max
  2463. system.label.start_of_character_min=Min
  2464. system.label.starttime=Start Time
  2465. system.label.status=Status
  2466. system.label.statuscandopub=The status of publishable documents
  2467. system.label.statusidaftermodify=The status of published document that edited
  2468. system.label.sunday=Sunday
  2469. system.label.template=Template
  2470. system.label.thursday=Thursday
  2471. system.label.title=Title
  2472. system.label.to=to
  2473. system.label.tuesday=Tuesday
  2474. system.label.view=View
  2475. system.label.view.infoview=Form
  2476. system.label.view.infoview.unit=item
  2477. system.label.wednesday=Wednesday
  2478. system.label.yes=Yes
  2479. system.radiobox.no=No
  2480. system.radiobox.yes=Yes
  2481. system.tip.add=Create Document
  2482. system.tip.addgroup_of_include=Create User Group
  2483. system.tip.addrole_of_include=Create Role
  2484. system.tip.adduser_of_include=Create User
  2485. system.tip.allpublish=Completely Publish Selected Channel
  2486. system.tip.close=Close
  2487. system.tip.closepage=Close Page
  2488. system.tip.copy=Copy selected Document(s) to a new channel
  2489. system.tip.deliverydocument=Deliver Selected Document(s)
  2490. system.tip.drop=Delete Selected Document(s) to Recycle Bin
  2491. system.tip.dropall_of_include=Del All Settings
  2492. system.tip.dropdocument=Del Selected Document(s)
  2493. system.tip.increasepublish=Increased Publish Selected Channel
  2494. system.tip.modify_of_locale=Modify Resource Config
  2495. system.tip.more=Enter Document Manage List
  2496. system.tip.moredocument=Enter My Working Documents List
  2497. system.tip.move=Move selected document(s) to a new Channel
  2498. system.tip.publish=Publish Selected Document(s)
  2499. system.tip.quickpublish=Fast Publish Selected Channel
  2500. system.tip.refer=Refer Forward Selected Document(s) to new Channel
  2501. system.tip.refresh=Refresh Current Page
  2502. system.tip.return=Return to last page
  2503. systemright_edit.jsp.havenoright=Sorry, you don't have permission to set system role[{0}]!
  2504. systemright_edit.jsp.setrolesright=Set <font color='red'>[{0}]</font> permission
  2505. systemright_edit_dowith.jsp.label.fail2setright=failed to set permission!
  2506. systemright_edit_dowith.jsp.label.rightvalue=Setting the permissions. Role, RightValue:
  2507. task_test.jsp.trsgateway_notfound=Do not find ID={0}TRSGateway!
  2508. task_test.jsp.trsserver_notfound=Cannot find the specified TRSServer[ID={0}]!
  2509. template.arg.query.booleanfalse=No
  2510. template.arg.query.booleantrue=Yes
  2511. template.button.cancelselected=Cancel Selected Template
  2512. template.button.check=Template Verification
  2513. template.button.drop=Delete
  2514. template.button.export=Export
  2515. template.button.synchifile=Sync Attachments
  2516. template.label.add=Create
  2517. template.label.addedit=Template Edit
  2518. template.label.belongchannel=Config Relation
  2519. template.label.clew=Tip: Click to preview it
  2520. template.label.content=Template Content
  2521. template.label.copy_of_template=Template Copy
  2522. template.label.crtime=Created:&nbsp;
  2523. template.label.cruser=Creator:&nbsp;
  2524. template.label.desc=Description
  2525. template.label.desc_of_template=Template Description
  2526. template.label.detailtempext=Detail Template Publish Extended Name
  2527. template.label.detailtemplate=Content Template
  2528. template.label.documentId=Document ID
  2529. template.label.folder=Location:&nbsp;
  2530. template.label.import=Import
  2531. template.label.list=Templates List
  2532. template.label.location=Location
  2533. template.label.name=Name
  2534. template.label.name_of_template=Template Name
  2535. template.label.outlinetempext=Outline Template Published Extended Name
  2536. template.label.outlinetemplate=Outline Template
  2537. template.label.outputfilename=Published File Name
  2538. template.label.settemplate=Set Template
  2539. template.label.show_of_nested=View Nesting Template
  2540. template.label.tempext=File Extended Name
  2541. template.label.templateId=Template ID:&nbsp;
  2542. template.label.tempmode=Template type:
  2543. template.label.tempName=Template Name:&nbsp;
  2544. template.label.type=Type
  2545. template.label.type_of_template=Template Type
  2546. template.tip.add=Create Template
  2547. template.tip.cancelselected=Cancel Selected Template(s)
  2548. template.tip.check=Verify Site Template
  2549. template.tip.drop=Delete Template(s)
  2550. template.tip.export=Export Template(s)
  2551. template.tip.import=Import Template(s)
  2552. template.tip.name=Template Name
  2553. template.tip.synchifile=Redistribute Template Attachments
  2554. template_addedit.label.edit=Modify Template
  2555. template_addedit.label.new=Create Template
  2556. template_addedit.label.temp=&nbsp;Template
  2557. template_addedit_label_1=The object does not exist (Type=
  2558. template_addedit_label_10=The parameter type is invalid. [
  2559. template_addedit_label_2=The object (
  2560. template_addedit_label_3=) is not a folder.
  2561. template_addedit_label_4=An exception occurs on the site or channel while obtaining the template.
  2562. template_addedit_label_5=Failed to preview the template.
  2563. template_addedit_label_6=The parameters of the template with the type of
  2564. template_addedit_label_7=are not found.
  2565. template_addedit_label_8=The values of the enumerated parameters do not match the description quantity.
  2566. template_addedit_label_9=The values of the enumerated parameters must be the defaults.
  2567. template_arg_query.jsp.label.runtimeexception=template_arg_query.jsp runtime exception!
  2568. template_findbyid.jsp.channel={0} [Channel - {1}]
  2569. template_findbyid.jsp.document={0}[document-{1}]
  2570. template_findbyid.jsp.file={0}[file-{1}]
  2571. template_findbyid.jsp.service=Services (com.trs.ajaxservice.TemplateServiceProvider.findbyid) returns the object type is not Template, and for [{0}], please confirm.!
  2572. template_findbyid.jsp.unknow=unknown[{0}]
  2573. template_findbyid.jsp.website={0} [site - {1}]
  2574. template_findbyid.label.channel=Channel
  2575. template_findbyid.label.detail=Detail template
  2576. template_findbyid.label.doc=Document
  2577. template_findbyid.label.entityPath=Entity Path:&nbsp;
  2578. template_findbyid.label.infoviewprint=Form to print
  2579. template_findbyid.label.nested=Nesting template
  2580. template_findbyid.label.outline=Outline template
  2581. template_findbyid.label.unknow=Unknown
  2582. template_findbyid.label.usedindetail=Use as detail template.
  2583. template_findbyid.label.usedinfirst=Use as outline template.
  2584. template_findbyid.label.usedinother=Use as other outline templates.
  2585. template_findbyid.label.website=Site
  2586. template_findbyid.runtime.error=template_findbyid.jspAn exception occurs while running.
  2587. template_query.excep=template_query.jspAn exception occurs while running!
  2588. template_query.jsp.label.runtimeexception=template_query.jsp runtime exception!
  2589. template_query.jsp.service=Services (com.trs.ajaxservice.TemplateServiceProvider.query) returns the object set type is not Templates, and for [{0}], please confirm!
  2590. template_query.jsp.unknow=Unknown[{0}]
  2591. template_query.label.detail=Detail
  2592. template_query.label.infoviewprint=Infoview print
  2593. template_query.label.nested=Nesting
  2594. template_query.label.outline=Outline
  2595. template_query.label.unknow=Unknown
  2596. template_query.type=The collection type of return object to service(com.trs.ajaxservice.TemplateServiceProvider.query) is not Templates, but [{0}]. Please conirm.
  2597. template_select_query.jsp.found=service(com.trs.ajaxservice.TemplateServiceProvider.query)The return object type collection is not Templates,but[{0}],please confrim.!
  2598. template_select_query.jsp.label.runtimeexception=template_query.jspruntime exception!
  2599. template_select_query.jsp.service=The collection type of return object to service(com.trs.ajaxservice.TemplateServiceProvider.query) is not Templates, but [{0}]. Please conirm.
  2600. template_selquery.jsp.unknow=unknown[{0}]
  2601. template_selquery.label.detail=Detail
  2602. template_selquery.label.nested=Nesting
  2603. template_selquery.label.outline=Outline
  2604. template_selquery.label.unknow=Unknown
  2605. template_set.noRight=You do not have the right to modify subject [{0}]!
  2606. test.jsp.found=An error occours while generating default parameter of layout!Layout info:ratio=[{0}]ratiotype={1}!
  2607. test.name=test name
  2608. test_exist.getId.failed=Channel [ID={0}] cannot be obtained!
  2609. test_exist.noId=No incoming Site ID [siteid] or ChannelID [channelid]
  2610. thumb_query.not.administrator=You are not an administrator, there is no rights management view list!
  2611. thumb_query.runExce=metadbtable_thumb_query.jsp runtime exception!
  2612. thumb_query.type=service(com.trs.components.metadata.service.MetaDataDefServiceProvider.query)The return type is notMetaViews,but {0},please confirm.
  2613. tmetarecdata_query.jsp.service=service(com.trs.components.metadata.service.MetaDataCenterServiceProvider.query)The return type is not MetaViewDatas,but[{0}],please confirm.!
  2614. trace_document.jsp.label.success=Success
  2615. trace_document.jsp.label.success.fail=Failure
  2616. trace_document.jsp.notfindspecialdoc=Did not find the specified document! [ID = {0}]
  2617. trace_document.jsp.sorrynottracecurrdoc=Sorry, you do not track the current file![{0}]
  2618. trace_document.jsp.tracedocuse=Tracing Document [{0}]
  2619. trace_document.label.deleted=Deleted
  2620. trace_document.label.topub=Check the address after publication
  2621. trace_document.label.datetimeformat=yyyy-MM-dd hh:mm
  2622. trace_document.label.info=Document {doc} was copied to channel {channel} by {user} in {time}. Its current status is {status}.
  2623. tree.label.bianhao=ID:&nbsp;
  2624. tree.label.biaoshi=Unique Name:&nbsp;
  2625. tree.label.crtime=Created:&nbsp;
  2626. tree.label.cruser=Creator:&nbsp;
  2627. tree_html_creator.jsp.createtime=Construct the user [{0}] user group tree by using the time to [{1}] ms!
  2628. treenode_html_make.jsp.label.channel_not_exist=Specified channel [{0}] does not exist!
  2629. treenode_path_make.jsp.channelId_notfound=cannot find [ID={0}]!
  2630. treenode_path_make.jsp.siteId_notfound=Site [ID = {0}] not found!
  2631. treenodes_children_html_make.jsp.can_not_recognise=The type [{0}]cannot be identified[{0}]!
  2632. treenodes_children_html_make.jsp.channel_notfound=Specified channel [0] does not exist!
  2633. treenodes_children_html_make.jsp.label.data_not_agreed=data inconsistencies with agreed!
  2634. treenodes_html_make.jsp.label.fail2init_childsite_obj=Sub-site initialization failed!
  2635. treenodes_html_make.jsp.label.fail2init_obj=Initializes the object failed!
  2636. trsserver_config.jsp.label.choose=--Please select--
  2637. trsserver_query.jsp.label.confirm=,Please confirm.
  2638. trsserver_query.jsp.label.runtimeexception=trsserver_query.jsp runtime exception!
  2639. trsserver_query.jsp.label.service=Service(com.trs.ajaxservice.viewDocumentServiceProvider.trsQuery)The return of the ArrayList object collection types, and not for
  2640. trsserver_show.jsp.trsserver_record_notfound=Cannot find the specified TRSServer[ID={0}]!
  2641. type_id.attribute.wrong=The attribute value is incorrect.Failure
  2642. type_id.error=Incorrect
  2643. type_id.every=NO. ({0})
  2644. type_id.gailan=Outline: {0}
  2645. type_id.pubFaile=Failed to pick up and display the publishing error task !
  2646. type_id.total=Total ({0}) of
  2647. type_id.unknow=unknown
  2648. type_id.unknowSite=unknown Site
  2649. type_id.xilan=Detailed:{0}
  2650. ublic_processor.logging.error=The user not logged in or logged out!
  2651. uder.select.list.retimeload=Loading overtime, please refresh.
  2652. upload_office_doc.jsp.forbid_upload_file_type=Systems prohibit the uploading of [{0}] format!
  2653. upload_office_doc.jsp.label.fail2create_digital_officeservice=Intelligent created OfficeService service request failed.
  2654. upload_office_doc.jsp.label.please_check_params= Please check parameter is not configured correctly or service is not started.
  2655. upload_office_doc.jsp.sysdenyuploadformfile=The system forbid to upload format {0}!
  2656. upload_office_doc.jsp.zipfileuncompressfailure=Zip File decompression failed!
  2657. user.button.adduser=Create User
  2658. user.button.dropuser=Delete User
  2659. user.button.forbiduser=Deactivate Account
  2660. user.button.passwordtest=Weak passwords user testing
  2661. user.button.passwordtestdesc=Detection system exists weak passwords users
  2662. user.button.quitedropuser=Completely Delete User
  2663. user.button.reguser=Activate Account
  2664. user.button.restore=Restore User
  2665. user.button.setright=Setting Permissions
  2666. user.button.showalluser=Show that all users
  2667. user.label.addedit=Create/Modify User
  2668. user.label.address=Address
  2669. user.label.affirmpassword=Confirm Password
  2670. user.label.allwebsite=All website
  2671. user.label.applytime=Activating Time
  2672. user.label.belonggroup=Group
  2673. user.label.belongrole=Role
  2674. user.label.checknewpassword=Confirm the new password
  2675. user.label.edituserinfo=Modify User Information
  2676. user.label.email=Email
  2677. user.label.info=User Information
  2678. user.label.inputnewpassword=Enter a new password
  2679. user.label.inputnewpasswordbyhand=Manually enter a new password
  2680. user.label.list=Users List
  2681. user.label.mobile=Mobile
  2682. user.label.newpassword=New Password
  2683. user.label.nickname=Nickname
  2684. user.label.numutin=
  2685. user.label.oldpassword=Old Password
  2686. user.label.password=Password
  2687. user.label.passwordtestresult=Weak passwords user test results
  2688. user.label.pwstrength=Password strength
  2689. user.label.pwstrengthDesc=Understand what password strength? How to set up security password?
  2690. user.label.realname=Real Name
  2691. user.label.registertime=Register Time
  2692. user.label.resetpassword=Reset Password
  2693. user.label.resetpassword1=Permission Management
  2694. user.label.resetpasswordinfo=Reset Registration Info
  2695. user.label.resettosystempassword=To reset the system default password
  2696. user.label.rule1_of_username=1. The user name consists of the letters, numbers, dots, and underscores (_).
  2697. user.label.rule2_of_username=2. The length of the user name ranges from 3 to 20 bytes.
  2698. user.label.rule3_of_username=3. The user name cannot contain special characters such as the space and comma.
  2699. user.label.rule4_of_username=4. System and admin are the user names reserved by the system.
  2700. user.label.rule_of_username=The user name rules are as follows
  2701. user.label.select=Select User
  2702. user.label.specialrole=Specific role
  2703. user.label.statusnow=Current Status
  2704. user.label.systemrole=System role
  2705. user.label.telephone=Telephone
  2706. user.label.unit=items
  2707. user.label.user=user
  2708. user.label.userfanye=User
  2709. user.label.username=User Name
  2710. user.tip.adduser=Create User
  2711. user.tip.dropuser=Delete Current User
  2712. user.tip.forbiduser=Deactivate Current User Account
  2713. user.tip.quitedropuser=Completely Delete Current User
  2714. user.tip.refresh=Refresh
  2715. user.tip.reguser=Activate Current User Account
  2716. user.tip.restore=Restore Current User
  2717. user.tip.setright=Set Permissions to Current User, shortcut keys: N
  2718. user_add_to_site=Add User to Site Page
  2719. user_bonus_stat.null=None
  2720. user_datatable.total.null=None
  2721. user_doc_stat.audio=Audio
  2722. user_doc_stat.back=Redo
  2723. user_doc_stat.check=Auditing
  2724. user_doc_stat.copy=Copy
  2725. user_doc_stat.department=Department
  2726. user_doc_stat.edited=Edited
  2727. user_doc_stat.fgl=Filen volum
  2728. user_doc_stat.image=Picture
  2729. user_doc_stat.newdoc=New manuscript
  2730. user_doc_stat.no=None
  2731. user_doc_stat.num=Sequence number
  2732. user_doc_stat.origin=Original manuscript
  2733. user_doc_stat.quote=Quote
  2734. user_doc_stat.sent=Published
  2735. user_doc_stat.signed=Signed
  2736. user_doc_stat.user=User name
  2737. user_doc_stat.user.fgl=Statistics list of filen volume
  2738. user_doc_stat.video=Video
  2739. user_doc_stat.word=Character
  2740. user_group_include.org=of group[<span class=\"detail-hostname\">{0}</span>]
  2741. user_group_include.user=User[<span class=\"detail-hostname\">{0}</span>]
  2742. user_piechartdata.jsp.have_no_data=(None)
  2743. user_remove_fail=Failed to get the user collection.
  2744. user_remove_from_site=Reload the Configuration of the current page.
  2745. user_select_list.jsp.getrecord=Get the first ["{0}"] records failed!
  2746. user_select_list.jsp.getrecordattr=Failed to obtain record ["{0}"] property !
  2747. user_trendchartdata_include.start=Start to inquire search and statistics of user or departmrnt
  2748. userlogininfo_stat.null=None
  2749. validate_dir_file.label.noValidRoot=The specified directory is invalid.
  2750. video.label.crtime=Creation Time
  2751. video.label.cruser=Creator
  2752. view_oper_set.auth.label.noviewperssion=The new mode is not allowed to view/set members can visit and operate!Type:[{0}] Id:[{1}]
  2753. view_oper_set.jsp.objnotfound=your specified object is invalid![ObjType={0}, ObjId={1}]
  2754. view_oper_set.jsp.objnotfound_a=The object type [ObjType={0}] is not supported!
  2755. view_oper_set_dowith.auth.label.noviewperssion=the new mod is not allowed to view/set enterable and operable member!Type:[{0}] Id:[{1}]
  2756. view_to_html.form.getFailed=Failed to obtain customized list ID [{0}]!
  2757. view_to_html.view.getFailed=For ID [{0}] custom form view failed!
  2758. viewclassinfo.jsp.stitle=Name: {0} \ n creator: {1} \ n create time: {2}
  2759. viewclassinfo.label.crtime=Created
  2760. viewclassinfo.label.cruser=Creator
  2761. viewclassinfo.label.desc=Name
  2762. viewclassinfo.label.objId=ID
  2763. viewdata_detail.jsp.channelnotfound=Did not find the specified channel! [ID = {0}}]
  2764. viewdata_detail.jsp.label.involve_doc_noexists=related documents is invalid!
  2765. viewdata_detail.jsp.label.runtimeexception=metaviewdata_query.jsp runtime exception!
  2766. viewdata_detail.jsp.label.usernotlogin=User not logged in or logged out?
  2767. viewdata_detail.jsp.viewdatanotfound=View of the specified data object specified is not found! [ID = {0}]
  2768. viewDocument.label.crtime=Creation Time
  2769. viewDocument.label.cruser=Creator
  2770. viewDocument.label.docId=Document ID
  2771. ViewDocument.label.DocId=Document ID
  2772. viewfield_position_set.jsp.adjust_order=Adjust order of field <font color='blue'>[{0}]</font>
  2773. viewfield_position_set.jsp.field_not_found=Not found with ID [{0}] of the field!
  2774. viewfield_position_set.jsp.view_not_found=cannot find view ID [{0}]!
  2775. viewinfo_select_query.type=Services (com.trs.components.metadata.service.MetaDataDefServiceProvider.query) returns the object set type is not MetaViews, and for the {0}, please confirm.
  2776. watermark.label.crtime=Creation Time
  2777. watermark.label.cruser=Creator
  2778. watermark_addedit.jsp.watermark_notfound=Cannot find watermark ID [{0}]!
  2779. watermark_findbyid.jsp.jsp.service=Services (com.trs.ajaxservice.WatermarkServiceProvider.findbyid) returns the object type is not Watermark, and for [{0}], make sure!
  2780. watermark_findbyid.jsp.jsp.website_notfound=No site ID [{0}] is found
  2781. watermark_findbyid.jsp.label.runtimeexception=watermark_findbyid.jspruntime exception!
  2782. watermark_query.jsp.found=service(com.trs.ajaxservice.WatermarkServiceProvider.queryThe return collection is not Watermarks, but [{0}], please confirm.
  2783. watermark_query.jsp.label.runtimeexception=watermark_query.jspruntime exception!
  2784. watermark_query.jsp.service=The collection type of return object to service(com.trs.ajaxservice.WatermarkServiceProvider.query) is not Watermarks, but [{0}]. Please conirm.
  2785. watermark_thumb_query.jsp.found=service(com.trs.ajaxservice.WatermarkServiceProvider.query)The return object is not MetaDBFields, but {0}, please confirm.!
  2786. watermark_thumb_query.jsp.label.runtimeexception=watermark_query.jspRuntime exception!
  2787. watermark_thumb_query.jsp.service=The collection type of return object to service(com.trs.ajaxservice.WatermarkServiceProvider.query)is not Watermarkes, but [{0}]. Please conirm.
  2788. wcm.auth.group.tree.errorinfo=Cannot find the specified group [
  2789. wcm.auth.group.tree.errorinfo1=] not found.
  2790. wcm.auth.group.tree.gouzaouser=Construct User Group [
  2791. wcm.auth.group.tree.gouzaousermisecond=] millisecond.
  2792. wcm.auth.group.tree.gouzaousertime=] Group tree takes time [
  2793. wcm.auth.group.tree.userlist=User
  2794. wcm.auth.group.tree.userorglist=User Group
  2795. wcm.auth.group.tree.userzu=User Group [
  2796. wcm.group.select.index.lable.title=User Select Page
  2797. wcm.group.select.list.desc=Description
  2798. wcm.group.select.list.huoqudi=Get the [
  2799. wcm.group.select.list.label.nofoundorg=].
  2800. wcm.group.select.list.label.nofoundorgid=Fail to find User Group by ID= [
  2801. wcm.group.select.list.label.reloadouttime=Loading page times out, please refresh.
  2802. wcm.group.select.list.name=Name
  2803. wcm.group.select.list.search=Search
  2804. wcm.group.select.list.selectall=Select All
  2805. wcm.group.select.list.zuzhi=Group
  2806. wcm.group.select.list.zuzhige=
  2807. wcm.group.select.list.zuzhishibai=] error.
  2808. wcm.select.index.label.framenameerro=Wrong Frame.
  2809. wcm.select.index.label.selectjuese=Select Role
  2810. wcm.select.index.label.selectorg=Select User Group
  2811. wcm.select.index.label.selectuser=Select User
  2812. wcm.select.index.label.title=Invalid type
  2813. wcm.select.index.label.userororg=Select User/Group
  2814. wcm.select.index.label.wuxiaoobj=Invalid object type.
  2815. wcm.selected.list.label.selecteduser=Selected
  2816. wcm.selected.list.label.title=Selected List
  2817. wcm.user.select.index.label.title=User Select Page
  2818. wcm.user.select.left.label.title=User Select Tree
  2819. wcm.user.select.list.label.huoqudi=Error to get [
  2820. wcm.user.select.list.label.jiluarrterro=] record properties.
  2821. wcm.user.select.list.label.nofoundorg=].
  2822. wcm.user.select.list.label.nofoundorgid=Fail to find User Group by ID= [
  2823. wcm.user.select.list.label.reloadouttime=Loading page times out, please refresh.
  2824. wcm.user.select.list.label.selectall=All
  2825. wcm.user.select.list.label.tiaojiluerro=] Error.
  2826. wcm.user.select.list.label.title=User Select Page
  2827. wcm.user.select.list.label.truename=True Name
  2828. wcm.user.select.list.label.unitge=Number
  2829. wcm.user.select.list.label.user=User
  2830. wcm.user.select.list.label.username=User Name
  2831. wcm.user.select.noleft.label.title=User Select Page
  2832. website.button.addchannel=Create Channel
  2833. website.button.allpublish=Completely Publish
  2834. website.button.contentlink=Hot Words
  2835. website.button.drop=Delete
  2836. website.button.editionconfig=Version Config
  2837. website.button.export=Export Site
  2838. website.button.extendfield=Extended Field
  2839. website.button.ftpmanage=FTP Management
  2840. website.button.groupadd=Add
  2841. website.button.groupdrop=Delete
  2842. website.button.groupmanage=Site Group Admin
  2843. website.button.increasepublish=Increased Publish
  2844. website.button.info=Info
  2845. website.button.manage=Site Maintenance
  2846. website.button.modify=Modify
  2847. website.button.modify_of_config=Modify
  2848. website.button.preview=Preview
  2849. website.button.publishdistribution=Publish Distribution
  2850. website.button.publishoption=Advanced Publish
  2851. website.button.publishproperty=Publish Properties
  2852. website.button.quickpublish=Fast Publish
  2853. website.button.quitedrop=Completely Delete
  2854. website.button.recycle=Recycler
  2855. website.button.restore=Restore
  2856. website.button.roleadd=Add
  2857. website.button.roledrop=Delete
  2858. website.button.setright=Set Permissions
  2859. website.button.similar=Analogous Create
  2860. website.button.useradd=Add
  2861. website.button.userdrop=Delete
  2862. website.button.usergroupmanage=User Group Admin
  2863. website.button.usermanage=Manage Site Users
  2864. website.label.addedit=Create/Modify Site
  2865. website.label.applytime=Activating Time
  2866. website.label.autobakconfig=Auto save Document Version Config
  2867. website.label.autosave=Auto Save
  2868. website.label.baseinfo=Base Info
  2869. website.label.belongchannel_of_recycle=Channel
  2870. website.label.canpublish=Published Document Status
  2871. website.label.channelname_of_recycle=Template Name
  2872. website.label.channelrecycle=Channel Recycler
  2873. website.label.createfrom=Site Analogously Create
  2874. website.label.creator=Creator
  2875. website.label.crtime=Created
  2876. website.label.cruser=Creator
  2877. website.label.datapath=Save Path
  2878. website.label.desc=Site Description
  2879. website.label.detailpage=Detail Page
  2880. website.label.editionconfigure=Version Config
  2881. website.label.email=Email
  2882. website.label.explain=Tips: Click to enter Create/Modify template page
  2883. website.label.export=Export Site
  2884. website.label.extendname=Extended Name
  2885. website.label.filename=File Name
  2886. website.label.folder=Folder
  2887. website.label.groupcrtime=Creation Time
  2888. website.label.groupdesc=Group Description
  2889. website.label.groupemail=Group Email
  2890. website.label.grouplist=Site Group Admin
  2891. website.label.groupname=Group Name
  2892. website.label.http=Site HTTP
  2893. website.label.id=Site ID
  2894. website.label.import=Import Site
  2895. website.label.importchild=Do you want to import child node(s)?
  2896. website.label.importrelated=Do you want to export related objects?
  2897. website.label.indexpage=Homepage
  2898. website.label.indextemplate=Homepage Template
  2899. website.label.name=Site Name
  2900. website.label.name_of_createfrom=Create Site Name
  2901. website.label.number=Order Number
  2902. website.label.outlinepage=Outline Page
  2903. website.label.password=Password
  2904. website.label.publishfilename=Publish File Name
  2905. website.label.publishplan=Arranged Publish
  2906. website.label.publishproperty=Publish Properties
  2907. website.label.realname=Real Name
  2908. website.label.recycle=Site Recycler
  2909. website.label.recyclebelongchannel=Owner Channel
  2910. website.label.recylesitename=Site Name
  2911. website.label.related_of_createfrom=Do you also want to create templates and extended fields of site?
  2912. website.label.rolecrtime=Creation Time
  2913. website.label.roledesc=Role Description
  2914. website.label.rolelist=Site Role Admin
  2915. website.label.rolename=Role Name
  2916. website.label.server=Server
  2917. website.label.showname=Show Name
  2918. website.label.siteid=Site ID
  2919. webSite.label.siteid=Site ID
  2920. website.label.sitename=Unique Name
  2921. website.label.statusedited=Published Document Status after Editing
  2922. website.label.statusnow=Current Status
  2923. website.label.userlist=Manage Site User
  2924. website.label.username=User Name
  2925. website.label.websiteId=ID
  2926. website.lable.set_of_publish=Set Channel Publish Properties
  2927. website.message.allowsave=Please select allowed document saved status
  2928. website.message.autobakconfig=Document Version Auto Save Config
  2929. website.message.autocreate=auto create by program
  2930. website.message.autosave=Save Option
  2931. website.message.changestatussave=Auto save Document to Document Lib after Edit
  2932. website.message.createfromwait=Executing Analogously Creation, please wait........
  2933. website.message.editsave=Auto Save Document to Document Version Lib after Modification
  2934. website.message.export=Exporting Site, please wait........
  2935. website.message.import=Support XML,ZIP files
  2936. website.message.importwait=Importing Site, please wait......
  2937. website.message.needupload=File need to upload
  2938. website.message.pubsave=Auto save document to version library after publishing
  2939. website.object.not.found=Find no ID for {0} site
  2940. website.tip.addchannel=Add Channel in Current Site
  2941. website.tip.allpublish=Completely Publish Site
  2942. website.tip.drop=Delete Current Site
  2943. website.tip.export=Export Site
  2944. website.tip.groupadd=Add User to Current Site
  2945. website.tip.groupdrop=Delete User Group from Current Site
  2946. website.tip.increasepublish=Increased Publish
  2947. website.tip.info=Show Site Properties
  2948. website.tip.modify=Edit Site Properties
  2949. website.tip.modify_of_config=Edit Site Version Config
  2950. website.tip.preview=Preview Site Published Effect
  2951. website.tip.propublish=Publish Advanced Option
  2952. website.tip.quitedrop=Completely Delete Selected Site(s)
  2953. website.tip.refresh=Refresh Current Page
  2954. website.tip.restore=Restore Selected Site
  2955. website.tip.roleadd=Add Role to Current Site
  2956. website.tip.roledrop=Delete Role from Current Site
  2957. website.tip.setright=Set Current Channel Permissions
  2958. website.tip.similar=Create Site from exist Site
  2959. website.tip.useradd=Add User to Current Site
  2960. website.tip.userdrop=Delete User from Current Site
  2961. website_add_edit_init.jsp.fail2build_right_info=Structure [{0}] permissions information!
  2962. website_addedit.label.lock=] you can't edit.
  2963. website_addedit.label.none=None
  2964. website_addedit.label.user=] is locked by user [
  2965. website_addedit.label.website=website [
  2966. website_addedit_init.label.none=None
  2967. website_create.jsp.label.sys_no_prew_website=System without any pre-site!
  2968. website_create.jsp.obj_notfound=No preinstall style in site [{0}]!!
  2969. website_findbyid.jsp.service=service(com.trs.ajaxservice.WebSiteServiceProvider.findbyid)The return type is not WebSite,but [{0}],please confirm.
  2970. website_findbyid.label.none=None
  2971. website_findbyid.runtime.error=website_findbyid.jspAn exception occurs while running.
  2972. website_query.jsp.service=Failed to construct [{0}]permission!
  2973. website_thumb_query.jsp.fail2create_right_info=Structure [{0}] permissions information!
  2974. websiteroot_findbyid.label.imgsitetype=Picture Library
  2975. websiteroot_findbyid.label.msg=Message
  2976. websiteroot_findbyid.label.resource=Resource Library
  2977. websiteroot_findbyid.label.videositetype=Video Library
  2978. websiteroot_findbyid.label.wordsitetype=Library
  2979. websiteroot_findbyid.label.worklist=My worklist
  2980. websiteroot_findbyid.label.xiezuo=Collaboration Services
  2981. websiteroot_findbyid.label.xiezuoservice=Collaboration services
  2982. widget.label.chnlname=Resources style name
  2983. widget.label.crtime=Creation time
  2984. widget.label.cruser=Creator
  2985. widget.label.masterId=Numbers
  2986. widget.label.mname=Motherboard name
  2987. widget.label.websiteId=Numbers
  2988. widget_addedit.build.noRight=You do not have the right to create resource.
  2989. widget_addedit.modify.noRight=You do not have the right to modify resource.
  2990. widget_addedit.widget.label.chnlname=resource style name
  2991. widget_query.widget.label.chnlname=resource name
  2992. widget_select_query.jsp.widget.label.chnlname=resource name
  2993. widgetparameter_addedit.create.noRight=You do not have the right to create resource variable.
  2994. widgetparameter_addedit.modify.noRight=You do not have the right to modify resource variable.
  2995. widgetparameter_query.no=No
  2996. widgetparameter_query.null=Variable type object is null.
  2997. widgetparameter_query.yes=Yes
  2998. widgetparameter_set..id.zero=The Widget object [Id={0}] is not found
  2999. widgetparameter_set.noeffect=No valid widgetInstanceId is imported
  3000. widgetparameter_set.null=Resource sample object is null.
  3001. widgetparameter_set.widget.label.chnlname=resource style name
  3002. workflow.button.requestback=Redo required
  3003. workflow.employment.info.none=None.
  3004. workflow.employment.info.site=Site [
  3005. workflow.label.addedit_of_conditionbean=Create/Edit Workflow Condition Settings
  3006. workflow.label.clickselectuser=Click to select handle person
  3007. workflow.label.condition=Flowing Situation
  3008. workflow.label.conditionshow=Flowing Situation View
  3009. workflow.label.conditype_of_conditionbean=Condition Type
  3010. workflow.label.crtime=Created
  3011. workflow.label.cruser=Creator
  3012. workflow.label.definenotice=Customize Notify Way
  3013. workflow.label.defineuser=Customize Handler
  3014. workflow.label.desc=Workflow Description
  3015. workflow.label.desc_of_conditionbean=Condition Description
  3016. workflow.label.desc_of_operationbean=Operation Description
  3017. workflow.label.editor=Workflow Editor
  3018. workflow.label.email=Email
  3019. workflow.label.ename=End Node Name
  3020. workflow.label.flowcondition=Flowing Condition
  3021. workflow.label.flowstatus=Flowing Status
  3022. workflow.label.import=Import Workflow
  3023. workflow.label.list=Workflow List
  3024. workflow.label.message=Message
  3025. workflow.label.mobile=Mobile
  3026. workflow.label.moniter_of_conditionbean=Monitor Trigger
  3027. workflow.label.myworklist=Work List
  3028. workflow.label.name=Workflow Name
  3029. workflow.label.name_of_conditionbean=Condition Name
  3030. workflow.label.name_of_operationbean=Operation Name
  3031. workflow.label.nextnode=Next Node
  3032. workflow.label.opinion=Opinion
  3033. workflow.label.path_of_conditionbean=Component Path
  3034. workflow.label.path_of_operationbean=Component Path
  3035. workflow.label.postagain=Post Again
  3036. workflow.label.postdesc=Post Description
  3037. workflow.label.postdoc=Post Document
  3038. workflow.label.posttime=Post Time
  3039. workflow.label.postuser=Post User
  3040. workflow.label.realtime_of_conditionbean=RealTime Trigger
  3041. workflow.label.requestback=Redo Required
  3042. workflow.label.returndoc=Redo Document
  3043. workflow.label.seturl_of_conditionbean=Condition Setting Page
  3044. workflow.label.seturl_of_operationbean=Operate Setting Page
  3045. workflow.label.sname=Start Node Name
  3046. workflow.label.submitdoc=Document Submitted
  3047. workflow.label.title=Title
  3048. workflow.message.import=Only support XML file
  3049. workflow.process.init.for.doc.label.erroinfo=Your workflow design is wrong, that will result in the abnormal process of the document. Details are as follows:&nbsp;
  3050. workflow.process.init.label.erroinfo=Failure. Cannot find [FlowId=
  3051. workflow.process.init.label.flow=] Workflow.
  3052. workflow.process.reflow.label.docinfo=]
  3053. workflow.process.reflow.label.firstnode=]
  3054. workflow.process.reflow.label.getfirstnodeerr=Cannot find the first node of the flowing document.
  3055. workflow.process.reflow.label.huoquid=Cannot find any transfer information of the document with the ID of [
  3056. workflow.process.reflow.label.huoquid2=Cannot find the object with the ID [
  3057. workflow.process.reflow.label.nofind=]
  3058. workflow.process.reflow.label.noflow=The channel that the document belongs to is not configured with the workflow.
  3059. workflow.process.reflow.label.typewei=],Type [
  3060. workflow.process.reflow.label.zhidingid=Cannot find the content with the ID [
  3061. workflow.process.reflow.label.zhidingid2=Cannot find the first node of the flowing document with the ID [
  3062. workflow.process.render.4wcm52.label.errordealinfo=Failure. Cannot find [FlowDocId=
  3063. workflow.process.render.4wcm52.label.errorflowprocess=] workflow trace.
  3064. workflow.process.render.4wcm52.label.errorinfo=Failure. Cannot find [FlowDocId=
  3065. workflow.process.render.4wcm52.label.errorprocessinfo=] workflow trace property.
  3066. workflow.process.render.label.deletedinfo=The content may be deleted by other user. ObjectIds=
  3067. workflow.process.render.label.errodealinfo=Failure. Cannot find [FlowDocId=
  3068. workflow.process.render.label.erroinfo=Failure. Cannot find [FlowId=
  3069. workflow.process.render.label.flowdoc=] Workflow Trace.
  3070. workflow.process.render.label.flowprocess=] workflow trace property.
  3071. workflow.tip.add=Create Workflow
  3072. workflow.tip.drop=Delete Selected Workflow
  3073. workflow.tip.export=Export Workflow
  3074. workflow.tip.import=Import Workflow
  3075. workflow.tip.requestback=Redo Workflow
  3076. workflow_process_render.jsp.getidofdocfailed=Failed to obtain file ID[{0}]!
  3077. workflow_process_render.jsp.specialcontentnotfind=The content[Type= {0} , Id= {1} ]is not found
  3078. workflow_process_render_4wcm52.jsp=Failed to obtain the file ID[{0}]!
  3079. workflow_process_render_4wcm52.jsp.nocontentfond=the specified content[Type= {0} , Id= {1}]cannot find
  3080. workflow_process_render_for_doc.jsp.contentnotfond=the specified content[Type={0}, Id={1}]cannot find[
  3081. workflow_process_render_for_doc.jsp.getdocidfailure=For ID [{0}] of the document to fail!
  3082. workflow_setting.form.getFailed=For ID [{0}] custom infoview failed!
  3083. XDocAppendixesHandler.failed=failed to convert the Appendixs collection object as an XML character string!
  3084. XDocAppendixesHandler.jsp.label.collectionconvert2xmlfail=Conversion appendixs collection object as an XML string failed!
  3085. XRelatedDocHandler.jsp.label.requiredparamsisnull=No incoming parameters [ObjectIds] or [ObjectId]
  3086. XRelatedDocHandler.noPara=Do not import parameters [ObjectIds] or [ObjectId]
  3087. xsl_file_upload4docimport_dowith.jsp.forbid_upload_file=The system prohibit uploading[{0}] format file!
  3088. xsl_file_upload4docimport_dowith.jsp.found=Systems prohibit the uploading of [{0}] format!!
  3089. xsl_file_upload4docimport_dowith.jsp.label.notFound=Local file cannot be found.
  3090. file_upload_dowith.filesize.toolarge=The size of file is greater than the maximum value {0}K. Please re-select!
  3091. metaviewfieldgroup_addedit_dowith.jsp.rightValid=You are not an administrator, has no permission to do this operation!
  3092. metaviewdata_addedit.jsp.label100=You have no right to create document in channel employer MetaView[0].
  3093. advisor_option_order.jsp.notfindadvisorgroupid=No advisor option group ID {0} is found!
  3094. filter_option_order.jsp.notfindoptiongroupid=No option group ID{0} is found!
  3095. filter_addedit_dowith.jsp.notfindfilterid=No filter ID [{0}] is found!
  3096. systemright_view.jsp.haverightare=The permission of <font color='red'>[{0}]</font>
  3097. filter_addedit.jsp.cannotfindchannelid=No channel ID [{0}]is found!
  3098. filter_addedit.jsp.parameterchnlidvaluemustlargethanzero=The value of ChannelId must be greater then 0!
  3099. advisor_addedit_dowith.jsp.notfindadvisorid=No advisor ID [{0}] is found!
  3100. advisor_delete.jsp.cannotfindchannelid=No channel ID [{0}] is found!
  3101. advisor_detail_info.jsp.notfindadvisorid=No advisor ID [{0}] is found!
  3102. option_pictrue_set.jsp.option_pictrue_set.jsp.notfindoptionid=No option ID{0} is found!
  3103. filter_list.jsp.ge=
  3104. filter_addedit.jsp.getfilteridfail=Failed to obtain Filter ID[{0}].
  3105. advisor_delete.jsp.youhavenotchannlidoperatefilterinfo=You do not have the right to operate the filter information under channel [id={0}].
  3106. filter_list.jsp.getnofilterattrfail=Failed to obtain the[{0}] filter!
  3107. advisor_addedit.jsp.parameterchannelidmustlargethanzaero=The value of ChannelId must be greater than 0!
  3108. filter_list.jsp.getnofilterfail=Failed to obtain the [{0}] filter.
  3109. advisor_list.jsp.getnodocadvisorfail=Failed to obtain the[{0}] advisor!
  3110. advisor_addedit_dowith.jsp.advisorislockedbyuser=The advisor is locked by user [{0}]!
  3111. advisor_addedit.jsp.youhavenorightidchannlnewadvisor=You do not have the right to create and modify advisor under channel [ID={0}]!
  3112. filter_detail_info.jsp.notfindfilterid=The filter ID{0} is not found!
  3113. advisor_step_order.jsp.notfindadvisorid=No advisor ID{0} is found!
  3114. advisor_addedit.jsp.notfindidischnl=No channel ID [{0}] is found!
  3115. filter_delete.jsp.notfindchnlid=No channel ID [{0}] is found!
  3116. filter_list.jsp.filter=Filter
  3117. advisor_addedit.jsp.getadvisoridfail=Failed to obtain advisor ID [{0}]!
  3118. advisor_list.jsp.notfindnoadvisor=The[{0}] advisor is not found!
  3119. filter_group_order.jsp.notfindfilterid=No filter ID[{0}] is found!
  3120. advisor_list.jsp.ge=
  3121. filter_addedit_dowith.jsp.savefiltercauseattrvaluenotrightandstop=Failed to save the filter for the attribute value is incorrect!
  3122. metaview_document_relation.jsp.relationdatamgr=Related data
  3123. advisor_addedit_dowith.jsp.saveadvisorcauseattrivaluenotrightandfail=Failed to save the advisor for the attribute value is incorrect!
  3124. option_pictrue_set.jsp.notfindoptionid=No option ID{0} is found!
  3125. advisor_list.jsp.getnoadvisorattrfail=Failed to obtain the {0} advisor!
  3126. filter_addedit_dowith.jsp.filterislockedbyuser=The filter is locked by user {0}!
  3127. filter_addedit.jsp.youhavenorightchnnlidnewmodifyfilter=You do not have the right to create and modify the filter under channel [ID={0}]
  3128. advisor_list.jsp.advisor=Advisor
  3129. filter_list.jsp.notfindnofilter=The [{0}] filter is not found!
  3130. filter_delete.jsp.youhavenorightchnlidoperatefilterinfo=You do not have the right to operate the filter information under channel [id={0}]!
  3131. advisor_optiongroup_order.jsp.notfindadvisoridstep=No advisor step ID{0} is found!
  3132. video.addedit.jsp.notExsit=The video ID[{0}] does not exist!
  3133. applyMASConfig.jsp.setupfail=Failed to set!
  3134. video_findbyid.jsp.videoStream=<Strong>Video flow
  3135. video_batch_add.jsp.noDocID=No document ID is specified!
  3136. video.addedit.jsp.changefail1=Failed to convert Relations group object to XML!
  3137. video_thumb_query.jsp.yifa=Published
  3138. live_add.jsp.noRight=You have no right to create live video!
  3139. player.jsp.notExit=The video does not exist!qryStr=[{0}]
  3140. videorecycle_findbyid.jsp.runError=videorecycle_findbyid.jsp Runtime error!
  3141. key=Setup
  3142. videorecycle_thumb_query.jsp.unkown=Unknown
  3143. video_batch_add.jsp.noRigthNew=You have no right ro create document!
  3144. video_list_editor.jsp.yifa=Published
  3145. video.addedit.jsp.notsetuplanmu=No channel is specified to create video in!
  3146. video_batch_add.jsp.notsetuplanmu=No channel is specified to create video!
  3147. video_batch_add.jsp.modify=Modify
  3148. videorecycle_thumb_query.jsp.runError=watermark_query.jsp Runtime error!
  3149. applyMASConfig.jsp.setupsuccess=Succeed to set!
  3150. video_list_editor.jsp.runEorro=watermark_query.jsp Runtime error!
  3151. video_batch_add.jsp.notOperate=The document ID[{0}]is in the Recycle Bin. It cannot be operated now!
  3152. video_thumb_query.jsp=Unknown
  3153. videorecycle_findbyid.jsp.videoStream=<Strong>Video flow
  3154. video_record.jsp.reqFail=Failed to obtain channel ID[{0}]!
  3155. video_record.jsp.refreshLanmu=Deleted! Please refresh the channel tree!
  3156. video.addedit.jsp.changefail=Failed to convert Relations group object to XML!
  3157. video_record.jsp.undefnNewLm=No channel is specified to create document in!
  3158. videorecycle_thumb_query.jsp.yifa=Published
  3159. video_thumb_query.jsp.noID=No chnldoc ID[{0}] is found!
  3160. video_findbyid.jsp.error=video_findbyid.jsp Runtime error!
  3161. video_thumb_query.jsp.runError=watermark_query.jsp Runtime error!
  3162. delete.jsp.video=Totally [{0}]videos fail to transcode.
  3163. video_list_editor_query.jsp.confirm=The target group type returned form service(com.trs.ajaxservice.PhotoServiceProvider.query)is not VideoDocs,but [{0}].Please confirm.
  3164. videorecycle_thumb_query.jsp.confirm=The target group type returned form service(com.trs.ajaxservice.PhotoServiceProvider.query)is not VideoDocs,but [{0}].Please confirm.
  3165. video.addedit.jsp.docfail==Failed to obtain ChnlDoc ID[{0}]!
  3166. video_batch_add.jsp.lanmufail=Failed to obtain channel ID[{0}]!
  3167. video_list_editor.jsp.unkown=Unknown
  3168. video.addedit.jsp.refreshlanmu=Deleted!Please refresh your channel tree.
  3169. video_thumb_query.jsp.confirm=The target group type returned form service(com.trs.ajaxservice.PhotoServiceProvider.query)is not VideoDocs,but [{0}].Please confirm.
  3170. video_batch_add.jsp.refreshlanmu=Deleted!Please refresh the channel tree.
  3171. video.addedit.jsp.lanmufail=Failed to obtain channel ID[{0}]!
  3172. nowebinfo=Not configured!
  3173. video_findbyid.jsp.confirm=The target group type returned form service(com.trs.ajaxservice.VideoDocumentServiceProvider.findbyid)is not ViewDocument,but [{0}].Please confirm.
  3174. delete.jsp.clear=Succeed in clearing [{0}]videos.
  3175. videorecycle_findbyid.jsp.confirm=The target group type returned form service(com.trs.ajaxservice.VideoDocumentServiceProvider.findbyid)is not ViewDocument,but [{0}].Please confirm.
  3176. group.label.viewoper=Access Control
  3177. role.label.info=Role Info
  3178. role.label.belonggroup=Group
  3179. role.label.specialrole=Specific Role
  3180. role.label.tip=(The type cannot be modified once confirmed)
  3181. auth.button.allGroups=All Group
  3182. system.button.showspecialrole=Show Specific Role
  3183. sysconfig.label.value=Content
  3184. eventtype.tasklist=Task List
  3185. eventtype.workingconference=Working Conference
  3186. eventtype.privateappointment=Private Appointment
  3187. eventtype.dinner=Dinner
  3188. eventtype.sports=Sports
  3189. eventtype.entertainment=Entertainment
  3190. eventtype.reminder=Reminder
  3191. eventtype.othermatters=Other Matters
  3192. eventtype.othermatters.more=Other Matters...
  3193. eventtype.reporting=Reporting
  3194. eventtype.travelonbusiness=Travel on Business
  3195. systemsource.People=People
  3196. systemsource.r.people=R--People
  3197. systemsource.CCTV=CCTV
  3198. systemsource.z.CCTV=Z--CCTV
  3199. systemsource.PeopleDaily=People's Daily
  3200. systemsource.r.PeopleDaily=R--People's Daily
  3201. systemsource.Xinhua.News.Agency=Xinhua News Agency
  3202. systemsource.x.Xinhua.News.Agency=X--Xinhua News Agency
  3203. systemsource.southcn=Southcn
  3204. systemsource.n.southcn=N--Southcn
  3205. systemsource.sina=Sina
  3206. systemsource.x.Sina=X--Sina
  3207. systemsource.Xinhua=Xinhua
  3208. systemsource.x.Xinhua=X--Xinhua
  3209. systemsource.trs=TRS
  3210. systemsource.beijing.trs=TRS
  3211. role.everyone=Each member in the system
  3212. role.rolemanage=Role maintainance
  3213. role.sitemanage=Site administrator
  3214. role.sitemanage.desc=Manage the specific site and its subobjects.
  3215. role.channelmanage=Channel administrator
  3216. role.channelmanage.desc=Manage the visible channel and its documents in the specific site.
  3217. role.templatemanage=Template administrator
  3218. role.templatemanage.desc=Manage the template in the specific site.
  3219. role.dataenter=Data entry staff
  3220. role.dataenter.desc=Create document in the visible channel of the specific site.
  3221. role.dataaudit=Data audit staff
  3222. role.dataaudit.desc=You can audit the document in the visible channel of the specific site, including edit document, delete document and modify status.
  3223. role.datapublish=Data publish staff
  3224. role.datapublish.desc=Publish the visible channel and its related documents in the specific site.
  3225. role.subjectmanage=Subject maintainance staff
  3226. role.stylemanage=Style maintainance staff
  3227. role.widgetmanage=Resource maintainance staff
  3228. role.inonegroup.subjectmanage=Subject maintainance staff of the same group.
  3229. role.inonegroup.subjectmanage.desc=Maintain the user subject in group or subgroup.
  3230. role.inonegroup.stylemanage=Subject style staff of the same group
  3231. role.inonegroup.stylemanage.desc=Maintain the user style in group or subgroup.
  3232. role.inonegroup.widgetmanage= Resource maintainance staff of the same group
  3233. role.inonegroup.widgetmanage.desc=Maintain the user resource in group or subgroup.
  3234. filter_option_group_properties.jsp.found=The specified Option group ID={0} cannot be found.
  3235. option.select.jsp.removebtn=<< Remove
  3236. option.select.jsp.addbtn=Add >>
  3237. metaviewdata_addedit.jsp.ReviewRight=You are not the current auditor, and have no right to modify the current record.