123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237 |
- addedit.channel.id.zero=Channel not found[Id={0}]
- addedit.channel.notFound=Channel not found[Id={0}]
- addedit.channel.view.not.found=View or distribution channel is not assigned a view not found!
- addedit.class.notFound=the system cannot find the specified type![ID={0}]
- addedit.doc.id.zero=Did not find the document [Id = {0}]
- addedit.oobj.not.found=The user default store channel cannot be found!
- addedit.paraWrong=Parameter error
- addedit.view.notFound=The view [Id={0]]cannot be found
- addedit_dowith.failed.for.wrongAttri=The attribute value is incorrect.Failed to save Keyword!
- addedit_dowith.locked=Keyword is the user [{0}] locked!
- addedit_dowith.obj.not.found=Cannot find the specified keyword[ID={0}]!
- addedit_include.exchange.error=Conversion Appendixs collection object as an XML string failed!
- advance_search.jsp.label.runtimeexception=metaviewdata_query.jsp runtime exception!
- advance_search.runExce=metaviewdata_query.jspruntime exception!
- app_of_views.noRight=You have no right to run the check!
- attachPhotoProps_deit.jsp.noiddoc=cannot find ID {0}
- attachPhotoProps_edit.jsp.noidpicclassic=cannot find the picture categoryID{0}
- attachPhotoProps_edit.jsp.novalidpicclassicid=Do not import valid picture classification ID!
- auth.button.addgroup=Select User Group
- auth.button.addrole=Selelct Role
- auth.button.adduser=Select User
- auth.button.dropall=Delete All
- auth.button.saveright=Save
- auth.label.addedit=Create/Modify Permissions
- auth.label.channel=Channel
- auth.label.desc=Permission Description
- auth.label.document=Document
- auth.label.doright=
- auth.label.error=Error to interactive with server
- auth.label.flow=Workflow
- auth.label.group=User Group
- auth.label.grouplist=User Group
- auth.label.index=Permission Index
- auth.label.info=Permission Info
- auth.label.list=Permission List
- auth.label.name=Permission Name
- auth.label.noproppermission=The current user [{0}] no system properties access for setting!
- auth.label.nopropperssion="The current user [ {0} ] has no permission to set."
- auth.label.noviewperssion="It is forbidden to view or set permission in new mode. Type : [{0}], ID : [{1}]."
- auth.label.objtype=Object Type
- auth.label.operatechannel=Channel
- auth.label.operatedocument=Document
- auth.label.operateflow=Workflow
- auth.label.operatesite=Site
- auth.label.operatesysattr=System
- auth.label.operatetemplate=Template
- auth.label.register=User Register
- auth.label.rightset=Permission Settings
- auth.label.role=Role
- auth.label.rolelist=Roles
- auth.label.site=Site
- auth.label.sysdefined=System Defined Permissions
- auth.label.system=System
- auth.label.template=Template
- auth.label.usergroup=User Group
- auth.label.userlist=User
- auth.label.viewoperset=Can visit operational Settings
- auth.tip.add=Create Permissions
- auth.tip.addgroup=Select User Group
- auth.tip.addrole=Select Role
- auth.tip.adduser=Select User
- auth.tip.drop=Delete Selected Permissions
- auth.tip.dropall=Del All Settings
- auth.tip.refresh=Refresh Current Page
- auth.tip.return=Return
- auth.tip.saveright=Save
- base_parameter_set.empty=Resource sample object is null
- base_parameter_set.id.zero=No Widget object[Id={0}] is found
- base_parameter_set.noeffect=No valid widgetInstanceId is imported.
- basechannel.label.default_of_agrument=Default
- basechannel.label.name_of_agrument=Parameter Name
- basechannel.label.noset_of_agrument=<font color=GRAY>Not Set</font>
- basechannel.label.select_nest_of_agrument=Choose inner template...
- basechannel.label.template_argument=Template Arguments List
- basechannel.label.template_of_agrument=Template
- basechannel.label.title_of_agrument=Name
- basechannel.label.value_of_agrument=Parameter Values
- basechannel.tip.drop_of_argument=Reset Parameter Settings
- basechannel.tip.refresh_of_argument=Refresh this Page
- bonus_stat.get=The bonus(£¤)
- bonus_stat.month=Month
- bonus_stat.sent=The amount of published document
- bookmark.button.add=Create Bookmark
- bookmark.button.addchildmarkkind=Create Subfolder
- bookmark.button.cancelshared=Cancel Bookmark Share
- bookmark.button.cancelsharedmarkkind=Cancel Folder Share
- bookmark.button.drop=Delete Bookmark
- bookmark.button.dropmarkkind=Delete Folder
- bookmark.button.editmarkkind=Modify Folder
- bookmark.button.move=Move Bookmark
- bookmark.button.share=Share Bookmark
- bookmark.button.sharemarkkind=Share Current Folder
- bookmark.button.viewshared=View Shared Bookmark
- bookmark.button.viewsharedmarkkind=View Share Folder
- bookmark.label.addedit=Create/Modify Bookmark
- bookmark.label.isshared=Shared
- bookmark.label.list=Bookmarks List
- bookmark.label.list_of_shared=Shared Bookmarks List
- bookmark.label.markkindfolder=Bookmark Folder
- bookmark.label.name=Name
- bookmark.label.textname=Name
- bookmark.label.textroot=My Favorites
- bookmark.label.url=URL
- bookmark.tip.add=Create Bookmark
- bookmark.tip.addchildmarkkind=Create Bookmark Folder
- bookmark.tip.cancelshared=Cancel Bookmark Share
- bookmark.tip.cancelsharedmarkkind=Cancel Current Folder Share
- bookmark.tip.drop=Delete Bookmark
- bookmark.tip.dropmarkkind=Delete Current Bookmark Folder
- bookmark.tip.editmarkkind=Modify Current Folder
- bookmark.tip.move=Move Bookmark
- bookmark.tip.refresh=Delete Bookmark
- bookmark.tip.return=Return
- bookmark.tip.share=Share Bookmark
- bookmark.tip.sharedmarkkind=Share Folder
- bookmark.tip.viewshared=View My Shared Bookmark
- bookmark.tip.viewsharedmarkkind=View Your Shared Bookmark Folder
- change_doclevel.jsp.getdoclevelex=Exception occur when getting the document security level
- change_status.label.document=Document
- change_status.label.photo=Picture
- channel.button.addchannel=Create Channel
- channel.button.allpublish=Completely Publish
- channel.button.contentlink=Hot Words
- channel.button.custompage=Customize Page
- channel.button.dispenseset=Distribution Settings
- channel.button.drop=Delete
- channel.button.edit=Modify
- channel.button.expandfield=Extended Field
- channel.button.export=Export Channel
- channel.button.import=Import Channel
- channel.button.increasepublish=Increased Publish
- channel.button.modify=Modify
- channel.button.move=Move
- channel.button.preview=Preview
- channel.button.property=Properties
- channel.button.publishproperty=Publish Properties
- channel.button.quitedrop=Completely Delete
- channel.button.recycle=Recycle Bin
- channel.button.replacecontent=Replacement
- channel.button.restore=Restore
- channel.button.setright=Set Permissions
- channel.button.similar=Analogously Create
- channel.button.templateargument=Template Variable
- channel.button.vindicate=Channel Maintenance
- channel.findbyid.channeldelete=The current channel has been deleted.
- channel.findbyid.runtimeexception=Run-time exception.
- channel.label.addedit=Add/Modify Channel
- channel.label.argumentaddedit=Add/Modify Template variable
- channel.label.basechannelrestore=Channel Restore Page
- channel.label.baseinfo=Base Info
- channel.label.belongsite=Site
- channel.label.channelid=Channel ID
- channel.label.channelselect=Select Channel
- channel.label.chnllinkintro=(Linked Channel Link Address)
- channel.label.chnlname=Unique Name
- channel.label.chnlnameintro=(Channel Unique Name, Cannot be diplex in same Site)
- channel.label.chnlpathintro=(Channel Saving Path)
- channel.label.content_of_agrument=Content
- channel.label.content_of_replace=Content
- channel.label.contentaddpage=Content Create and Edit page
- channel.label.contentlistpage=Content List Page
- channel.label.contentviewpage=Content View Page
- channel.label.createfrom=Channel Analogously Create
- channel.label.creator=Creator
- channel.label.crtime=Created
- channel.label.cruser=Creator
- channel.label.customform=Customized Infoview
- channel.label.custompage=Customize Page
- channel.label.datapath=Local Path
- channel.label.deliveryset=Distribution Settings
- channel.label.detailtemplate=Content Template
- channel.label.direction=Position
- channel.label.endtime=End Time
- channel.label.explain=Tips: Click to enter Create/Modify Template page
- channel.label.explorertitle_uploadsureform=Upload Shusheng Form File
- channel.label.export=Channel Export
- channel.label.gotodefault=Reset to Default Value
- channel.label.id=Channel ID
- channel.label.import=Channel Import
- channel.label.intervaltime=Interval Time
- channel.label.linkurl=URL
- channel.label.move=Move Channel
- channel.label.move_to_channel=Move to Channel
- channel.label.move_to_site=Move to Current Site
- channel.label.mutiaday=Multi-Run a day
- channel.label.name=Channel Name
- channel.label.none=None
- channel.label.onceaday=Run once a day
- channel.label.orderby=Order By
- channel.label.outlinetemplate=Outline Template
- channel.label.parent=Parent Channel
- channel.label.previous=Previous Channel
- channel.label.publishname=Publish Name
- channel.label.publishset=Publish Settings
- channel.label.relatedimage=Related Photo
- channel.label.replaceaddedit=Create/Modify Replacement
- channel.label.replacelist=Replacement List
- channel.label.replacemanage=Replacement Admin
- channel.label.restore=Restore
- channel.label.restorechannel=Restore Channel
- channel.label.restoresite=Restore Selected Site(s)
- channel.label.runtime=Execution Time
- channel.label.select_of_basechannel=Select Site/Channel
- channel.label.showname=Show Name
- channel.label.starttime=Start Time
- channel.label.sureform=Infoview Template
- channel.label.title_of_replace=Title
- channel.label.type=Channel Type
- channel.label.website=Site
- channel.label.websiteId=ID
- channel.label.where=Search Condition
- channel.label.workflowset=Workflow
- channel.message.allowpublish=Allow to Publish This Channel
- channel.message.chnllinkintro=(Linked Channel's Link address)
- channel.message.chnlnameintro=(Channel Unique Name, Unique in it's Site)
- channel.message.chnlpathintro=(Channel Saving Path)
- channel.message.chnlsureformintro=(infoview template that postfix is sef)
- channel.message.considerright=Consider channel Permissions while flowing document
- channel.message.createfromwait=Executing Channel Analogously Creation,Please Wait........
- channel.message.custompagealert=Noted: Customize Page must be the programming page of current WCM APP
- channel.message.datapathintro=Channel Show Name, all chars accepted
- channel.message.export=Exporting Channel, please wait........
- channel.message.extendfield=Reset the Extended Fields of all sub-channels, inherit from parent channel
- channel.message.extendparentset=Inherited Extended Field Setting
- channel.message.importwait=Importing Channel, please wait......
- channel.message.justusewhere=Only Search with Search Condition
- channel.message.linkchanneldoclist=Linked Channel Cannot manage Document
- channel.message.managenode=Only as managed node, no data
- channel.message.movewait=Moving Channel, please Wait........
- channel.message.shownameintro=(Channel Show Name, All Chars Available)
- channel.message.viewpreview=Click to View Preview Page
- channel.message.wait_of_basechannel=Executing, please wait........
- channel.object.not.found=Find no ID for {0} column
- channel.publish.propublish=Advanced Publish
- channel.publish.publishoption=Advanced Publish
- channel.publish.publishoption1=Advanced Publish
- channel.publish.quickpublish=Fast Publish
- channel.select.html.selectchnl=Select Channel
- channel.tip.add_of_replace=Create Replaced Content
- channel.tip.addchannel=Create Channel in Current Channel
- channel.tip.allpublish=Completely Publish to Current Channel
- channel.tip.drop=Delete Current Channel
- channel.tip.drop_of_replace=Delete Selected Replacement
- channel.tip.edit=Edit Site Properties
- channel.tip.export=Export Current Channel
- channel.tip.import=Import Channel
- channel.tip.increasepublish=Increased Publish Current Channel
- channel.tip.modify=Edit Channel Properties
- channel.tip.move=Remove Current Channel
- channel.tip.preview=Preview Publish Effect
- channel.tip.property=Show Channel Properties
- channel.tip.propublish=Advanced Publish Settings
- channel.tip.publishoption=Advanced Settings for Publishing
- channel.tip.quitedrop=Completely delete selected page(s)
- channel.tip.refresh_of_replace=Refresh Current Page
- channel.tip.restore=Restore Selected Channels
- channel.tip.setright=Set Current Channel Permissions
- channel.tip.similar=Create Channel from System existed Channel Module
- channel_addedit.label.channel=channel [
- channel_addedit.label.lock=] you can't edit.
- channel_addedit.label.user=] is locked by user [
- channel_findbyid.object.not.found=The current channel [ID = {0}] has been deleted.
- channel_findbyid.type=service(com.trs.ajaxservice.ChannelServiceProvider.findbyid)The return type is not Channel,but {0},please confrim.
- channel_position_set.object.not.found=The current channel [ID = {0}] has been deleted.
- channel_save_outline.jsp.label.toolong=Your choice of view field too much, please reduce field choice, this setting failure!
- channel_select_likecopy.label.crtime=Created
- channel_select_likecopy.label.cruser=Creator
- channel_select_likecopy.label.id=ID
- channel_select_likecopy.label.name=Name
- channel_thumb_query.jsp.objnotfound=Structure ["+ channel +"] permission information!
- channelcontentlink_add_edit.jsp.getkeywords=Get a collection of hot words!
- channelcontentlink_add_edit.jsp.notfindchnlkeyword=Not found with ID {0} channel hot words
- channelcontentlink_findbtyid.jsp.runtimeex=channelcontentlink_findbyid.jspRuntime exception!
- channelcontentlink_findbyid.jsp.servicecertain=service(com.trs.ajaxservice.ContentLinkServiceProvider.findbyid)the return collection is not ChannelContentLink,but{0},please confirm.
- channelcontentlink_import_query.jsp.runtimeex=template_query.jsp runtime exception!
- channelcontentlink_import_query.jsp.servicereturncertain=service(com.trs.ajaxservice.ContentLinkServiceProvider.query)The return collection is not ContentLinkTypes, but {0}, please confirm.
- channelcontentlink_query.jsp.chnlctlnkruntimeex=channelcontentlink_query.jsp runtime exception!
- channelcontentlink_query.jsp.servicereturncertain=Services (com.trs.ajaxservice.ContentLinkServiceProvider.query) returns the object set type is not ChannelContentLinks, and for the {0}, please confirm.
- channelsyn.button.selectchannel=Select Channel
- channelsyn.label.add=Create Channel Distribution Setting
- channelsyn.label.addedit=Create/Modify Channel Distribution Settings
- channelsyn.label.avilabletime=Available Time
- channelsyn.label.condition=Distribution Condition
- channelsyn.label.copy=Copy
- channelsyn.label.createbetween=Document Created within
- channelsyn.label.docstatus=Distributable Document Status
- channelsyn.label.docsyntime=Document Creation Time
- channelsyn.label.edit=Modify Channel Distribution Settings
- channelsyn.label.endtime=Distribution End Time
- channelsyn.label.link=Refer
- channelsyn.label.list=Channel Distribution Setting List
- channelsyn.label.mirror=Mirror
- channelsyn.label.searchword=Search Word
- channelsyn.label.selectchannel=Select Channel
- channelsyn.label.starttime=Distribution Start Time
- channelsyn.label.syntime=Sync Execute Time
- channelsyn.label.tochannel=Target Channel
- channelsyn.label.transmittype=Distribution Mode
- channelsyn.label.wheresql=Select Condition(SQL)
- channelsyn.tip.add=Create Channel Distribution Settings
- channelsyn.tip.drop=Delete Selected Channel Distribution Settings
- channelsyn.tip.refresh=Refresh Current Page
- channelsyn_findbyid.jsp.servicenoobject=service(com.trs.ajaxservice.DocumentSynServiceProvider.findbyid)The return collection is not ChannelSyn, but {0}, please confirm.
- channelsyn_findbyid.label.copy=Copy
- channelsyn_findbyid.label.mirror=Mirror
- channelsyn_findbyid.label.quote=Link
- channelsyn_findbyid.label.unknown=Unknown
- channelsyn_findbyid.runtime.error=channelsyn_findbyid.jspAn exception occurs while running.
- channelsyn_query.jsp.chnlsynqueryruntimeex=channelsyn_query.jspRuntime exception!
- channelsyn_query.jsp.servicenoobject=Services (com.trs.ajaxservice.DocumentSynServiceProvider.query) returns the object set type is not ChannelSyns, and for the {0}, please confirm.
- channelsyn_query.label.copy=Copy
- channelsyn_query.label.mirror=Mirror
- channelsyn_query.label.quote=Link
- channelsyn_query.label.unknown=Unknown
- channelsyncol_findbyid.jsp.servicenotobject=service(com.trs.ajaxservice.DocumentSynServiceProvider.findbyid)The return type is not ChannelContentLink, , but {0}, please confirm!
- channelsyncol_findbyid.label.copy=Copy
- channelsyncol_findbyid.label.mirror=Mirror
- channelsyncol_findbyid.label.quote=Link
- channelsyncol_findbyid.label.unknown=Unknown
- channelsyncol_findbyid.runtime.error2=channelsyncol_findbyid.jspAn exception occurs while running.
- channelsyncol_query.jsp.chnlsyncolqueryruntimeex=channelsyncol_query.jsp runtime exception!
- channelsyncol_query.jsp.servicenoobject=service(com.trs.ajaxservice.DocumentSynServiceProvider.query)The return type is not ChannelSyns,but{0},please confirm.
- channelsyncol_query.label.copy=Copy
- channelsyncol_query.label.mirror=Mirror
- channelsyncol_query.label.quote=Link
- channelsyncol_query.label.unknown=Unknown
- chnl_barchartdata.chnl=Channel:{0}<br>filen volum:
- chnlrectycle_findbyid.jsp.servicenoobject=Services (com.trs.ajaxservice.ChannelServiceProvider.findbyid) returns the object type is not Channel, and for the {0}, please confirm.
- chnlrecycle_findbyid.label.none=None
- chnlrecycle_findbyid.object.not.found=Cannot fine the channel[ID={0}].
- chnlrecycle_query.jsp.chnlrecqueryruntimeex=chnlrecycle_query.jsp runtime exception!
- chnlrecycle_query.jsp.servicenoobject=service(com.trs.ajaxservice.ChannelServiceProvider.query the return collection type is not Channels,but{0},please confirm.
- classic_list_select.construct.failed=Structure [{0}] permissions information!
- classic_list_select.record=Record ID
- classinfo)_select_query.jsp.runtimeex=classic_select_query.jsp runtime exception!
- classinfo.label.classinfoId=ClassInfo ID
- classinfo.label.crtime=Creation Time
- classinfo.label.cruser=Creator
- classinfo.label.name=Name
- classinfo_findbyid.jsp.classinfo_findbyidruntimeex=classinfo_findbyid.jsp runtime exception!
- 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.
- classinfo_query.jsp.runtimeex=classinfo_query.jspRuntime exception!
- classinfo_query.jsp.servicenoobject=service(com.trs.components.metadata.service.ClassInfoServiceProvider.query)The return collection is not classinfos, but {0}, please confirm!
- classinfo_query.jsp.youarenotmng=You are not administrator. You have no permission to manage list of classification!
- classinfo_select_query.jsp.servicenoobject=service(com.trs.ajaxservice.ClassInfoServiceProvider.query)The return collection is not ClassInfos, but {0}, please confirm!
- config_manager_dowith.jsp.label.info=The original registration code and registration code different from the current cluster node, registration code modification failed
- config_manager_label_notadmin=You are not administrator, can't be carried out the operation!
- contact.button.add=New
- contact.button.add_of_group=Create Contact Group
- contact.button.addchild_of_group=Create Child Contact Group
- contact.button.addtogroup=Create Contact to
- contact.button.copy=Copy
- contact.button.drop=Delete
- contact.button.drop_of_group=Delete Contact Group
- contact.button.importsysuser=Import System User
- contact.button.modify_of_group=Modify Contact Group
- contact.button.quitedrop=Completely Delete
- contact.button.refresh=Refresh
- contact.label.addedit_of_group=Create/Modify Child Contact Group
- contact.label.address=Address
- contact.label.attribute=Others
- contact.label.crtime=Created
- contact.label.desc=Description
- contact.label.desc_of_group=Description
- contact.label.email=Email
- contact.label.email_of_group=Group Email
- contact.label.info=Contact Information
- contact.label.list=Contacts List
- contact.label.mobile=Mobile
- contact.label.myaddress=Contact Group
- contact.label.name=Name
- contact.label.name_of_group=Name
- contact.label.nickname=Nickname
- contact.label.parent_of_group=Parent Group
- contact.label.selectgrp=Select Contact Group
- contact.label.tel=Telephone
- contact.tip.add=Create
- contact.tip.add_of_group=Create Contact Group
- contact.tip.addchild_of_group=Create Contact Group
- contact.tip.addtogroup=Create Contact to Top Contact Group
- contact.tip.copy=Copy
- contact.tip.drop=Delete Selected Contact
- contact.tip.drop_of_group=Delete Current Contact Group
- contact.tip.importsysuser=Import System User as Contact
- contact.tip.modify_of_group=Modify Current Contact Group
- contact.tip.quitedrop=Completely Delete the Selected Contact
- contact.tip.refresh=Refresh Current Page
- contact.tip.return=Return
- content_style_addedit.jsp.edit=Edit
- content_style_addedit.jsp.fail2get_widget_type=Failed to obtain resource type [Id:{0}]!
- content_style_addedit.jsp.have_noright_alter=You do not have the right to modify style[Id:{0}]! vvvvvvc
- content_style_addedit.jsp.have_noright_new=You do not have the right to create style!
- content_style_addedit.jsp.id=Flag
- content_style_addedit.jsp.new=New
- content_style_addedit_1.jsp.distance2pic_limit=Input content of the distance to icon
- content_style_addedit_1.jsp.font_size_format_limit=Input content of font size
- content_style_addedit_1.jsp.font_size_limit=Input content of font size
- content_style_addedit_1.jsp.label.distance2pic_warning=Margin to icon format must be:Integer+Unit(pt/em/px)
- content_style_addedit_1.jsp.label.font_size_format=The size of font must be: Integer+ Unit)
- content_style_addedit_1.jsp.label.font_size_warning=The size of font must be:Integer+Unit(pt/em/px)
- content_style_addedit_1.jsp.titleheightinputcontent=Input content of title height
- content_style_addedit_2.jsp.container_height_format_limit=Input content of container height
- content_style_addedit_2.jsp.container_height_limit=Input content of container height
- content_style_addedit_2.jsp.font_size_format_limit=Input content of font size
- content_style_addedit_2.jsp.label.container_height=The container height must be:Integer+Unit(pt/em/px)
- content_style_addedit_2.jsp.label.container_height_format=The width of container must be:Integer+Unit(pt/em/px)
- content_style_addedit_2.jsp.label.font_size_format=The size of font must be:Integer+Unit(pt/em/px)
- 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)
- content_style_addedit_2.jsp.label.prompt_content=The height of content must be :Integer+Unit(pt/em/px)
- content_style_addedit_2.jsp.label.runtimeexception=Container width must be:Integer+Unit(pt/em/px)
- content_style_addedit_2.jsp.label.title_height=The title height must be:Integer+Unit(pt/em/px)
- content_style_addedit_2.jsp.padding_format_limit=Margin adjustment
- content_style_addedit_2.jsp.prompt_content_limit=Input content of content height
- content_style_addedit_2.jsp.title_height_limit=Input content of title height
- content_style_addedit_customstyle.jsp.label.please_input_css_content=Please input css text...
- content_style_addedit_for_ajax.jsp.fail2get_content_style=Failed to obtain content style[Id:{0}]
- content_style_select.jsp.label.cruser=Creater:
- content_style_select.jsp.label.Id=Serial number:
- contentextfield.label.checkbox=Check box
- contentextfield.label.editor=Simple editor
- contentextfield.label.eidtor=Simple editor
- contentextfield.label.float=Float
- contentextfield.label.inputselect=Combo box
- contentextfield.label.int=Integer
- contentextfield.label.multitext=Multi-line text
- contentextfield.label.noExtField=No extension fields exist
- contentextfield.label.normaltext=Plain text
- contentextfield.label.password=Cipher text
- contentextfield.label.pleaseSel=--please select--
- contentextfield.label.radio=Radio box
- contentextfield.label.select=Drop-down list
- contentextfield.label.selfdefine=Custom type
- contentextfield.label.text=Varchar
- contentextfield.label.time=Time
- contentextfield.label.timetemp=Time
- contentextfield.label.undefined=Unknown type
- contentextfield_position_set_dowith.jsp.label.norights=Have no jurisdiction in the current columns[
- contentextfield_position_set_dowith.jsp.noidchnl=Not found with ID [{0}] of the channel!
- contentextfield_position_set_dowith.jsp.noidextendfield=Not found with ID [{0}] of the extension field!
- contentlink.label.addedit=Create/Modify Hot Words
- contentlink.label.content=Content
- contentlink.label.desc=Description
- contentlink.label.info=Hot Words Info
- contentlink.label.list=Hot Words List
- contentlink.label.name=Name
- contentlink.label.title=Title
- contentlink.label.url=URL
- contentlink.tip.add=Create Hot Words
- contentlink.tip.drop=Delete Selected Hot Words
- contentlink.tip.refresh=Refresh Current Page
- contentlink.tip.return=Return
- contentstyle_query.jsp.label.click2alter=title='Click and mofify the style thumbnail'
- contentstyle_query.jsp.name_crtime=Name:{0}&Name:{1}!
- contentstyle_query.jsp.name_name=Name:{0}&Name:{1}!
- copy_content_style_to.jsp.fail2get_style=Failed to obtain style[Id={0}]!
- copy_page_style.jsp.fail2get_page_style=Failed to obtain page style [Id:{0}]!
- copy_page_style.jsp.label.have_noright2_create_style=You do not have the right to create new style!
- copy_resource_style_to.jsp.fail2get_page_content=Failed to obtain page style[Id={0}]!
- create_app_of_views.label.createViewRelation=All View application have been generated.
- create_interview_host.createError=Create a guest interviews part structural background error occurred!!
- create_interview_host.getError=Get an error when visit guests interview channel!
- create_interview_host.interview=host.interview
- create_interview_host.notFind=Interviews with guests not find the specified master!
- create_interview_host.setError=Interview channel template set error!
- cssflag_used_info.jsp.label.sys_level=System level->
- defaultLayoutsGenerator.jsp.label.creating_default_layout= Create subject default layout ......<br/>
- defaultLayoutsGenerator.jsp.label.successs2create_default_layout=Succeed in creating subject default layout!
- design_init_data_build_include.jsp.cannot_use_visual_edit=The template[[{0}] is not visual and cannot be visual edited
- design_init_data_build_include.jsp.design_special=Design subject [[{0}]
- design_init_data_build_include.jsp.design_template=Design template[[{0}]
- design_init_data_build_include.jsp.label.sys_config_notfound=The document configured by system is not found! Please re-set systen config
- design_init_data_build_include.jsp.pointed_specialobj_notfound=The subject object [{0}] does not exist!
- design_init_data_build_include.jsp.pointed_template_notexists=The template [[{0}] does not exist
- doAction.notExist=Interview with the corresponding part does not exist!
- doc_detail_list.audio=Audio
- doc_detail_list.copy=Copy
- doc_detail_list.image=Picture
- doc_detail_list.origin=Original manuscript
- doc_detail_list.quote=Quote
- doc_detail_list.unknow=Unknown
- doc_detail_list.user.not.found=User [{0}] is not found
- doc_detail_list.video=Video
- doc_detail_list.word=Charactor
- doc_list_forGroup.audio=Audio
- doc_list_forGroup.copy=Copy
- doc_list_forGroup.id.zero=No group [Id-{0}] is found
- doc_list_forGroup.pic=Picture
- doc_list_forGroup.quote=Quote
- doc_list_forGroup.src=Original manuscript
- doc_list_forGroup.unkonw=Unknown
- doc_list_forGroup.video=Video
- doc_list_forGroup.word=Character
- doc_stat.audio=Audio
- doc_stat.back=Redo
- doc_stat.check=Auditing
- doc_stat.chnl=Statistics list of channel filen volume
- doc_stat.chnl.name=Channel name
- doc_stat.copy=Copy
- doc_stat.edited=Edited
- doc_stat.new.doc=New manuscript
- doc_stat.num=Sequence number
- doc_stat.pic=Picture
- doc_stat.quote=Quote
- doc_stat.resent=Rodo
- doc_stat.sent=Published
- doc_stat.signed=Signed
- doc_stat.site=Site
- doc_stat.sourcedoc=Original manuscript
- doc_stat.total=Total amount of filen
- doc_stat.video=Audio
- doc_stat.word=Character
- doc_stat_include.start=Start to inquire the search statistics of user and department...
- doc_statofsite_list.audio=Audio
- doc_statofsite_list.back=Redo
- doc_statofsite_list.check=Auditing
- doc_statofsite_list.copy=Copy
- doc_statofsite_list.edited=Edited
- doc_statofsite_list.id.zero=No channel[Id={0}] is found
- doc_statofsite_list.image=Picture
- doc_statofsite_list.newdoc=New manuscript
- doc_statofsite_list.origin=Manuscript
- doc_statofsite_list.quote=Quote
- doc_statofsite_list.sent=Published
- doc_statofsite_list.signed=Signed
- doc_statofsite_list.unknow=Unknown
- doc_statofsite_list.video=Video
- doc_statofsite_list.word=Character
- docbak_query.jsp.runtimeex=docbak_query.jspruntime exception!
- docbak_query.jsp.servicenoobjects=Services (com.trs.ajaxservice.DocumentBakServiceProvider.query) returns the object set type is not DocBaks, and for the {0}, please confirm.
- doclevel.confidence=Confidence
- doclevel.general=Common
- doclevel.secret=Secret
- doclevel.top-secret=Top confidential
- docrecycle.jsp.runtimeex=chnldoc_query.jsp runtime exception!
- docrecycle_findbyid.label.unknow=Unknown
- docrecycle_findbyid.runtime.error=docrecycle_findbyid.jspAn exception occurs while running.
- docrecycle_query.jsp.servicenoobject=service(com.trs.ajaxservice.viewdocumentServiceProvider.query)The return type is not ViewDocuments,but {0},please confirm.
- document.button.adddoc=Create Document
- document.button.addrelated=Add
- document.button.cancel=Cancel
- document.button.channelpublish=Publish Channel
- document.button.clearall=Clean Recycle Bin
- document.button.comeback=Restore Document
- document.button.copyto=Copy All Documents to
- document.button.drop=Completely Delete Document
- document.button.edit=Modify
- document.button.editionmanage=Version Admin
- document.button.export=Document Export
- document.button.file=File
- document.button.image=Photo
- document.button.import=Document Import
- document.button.link=Link
- document.button.moveto=Move All Files to
- document.button.newscomment=Comment Admin
- document.button.perform=Execute
- document.button.publish=Publish Document
- document.button.publishhistory=Publish History
- document.button.publishoption=Advanced Publish
- document.button.quickpublish=Fast Publish
- document.button.restoreall=Restore All Documents
- document.button.return=Return to Document List
- document.button.return_of_draft=Back to Draft
- document.button.saveadd=Save and Create
- document.button.saveclose=Save and Close
- document.button.savepublish=Save and Publish
- document.detail.show.flownodeerror=.
- document.detail.show.flownodenot=Error to get the Workflow Node ID
- document.detail.show.tracing=The content specified [Type=
- document.detail.show.tracingnot=] not found [
- document.label.add=Create Document
- document.label.add_of_mapping=Create Mapping File
- document.label.add_of_status=Create Document Status
- document.label.addedit_of_source=Create/Modify Document Source
- document.label.addedit_of_status=Create/Modify Document Status
- document.label.appendix=Attachment Management
- document.label.author=Document Author
- document.label.autodesc_of_source=Auto Set Source Description
- document.label.backup=Save Version
- document.label.baseproperty=Base Properties
- document.label.basicset=Common
- document.label.belongchannel=Document Channel
- document.label.changestatus=Change Status
- document.label.channel=Channel
- document.label.channel_of_search=Channel
- document.label.clickselect=Please Click to Select
- document.label.content=Document Content
- document.label.contentlink=Hot Words
- document.label.crtime=Creation Time
- document.label.crtime_of_source=Created
- document.label.crtime_of_status=Created
- document.label.cruse_of_sourcer=Creator
- document.label.cruser_of_source=Creator
- document.label.cruser_of_status=Creator
- document.label.deletetime=Delete Time
- document.label.deleteuser=Delete User
- document.label.desc_of_source=Description
- document.label.desc_of_status=Description
- document.label.docappendix=Document Attachment
- document.label.docattribute=Document Properties
- document.label.docauthor=Document Author
- document.label.docchannel=Channel
- document.label.docplace=URL:
- document.label.docsecurity=Security Level
- document.label.docsource=Document Source
- document.label.docsource_hostsite=Site
- document.label.docstatus=Document Status
- document.label.doctitle=Document Title
- document.label.documenttype=Type
- document.label.draft=Draft
- document.label.drop_of_status=Delete Selected Document Status
- document.label.edit=Modify Document
- document.label.endtime=End Time
- document.label.export=Document Import
- document.label.exportappendix=Do you want to export document attachments?
- document.label.exportfields=Exported Fields
- document.label.extend=Ext Field
- document.label.extendedfield=Extension Field
- document.label.humanrelate=Relative documents by hand-set
- document.label.image=Document Photo
- document.label.import=Document Import
- document.label.info=View Document Info
- document.label.info_of_delete=Document Deleting Info
- document.label.info_of_restore=Document Restoring Info
- document.label.info_of_source=Document Source Info
- document.label.info_of_status=Document Status Info
- document.label.intervaltime=Start Time
- document.label.isused_of_status=Use or Not
- document.label.keyword=Keyword
- document.label.keywordrelate=Documents related through keyword
- document.label.link_of_source=Link
- document.label.linkappendix=Linked Attachment
- document.label.list_of_channel=Channel Documents List
- document.label.list_of_mapping=Mapping File List
- document.label.list_of_recycle=Document Recycle
- document.label.list_of_search=Document Advanced Searching Result List
- document.label.list_of_site=Site Document List
- document.label.list_of_source=Document Source List
- document.label.list_of_status=Document Status List
- document.label.list_of_user=Personal Document List
- document.label.mutiaday=Multi-Run a day
- document.label.name=Channel Name
- document.label.name_of_source=Name
- document.label.name_of_status=Name
- document.label.onceaday=Run once a day
- document.label.operate=Operation
- document.label.otherproperty=Other Properties
- document.label.otherset=Others
- document.label.previewdoc=View Document
- document.label.publish_time_limit=Time Limited Publish
- document.label.publisher=Publisher
- document.label.publishset=Publish Settings
- document.label.publishtime=Publish Time
- document.label.publishtiming=Timing Publish
- document.label.pubset=Advanced Settings
- document.label.pubtime=Publish Time
- document.label.putime=Document Publish Time
- document.label.recycle_of_draft=Draft Recycle Bin
- document.label.refresh_of_status=Refresh this Page
- document.label.relate=Refer to
- document.label.related=Related Documents
- document.label.relatedmanage=Related Document Admin
- document.label.relatedocument_bykeywords=Documents related by keyword
- document.label.relatedocument_byrelations=Manual Setting related Document
- document.label.relatewords=Related Words
- document.label.rightindex_of_status=Permission Index
- document.label.rightset=Set Permissions
- document.label.runtime=Execute Time
- document.label.safelevel=Security Level
- document.label.saveas=Save as
- document.label.savedbtime=Store Time
- document.label.schedule=Schedule Publish
- document.label.searchauthor=Author
- document.label.searchcruser=Send User
- document.label.searchfield=Search Field
- document.label.searchkeyword=Keyword
- document.label.searchtitle=Title
- document.label.searchword=Search Word
- document.label.select=Select Document
- document.label.selecttemplate=Select Template
- document.label.show_of_status=Display
- document.label.showdoc=View Page
- document.label.simplesource=Origin
- document.label.simplesummary=Abstract
- document.label.simpletype=Type
- document.label.site_of_source=Host Site
- document.label.source=Document Source
- document.label.sourceorder=Previous Source
- document.label.status=Status
- document.label.statusmodify=Change Status to
- document.label.statusnow=Current Status
- document.label.subtitle=Subtitle
- document.label.summary=Abstract
- document.label.template=Document Template
- document.label.textsearch=Text Search
- document.label.timeafter=later than
- document.label.timebefore=earlier than
- document.label.timesearch=Search Time
- document.label.title=Document Title
- document.label.topset=Set as Top
- document.label.type=Document Type
- document.label.view=View Document
- document.label.viewdocedition=Check Document Versions
- document.label.writetime=Write Time
- document.label.xmladdedit=Edit Mapping File
- document.message.begin_of_restore=You are ready to restore the document.
- document.message.begindelete_of_delete=You are submitting Document Deleting Operation.
- document.message.belongtochannel_of_delete=Belong to Channel
- document.message.citebychannel_of_delete=and referred by following Channels
- document.message.import=Support XML,ZIP files
- document.message.importwait=Importing Document, please wait......
- document.message.showdoc_of_restore=Are you sure to restore all Documents to
- document.message.showdocdelete_of_delete=Do you want to delete all documents as
- document.message.systeminfo_of_delete=Confirm
- document.message.systeminfo_of_restore=Confirm
- document.tip.add=Create Calendar Event Type
- document.tip.add_of_mapping=Create Mapping File
- document.tip.add_of_source=Create Document Source
- document.tip.add_of_status=Create Document Status
- document.tip.adddoc=Create Document
- document.tip.addrelated=Create Related Document
- document.tip.channelpublish=Increased Publish Current Channel
- document.tip.clearall=Delete All Document from Recycle Bin
- document.tip.comeback=Restore Selected Documents
- document.tip.copy=Copy Selected Document(s) to New Channel
- document.tip.copyalldocument=Copy Selected Document(s) to New Channel
- document.tip.deletedocbak=Delete selected Document(s) version
- document.tip.drop=Delete Selected Document(s)
- document.tip.drop_of_mapping=Delete Selected Mapping File
- document.tip.drop_of_source=Delete Selected Document Source
- document.tip.drop_of_status=Delete Selected Document Status
- document.tip.droprelated=Delete Related Documents
- document.tip.editdoc=Edit Document
- document.tip.editionmanage=Manage Document Version
- document.tip.editionsave=Save Current Document Version
- document.tip.export=Export Document
- document.tip.import=Import Document to Channel, XML, trs file type supported
- document.tip.move=Move Selected Document(s) to a New Channel
- document.tip.movealldocument=Move Selected Document(s) to a New Channel
- document.tip.propublish=Advanced Document Publish Operation
- document.tip.publish=Publish Selected Document
- document.tip.recycle=View Document Recycle Bin
- document.tip.refer=Refer Selected Document(s) to a New Channel
- document.tip.refresh=Refresh Current Page
- document.tip.refresh_of_source=Refresh Current Page
- document.tip.refresh_of_status=Refresh Current Page
- document.tip.restoreall=Restore All Recycle Bin Documents
- document.tip.restoredocediton=Restore Current version
- document.tip.return=Return
- document.tip.return_of_draft=Return to Draft
- document.tip.return_of_recycle=Back to Document List
- document.tip.return_of_source=Return
- document.tip.return_of_status=Return
- document.tip.view_recycle_of_draft=View Recycle Bin of Draft
- document_addedit.jsp.docForm=Belongs
- document_addedit.jsp.docuType=Type
- document_addedit.jsp.pureFile=File
- document_addedit.jsp.PureLink=Link
- document_addedit.jsp.pureText=Plain Text
- document_addedit.label.audio=Audio
- document_addedit.label.AUDIO=Audio
- document_addedit.label.document=Document
- document_addedit.label.FILE=File
- document_addedit.label.id.zero=Video ID[{0}] is in the recycle bin. You cannot operate it!
- document_addedit.label.isEnterReadonly=Are you sure to enter into readonly mode, click ok to enter?
- document_addedit.label.LINK=Link
- document_addedit.label.LITERY=Text
- document_addedit.label.litery=Text
- document_addedit.label.pic=Picture
- document_addedit.label.PIC=Picture
- document_addedit.label.TEXT=Plain
- document_addedit.label.unknown=Unknown
- document_addedit.label.UNKNOWN=Unknown
- document_addedit.label.VIDEO=Video
- document_addedit.label.video=Video
- document_addedit.lable.currEffectiveUser=Current Operator Is:
- document_addedit.lable.isLocked=is locked by
- document_addedit.lable.lock= lock. You cannot modify.
- document_addedit.lable.locked=
- document_addedit.lable.user= by the user
- document_addedit_extendedfield.jsp.getfieldattrfailue=Get the first [{0}] of extended field attribute failed!
- document_addedit_extendedfield.jsp.getthisextendfieldfailure=This extended field properties for failure!
- document_addedit_extendfield.label.Decimal=Decimal
- document_addedit_extendfield.label.extendfield=Extend Field [
- document_addedit_extendfield.label.Integer=Integer
- document_addedit_extendfield.label.Text=String
- document_addedit_extendfield.label.Time=Time
- document_addedit_label_1=The document [
- document_addedit_label_10=Failed to convert the Relations collection object to the XML string.
- document_addedit_label_11=The file name is null.
- document_addedit_label_12=During the exporting of all documents, the ChannelId or SiteId is not specified.
- document_addedit_label_13=The site [
- document_addedit_label_14=] is not found.
- document_addedit_label_15=The ChannelId or SiteId is not specified.
- document_addedit_label_16=The extension field [
- document_addedit_label_17=] is not found.
- document_addedit_label_18=The document or channel [
- document_addedit_label_19=] is not found.
- document_addedit_label_2=] is not found.
- document_addedit_label_20=] is not found.
- document_addedit_label_3=The channel [
- document_addedit_label_4=] is not found.
- document_addedit_label_5=It is deleted. Please refresh the channel tree.
- document_addedit_label_6=The channel where the created document belong is not specified.
- document_addedit_label_7=The document [
- document_addedit_label_8=] is in the Recycle Bin. It cannot be operated now.
- document_addedit_label_9=Failed to convert the Appendix collection object to the XML string.
- document_detail.label.unknownDoc=Unknown type of document
- document_detail_53.jsp.label.content=Content
- document_detail_53.jsp.label.subject=Subject
- document_detail_label_sep=Page break
- 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/>
- document_exportAsDoc.jsp.connectopoficeserverfailure=OpenOffice server connection fails, check to see if OpenOffice is installed or the service has been launched!
- document_exportAsDoc.jsp.jdkversiontoolow=Your JDK version is too low, use OpenOffice services need to upgrade to JDK version 1.5 and above!
- document_exportAsDoc.jsp.notfinddocid=Cannot find the specified document[ID={0}]!
- document_field_showset_dowith.jsp.channellocked=The channel is locked by the user!
- document_field_showset_dowith.jsp.fail2synchannel=Synchronization settings part [{0}] The document list displays the fields failed! Part by the user [{1}] locked!
- document_field_showset_dowith.jsp.setchannelsdoclist=Synchronization settings channel [{0}] list display field successfully!
- document_field_showset_dowith.jsp.success2setchannel=Set the document list display field: a total of [{0}] channels, the success of {1}
- document_field_showset_dowith.jsp.success2updatedoclist=synchronize channel [{0}]the document lists filed successfully!!
- document_field_showset_dowith_a.jsp.setchannelsdoclist=synchronize channel [{0}]the document lists reveal filed successfully!
- document_findbyid.label.unknown=Unknown
- document_findbyid.runtime.error=document_findbyid.jspAn exception occurs while running.
- document_hitscount.chnlownedto=Channel
- document_hitscount.crtime=Created
- document_hitscount.departmentName=Department name
- document_hitscount.hitscount=Click rate
- document_hitscount.null=None
- document_hitscount.num=Sequence number
- document_hitscount.title=Title
- document_hitscount.total.hitscount=Statistics list of manuscript click rate
- document_hitscount.user=User name
- document_hitscount_table.doc=Manuscript
- document_hitscount_table.null=None
- document_photo_attachments_import.jsp.getwatermarksfailure=Failed to obtain site watermark collection!
- document_photo_setwatermark.jsp.getwatermarksfailure=Failed to obtain site watermark collection!
- document_position_set.label.document=document
- document_position_set.label.photo=Picture
- document_position_set_dowith.jsp.norightatcurrchnlmodifyrecordsort=No permission to change record order in current channel [{0}][ID={1}]!
- document_position_set_dowith.jsp.notfindchnlid=Not found with ID [{0}] of the channel!
- document_position_set_dowith.jsp.notfinddocid=Cannot find file ID[{0}]!
- document_preview.channel.getFail=Get ChannelID to [{0}] of the Channel failed!
- document_preview.doc.getFail=Incoming document ID is invalid, not found with ID [{0}] of document!
- document_props.label.none=None
- document_props_showset_dowith.jsp.chnlblockedbyuser=Channel by the user [{0}] locked!
- document_props_showset_dowith.nosave=Save attribute to set failure.
- document_query.jsp.label.cruser=Creator
- document_query.jsp.label.doctitle=Document Title
- document_query.jsp.label.keyword=Keyword
- document_query.label.unknown=Unknown
- document_query_import_4_extfield_query.jsp.getextendfieldsfailure=Failure to obtain a collection of extended field!
- document_query_import_4_extfield_query.jsp.notfindextendfieldid=cannot find Id {0}Extension Field
- document_show.channel.cannot.find=Can not find the channel!
- document_show.channel.notFit=The channell is not configured to effectively customized form can not be edited under the document!
- document_show.channel.type.wrong=The channell is not configured to effectively customized form can not be edited under the document!
- document_show.document.getFailed=Failed to obtain ID[{0}]!
- document_show.id.zero=Channel Id is 0, can not find the channel!
- document_show.newDoc.noRight=You have no permission to construct new file !
- document_show.noRight=You do not have permission to view ID [{0}] of the document!
- document_show_inflowdoc.channe.not.found=cannot find {0}!
- document_show_inflowdoc.channel.notFit=The channell is not configured to effectively customized form can not be edited under the document!
- document_show_inflowdoc.channel.typeWrong=The channell is not configured to effectively customized form can not be edited under the document!
- document_show_inflowdoc.document.getFailed=For ID [{0}] of the document to fail!
- document_show_inflowdoc.schanne.not.found=Channel Id is 0, can not find the channel!
- document_show_inflowdoc.sdocument.notFound=Not found [FlowDocId = {0}] transfer document object!
- document_trs_mapping_edit.label.docAppendix=Attachments
- dom_addedit_1.marginwarning=Margin format must be: consist of 0-4 group of integer divided by blank space + Unit (pt/em/px)
- dom_addedit_1.warningheight=Container height must be: Integer+Unit(pt/em/px)
- dom_addedit_1.warningwidth=The width of container must be:Integer+Unit(pt/em/px)
- edit_dowith.modifyError=The original registration code is not the current cluster node machine code.Failed to modify registration code!
- edit_dowith.modifyError.para=The registration Incorrect parameters to obtain the registration code, registration code modification failed!
- edit_dowith.restart=registration code changed successfully, you need to manually restart the application service to take effect!
- editor.Accessibility=Accessibility
- editor.AdInTrs=AdInTrs
- editor.Anchor=Anchor
- editor.AutoSaveHistory=AutoSaveHistory
- editor.BGColor=BGColor
- editor.Bold=Bold
- editor.CKMSpellCheck=CKMSpellCheck
- editor.Comment=Comment
- editor.ContentLink=ContentLink
- editor.ContentUnLink=ContentUnLink
- editor.Copy=Copy
- editor.Cut=Cut
- editor.DocumentProps=DocumentProps
- editor.Enter=Enter
- editor.Find=Find
- editor.FitWindow=FitWindow
- editor.Flash=Flash
- editor.FlashLib=FlashLib
- editor.FontName=FontName
- editor.FontSize=FontSize
- editor.Image=Image
- editor.ImportFlash=Introduction of external video source way
- editor.Indent=Indent
- editor.InlineLink=InlineLink
- editor.Italic=Italic
- editor.JustifyCenter=JustifyCenter
- editor.JustifyFull=JustifyFull
- editor.JustifyLeft=JustifyLeft
- editor.JustifyRight=JustifyRight
- editor.Link=Link
- editor.OrderedList=OrderedList
- editor.Outdent=Outdent
- editor.PageBreak=PageBreak
- editor.pageTitle=PageTitle
- editor.Paste=Paste
- editor.PasteText=PasteText
- editor.PasteWord=PasteWord
- editor.PhotoLib=PhotoLib
- editor.Print=Print
- editor.Redo=Redo
- editor.RemoveFormat=RemoveFormat
- editor.Replace=Replace
- editor.Rule=Rule
- editor.SelectAll=SelectAll
- editor.Separate=Separate
- editor.Smiley=Smiley
- editor.SpecialChar=SpecialChar
- editor.StrikeThrough=StrikeThrough
- editor.Style=Style
- editor.Subscript=Subscript
- editor.Superscript=Superscript
- editor.Table=Table
- editor.Templates=Templates
- editor.TextColor=TextColor
- editor.Underline=Underline
- editor.Undo=Undo
- editor.Unlink=Unlink
- editor.UnorderedList=UnorderedList
- epresschannel_creat.jsp.label.none=Without
- epresschannel_create.jsp.nocreatechnlright=Sorry, you do not have permission to create the channel!
- epresschannel_create.jsp.notvalidparameter=No specified parameter!
- epresschannel_create.jsp.parentchnlnotfondordeleted=The parent channel is not found or deleted! [Id = {0}]
- epresschannel_create.jsp.sitenotfondordeleted=Site not found or deleted! [Id = {0}]
- error.jsp.label.occurerror=System error
- error.jsp.label.sys_error=System error
- error.jsp.label.syserror=System errors
- error.jsp.label.unknown=unknown
- error.jsp.label.unknownerror=unknown error!
- error.jsp.syserror=System error
- error.jsp.sysmessage=System message: {0}
- error.label.close=Close
- error.label.connecterror=An error occurs during the connection to the server.
- error.label.copyToClipboard=Copy to Clipboard
- error.label.systemerror=An error occurs in the system.
- error.label.unknown=Unknown
- error.label.unknownError=Unknown error.
- error_for_dialog.jsp.label.sys_error=System error!
- error_for_dialog.jsp.label.syserror=system error
- error_for_dialog.jsp.syserror=System error
- errorforAuth.jsp.syserror=System error
- etadbfield_findbyid.type=service(com.trs.components.metadata.service.MetaDataDefServiceProvider.findbyid)The return collection type is not MetaDBField,but ({0}),please confirm.
- etaviewdata_findbyid.runExce=metaviewdata_findbyid.jsp runtime exception!
- event.button.calendaradd=New
- event.button.lastmonth=Last Month
- event.button.lastweek=Last Week
- event.button.nextmonth=Next Month
- event.button.nextweek=Next Week
- event.button.thisday=Today
- event.button.thismonth=This Month
- event.button.thisweek=This Week
- event.button.tomorrow=Tomorrow
- event.button.yestoday=Yesterday
- event.label.addedit=Create/Modify Arrangement
- event.label.addedit_of_eventtype=Create/Modify Calendar Event Type
- event.label.alertahead=Remind in advance
- event.label.alertemail=Email remind
- event.label.alertmobile=Mobile remind
- event.label.alertonline=Online remind
- event.label.calendar=My Arrangement
- event.label.cancelshare=Cancel All
- event.label.content=Description
- event.label.crtime=Created
- event.label.cruser=Creator
- event.label.desc=Description
- event.label.endtime=End Time
- event.label.info=Calendar Event Type Info
- event.label.list=Calendar Event Type List
- event.label.name=Name
- event.label.private=Personal
- event.label.property=Event Properties
- event.label.public=Public
- event.label.remindway=Remind Way
- event.label.share=Share Arrangement
- event.label.sharetogroup=Share to Group
- event.label.sharetouser=Share to Person
- event.label.show=View Arrangement
- event.label.starttime=Start Time
- event.label.title=Title
- event.label.type=Type
- event.message.aheadtime=reminding time
- event.message.alerttimehead=
- event.message.alerttimetail= minutes in advance to remind
- event.tip.add=Add
- event.tip.calendaradd=Create Calendar Arrangement
- event.tip.calendarrefresh=Refresh Current Page
- event.tip.drop=Delete
- event.tip.lastmonth=View Previous Month Calendar Arrangement
- event.tip.lastweek=View Last Week Calendar Arrangement
- event.tip.nextmonth=View Next Month Calendar Arrangement
- event.tip.nextweek=View Next Week Calendar Arrangement
- event.tip.refresh=Refresh
- event.tip.thisday=View today Calendar Arrangement
- event.tip.thismonth=View This Month Calendar Arrangement
- event.tip.thisweek=View This Week Calendar Arrangement
- event.tip.tomorrow=View Next Day Calendar Arrangement
- event.tip.yestoday=View Previous Day Calendar Arrangement
- expected_error.jsp.label.occurerror=System error
- expected_error.jsp.label.unknown=Unknown
- expected_error.jsp.label.unknownerror=Unknown error!
- expected_error.jsp.sysmessage=System message: {0}
- export_bonus_stat.get=The bonus (£¤) of click rate
- export_bonus_stat.info=User reward list({0}-{1})
- export_bonus_stat.null=None
- export_bonus_stat.num=Sequence number
- export_bonus_stat.partment=Department
- export_bonus_stat.send=The bonus (£¤) of published document
- export_bonus_stat.totle=Total(£¤)
- export_bonus_stat.user=User name
- export_channel_hitscount.chnlname=Channel name
- export_channel_hitscount.chnlnum=Sequence number
- export_channel_hitscount.clickMount=Click rate
- export_channel_hitscount.departmentName=Department name
- export_channel_hitscount.increaseRate=Increase exponent
- export_channel_hitscount.num=Sequence number
- export_channel_hitscount.site=Site
- export_channel_hitscount.statistic.chart=Statistics list of channel click rate
- export_excel.ip=Creator IP
- export_group_hitscount.departmentName=Department name
- export_group_hitscount.hitscount.chart=Statistics list of department click rate
- export_group_hitscount.num=Sequence number
- export_group_hitscount.total.hitscount=Total click rate
- export_hits_bonus_stat.channel=Channel
- export_hits_bonus_stat.clicknum=Click rate
- export_hits_bonus_stat.get=Bonus(£¤)
- export_hits_bonus_stat.info=[{0}]bonus statistics list({0}¡ª{1})
- export_hits_bonus_stat.month=Month
- export_hits_bonus_stat.num=Sequence number
- export_hits_bonus_stat.title=Document title
- export_site_doc_stat.audio=Audio
- export_site_doc_stat.back=Redo
- export_site_doc_stat.check=Auditing
- export_site_doc_stat.copy=Copy
- export_site_doc_stat.edited=Edited
- export_site_doc_stat.image=Picture
- export_site_doc_stat.newdoc=New manuscript
- export_site_doc_stat.num=Sequence number
- export_site_doc_stat.origin=Original manuscript
- export_site_doc_stat.quote=Quote
- export_site_doc_stat.sent=Published
- export_site_doc_stat.signed=Signed
- export_site_doc_stat.site=Site name
- export_site_doc_stat.site.fgl=Statistics list of site filen volum
- export_site_doc_stat.total=Total amount of filen
- export_site_doc_stat.video=Video
- export_site_doc_stat.word=Character
- export_site_hitscount.hitamount=Click rate
- export_site_hitscount.increaseRate=Increase exponent
- export_site_hitscount.num=Sequence number
- export_site_hitscount.site=Site name
- export_site_hitscount.table=Statistics list of site click rate
- export_special_hitscount.departmentName=Department name
- export_special_hitscount.hitmount=Click rate
- export_special_hitscount.info=The statistics list of subject click rate
- export_special_hitscount.num=Sequence number
- export_special_hitscount.subject.name=Subject name
- export_user_hitscount.departmentName=Department name
- export_user_hitscount.null=None
- export_user_hitscount.num=Sequence number
- export_user_hitscount.total.hitscount=Total click rate
- export_user_hitscount.total.user=Statistics list of click rate
- export_user_hitscount.user=User name
- export_userlogininfo_stat.address=IP address
- export_userlogininfo_stat.depName=Departmrnt name
- export_userlogininfo_stat.logging.info=Login sheet({0}to{1})
- export_userlogininfo_stat.logging.time=Login time
- export_userlogininfo_stat.null=None
- export_userlogininfo_stat.num=Sequence number
- export_userlogininfo_stat.userName=User name
- extendedfield.label.addedit=Add/Edit Ext-Fields Page
- extendedfield.label.creator=Creator
- extendedfield.label.delete=Delete Extended Field
- extendedfield.label.length=Max length
- extendedfield.label.list=Ext-Fields List
- extendedfield.label.name=Field Name
- extendedfield.label.showname=Show Name
- extendedfield.label.type=Field Type
- extendedfield.label.value=Field Value
- extendedfield.message.childreninherit_add=Create the Same Extended Field for all sub-channels
- extendedfield.message.childreninherit_edit=Recreate same Extended Field for All sub-channels, Not to create if existed.
- extendedfield.message.deleteinherited=Do you want to drop sub-channels' Synchronized Extended Field at the same time
- extendedfield.text.childreninherit=Do you want to Sync to sub-channels
- extendedfield.tip.add=Create Extended Field
- extendedfield.tip.drop=Delete Selected Extended Field
- extendedfield.tip.refresh=Refresh Current Page
- extendfield.label.addedit=Create/Modify Extended Field
- extendfield.label.creator=Creator
- extendfield.label.desc=Field Description
- extendfield.label.length=Max Length
- extendfield.label.list=Extended Field List
- extendfield.label.name=Field Name
- extendfield.label.type=Field Type
- fetch_document.id.zero=For ID [{0}] of the document to fail!
- file.button.select=Choose File
- file.label.filename=File Name
- file.label.modifytime=Modify Time
- file.label.select=Select
- file.label.xslexist=Existed XSL File
- file.upload.dowith.fileisworry=Invalid file.
- file.upload.dowith.filenocontent=Invalid file.
- file.upload.dowith.noncontent=The file does not include contents.
- file.upload.dowith.title=File Upload Page
- file.upload.fileerror=The file uploaded is wrong.
- file.upload.filesize.toolarge=The file is too big.
- file.upload.title=WCM V6.1 upload file
- file_upload.not.selected=Did not select a file! (Support {0} format)
- file_upload.support=only supports uploading {0} a file format!
- file_upload.wrong.address=Do not enter http (s) or other remote access ftp address!
- file_upload.wrongPath=File path is wrong! Please select {0} format!
- file_upload_dowith.filesize.toolarge=Upload system configuration file size exceeds the maximum {0} K, please re-select the file!}
- file_upload_dowith.jsp.forbid_upload_file=Syetem forhibits uploading [{0}]format file!
- file_upload_dowith.jsp.forbid_upload_filetype=Systems prohibit the uploading of {0} format!
- file_upload_dowith.jsp.forbidfile=The system prohibit the uploading of {0} format!
- file_upload_dowith.jsp.label.error2import_file=The imported file is incorrect!
- file_upload_dowith.jsp.label.import_files_content_is_null=No content is imported!
- file_upload_dowith.jsp.label.runtimeexception=The imported file is incorrect!
- file_upload_dowith.jsp.sysdenyuploadfile=The system forbid to upload file format {0}!!
- file_upload_dowith.label.noContent=Invalid file.
- file_upload_dowith.label.noFileFound=Invalid file.
- file_upload_dowith_pic.jsp.forbid_upload_file=System prohibit uploading [{0}] format file!
- file_upload_dowith_pic.jsp.label.error2import_file=The imported file is incorrect!
- file_upload_dowith_pic.jsp.label.import_files_content_is_null=No content is imported!
- fileupload.label.addr=Please do not enter address of http(s) or ftp.
- fileupload.label.codefile= formats.
- fileupload.label.createFailed=Failed to create file directory!
- fileupload.label.errorcode=Incorrect file format. Please choose the
- fileupload.label.file= formats file.
- fileupload.label.filecode= formats.
- fileupload.label.filecodemulti = formats.
- fileupload.label.filecodesigle = format.
- fileupload.label.filemulti= formats.
- fileupload.label.filesigle= format.
- fileupload.label.forbid=System it is forbidden to upload
- fileupload.label.noselect=No file is selected. It supports only the
- fileupload.label.onlyfor=You can upload only
- fileupload.label.selectfile=Choose file:
- fileupload.label.title=WCM V6.1 upload file
- fileupload.label.value=Upload
- fileupload_dowith.label.add=Did not implement the addfile interface.
- fileupload_dowith.label.titlev61=WCM V6.1 File Upload Page
- fileupload_dowith.label.undefined=Did not define parent
- fileupload_error_message_include.jsp.syserror=System error
- findbyid.runExce=metaview_findbyid.jspAn exception occurs while running.
- findbyid.runtime.error=Runtime exception occurs in {0}_findbyid.jsp.
- findbyid.type=(com.trs.components.metadata.service.MetaDataDefServiceProvider.findbyid)Returned object type is not MetaView, and for ({0}), please confirm.
- flow.label.crtime=Created
- flow.label.cruser=Creator
- flow.label.flowId=Workflow ID
- flow.query.jsp.flowtitle=Workflow-
- flow.query.notknown=Unknown
- flow.select.query.crtime=Created
- flow.select.query.cruser=Creator
- flow.select.query.flowname=Workflow name
- flow.select.query.own=Belongs to
- flow.select.query.owner=Owner
- flow_addedit.jsp.label.chnlnotfind=Find no ID for {0} column
- flow_addedit.jsp.label.sitenotfind=Find no ID for {0} site
- flow_employee_view.jsp.label.chnlnotfind=Find no ID for {0} column
- flow_findbyid.jsp.label.defaultchannel=workflow_findbyid.jspAn exception occurs while running.
- flow_findbyid.metaviewdata_addedit.jsp.label.defaultchannel={0}_findbyid.jsp runtime exception!
- flowcontent.label.title1=Reflowing the flowed documents
- flowcontent.label.title2=Force to end the flowing process
- flowcontent.label.title3=Forcibly Start Flowing Process
- flowcontent.label.title4=Forcibly Finish Flowing Process
- flowdoc.label.back=Redo
- flowdoc.label.danrendedeal=The task delivered from {0} to {2} at [{1}] was completed at [{3}].
- flowdoc.label.duorenkaishichuli= {0} has received it at [{1}] and will handle it.
- flowdoc.label.duorenshiqing=The task was delivered from {0} to {2} at [{1}].
- flowdoc.label.duorenwancheng= {0} has handled it at [{1}].
- flowdoc.label.duorenweiqianshou= {0} received it at [{1}], but has not decided whether to handle it.
- flowdoc.label.duorenweishoudao= {0} has not received it yet.
- flowdoc.label.flowover=Flow completed.
- flowdoc.label.forceend=Forcible Finish
- flowdoc.label.notqianshou=The task was delivered from {0} to {2} at [{1}], but {2} has not received it yet.
- flowdoc.label.postdesc=Opinion
- flowdoc.label.posttime=Time
- flowdoc.label.receivedbutnotdeal=] received, but didn't decide to handle.
- flowdoc.label.refuse=Rejected
- flowdoc.label.sdbingqianshou={0} delivered this document to {2} at [{1}]. {2} has received it at [{3}] and will handle it.
- 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.
- flowemployee.object.not.found.channel=The specified channel [ID={0}] cannot be found.
- flowemployee.object.not.found.lead=Not found with ID [{0}] review!
- flowemployee.object.not.found.site=The specified site of the channel [ID={0}] cannot be found.
- flowemployee.view.construct=Fail to construct the information of
- flowemployee.view.right.info=permission.
- for_style.noRight=You do not have the right to modify style thumbnail!
- for_style.obj.not.found=No valid style object is obtained.
- get_by_type_id.channel.hasBeenDeleted={0} has been deleted! Please refresh your channel tree.
- get_by_type_id.channel.noRight=Sorry! You do no thave permission to see the channel [{0}] publishing !
- get_by_type_id.channel.notFound=Cannot find channel[id={0}]!
- get_by_type_id.document.noRight=Sorry! You do not see the document [{0}] Release History permission!
- get_by_type_id.station.not.found=Sorry! You do no have permission to see the channel [{0}] publishing!
- get_by_type_id.station_id.not.found=cannot find site [id={0}]!!
- get_tokens.jsp.noright=You have no permission to operate!
- getStyle.jsp.special_notfound=No subject ID[{0}] is found!
- gettempid.jsp.channel_notfound=The channel[ObjectId=[{0}] does not exist!
- group.button.addchildgroup=Create Child Group
- group.button.addgroup=Create Group
- group.button.addtopgroup=Create Root Group
- group.button.adduser=Create User
- group.button.appenduser=Add User
- group.button.cancelgrpmanager=Disable Administrator
- group.button.dropgroup=Delete Group
- group.button.dropuser=Delete User
- group.button.modifygroup=Modify Group
- group.button.quitedropuser=Completely Delete User
- group.button.setgroupright=Set Permissions
- group.button.setgrpmanager=Set as Administrator
- group.label.addedit=Create/Modify Group
- group.label.crtime=Created
- group.label.cruser=Creator
- group.label.desc=Group Description
- group.label.desc_of_group=Description
- group.label.drop=Delete Group
- group.label.ge=num
- group.label.group=User Group
- group.label.groupList=User Group
- group.label.grouplist=User group list
- group.label.isgroupadmin=Group Administrator
- group.label.list=Groups List
- group.label.name=Group Name
- group.label.name_of_group=Group Name
- group.label.org=Group
- group.label.positionset=Adjust the Order of Group
- group.label.positionsetgroup=Adjust the Order of Group
- group.label.realname=Real Name/Unit
- group.label.search=Search
- group.label.select=Select Group
- group.label.setright=Set Permissions
- group.label.statusnow=Current Status
- group.label.textcreate=Create
- group.label.textcreatein=Create In
- group.label.textdesc=Description
- group.label.textname=Name
- group.label.upper=Parent Group
- group.label.userlist=Group User List
- group.label.userList=User List
- group.label.userlist1=User List
- group.label.username=User Name
- group.label.users=User
- group.tip.addchildgroup=Create Child Group in Current Group
- group.tip.addgroup=Create Group
- group.tip.addtopgroup=Create Root Group
- group.tip.adduser=Create User
- group.tip.appenduser=Add User to Current Group
- group.tip.cancelgrpmanager=Cancel Admin Permission
- group.tip.dropgroup=Delete Current Group
- group.tip.dropuser=Delete User from Group
- group.tip.modifygroup=Edit Current Group
- group.tip.quitedropuser=Completely Delete Selected User(s)
- group.tip.refresh=Refresh
- group.tip.setgroupright=Set Permissions for Current Group
- group.tip.setgrpmanager=Set selected User as Administrators
- group_doc_stat.audio=Audio
- group_doc_stat.back=Redo
- group_doc_stat.check=Auditing
- group_doc_stat.copy=Copy
- group_doc_stat.count=Statistics list of filen volum
- group_doc_stat.department=Depertment
- group_doc_stat.docnum=Filen volum
- group_doc_stat.edited=Edited
- group_doc_stat.newdoc=New manuscript
- group_doc_stat.num=Sequence number
- group_doc_stat.pic=Picture
- group_doc_stat.quote=Quote
- group_doc_stat.sent=Published
- group_doc_stat.signed=Signed
- group_doc_stat.src=Original manuscript
- group_doc_stat.video=Audio
- group_doc_stat.word=Character
- group_include.org=of group[<span class=\"detail-hostname\">{0}</span>]
- group_include.user=of user[<span class=\"detail-hostname\">{0}</span>]
- group_piechartdata.null=(No data)
- group_tree.jsp.createtime=Construction user [{0}] user group by using the time to [{1}] ms!
- group_tree.obj.not.found=Specified user group [{0}] not found!
- grouped.label.select.selectorg=Choose user in selected group
- grouped.label.select.title=Choose user in selected group
- grouped.label.select.wuxiaoinfo=Invalid type [
- grpuser.label.list=User Management
- hitscount_data_include.department=Department
- hitscount_data_include.user=User
- humb_query.not.administrator=You are not an administrator, not a list of rights management metadata!
- humb_query.type=Services (com.trs.components.metadata.service.MetaDataDefServiceProvider.query) returns the object set type is not MetaDBTables, and for ({0}), please confirm.
- iflowcontent.label.title1=Reassign
- iflowcontent.label.title2=Can't Reassign
- iflowcontent.query.dataformat=yy.MM.dd HH:mm
- iflowcontent.query.label.chnnelname=Owner Channel: {0};
- iflowcontent.query.label.docid=Document ID:
- iflowcontent.query.label.status=Status:{0};
- iflowcontent_query.jsp.runtimeex=iflowcontent_query.jsp Runtime exception!
- iflowcontent_query.jsp.servicenoobject=Services (com.trs.ajaxservice.ProcessService.query) returns the object set type is not IFlowContents, and for the {0}, please confirm.
- image_for_style_upload.jsp.label.please_sel_upload_pic=Please select picture.
- image_for_style_upload.jsp.label.uploaded=Uploaded
- image_for_style_upload_dowith.jsp.label.error_upload_file=The imported file is incorrect!
- import_appendix.jsp.label.fail2_upload_file=Failed to upload file!
- import_appendix.jsp.label.local_file_not_exists=The local file does not exist
- import_appendix.jsp.label.runtimeexception=Upload system configuration file size exceeds the maximum {0} K, please re-select the file!
- import_office_doc.jsp.label.fail2create_digital_openoffice_link=Intelligence services created by OpenOffice connected invalid.
- import_office_doc.jsp.label.fail2create_officeservice=Intelligent service request failed to create OfficeService.
- import_office_doc.jsp.label.local_file_not_exists=The local file does not exist
- import_office_doc.jsp.label.please_check=Please check parameter is not configured correctly or service is not started.
- import_photos_appendix.jsp.label.over=Upload file size than the system configuration of the maximum {0} K, please chose to file!
- import_photos_doc.jsp.label.notFound=The local file does not exist.
- import_photos_doc.label.failure=Fail to upload the picture.
- import_photos_doc.label.notFound=Local file does not exist.
- indivadual.fileupload.dowith.errortype={Error:'Wrong file format.'}
- indivadual.fileupload.dowith.fileerror={Error:'Wrong file format.'}
- indivadual.fileupload.dowith.filenone={Error:'The file is empty.'}
- indivadual.query.cancelecustomsite=Clear Selection of Personalized Site
- indivadual.query.nocustomsite=Personalize Site Now
- infoview.addedit.processbar=Create infoview
- infoview.addedit.saveinfoviewerror=Save the infoview error
- infoview.advsetting.searchsetting=search field setting
- infoview.advsetting.serialcode=Infoview Serial Code Setting
- infoview.advsetting.viewsetting=Customize View Setting
- infoview.advsettingdesc.searchsetting=Set search field to construct advanced search page
- infoview.advsettingdesc.serialcode=Set up Serial code management mechanism of Customize Infoview
- infoview.advsettingdesc.viewsetting=Set Default Customize View for Infoview Channel
- infoview.desc=Please enter Infoview Description
- infoview.doc.export.error=] Error.
- infoview.doc.export.error1= to get [
- infoview.document.addedit.cancelbton=Cancel
- infoview.document.addedit.dowith.newtitle=Customize Infoview Data
- infoview.document.addedit.dowith.saveinfo=Infoview saved, processing Infoview flowing....
- infoview.document.addedit.okbutton=OK
- infoview.document.addedit.title1=Custom infoview data
- infoview.document.export.excel=WCM Customize Infoview Document Data
- infoview.document.list.of.channel.docid=DocId :
- infoview.document.list.of.channel.ownerchannel=Channel:
- infoview.document.show.close=Close
- infoview.document.show.doctitle=Title:
- infoview.document.show.print=Print
- infoview.export.xsnfile.filekong=To document called empty!
- infoview.export.xsnfile.infoviewid=The incoming form ID must be greater than 0!
- infoview.export.xsnfile.loginerror=User logged out or login timeout!
- infoview.export.xsnfile.writefileerr=Write documents failure
- infoview.fieldattrs.appadix=Appendix
- infoview.fieldattrs.boolean=Wrong type
- infoview.fieldattrs.char=Character type
- infoview.fieldattrs.checkbox=Checkboxes
- infoview.fieldattrs.combox=Choose more drop-down box
- infoview.fieldattrs.dadio=Single marquee
- infoview.fieldattrs.data=Date controls
- infoview.fieldattrs.downlist=Drop-down box
- infoview.fieldattrs.edit=Text editor
- infoview.fieldattrs.express=Expression
- infoview.fieldattrs.float=Precision decimal type
- infoview.fieldattrs.inadd=IP address
- infoview.fieldattrs.input=Input box
- infoview.fieldattrs.integer=Integer
- infoview.fieldattrs.letternumxiahua=Letters, Numbers, underlined
- infoview.fieldattrs.normallink=Common link
- infoview.fieldattrs.photoapp=Pictures accessories
- infoview.fieldattrs.reppet=Repeat form
- infoview.fieldattrs.reppettype=Repeat item
- infoview.fieldattrs.secondpattern=Binary type
- infoview.fieldattrs.startletternumxiahua=To begin with a letter of letters, Numbers and underline them
- infoview.fieldattrs.value=Data section
- infoview.fieldattrs.zidingyi=Custom types
- infoview.file.upload.filesize=File size [
- infoview.file.upload.fileup=Support only upload
- infoview.file.upload.fileupformat=Format file.
- infoview.file.upload.lastlimit=K]Longer than the maximum limit [
- infoview.file.upload.nonefile=No choose file.
- infoview.file.upload.please.secondselect=K],Please choose again files.
- infoview.file.upload.secondeselect=A file is not available, please chose to file.
- infoview.file.upload.title=Upload files
- infoview.fileupinfo=Documents suffixes not XSN, not standard InfoPath form file.
- infoview.fileupinfo1=Filename invalid, not standard scholar of the form file.
- infoview.fileupinfo2=Please first click "upload" will upload the file server and try again.
- infoview.huoquid=Get ID for [
- infoview.huoquiderror=]Custom form failure.
- infoview.label.addedit_of_infoview=Add/modify custom form
- infoview.label.applychannel=Apply Status
- infoview.label.changefile=Change File
- infoview.label.choosefile=Select File
- infoview.label.crtime=Creation Time
- infoview.label.cruser=Creator
- infoview.label.desc_of_infoview=Infoview Description
- infoview.label.doctitle=Title
- infoview.label.file_of_infoview=Infoview File
- infoview.label.name_of_infoview=Infoview Name
- infoview.label.setting=Set Infoview Properties
- infoview.label.settitlepattern=Set Title Pattern
- infoview.label.title.uselist=View status of Customize Infoview
- infoview.label.unlockerror=unlock fail
- infoview.label.uselist.nouse=This Infoview has not been used
- infoview.lable.advsetting=Infoview Advanced Setting
- infoview.list.addoredit.next=Next(Edit)
- infoview.list.addoredit.title=Add/Edit Customize Infoview
- infoview.list.alertinfo=No INPUT define.
- infoview.list.distributeresource=Synchronous Annex
- infoview.list.infoviewerror=Error.
- infoview.list.selectdelete.infoview.confirm=Are you sure to delete Infoview?
- infoview.list.selectdelete.infoview.deleteinfoviewshibai=Fail to Delete Infoview
- infoview.list.selectdelete.infoview.searcefieldlength=Search Field Size is ['
- infoview.list.selectdelete.infoview.selectsite=Select Site
- infoview.list.selectdelete.infoview.zifulength='].
- infoview.list.selectdeleteinfoview=Please select Infoview to delete.
- infoview.list.selectexport.infoview.onlyone=Only allow export a form!
- infoview.list.selectexport.infoview.pleaseselect=Please first choose to export form!
- infoview.list.showaplicationinfo=View situation of list apply
- infoview.lobel.infoviewlist=Infoview List
- infoview.locker=]Lock! You can't change the!
- infoview.lockerinfo=Custom form[
- infoview.lockeruser=]user[
- infoview.message.uploaddesc=Please select the customize Infoview file you want to use, then click "Upload".
- infoview.message.uploaddesc2=Notice, the table file created by MS InfoPath use postfix name "XSN".
- infoview.name=Please enter Infoview Name
- infoview.namedesclength=The length of the form not greater than the name describes200
- infoview.namelength=The length of the form not greater than the name50
- infoview.patterndesc.time1=Time: YYYY MM DD
- infoview.patterndesc.time2=Time: YY MM DD
- infoview.patterndesc.time3=time: YYYY-MM-DD
- infoview.patterndesc.time4=time: YYYYMMDD
- infoview.patterndesc.user=User Name
- infoview.preview.closebutton=Closed
- infoview.save.info.lock=Objects are being other users locking, cannot be modified. The current user: [
- infoview.save.info.lockuser=] Locking-in users: [
- infoview.selectinfofile=Please select Infoview file
- infoview.selectinfofilelength=Form the length of the file name not greater than200
- infoview.titlepattern.time1=${::time, yyyy MM dd}
- infoview.titlepattern.time2=${::time, yy MM dd}
- infoview.titlepattern.time3=${::time, yyyy-MM-dd}
- infoview.titlepattern.time4=${::time, yyyyMMdd}
- infoview.unlockerror=unlock fail
- infoview.uselist.infoviewcrtime=Storage time:
- infoview.uselist.infoviewcruse=Creator:
- infoview.uselist.infoviewname=Form name:
- infoview.uselist.usechannel=Application columns:
- infoview_addedit_dowith.jsp.label.fail2create_infoview=Attribute value is incorrect.Failed to construct custom form in XML!
- infoview_addedit_setting.jsp.fail2_get_infoviewId=For ID [{0}] custom infoview failed!
- infoview_document_addedit.jsp.fail2_get_docId=For ID [{0}] of the document to fail!
- 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!
- infoview_document_addedit.jsp.label.channel_not_found_exception=The channel cannot be found!
- infoview_document_addedit.jsp.label.channelId_not_found_exception=The channel is Id 0 cannot find it!
- infoview_document_addedit.jsp.label.unable_edit_selfinfoview_exception=The channel is not a custom form channels can not be edited under the documentation!
- infoview_document_addedit.jsp.noright_change_doc=You do not have permission to modify the ID [{0}] of document!
- infoview_document_addedit.jsp.noright_change_doc_a=The file[{0}][{1}] is locked by user[{2}]! you cannot modify!
- infoview_document_addedit.noRight=You are not authorized New Document!
- infoview_document_addedit.object.not.found=Cannot find the flowing object[FlowDocId={0}]!
- infoview_document_addedit_dowith.channel.not.found=Sorry, can not find the channel applications! Please check your WCM!
- infoview_document_addedit_dowith.document.not.found=Sorry, cannot find applied file please check your WCM!
- infoview_document_addedit_dowith.form.not.found=Sorry, could not find a custom application form! Please check your WCM!
- infoview_document_addedit_dowith.getFail=Failed to obtain file ID[{0}]!
- infoview_document_addedit_dowith.locked=The file[{0}][{1}] is locked by user [{2}]!You cannot modify!!
- infoview_document_addedit_dowith.noRight=You do not have permission to modify the ID [{0}] of document!
- infoview_document_addedit_dowith.not.config=The Channel is not configured to effectively custom form, unable to see the document under!
- infoview_document_addedit_dowith.not.fit=The channel is not customized that cannot be edited the documents!
- infoview_document_addedit_dowith.not.found=Can not find the channel!
- infoview_document_addedit_dowith.not.permit=You are not authorized New Document!
- infoview_document_addedit_dowith.object.not.found=The channel cannot be found!
- infoview_document_export_excel.channel.failed=Failed to obtain the file ID [{0}]!
- infoview_document_export_excel.jsp.label.doc_state=Document Title,Created,Creator,Creator IP,Document Status
- 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!
- infoview_document_export_excel.reduce.failed=Failed to extract file to zip file.!
- infoview_document_get_data.channel.not.found=Can not find the channel!
- infoview_document_get_data.form.not.effective=The channell is not configured to effectively customized form can not be edited under the document!
- infoview_document_get_data.form.not.fit=The channell is not configured to effectively customized form can not be edited under the document!
- infoview_document_get_data.getFailed=For ID [{0}] of the document to fail!
- infoview_document_get_data.id.not.found=Channel Id is 0, can not find the channel!
- infoview_document_get_data.id.zero=Cannot find the file Id 0 !
- infoview_document_get_data.noRight=trace the file usage situation ID[{0}]!
- infoview_document_list_of_channel.document.not.get=Failed to obtain the [{0}] document attribute!
- infoview_document_list_of_channel.exception=iflowcontent_query.jsp runtime exception!
- infoview_document_list_of_channel.getFailed=Failed to obtain the channel ID[{0}]!!
- infoview_field_set.id.zero=InfoViewId 0, can not find the InfoView!
- infoview_field_set.obj.not.found=InfoView can not be found!
- infoview_fieldattrs.field.not.found=Can not find the form field [IVFieldName = {0}, InfoViewId = {1}]!
- infoview_fieldattrs.id.zero=InfoViewId is 0,cannot find InfoView!
- infoview_fieldattrs.obj.not.found=cannot find InfoView!
- infoview_fieldattrs_dowith.construct.failed=From XML to construct a custom form field property values due to incorrect failed!
- infoview_fieldattrs_dowith.id.zero=InfoViewId is 0,cannot find InfoView!
- infoview_fieldattrs_dowith.obj,ont.found=cannot find InfoView!
- infoview_fields_select.id.zero=InfoViewId 0, can not find the InfoView!
- infoview_fields_select.obj.not.found=InfoView can not be found!
- infoview_fields_tree.id.zero=InfoViewId is 0,cannot find InfoView!
- infoview_fields_tree.obj.not.found=Cannot find InfoView!
- infoview_list.form.attribute.wrong=Failed to obtain the [{0}] form attribute!
- infoview_load_views.getFailed=Failed to obtain customized form ID [{0}]!
- infoview_save_group.attribute.wrong=Failed to form from the XML view of the construction of customized due to incorrect property values!
- infoview_save_info.attribute.wrong=Construct a custom form from an XML attribute value is not correct due to fail!
- infoview_save_view.attribute.wrong=Form from the XML view of the construction of custom property values ??due to incorrect and failed!
- infoview_save_view.form.not.exist=Belongs to the form view does not exist!
- infoviewdoc.findbyid.staturname=Unknown
- infoviewdoc.list.channel.ownchannl=Subordinate columns [
- infoviewdoc.list.channel.queotdoc=Reference document
- infoviewdoc_findbyid.jsp.docnotfound=cannot findID {0}"
- infoviewdoc_findbyid.jsp.label.runtimeexception=infoviewdoc_findbyid.jsp runtime exception!
- introduction_dowith.jsp.label.fail2save_sys_config= An error occours while saving system conig
- issuedamount_bonus_stat.info=User[{0}] bonus statistics list(Time{0} to {1})
- issuedamount_bonus_stat.total=Total
- jobworkertype.label.addedit=Create/Modify Schedule Type
- jobworkertype.label.bean=Bean
- jobworkertype.label.desc=Description
- jobworkertype.label.name=Name
- jobworkertype.label.param=Parameter
- jobworkertype.message.bean=Bean must inherit from com.trs.infra.util.job.BaseJob or com.trs.infra.util.job.BaseStatefulJob
- keyword_add.attribute.wrong=Failed to save Keyword due to the incorrect attribute!
- keyword_addedit.key.getFailed=Failed to obtain ID[{0}]Keyword!
- keyword_edit.id.zero=For ID [{0}] of Keyword failed!
- layout_addedit.jsp.fail2get_layout=Failed to obtain layout ID[{0}]!
- layout_addedit.jsp.label.have_no_right=Sorry. You do not have the right to modify and save the layout!
- layout_query.jsp.collumn=Column number:{0}
- layout_query.jsp.collumn_num=Number of column:[{0}]
!
- layout_query.jsp.fixed_ratio=Fixed rate
- layout_query.jsp.layout=Layout [{0}]
- layout_query.jsp.percentage=Ratio:{0}
- layout_query.jsp.percentage_ratio=Percent
- layout_query.jsp.percentage_value=Percentage[{0}]
!
- layout_query.jsp.ratio_type=Ratio type:
- layout_query.jsp.serial_num=Serial number:[{0}]
!
- layout_select.jsp.collumn=Number of column:[{0}]
!
- layout_select.jsp.fixed_ratio=Fixed ratio
- layout_select.jsp.layout=Layout[{0}]
- layout_select.jsp.percentage_ratio=Percentage
- layout_select.jsp.ratio_type=Ratio type:
- layout_select.jsp.ratio_value=Rate value:[{0}]
- layout_select.jsp.serial_num=Serial number:[{0}]
!
- license_checker.error=License problems, illegal use!\n
- 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
- license_checker.wrong=registration code problem,the obtaining site is not approved!!\n
- license_edit.jsp.label.licencesincorrect=Registration code is not correct or has expired, please enter a new registration code!
- list_base.construct.failed=Structure [{0}] permissions information!
- list_dowith.runExcep=keyword_list_dowith.jspRuntime exception!
- list_redirect.channel.id.zero=For Site ID is [{0}] of the site failed!
- list_redirect.doc.id.zero=Get ChannelID to [{0}] of the Channel failed!
- list_redirect.noid=unspecified ChannelI and SiteId.
- list_select.runExce=metaviewdata_classic_list_select.jsp runtime exception!
- lock.label.canotLock=Cannot lock the object
- lock.label.canotLockTwice=You cannot modify the object before unlocking it.
- lock.label.lock=
- lock.label.objHas=The object has been locked by
- log.label.endtime=End Time
- log.label.exectime=Total Time
- log.label.info=System Log Info
- log.label.list=System Logs List
- log.label.logdesc=Details
- log.label.logtype=Log Type
- log.label.operobj=Operation Object
- log.label.operobjid=Operation Object ID
- log.label.operresult=Operation Result
- log.label.opertime=Operation Time
- log.label.opertype=Operation Type
- log.label.operuser=Operation User
- log.label.operuserip=Operation User IP
- log.label.selecttimearea=Date
- log.label.starttime=Start Time
- log.tip.export=Import Selected Log(s)
- log.tip.refresh=Refresh Current Page
- log.tip.return=Return
- logo_list.attribute.getFailed=Get the [{0}] Logo properties failed!
- logo_list.getFailed=failed to obtain [{0}]Logo!
- logo_list.jsp.PageNav1=Logo
- logo_list.jsp.PageNav2=Unit
- logo_list.jsp.title1Attr=Reorder the Logos
- logo_list.notFound=cannot find [{0}] Logo!
- logo_parameter_set.appendixmanage=Attachment Management
- logo_parameter_set.choice=Please select
- logo_parameter_set.empty=Resource sample object is null
- logo_parameter_set.id.zero=No Widget object[Id={0}] is found.
- logo_parameter_set.inputselect=Writeable drop-down
- logo_parameter_set.inputtips=Writeable tip
- logo_parameter_set.noteffect=No valid widgetInstanceId imported
- logo_parameter_set.yes.no=Yes`1~No`0
- LONGTEXT1='Do you need to open Office client extractive component?\n To open ActiveX component must set current site as creditable site'
- 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?'
- LONGTEXT3="WCM SOAP service config error."
- LONGTEXT4="\nPossible reasons: \n1, current site has not been set as creditable site. \n2,FireWall holds up SOAP port ["
- main.label.loginuser=Current Login User
- main.label.logout=Log Out
- main.label.logout2=Log out Current Session
- main.label.mymsg=Click to go to 'My Message'
- main.label.online=Current Online
- main.label.receivemsg=Click to receive message
- main.label.viewonline=View Online User(s)
- manager_photos.jsp.style_notfound=Style [id={0}] does not exist.
- markkind.label.addedit=Create/Modify Subfolder
- markkind.label.desc=Description
- markkind.label.list=Bookmark Folder List
- markkind.label.list_of_shared=Share Bookmark Folder List
- markkind.label.name=Name
- markkind.label.share=Share Bookmark
- markkind.tip.refresh=Refresh
- markkind.tip.return=Return
- master_addedit.jsp.label.have_no_right2alter_template=You do not have the right to modify motherboard[{0}]
- master_addedit.jsp.label.have_no_right2create_template=You do not have the right to create motherboard
- master_query.jsp.creator=Creater:{0}
- master_query.jsp.crtime=Time:{0}
- message.button.clearinbox=Clean Inbox
- message.button.clearsentbox=Clean SendBox
- message.button.drop=Delete
- message.button.reply=Reply
- message.button.send=Send
- message.button.signallreaded=Set All as Read
- message.button.signnotreaded=Mark as Unread
- message.button.signreaded=Mark as Read
- message.button.transmit=Forward
- message.label.content=Content
- message.label.info=Check Message
- message.label.latestmsg=Create message
- message.label.list=Message List
- message.label.messageinfo=Check Messages
- message.label.receiver=Receiver
- message.label.send=Online Message(s)
- message.label.sender=Sender
- message.label.sendtime=Send Time
- message.label.sendtype=Type
- message.label.title=Title
- message.query.dealdoc=dowith document
- message.query.replymsg=reply message
- message.tip.clearinbox=Clean Inbox
- message.tip.clearsentbox=Clean SendBox
- message.tip.drop=Delete Selected Message(s)
- message.tip.refresh=Refresh Current Page
- message.tip.reply=Reply Message
- message.tip.send=Send a Message
- message.tip.signallreaded=Mark All Unread Messages as Read
- message.tip.signnotreaded=Mark Selected Message(s) as Unread
- message.tip.signreaded=Mark Selected Message(s) Status as Read
- message.tip.transmit=Forward Received Message
- message_query.runExce=message_query.jsp runtime exception!
- message_query.type=Services (com.trs.ajaxservice.MessageServiceProvider.query) returns the object set type is not Messages, and for ({0}), please confirm.
- metadata_relation_select.document_addedit_label_15=Unspecified ChannelId
- metadbfield.label.crtime=Creation Time
- metadbfield.label.cruser=Creator
- metadbfield.label.metadbfieldid=Metadata field id
- metadbfield_findbyid.runExce=metadbfield_findbyid.jsp runtime exception!
- metadbfield_query.runExce=An exception occurs while running metadbfield_query.jsp.
- metadbfield_query.type=service(com.trs.components.metadata.service.MetaDataDefServiceProvider.query)The return object collection is not MetaDBFields, but {0}, please confirm!.
- metadbtable.label.crtime=Creation Time
- metadbtable.label.cruser=Creator
- metadbtable.label.metadbtable=Metadata
- metadbtable.label.metadbtableId=Metadata ID
- metadbtable.label.metaview=VIew
- metadbtable.label.rowId=ID
- metadbtable_findbyid.runExce=metadbtable_findbyid.jsp runtime exception!
- metadbtable_findbyid.type=Services (com.trs.components.metadata.service.MetaDataDefServiceProvider.findbyid) returns the object type is not MetaDBTable, and for ({0}), please confirm.
- metadbtable_thumb_query.runExce=metadbtable_thumb_query.jsp runtime exception!
- metarecdata.label.noChannel=No users found the default storage channel.
- metarecdata.label.recid=Record ID
- metarecdata.label.unknown=Unknow
- metarecdata_findbyid.runExce=metarecdata_findbyid.jsp runtime exception!
- metarecdata_findbyid.type=service(com.trs.components.metadata.service.MetaDataCenterServiceProvider.findbyid)return collection type is not ViewDocument,but ({0}),please confirm.
- metarecdata_query.jsp.label.runtimeexception=metarecdata_query.jsp runtime exception!
- metarecdata_query.label.runtimeexception=metareddata_query.jsp runtime exception!
- metarecdata_query.runExce=metarecdata_query.jsp runtime exception!
- metarecdata_query.type=Services (com.trs.components.metadata.service.MetaDataCenterServiceProvider.query) returns the object set type is not MetaViewDatas, and for ({0}), please confirm.
- metaview.label.rowId=ID
- metaview_channel_list.jsp.label.runtimeexception=The value of parameter MetaViewId must be greater than0!
- metaview_channel_list.jsp.notfound=The view ID[{0}] is not found!
- metaview_document_relation.jsp.pagetitle= TRS WCM {0}Management
- metaview_document_relation.jsp.relationdataTitle={0}data title
- metaview_document_relation.jsp.settingdatatitle=The related {0}data
- metaview_findById.label.crtime=Creation Time
- metaview_findById.label.cruser=Creator
- metaview_findById.label.viewInfo=View ID
- metaview_query.runExce=metaview_query.jsp runtime exception!
- metaview_query.type=service(com.trs.components.metadata.service.MetaDataDefServiceProvider.query)The return collection is not MetaViews, but {0}, please confirm!
- metaview_select.label.crtime=Creation Time
- metaview_select.label.cruser=Creator
- metaview_select.label.enfieldname=Unique Name
- metaview_select.label.fieldname=Display Name
- metaview_select.label.name=Name
- metaview_select.label.owner=belong to
- metaview_select.label.viewName=View Name
- metaviewdata.label.classinfoNotExist=Classification information specified does not exist.
- metaviewdata.label.classNotExist=The specified classification does not exist.
- metaviewdata.label.clob=Clob
- metaviewdata.label.VARCHAR=VARCHAR
- metaviewdata.label.crtime=Creation Time
- metaviewdata.label.cruser=Creator
- metaviewdata.label.fileError=File is incorrect.
- metaviewdata.label.no=No
- metaviewdata.label.noContent=File is no contnet
- metaviewdata.label.none=None
- metaviewdata.label.recId=RecId
- metaviewdata.label.recordId=Record ID
- metaviewdata.label.reldocNotExist=There are no specified related documents
- metaviewdata.label.yes=Yes
- metaviewdata_addedit.jsp.classfiynotfound=System does not find the specified category! [ID = {0}]
- metaviewdata_addedit.jsp.continuefill=Click here to fill out
- metaviewdata_addedit.jsp.finishfill=Click here to fill out complete
- metaviewdata_addedit.jsp.label.defaultchannel=No default channel is found!
- metaviewdata_addedit.jsp.label.nextorgclassfiy=Sub-units of institutions of different categories
- metaviewdata_addedit.jsp.label.null=Null
- metaviewdata_addedit.jsp.label.orgclass=Organization classification
- metaviewdata_addedit.jsp.label1=The view ID [{0}] is not used by any channel!
- metaviewdata_addedit.jsp.newormodifydata=New/Moify [{0}] data
- 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>
- metaviewdata_addedit.jsp.title=new/modify date[{0}]data
- metaviewdata_addedit_inflow_right_redirect.jsp.noright_change_doc=You do not have the right to modify the document of ID [{0}]
- metaviewdata_cls_query.jsp.runtimeexception=metaviewdata_query.jsp runtime exception!
- metaviewdata_findbyid.type=Services (com.trs.components.metadata.service.MetaDataCenterServiceProvider.findbyid) returns the object type is not ViewDocument, and for ({0}), please confirm.
- metaviewdata_query.jsp.label.crtime=Created:
- metaviewdata_query.jsp.label.distance2pic_warning=<%The title height format must be:Integer+Unit(pt/em/px)
- metaviewdata_query.jsp.label.runtimeexception=metaviewdata_query.jspRuntime exception!
- metaviewdata_query.jsp.label.widget_style_name=Resource style name
- metaviewdata_query.runExce=metaviewdata_query.jsp runtime exception!
- metaviewdata_query.type=(com.trs.components.metadata.service.MetaDataCenterServiceProvider.query)the return collection is not MetaViewDatas,but({0}),please confirm.
- metaviewdata_select_query.jsp.label.runtimeexception=metaviewdata_query.jsp runtime exception!
- metaviewfield.label.classNotExist=Classification specified does not exist.
- metaviewfield.label.crtime=Creation Time
- metaviewfield.label.cruser=Creator
- metaviewfield.label.viewfieldid=Field ID
- metaviewfield.object.not.found=<font color=red>Specified classification does not exist! [ID = {0}]</font>
- metaviewfield_findbyid.jsp.label.runtimeexception=metaviewfield_findbyid.jsp runtime exception!
- 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.
- metaviewfield_query.jsp.label.runtimeexception=metaviewfield_query.jsp runtime exception!
- metaviewfield_query.jsp.result_not_matching=service(com.trs.components.metadata.service.MetaDataDefServiceProvider.findbyid)The return type is not MetaViewField,but {0},please confirm.
- metaviewfieldgroup_addedit.jsp.fail2get_MetaViewFieldGroup=!Failed to obtain MetaViewFieldGroup ID [{0}]!!
- metaviewfieldgroup_addedit.jsp.label.valueof_MetaViewId_error=The value of parameter [MetaViewId] must be greater than 0!
- metaviewfieldgroup_addedit_dowith.jsp.fail2get_MetaViewFieldGroup=No MetaViewFieldGroup ID[{0}] is found!
- metaviewfieldgroup_addedit_dowith.jsp.label.fail2save=The attribute value is incorrect!Failed to save MetaViewFieldGroup!
- metaviewfieldgroup_addedit_dowith.jsp.syn_by_user=MetaViewFieldGroup is locked by user [{0}]!
- metaviewfieldgroup_exist.jsp.label.error_param=Invalid parameter!
- metaviewfieldgroup_list.jsp.fail2get_Attribute=Failed to obtain the attribute of the [{0}]MetaViewFieldGroup!
- metaviewfieldgroup_list.jsp.fail2get_MetaViewFieldGroup=Failed to obtain the[{0}]MetaViewFieldGroup!
- metaviewfieldgroup_list.jsp.label.param_value_error=Parameter value [MetaViewId] must be greater than 0!
- metaviewfieldgroup_show.jsp.param_error=The parameter is incorrect. No MetaViewFieldGroup ID[{0}] is found.
- nav_tree.label.crtime=Created:
- nav_tree.label.cruser=Creator:
- nav_tree.label.dbId=ID:
- nav_tree.label.id=Unique Name:
- nav_tree.label.individualChnl=My Custom Channel
- nav_tree.label.notBuyPicComponent=You did not buy it.
- nav_tree.label.notBuyVideoComponent=You did not buy it.
- nav_tree.label.objId=ID:
- nav_tree.label.picWarehouse=Picture Library
- nav_tree.label.resourceWarehouse=Resource Library
- nav_tree.label.textWarehouse=Library
- nav_tree.label.videoWarehouse=Video Library
- nav_tree\nav_tree_select.jsp.website_notfound=cannot find the specified site![ID={0}]
- nav_tree_select.jsp.not_supportmode=Do not support the specified mode!{0}
- nav_tree_select_individual.jsp.channel_not_exists=Specified channel [{0}] does not exist!
- nav_tree_select_individual.jsp.stitle=Number: {0} \ nCreator: {1} \ n created: {2}
- nav_tree_select_node.object.not.found=Not found with ID {0} channel
- nav_tree_select_test.jsp.label.pic_coll=Photo Gallery
- nav_tree_select_test.jsp.label.vedio_coll=Video Library
- nav_tree_select_test.jsp.label.word_coll=literal pool
- nfoview_publicfill_setting.id.zero=InfoViewId 0, can not find the InfoView!
- nfoview_publicfill_setting.obj.not.found=cannotfind InfoView!
- nfoview_publicfill_setting.wrongNode=The current group node non-section node!
- object.failed.found=Failed to find the object.
- object.locked.modify=The object has been locked by {0}. You cannot modify the object before unlocking it.
- object.locked.readonly=The object is locked by {0}. Are you sure to enter the read-only-mode?
- object.not.found=The specified {1} [ID={0}] cannot be found.
- object.not.found_a=Did not find the specified ID is [{0}] of the object!
- onliners.noLogging=No users logged in!
- onlines.label.loginIp=Login Address
- onlines.label.time=Login Time
- operator.error.label.unknownError=Unknown error!
- opertype.label.addedit=Create/Modify Operation Type
- opertype.label.desc=Description
- opertype.label.info=Operation Type Info
- opertype.label.list=Operation Type List
- opertype.label.name=Name
- opertype.tip.add=Create Operation Type
- opertype.tip.drop=Delete Selected Operation Type
- opertype.tip.refresh=Refresh Current Page
- opertype.tip.return=Return
- pager_generate.jsp.label.bottom_page=The end
- pager_generate.jsp.label.home_page=Homepage
- pager_generate.jsp.label.next_page=Next
- pager_generate.jsp.label.preview_page=Previous
- pagestyle_addedit.jsp.edit_style=Edit style
- pagestyle_addedit.jsp.fail2get_style=Failed to obtain style [Id:{0}]!
- pagestyle_addedit.jsp.have_noright2_alter_style=You do not have the right to modify style [{0}]!
- pagestyle_addedit.jsp.have_noright2_create_style=You do not have the right to create style!
- pagestyle_addedit.jsp.new_style=Create style
- pagestyle_edit_main_index.jsp.fail2get_page_style=Failed to obtain page style [Id:{0}]!
- pagestyle_edit_main_index.jsp.have_noright_alter_style=You do not have the right to modify style [{0}]!
- pagestyle_query.jsp.label.click_here2_alter_style_thumb=title= \'Click and mofify the style thumbnail\'
- pagestyle_query.jsp.label.en_name=English name:
- pagestyle_query.jsp.label.zh_name=Chinese name:
- pagestyle_query.jsp.who_and_when_create=create at {1}
- 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.
- parentTree.jsp.noidchnl=Not found with ID {0} channel
- parentTree.jsp.noidsite=Not found with ID {0} sites
- person.button.modify_of_password=Change Password
- person.button.modify_of_user=Modify Information
- person.label.config_of_locale=Customize Language Config
- person.label.edit_of_password=Change Password
- person.label.edit_of_userinfo=Modify User Information
- person.tip.modify_of_locale=Modify Language Setting
- person.tip.modify_of_password=Change Password
- person.tip.modify_of_user=Edit User Info
- photo.label.crtime=Creation Time
- photo.label.cruser=Creator
- photo_download.jsp.label.export_original_pic_error=An error occurred during export artwork!!
- photo_download.jsp.pic_notfound=cannot find picture ID [{0}]!
- photo_findbyid.jsp.label.runtimeexception=photo_findbyid.jsp runtime exceptions!
- 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.
- photo_findbyid.label.unknown=Unknown
- photo_importsyspics.jsp.channelId_not.found=Did not find the specified ID is [{0}] of the channel!
- photo_importsyspics.jsp.label.fail2get_watermark_coll=Failed to obtain site watermark collection!
- photo_importsyspics.label.choose=Choose
- photo_list_editor.jsp.objtype_isnot_ViewDocument=service(com.trs.ajaxservice.PhotoServiceProvider.findbyid)The return type is not ViewDocument,but {0},please confirm.
- photo_list_editor_query.jsp.chnldoc_notfound=Did not find the specified ID is [{0}] of chnldoc!
- photo_list_editor_query.jsp.doc_notfound=Did not find the specified ID is [{0}] of document!
- photo_list_editor_query.jsp.label.runtimeexception=watermark_query.jspruntime exception!
- photo_origin_edit.jsp.doc_notfound=cannot find the channelID [{0}]!
- photo_origin_edit.jsp.label.fail2get_watermark_coll=Failed to obtain site watermark collection!
- photo_query.jsp.label.runtimeexception=photo_query.jsp runtime exception!
- 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.
- photo_reupload.jsp.channel_notfound=Cannot find the channelID[{0}]!
- photo_reupload.jsp.doc_notfound=Do not find the file ID[{0}]!
- photo_reupload.jsp.label.fail2get_watermark_coll=Failed to obtain site watermark collection!
- photo_show.jsp.channel_notfound=Did not find the specified ID is [{0}] of the channel!
- photo_show.jsp.noright_scan_pic=You do not have permission to view ID [{0}] of the picture!
- photo_show.jsp.ondoc_notfound=Cannot find the file[{0}]!
- photo_show.jsp.pic_notfound=Cannot find the specified picture ID[{0}]!
- photo_show.jsp.website_notfound=Do not find the specified ID site [{0}]!
- photo_show.label.unknown=Unknown
- photo_show_editor.jsp.pic_notfound=Cannot find picture ID[{0}]!
- photo_syspics_list.jsp.label.runtimeexception=photo_syspics_query.jsp runtime exception!
- photo_syspics_query.jsp.doc_notfound=Do not find file ID [{0}]!!
- 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.
- photo_thumb_query.jsp.chnldoc_notfound=Not found with ID [{0}] of chnldoc!
- photo_thumb_query.jsp.doc_notfound=Not found with ID [{0}] of document!
- photo_thumb_query.jsp.label.runtimeexception=watermark_query.jsp runtime exception!
- 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.
- photo_upload.jsp.channelId_notfound=Not found with ID [{0}] of the channel!
- photo_upload.jsp.label.fail2get_watermark=Failure to obtain site watermark collection!
- photo_upload.label.choose=Choose
- photo_upload_editor.jsp.channelId_notfound=Cannot find chanel ID[{0}]!
- photo_upload_editor.jsp.label.fail2get_watermark_coll=Failed to obtain site watermark collection !
- photodoc_edit.jsp.channel_notfound=Not found channel ID [{0}]!!
- photodoc_edit.jsp.doc_notfound=Not found with ID [{0}] of document!
- photodoc_edit.label.picRelTime=Picture Creation Time
- photoprops_edit.jsp.doc_notfound=Did not find the specified ID is [{0}] of document!
- photoprops_edit.label.picRelTime=Date
- photos_import.id.zero=Not found with ID {0} channel
- photos_import.jsp.channel_notfound=No channel ID[{0}] is found
- photos_import.jsp.label.fail2get_site_shuiyin_coll=Failed to obtain site watermark collection!
- photos_import.label.choose=Choose
- piechartdata..null=(None)
- piechartdata.clickMount=Channel click rate
- piechartdata.hitamount=Site click rate
- piechartdata.hitmount=Subject click rate
- piechartdata.hitscount=Department click rate
- piechartdata.nodata=(None)
- poll_list.error.notrun=Research config is incorrect or is not activated!
- poll_list.id.invest=Research ID
- poll_list.id.obj.empty=Resource sample object is null
- poll_list.id.zero=No widget[Id={0}] is found
- poll_list.noeffect=No valid widgetInstanceId is imported
- position_set.channed.notFound=Not found with ID [{0}] of the channel!
- position_set.document.notFound=cannot find ID[{0}]!
- position_set.Set=Adjust the document <font color=blue>[{0}]</font> in the channel <font color=blue{1}</font>[] in order</font>
- 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)
- public_server.construct.failed=Structure [{0}] permissions information!
- public_server.logging.error=The user didn't logged in or log out!
- public_thumb_upload_dowith.jsp.label.error_import_file=The imported file is incorrect!
- public_thumb_upload_dowith.jsp.label.import_file_content_isnull=No content is imported!
- publish.label.addedit=Create/Modify Publish Component
- publish.label.addedit_of_distribution=Create/Modify Publish Distribution Config
- publish.label.bean=Bean
- publish.label.crtime=Creation Time
- publish.label.cruser=Creator
- publish.label.desc=Description
- publish.label.info=Published Component Info
- publish.label.list=Publish Component List
- publish.label.name=Name
- publish.label.setenable_of_distribution=Startup Configuration
- publish.label.task_status_0=Unknown Status
- publish.label.task_status_1=Waiting
- publish.label.task_status_10=Canceling Task
- publish.label.task_status_11=Invalid Parameter
- publish.label.task_status_5=Running
- publish.label.task_status_6=Finished with Warning
- publish.label.task_status_7=Finished
- publish.label.task_status_8=Task Over Time
- publish.label.task_status_9=Failed
- publish.label.templatemanage=Template Admin
- publish.label.type_of_distribution=Type
- publish.tip.add=Create Publish Component
- publish.tip.drop=Delete Selected Publish Component
- publish.tip.refresh=Refresh Current Page
- publish.tip.return=Return
- publishdistribution_findbyid.jsp.label.runtimeexception=publishdistribution_findbyid.jspruntime exception!
- publishdistribution_findbyid.jsp.service=service(com.trs.ajaxservice.DistributeServiceProvider.findbyid)the return collection type PublishDistribution,but{0},please confirm.
- publishdistribution_query.jsp.label.runtimeexception=publishdistribution_query.jsp runtime exception!
- publishdistribution_query.jsp.service=service(com.trs.ajaxservice.DistributeServiceProvider.query)The return collection is not PublishDistributions , but {0}, please confirm.
- publishdistribution_query.label.enable=Enabled
- publishdistribution_query.label.unable=Disabled
- read_excel.notLogging=User not logged in or logged out!
- read_excel.writedoc.failed=failed to write file!
- read_file.jsp.inputnullfilename=Incoming file name is null!
- read_file.jsp.usernotload=User not logged in or logged out!
- read_file.jsp.writefilefailure=Failed to write file
- read_image.jsp.label.error_import_file=The imported file name is null.
- read_image.jsp.label.fail_to_write_file=Failed to write file.
- read_image.jsp.label.not_login_or_overtime=The user not logged in or logged out!!
- read_image.jsp.label.null_file_name=Incoming file name is empty!!
- read_image.jsp.label.user_not_login=You did not login, or the time is out!
- read_image.jsp.label.write_file_failed=failed to writ file
- record_export.need.id=Export all records, enter at least [ChannelID-ChannelId] or [Site ID-SiteId]!
- record_position_set.channel.notFound=Not found with ID [{0}] of the channel!
- record_position_set.id.zero=Not found with ID [{0}] of the record!
- record_position_set_dowith.jsp.channelId_not_found=Cannot find the channel ID [{0}]!
- record_position_set_dowith.jsp.docId_not_found=Not found with ID [{0}] of document!
- record_position_set_dowith.jsp.noright_modify_currchannel=Without permission in the current channel [{0}] [ID = {1}] to change the record order!
- recycle_findbyid.jsp.label.runtimeexception=photo_findbyid.jsp runtime exception!
- recycle_findbyid.jsp.service=Services (com.trs.ajaxservice.PhotoServiceProvider.findbyid) returns the object type is not ViewDocument, and for the {0}, please confirm.
- recycle_thumb_query.jsp.chnldoc_notfound=Cannot find ID [{0}]chnldoc!
- recycle_thumb_query.jsp.doc_notfound=Not found with channel ID [{0}] !
- recycle_thumb_query.jsp.label.runtimeexception=watermark_query.jspRuntime exception!
- recycle_thumb_query.jsp.objtype_isnot_ViewDocument=service(com.trs.ajaxservice.PhotoServiceProvider.findbyid)The return collection is not ViewDocument,but{0},please confirm.
- redirection.ChnlDoc.notFound=Did not find the specified document corresponding ChnlDoc [Document ID: {0}]!
- redirection.doc.id=No specified file ID!
- redirection.doc.notFound=Did not find the corresponding Channel [Document ID: {0}] or the Channel has been deleted!
- redirection.sdoc.not.found=Did not find the specified document [{0}] or the document has been deleted!
- redirection.site.notFound=Not find the specified [Document ID:{0}]site or the site has been deleted!
- region.label.crtime=Creation time
- region.label.cruser=Creator
- region.label.regionId=Induction Numbers
- region.query.jsp.regiontitle=Induction -
- region_employ_show.jsp.channel_name={0}channel-{1}
- region_employ_show.jsp.doc_name={0}Document-{1}
- region_employ_show.jsp.website_name={0}Site-{1}
- region_findbyid.jsp.label.exception={0}_findbyid.jspOn-the-go abnormal!
- replace_addedit.label.edit=Edit Replacement
- replace_addedit.label.new=Add Replacement
- replace_findbyid.jsp.service=Services (com.trs.ajaxservice.ReplaceContentServiceProvider.findbyid) returns the object type is not Replace, and for the {0}, please confirm.
- replace_findbyid.runtime.error=replace_findbyid.jspAn exception occurs while running.
- replace_query.jsp.label.runtimeexception=replace_query.jsp runtime exception!
- replace_query.jsp.service=service(com.trs.ajaxservice.ReplaceContentServiceProvider.query)the return collection is notReplaces,but{0},please confirm.
- resource_distribute.id.zero=Not find the specified site, Id [{0}]
- resource_preview_page_for_list.id.zero=Failed to obtain resource type [Id:{0}]
- resource_style_addedit.jsp.create_widget_style=Create resource frame style
- resource_style_addedit.jsp.edit_widget_style=Edit the resource frame style
- resource_style_addedit.jsp.fail2get_widget_type=Failed to obtain resource type [Id:{0}].
- resource_style_addedit.jsp.have_noright2_alter_style=You do not have the right to modify style[{0}]!
- resource_style_addedit.jsp.have_noright2_new_style=You do not have the right to create style!
- resource_style_addedit_1.jsp.label.border_format_limit='The width of margin must be:Integer+Unit(pt/em/px)'
- resource_style_addedit_1.jsp.label.font_size_format_limit='The font size format must be: Integer+Unit(pt/em/px)'
- resource_style_addedit_1.jsp.label.height_limit=Height format must be: Integer+Unit(pt/em/px)
- 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)
- 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)'
- resource_style_addedit_1.jsp.label.width_format_limit='The width format must be:Integer+Unit(pt/em/px) or auto'
- resource_style_addedit_for_ajax.jsp.getresourcetypefailed=Failed to obtain resource type[Id:{0}]
- resource_style_addedit_translate.jsp.fontsizeformatintunitptempx=The size of font must be:Integer+Unit(pt/em/px)
- resource_style_addedit_translate.jsp.framewidthformatbeintandunitptempx=The frame width must be: Integer+Unit(pt/em/px)
- resource_style_addedit_translate.jsp.heightformatbeintandunitptempx=Height must be:Integer+Unit(pt/em/px)
- resource_style_addedit_translate.jsp.leftspacingformatintunitptempx=Left margin format must be:Integer+Unit(pt/em/px)
- resource_style_addedit_translate.jsp.rightspacingformatintunitptempx=Ritht margin format must be: Integer+Unit(pt/em/px)
- resource_style_addedit_translate.jsp.upspacingformatintunitptempx=Top margin must be: Integer+Unit(pt/em/px)
- resource_style_addedit_translate.jsp.widthformatbeintandunitptempxauto=The width must be:Integer+Unit(pt/em/px) or auto
- resourcestyle_query.jsp.label.click_here2_alter_style_thumb=title=\'Click and mofify the style thumbnail\'
- resourcestyle_query.jsp.label.id=Flag
- resourcestyle_query.jsp.label.name=Name:
- resourcestyle_query.jsp.who_and_when_create={0}create at {1}
- right_edit.jsp.label.erroperoperator=Invalid operator type!
- right_edit.label.site=Site:
- right_edit_whole.jsp.label.invalidoperator=Invalid operator type!
- right_edit_whole.jsp.orgnotfoundexception=Not found [id = {0}] of the organization!
- right_edit_whole.jsp.rolenotfoundexception=Not found [id = {0}] of the role!
- right_edit_whole.jsp.usernotfoundexception=cannot find user [id={0}]!
- right_view.jsp.label.invalidoperator=Invalid operator type!
- right_view.label.site=Site:
- right_view_whole.jsp.label.invalidoperator=Invalid operator type!
- right_view_whole.jsp.orgnotfoundexception=cannot find group [id={0}]!
- right_view_whole.jsp.rolenotfoundexception=Do not find role [id={0}]!
- right_view_whole.jsp.usernotfoundexception=Not found [id = {0}] of the user!
- role.button.add=Create Role
- role.button.addoperation= Add >>
- role.button.appenduser=Add User
- role.button.cancelbutton=Cancel
- role.button.close=Closed
- role.button.drop=Delete Role
- role.button.dropoperation=<<Delete
- role.button.dropuser=Delete User
- role.button.modify=Modify Role
- role.button.okbutton=OK
- role.button.quitedropuser=Completely Delete User
- role.button.setright=Set Permissions
- role.label.addedit=Create/Modify Role
- role.label.crtime=Created
- role.label.cruser=Creator
- role.label.desc=Description
- role.label.drop=Delete Role
- role.label.list=Roles List
- role.label.name=Role Name
- role.label.nonsystemrole=Non-system Role
- role.label.normalmrole=Ordinary role
- role.label.positionset=Adjust the Order of Role
- role.label.positionsetrole=Adjust the Order of Role
- role.label.realname=Real Name/Unit
- role.label.roletype=Role Type
- role.label.select=Role Select
- role.label.setright=Set Permissions
- role.label.setsystemright=Set SystemRole's Rights
- role.label.siterole=Site level role
- role.label.statusnow=Current Status
- role.label.systemrole=System Role
- role.label.textcreate=Creator
- role.label.textcreatein=Date
- role.label.textdesc=Description
- role.label.textname=Name
- role.label.texttype=Type
- role.label.upper=Parent Role
- role.label.userapplytime=Activating Time
- role.label.useremail=Email
- role.label.userlist=Role User
- role.label.username=User Name
- role.label.users=User
- role.label.viewright=View permissions
- role.label.viewsysright=View SystemRole's Rights
- role.tip..quitedropuser=Completely remove the selected users, shortcut keys: C
- role.tip.add=Create Role
- role.tip.appenduser=Add User to Current Role
- role.tip.drop=Delete Current Role
- role.tip.dropuser=Delete User from Role
- role.tip.modify=Modify Current Role
- role.tip.operationlist=Operation list:
- role.tip.quitedropuser=Completely Delete Selected User
- role.tip.refresh=Refresh this page
- role.tip.rights=Right
- role.tip.selectopration=Selct from the operation list:
- role.tip.set=Set
- role.tip.setright=Set Permissions for Current Role
- role.tip.view=View
- save_outlinefields.channel.getFailed=Failed to obtain channel ID [{0}] !
- save_outlinefields.channel.locked=Channel [{0}] [{1}] is the user [{2}] is locked! You can not modify!
- save_outlinefields.noRight=You have no right to modify ID channel [{0}]!
- save_outlinefields.toomany=You choose the view of the field too much, reduce the field of choice, the set failed!
- schedule.button.add=Create Schedule Task
- schedule.button.addworker=Create Schedule Type
- schedule.button.drop=Delete Schedule Task
- schedule.button.dropworker=Delete Schedule Type
- schedule.button.modifyworker=Modify Schedule Type
- schedule.label.addedit=Create/Modify Planning Schedule
- schedule.label.crtime=Created
- schedule.label.cruser=Creator
- schedule.label.desc=Description
- schedule.label.endtime=End Time
- schedule.label.exectime=Execution Time
- schedule.label.info=Planning Schedule Info
- schedule.label.intervaltime=Interval Time
- schedule.label.list=Planning Schedule List
- schedule.label.name=Name
- schedule.label.operarg=Operation Parameter
- schedule.label.opertype=Operation Type
- schedule.label.runmode=Running Mode
- schedule.label.scheduleaddedit=Add/Modify Scheduling tasks
- schedule.label.starttime=Start Time
- schedule.label.textname=Name
- schedule.label.textnamedefault=All Planning Schedule
- schedule.tip.add=Create Planning Schedule
- schedule.tip.addworker=Create Schedule Type
- schedule.tip.drop=Delete Selected Planning Schedule
- schedule.tip.dropworker=Delete Current Schedule Type
- schedule.tip.modifyworker=Modify Current Schedule Type
- schedule.tip.refresh=Refresh Current Page
- search_config.jsp.crTime=Created
- search_config.jsp.label.belong_channel=Where the channel
- search_config.jsp.label.belong_website=belonged website
- search_config.jsp.label.channel_order=Channel order
- search_config.jsp.label.channel_type=channel_type
- search_config.jsp.label.channelDesc=Channel description
- search_config.jsp.label.channelId=the channel ID
- search_config.jsp.label.crtime=creation time
- search_config.jsp.label.cruser=Creator
- search_config.jsp.label.doctitle=Document Title
- search_config.jsp.label.keywords=keywords
- search_config.jsp.label.parent_channelId=Parent channel ID
- search_config.jsp.label.publish_address=Published Address
- search_config.jsp.label.publish_time=pubulish time
- search_config.jsp.label.save_place=Storage Directory
- search_config.jsp.label.state=status
- search_config.jsp.label.unique_channel_type=Columns that uniquely identifies.
- search_config.jsp.label.websiteId=Site ID
- search_config.jsp.no_result_ofsearch=Cannot find the search task ID[{0}]!
- search_config_dowith.jsp.cannot_find_search_task=Cannot find search task ID [{0}]!
- search_config_dowith.jsp.label.cannot_find_search_datasource=Data source is not specified!!
- search_config_dowith.jsp.label.error_param=An argument is incorrect, please ensure that incoming information efficiently Server and GateWay!
- search_config_dowith.jsp.trsgateway_notfound=cannot find ID[{0}]TRSGateway!
- search_config_dowith.jsp.trsserver_notfound=Cannot find the specified TRSServer[ID={0}]!
- search_gateway_dowith.jsp.cannot_find_search_task=Cannot find search task ID[{0}]!
- search_gateway_dowith.jsp.trsgateway_notfound=cannot find ID[{0}]TRSGateway!
- search_list.jsp.cannot_get_search_task=Article not found [{0}] a retrieval task!
- search_list.jsp.channel=Channel
- search_list.jsp.doc=document
- search_list.jsp.fail2get_logo_attr=Failed to obtain property [{0}]!
- search_list.jsp.fail2get_search_task=failed to obtain search task [{0}]!
- search_list.jsp.PageNav1=Retrieval task
- search_list.jsp.PageNav2=A
- search_server_dowith.jsp.cannot_find_search_task=Cannot find search task ID[{0}]!
- search_server_dowith.jsp.trsserver_notfound=Cannot find the specified TRSServer[ID={0}]!
- security.label.addedit=Create/Modify Security Level
- security.label.crtime=Created
- security.label.cruser=Creator
- security.label.desc=Description
- security.label.info=Security Level Info
- security.label.list=Security Level List
- security.label.name=Name
- security.label.show=Show
- security.label.value=Value
- security.tip.add=Create Security Level
- security.tip.drop=Delete Selected Security Level
- security.tip.refresh=Refresh Current Page
- security.tip.return=Return
- select_list.attribute.getFailed=Get the first [{0}] article attributes the organization failed!
- select_list.id.zero=Not found with ID [{0}] The specified user group!
- select_list.obj.not.found=Not found with ID [{0}] The specified user group!
- select_list.org.getFailed=Failed to obtain group[{0}]!
- select_list.record.attribute.getFailed=Failed to abtain record [{0}]property!
- select_list.record.getFailed=Failed to obtain record[{0}]!
- select_order.channel.notFit=The channel is not configured to effectively custom form can not be edited under the documentation!
- select_order.channel.wrongType=The channel is not a custom form channel!
- select_order.id.zero=Channel Id is 0, can not find the channel!
- select_order.obj.not.found=Can not find the channel!
- select_query.id.zero=cannot find the view ID[{0}]
- select_query.runExce=view_select_query.jsp runtime exception!
- select_query.runExces=metadbfield_select_query.jsp runtime exception!
- select_query.type=service(com.trs.components.metadata.service.MetaDataDefServiceProvider.query)The return collection is not MetaDBFields, but {0}, please confirm.
- show_search_channel.label.chnldesc=Channel name
- show_search_channel.label.chnlname=Unique name
- show_search_channel.label.chnnlid=Channel ID
- show_search_channel.label.cruser=Creator
- show_search_channel.label.latestusechannel=Recently used columns:
- show_search_channel.searchchannel=Search[{0}]for[{1}]Columns get[{2}]a:
- show_search_channel.searchchanneltatal=Were retrieved[{0}]A usable columns:
- simple_save.id.zero=InfoViewId 0, can not find the InfoView!
- simple_save.obj.not.found=InfoView can not be found!
- site_create.jsp.label.sys_have_no_prew_set_site=System without any pre-site!
- site_create.jsp.website_have_no_prew_set_site=Site [[{0}]] under no default style!
- site_create.label.noaddr=Current site does not have demo address.
- site_create.label.noimg=No picture attachments.
- site_create.label.prestyle=Preview current style
- site_create.label.selstyle=Select current style
- site_create.label.seltemp=Click the picture to select the template
- site_datatable.null=None
- site_piechartdata.null=(None)
- siterecycle_findbyid.jsp.service=service(com.trs.ajaxservice.WebSiteServiceProvider.findbyid)The return collection type is not WebSite,but{0},please confirm.
- siterecycle_findbyid.label.none=None
- siterecycle_findbyid.runtime.error=siterecycle_findbyid.jspAn exception occurs while running.
- siterecycle_query.jsp.label.runtimeexception=website_query.jsp runtime exception!
- siterecycle_query.jsp.service=Services (com.trs.ajaxservice.WebSiteServiceProvider.query) returns the object type is not WebSite, and for the {0}, please confirm.
- siteUser_list_1=Failed to get the site which's ID is [
- siteUser_list_2=] .
- siteUser_list_3=Sorry, you has no right to view the [
- siteUser_list_4=] site user.
- siteUser_list_6=Failed to get the attribute of the user [
- siteUser_list_7=] .
- specia2_1.jsp.have_noright_edit=You do not have the right to modify subject[{0}]!
- special.label.crtime=Creation time
- special.label.cruser=Creator
- special.label.ObjectId=Numbers
- special.label.specialName=Project name
- special1.jsp.label.have_noright=You do not have the right to create subject!
- special_1.jsp.have_noright_edit=You do not have the right to modify subject [{0}]!
- special_1.jsp.specialId_not_found=No subject [ID={0}] is found!
- special_1.object.not.found=Do not find the specified object[ID={0}]]!
- special_2.jsp.special_notfound=No subject ID [{0}]is found!
- special_query.jsp.label.runtimeexception=special_query.jspAn exception occurs while running!
- special_query.jsp.service=The collection type of return object to com.trs.ajaxservice.SpecialServiceProvider.query) is not Specials, but [{0}]. Please conirm.
- stat.button.addfieldmap=Create
- stat.button.cleardata_of_view=Delete Stat. Data
- stat.button.fieldmap=Field Mapping
- stat.button.generetedata_of_view=Generate Stat. Data
- stat.label.addedit_of_host=Create/Modify Stat. Category
- stat.label.addedit_of_view=Create/Modify Stat. Search
- stat.label.addedit_of_view_child=Create/Modify Sub-Search
- stat.label.atonce=Instant Stat.
- stat.label.desc_of_fieldmap=Field Description
- stat.label.desc_of_host=Category Description
- stat.label.desc_of_view=Search Description
- stat.label.drop_of_fieldmap=Delete
- stat.label.endtime=End Time
- stat.label.fieldmap=Field Mapping
- stat.label.from_of_sql=From
- stat.label.groupby_of_sql=Group By
- stat.label.host= Stat. Category
- stat.label.list=Stat. List
- stat.label.list_of_fieldmap=Field Mapping
- stat.label.list_of_host= Stat. Category List
- stat.label.list_of_view=Statistical Search List
- stat.label.location_of_fieldmap=Field Position
- stat.label.method=Stat. Strategy
- stat.label.name_of_fieldmap=Field Name
- stat.label.name_of_host=Category Name
- stat.label.name_of_view=Search Name
- stat.label.orderby_of_sql=Order By
- stat.label.select_of_sql=Select
- stat.label.selecttimearea=Time Range
- stat.label.starttime=Start Time
- stat.label.timing=Timing Stat.
- stat.label.top_of_fieldmap=First Field
- stat.label.type_of_fieldmap=Field Type
- stat.label.where_of_sql=Where
- stat.tip.add_of_host=Create Stat. Category
- stat.tip.add_of_view=Create Statistical Search
- stat.tip.cleardata_of_view=Delete Stat. Data
- stat.tip.drop_of_host=Delete Selected Stat. Category
- stat.tip.drop_of_view=Delete Selected Stat. Search
- stat.tip.generetedata_of_view=Create statistical data
- stat.tip.refresh_of_host=Refresh Current Page
- stat.tip.refresh_of_view=Refresh Current Page
- stat_include.start=Start to inquire the search statistics of user or department...
- static_common.audio=Video
- static_common.check=Auditing
- static_common.denied=Denied
- static_common.edited=Edited
- static_common.getTime.error=An error occours while obtaining time!
- static_common.getTime.exception=An exception occurs while obtaining time.
- static_common.getTime.time.exception=An exception occours while resolving statistics time
- static_common.image=Picture
- static_common.new.doc=New manuscript
- static_common.return=Redo
- static_common.sent=Published
- static_common.signed=Signed
- static_common.unknow=Unknown
- static_common.unknow.type=Unknown type
- static_common.video=Video
- static_common.word=Character
- statofchannel_list.audeo=Audio
- statofchannel_list.back=Redo
- statofchannel_list.check=Auditing
- statofchannel_list.copy=Copy
- statofchannel_list.edited=Edited
- statofchannel_list.new=New manuscript
- statofchannel_list.obj.not.found=No channel[Id={0}] is found
- statofchannel_list.pic=Picture
- statofchannel_list.quote=Quote
- statofchannel_list.sent=Published
- statofchannel_list.signed=Signed
- statofchannel_list.src=Original manuscript
- statofchannel_list.unknow=Unknown
- statofchannel_list.video=Video
- statofchannel_list.word=Character
- statresult_export_toexcel.data.statistic.noRight=You do not have the right to view data statistics list!
- statresult_export_toexcel.jsp.fail2get_data=Failed to obtain the[{0}]statistics data!
- statresult_export_toexcel.jsp.thedata=The [{0}] statistics data is not found!
- statresult_export_toexcel.jsp.thedata_property=Failed to obtain the [{0}] attribute of statistics data
- statresult_export_toexcel.view.not.found=No statistics view ID[{0}] is found!
- status.Accepted=Accepted
- status.Accepted.Desc=Has been transferred to relevant departments.
- status.Approved=Approved
- status.Approved.Desc=The document is to be published.
- status.Checking=Checking
- status.Checking.Desc=The document is approved and can be published.
- status.Edited=Edited
- status.Edited.Desc=The document is edited.
- status.New=New
- status.New.Desc=The document is recently collected but not edited yet.
- status.Published=Published
- status.Published.Desc=The document is already published.
- status.Redo=Redo
- status.Redo.Desc=The document needs further modification.
- status.Reject=Reject
- status.Reject.Desc=The document is unqualified and is thus rejected.
- status.To.be.Accepted=To be Accepted
- status.To.be.Accepted.Desc=Department has not been assigned.
- status.Draft=Draft
- status.Draft.Desc=The document has not formally submitted.
- status.New.STATUS=New Status
- status.Edited.STATUS=Edited Status
- status.Redo.STATUS=Redo Status
- status.Published.STATUS=Published Status
- status.Reject.STATUS=Reject Status
- status.Approved.STATUS=Approved Status
- status.Checking.STATUS=Checking Status
- status.VerifyAgain=Verify Again
- status.VerifyAgain.STATUS=Verify Again Status
- status.VerifyCancel=Verify Cancel
- status.VerifyCancel.STATUS=Verify Cancel Status
- style_basic_info_addedit.id.zero=Failed to obtain page style [Id{0}]!
- style_basic_info_addedit.noRight=You do not have the right to modify style [{0}]!
- style_customize.id.zero=Failed to obtain page style[Id{0}]!
- style_customize.input=Please input css text...
- style_customize.noRight=You do not have the right to modify style [{0}]!
- style_name_addedit.id.zero=Failed to obtain page style[Id={0}]!
- style_name_addedit.newStyle.noRight=You do not have the right to create style!
- style_name_addedit.noRight=You do not have the right to modify style [{0}]!
- style_other_dom_addedit.id.zero=Failed to obtain page style[Id{0}]!
- style_other_dom_addedit.noRight=You do not have the right to modify style [{0}]!
- stylename_used_info.jsp.systemlevel=System level->
- syn_document.jsp.label.involve_doc_nums=Totality [<b style='color:red;'>{0}</b>]<br>) documents are related.
- syn_document.jsp.label.no_appoint_siteorchannel=To synchronize the document does not specify the site or channel ID [siteIds / channelIds]
- syn_document.jsp.label.not_handle_nums=You do not have the right to deal<br> with [<b style='color:red;'>{0}</b>]
- syn_document.jsp.label.syn_doc_finished=Document synchronization operation is completed.
- sysconfig.label.addedit=Create/Modify System Config
- sysconfig.label.content=Content
- sysconfig.label.desc=Description
- sysconfig.label.info=System Config Info
- sysconfig.label.isencrypted=Encrypt or Not
- sysconfig.label.list=System Config List
- sysconfig.label.name=Name
- sysconfig.label.type=Type
- sysconfig.tip.add=Create System Config
- sysconfig.tip.drop=Delete Selected System Config
- sysconfig.tip.refresh=Refresh Current Page
- sysconfig.tip.return=Return
- syssecurekey=Security Key Name
- syssecurekey.agi=Key Algorithm
- syssecurekey.buton.export=Export Public Key
- syssecurekey.buton.exportpri=Export Secure Key
- syssecurekey.buton.remove=Delete
- syssecurekey.label.list=System Key List
- syssecurekey.lable.add=Add System Key
- syssecurekey.len=Key Length
- syssecurekey.tip.add=Add System Key
- syssecurekey.tip.export=Export Public Key
- syssecurekey.tip.exportpri=Export Key
- syssecurekey.tip.remove=Delete Key
- system.button.add=New
- system.button.addgroup_of_include=Create User Group
- system.button.addrole_of_include=Create Role
- system.button.adduser_of_include=Create User
- system.button.allpublish=Completely Publish
- system.button.auth=User Group
- system.button.cancel=Cancel
- system.button.channel=Site Admin
- system.button.close=Close
- system.button.Collaboration=Collaboration
- system.button.confirm=OK
- system.button.cooperation=Collaboration
- system.button.copy=Copy
- system.button.copytoclipboard=Copy to Clipboard
- system.button.deliverydocument=Deliver Document
- system.button.document=Document Admin
- system.button.drop=Delete
- system.button.dropall_of_include=Delete All
- system.button.dropdocument=Delete Document
- system.button.export=Export
- system.button.finish=Finish
- system.button.import=Import
- system.button.increasepublish=Increased Publish
- system.button.inserttocursor=Insert to Cursor
- system.button.integrate=Extended Function
- system.button.laststep=Previous
- system.button.modify=Modify
- system.button.more=More
- system.button.moredocument=More Documents
- system.button.move=Move
- system.button.mustfill=*
- system.button.next=Next
- system.button.ok=OK
- system.button.oncancel=Cancel
- system.button.onok=OK
- system.button.onsave=Save
- system.button.onSaveAndSetRight=Save and enter authority Settings
- system.button.person=Personal Services
- system.button.previous=Previous
- system.button.publish=Publish
- system.button.publishmanage=Publish Management
- system.button.publishmonitor=Publish Monitor
- system.button.quickpublish=Fast Publish
- system.button.recycle=Recycle Bin
- system.button.refer=Refer
- system.button.refresh=Refresh
- system.button.reset=Reset
- system.button.restore=Restore
- system.button.return=Return
- system.button.save=Save
- system.button.scan=Preview
- system.button.search=Search
- system.button.showallrole=Show All Roles
- system.button.shownormrole=Only shows common role
- system.button.showsiterole=Display only site level role
- system.button.showsysrole=Show System Role
- system.button.stat=Stat.
- system.button.submint=Submit
- system.button.system=System Config
- system.button.template=Template Admin
- system.button.test=Test
- system.label.addedit=Create/Modify Contact
- system.label.adjustorder=Adjust Order
- system.label.all=All
- system.label.and=and
- system.label.belongchannel=Channel
- system.label.channel=Channel
- system.label.config_of_locale=Resource Config
- system.label.copy=Copy
- system.label.datapath=Save Path
- system.label.defaultindextemplate=Default Homepage Template
- system.label.defaultoutlinetemplate=Default Outline Template
- system.label.delete=Delete
- system.label.desc_of_include=Description
- system.label.detailfileext=Content Page File Extended Name
- system.label.detailtemplate=Content Template
- system.label.drop=Delete
- system.label.edit=Modify
- system.label.end_of_character_max=bytes
- system.label.end_of_character_min=bytes
- system.label.endtime=End Time
- system.label.exectime=Execution Time
- system.label.filerule=Publish File Rule
- system.label.flowcondition=Flowing Situation
- system.label.friday=Friday
- system.label.from=from
- system.label.help=Help
- system.label.hour=Hour
- system.label.index=Homepage
- system.label.indextemplate=Homepage Template
- system.label.interval=Interval Time
- system.label.language=Language
- system.label.list=List
- system.label.logout=Log Out
- system.label.minute=Minute
- system.label.modify=Modify
- system.label.monday=Monday
- system.label.more_times_day=Multi-Run a day
- system.label.mustfill=*
- system.label.myaddresslist=My Contacts List
- system.label.mycalendar=My Calendar
- system.label.needmanage=My Documents need to be handled
- system.label.nesting=Nesting Template
- system.label.no=No
- system.label.nodefine=Undefined
- system.label.number=Order Number
- system.label.one_time_day=Run Once Daily
- system.label.one_time_only=Run Once
- system.label.online=Online Users
- system.label.operate=Operation
- system.label.operate_of_include=Operation
- system.label.operate_of_include.cancel=Cancel
- system.label.operate_of_include.confirm=OK
- system.label.order=Order
- system.label.otherindextemplate=Other Homepage Template(s)
- system.label.otheroutlinetemplate=Other Outline Template(s)
- system.label.outlinefilename=Listing Page Name
- system.label.outlinetemplate=Outline Template
- system.label.pageencoding=Page Coding
- system.label.preview=Preview
- system.label.property=Properties
- system.label.publishschedule=Planning Publish
- system.label.publishset=Publish Settings
- system.label.publishsetview=Publish Settings
- system.label.publishstatus=Publish Status
- system.label.publishtemplate=Publish Template
- system.label.quickdoor=Fast Channel
- system.label.recentaccess=Recently Accessed Channels
- system.label.recentmanage=My Recent Working Documents
- system.label.refresh=Refresh
- system.label.reload=Reload
- system.label.reroleorder=Adjust Order
- system.label.right=Permission
- system.label.rootdomain=Site HTTP(S)
- system.label.saturday=Saturday
- system.label.select=Select
- system.label.selectall=Select All
- system.label.seqnum=No.
- system.label.sequence=No.
- system.label.settemplate=Set Template
- system.label.show=View
- system.label.site=Site
- system.label.sitenavi=Site Navigation
- system.label.source=Source
- system.label.start_of_character_max=Max
- system.label.start_of_character_min=Min
- system.label.starttime=Start Time
- system.label.status=Status
- system.label.statuscandopub=The status of publishable documents
- system.label.statusidaftermodify=The status of published document that edited
- system.label.sunday=Sunday
- system.label.template=Template
- system.label.thursday=Thursday
- system.label.title=Title
- system.label.to=to
- system.label.tuesday=Tuesday
- system.label.view=View
- system.label.view.infoview=Form
- system.label.view.infoview.unit=item
- system.label.wednesday=Wednesday
- system.label.yes=Yes
- system.radiobox.no=No
- system.radiobox.yes=Yes
- system.tip.add=Create Document
- system.tip.addgroup_of_include=Create User Group
- system.tip.addrole_of_include=Create Role
- system.tip.adduser_of_include=Create User
- system.tip.allpublish=Completely Publish Selected Channel
- system.tip.close=Close
- system.tip.closepage=Close Page
- system.tip.copy=Copy selected Document(s) to a new channel
- system.tip.deliverydocument=Deliver Selected Document(s)
- system.tip.drop=Delete Selected Document(s) to Recycle Bin
- system.tip.dropall_of_include=Del All Settings
- system.tip.dropdocument=Del Selected Document(s)
- system.tip.increasepublish=Increased Publish Selected Channel
- system.tip.modify_of_locale=Modify Resource Config
- system.tip.more=Enter Document Manage List
- system.tip.moredocument=Enter My Working Documents List
- system.tip.move=Move selected document(s) to a new Channel
- system.tip.publish=Publish Selected Document(s)
- system.tip.quickpublish=Fast Publish Selected Channel
- system.tip.refer=Refer Forward Selected Document(s) to new Channel
- system.tip.refresh=Refresh Current Page
- system.tip.return=Return to last page
- systemright_edit.jsp.havenoright=Sorry, you don't have permission to set system role[{0}]!
- systemright_edit.jsp.setrolesright=Set <font color='red'>[{0}]</font> permission
- systemright_edit_dowith.jsp.label.fail2setright=failed to set permission!
- systemright_edit_dowith.jsp.label.rightvalue=Setting the permissions. Role, RightValue:
- task_test.jsp.trsgateway_notfound=Do not find ID={0}TRSGateway!
- task_test.jsp.trsserver_notfound=Cannot find the specified TRSServer[ID={0}]!
- template.arg.query.booleanfalse=No
- template.arg.query.booleantrue=Yes
- template.button.cancelselected=Cancel Selected Template
- template.button.check=Template Verification
- template.button.drop=Delete
- template.button.export=Export
- template.button.synchifile=Sync Attachments
- template.label.add=Create
- template.label.addedit=Template Edit
- template.label.belongchannel=Config Relation
- template.label.clew=Tip: Click to preview it
- template.label.content=Template Content
- template.label.copy_of_template=Template Copy
- template.label.crtime=Created:
- template.label.cruser=Creator:
- template.label.desc=Description
- template.label.desc_of_template=Template Description
- template.label.detailtempext=Detail Template Publish Extended Name
- template.label.detailtemplate=Content Template
- template.label.documentId=Document ID
- template.label.folder=Location:
- template.label.import=Import
- template.label.list=Templates List
- template.label.location=Location
- template.label.name=Name
- template.label.name_of_template=Template Name
- template.label.outlinetempext=Outline Template Published Extended Name
- template.label.outlinetemplate=Outline Template
- template.label.outputfilename=Published File Name
- template.label.settemplate=Set Template
- template.label.show_of_nested=View Nesting Template
- template.label.tempext=File Extended Name
- template.label.templateId=Template ID:
- template.label.tempmode=Template type:
- template.label.tempName=Template Name:
- template.label.type=Type
- template.label.type_of_template=Template Type
- template.tip.add=Create Template
- template.tip.cancelselected=Cancel Selected Template(s)
- template.tip.check=Verify Site Template
- template.tip.drop=Delete Template(s)
- template.tip.export=Export Template(s)
- template.tip.import=Import Template(s)
- template.tip.name=Template Name
- template.tip.synchifile=Redistribute Template Attachments
- template_addedit.label.edit=Modify Template
- template_addedit.label.new=Create Template
- template_addedit.label.temp= Template
- template_addedit_label_1=The object does not exist (Type=
- template_addedit_label_10=The parameter type is invalid. [
- template_addedit_label_2=The object (
- template_addedit_label_3=) is not a folder.
- template_addedit_label_4=An exception occurs on the site or channel while obtaining the template.
- template_addedit_label_5=Failed to preview the template.
- template_addedit_label_6=The parameters of the template with the type of
- template_addedit_label_7=are not found.
- template_addedit_label_8=The values of the enumerated parameters do not match the description quantity.
- template_addedit_label_9=The values of the enumerated parameters must be the defaults.
- template_arg_query.jsp.label.runtimeexception=template_arg_query.jsp runtime exception!
- template_findbyid.jsp.channel={0} [Channel - {1}]
- template_findbyid.jsp.document={0}[document-{1}]
- template_findbyid.jsp.file={0}[file-{1}]
- template_findbyid.jsp.service=Services (com.trs.ajaxservice.TemplateServiceProvider.findbyid) returns the object type is not Template, and for [{0}], please confirm.!
- template_findbyid.jsp.unknow=unknown[{0}]
- template_findbyid.jsp.website={0} [site - {1}]
- template_findbyid.label.channel=Channel
- template_findbyid.label.detail=Detail template
- template_findbyid.label.doc=Document
- template_findbyid.label.entityPath=Entity Path:
- template_findbyid.label.infoviewprint=Form to print
- template_findbyid.label.nested=Nesting template
- template_findbyid.label.outline=Outline template
- template_findbyid.label.unknow=Unknown
- template_findbyid.label.usedindetail=Use as detail template.
- template_findbyid.label.usedinfirst=Use as outline template.
- template_findbyid.label.usedinother=Use as other outline templates.
- template_findbyid.label.website=Site
- template_findbyid.runtime.error=template_findbyid.jspAn exception occurs while running.
- template_query.excep=template_query.jspAn exception occurs while running!
- template_query.jsp.label.runtimeexception=template_query.jsp runtime exception!
- template_query.jsp.service=Services (com.trs.ajaxservice.TemplateServiceProvider.query) returns the object set type is not Templates, and for [{0}], please confirm!
- template_query.jsp.unknow=Unknown[{0}]
- template_query.label.detail=Detail
- template_query.label.infoviewprint=Infoview print
- template_query.label.nested=Nesting
- template_query.label.outline=Outline
- template_query.label.unknow=Unknown
- template_query.type=The collection type of return object to service(com.trs.ajaxservice.TemplateServiceProvider.query) is not Templates, but [{0}]. Please conirm.
- template_select_query.jsp.found=service(com.trs.ajaxservice.TemplateServiceProvider.query)The return object type collection is not Templates,but[{0}],please confrim.!
- template_select_query.jsp.label.runtimeexception=template_query.jspruntime exception!
- 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.
- template_selquery.jsp.unknow=unknown[{0}]
- template_selquery.label.detail=Detail
- template_selquery.label.nested=Nesting
- template_selquery.label.outline=Outline
- template_selquery.label.unknow=Unknown
- template_set.noRight=You do not have the right to modify subject [{0}]!
- test.jsp.found=An error occours while generating default parameter of layout!Layout info:ratio=[{0}]ratiotype={1}!
- test.name=test name
- test_exist.getId.failed=Channel [ID={0}] cannot be obtained!
- test_exist.noId=No incoming Site ID [siteid] or ChannelID [channelid]
- thumb_query.not.administrator=You are not an administrator, there is no rights management view list!
- thumb_query.runExce=metadbtable_thumb_query.jsp runtime exception!
- thumb_query.type=service(com.trs.components.metadata.service.MetaDataDefServiceProvider.query)The return type is notMetaViews,but {0},please confirm.
- tmetarecdata_query.jsp.service=service(com.trs.components.metadata.service.MetaDataCenterServiceProvider.query)The return type is not MetaViewDatas,but[{0}],please confirm.!
- trace_document.jsp.label.success=Success
- trace_document.jsp.label.success.fail=Failure
- trace_document.jsp.notfindspecialdoc=Did not find the specified document! [ID = {0}]
- trace_document.jsp.sorrynottracecurrdoc=Sorry, you do not track the current file![{0}]
- trace_document.jsp.tracedocuse=Tracing Document [{0}]
- trace_document.label.deleted=Deleted
- trace_document.label.topub=Check the address after publication
- trace_document.label.datetimeformat=yyyy-MM-dd hh:mm
- trace_document.label.info=Document {doc} was copied to channel {channel} by {user} in {time}. Its current status is {status}.
- tree.label.bianhao=ID:
- tree.label.biaoshi=Unique Name:
- tree.label.crtime=Created:
- tree.label.cruser=Creator:
- tree_html_creator.jsp.createtime=Construct the user [{0}] user group tree by using the time to [{1}] ms!
- treenode_html_make.jsp.label.channel_not_exist=Specified channel [{0}] does not exist!
- treenode_path_make.jsp.channelId_notfound=cannot find [ID={0}]!
- treenode_path_make.jsp.siteId_notfound=Site [ID = {0}] not found!
- treenodes_children_html_make.jsp.can_not_recognise=The type [{0}]cannot be identified[{0}]!
- treenodes_children_html_make.jsp.channel_notfound=Specified channel [0] does not exist!
- treenodes_children_html_make.jsp.label.data_not_agreed=data inconsistencies with agreed!
- treenodes_html_make.jsp.label.fail2init_childsite_obj=Sub-site initialization failed!
- treenodes_html_make.jsp.label.fail2init_obj=Initializes the object failed!
- trsserver_config.jsp.label.choose=--Please select--
- trsserver_query.jsp.label.confirm=,Please confirm.
- trsserver_query.jsp.label.runtimeexception=trsserver_query.jsp runtime exception!
- trsserver_query.jsp.label.service=Service(com.trs.ajaxservice.viewDocumentServiceProvider.trsQuery)The return of the ArrayList object collection types, and not for
- trsserver_show.jsp.trsserver_record_notfound=Cannot find the specified TRSServer[ID={0}]!
- type_id.attribute.wrong=The attribute value is incorrect.Failure
- type_id.error=Incorrect
- type_id.every=NO. ({0})
- type_id.gailan=Outline: {0}
- type_id.pubFaile=Failed to pick up and display the publishing error task !
- type_id.total=Total ({0}) of
- type_id.unknow=unknown
- type_id.unknowSite=unknown Site
- type_id.xilan=Detailed:{0}
- ublic_processor.logging.error=The user not logged in or logged out!
- uder.select.list.retimeload=Loading overtime, please refresh.
- upload_office_doc.jsp.forbid_upload_file_type=Systems prohibit the uploading of [{0}] format!
- upload_office_doc.jsp.label.fail2create_digital_officeservice=Intelligent created OfficeService service request failed.
- upload_office_doc.jsp.label.please_check_params= Please check parameter is not configured correctly or service is not started.
- upload_office_doc.jsp.sysdenyuploadformfile=The system forbid to upload format {0}!
- upload_office_doc.jsp.zipfileuncompressfailure=Zip File decompression failed!
- user.button.adduser=Create User
- user.button.dropuser=Delete User
- user.button.forbiduser=Deactivate Account
- user.button.passwordtest=Weak passwords user testing
- user.button.passwordtestdesc=Detection system exists weak passwords users
- user.button.quitedropuser=Completely Delete User
- user.button.reguser=Activate Account
- user.button.restore=Restore User
- user.button.setright=Setting Permissions
- user.button.showalluser=Show that all users
- user.label.addedit=Create/Modify User
- user.label.address=Address
- user.label.affirmpassword=Confirm Password
- user.label.allwebsite=All website
- user.label.applytime=Activating Time
- user.label.belonggroup=Group
- user.label.belongrole=Role
- user.label.checknewpassword=Confirm the new password
- user.label.edituserinfo=Modify User Information
- user.label.email=Email
- user.label.info=User Information
- user.label.inputnewpassword=Enter a new password
- user.label.inputnewpasswordbyhand=Manually enter a new password
- user.label.list=Users List
- user.label.mobile=Mobile
- user.label.newpassword=New Password
- user.label.nickname=Nickname
- user.label.numutin=
- user.label.oldpassword=Old Password
- user.label.password=Password
- user.label.passwordtestresult=Weak passwords user test results
- user.label.pwstrength=Password strength
- user.label.pwstrengthDesc=Understand what password strength? How to set up security password?
- user.label.realname=Real Name
- user.label.registertime=Register Time
- user.label.resetpassword=Reset Password
- user.label.resetpassword1=Permission Management
- user.label.resetpasswordinfo=Reset Registration Info
- user.label.resettosystempassword=To reset the system default password
- user.label.rule1_of_username=1. The user name consists of the letters, numbers, dots, and underscores (_).
- user.label.rule2_of_username=2. The length of the user name ranges from 3 to 20 bytes.
- user.label.rule3_of_username=3. The user name cannot contain special characters such as the space and comma.
- user.label.rule4_of_username=4. System and admin are the user names reserved by the system.
- user.label.rule_of_username=The user name rules are as follows
- user.label.select=Select User
- user.label.specialrole=Specific role
- user.label.statusnow=Current Status
- user.label.systemrole=System role
- user.label.telephone=Telephone
- user.label.unit=items
- user.label.user=user
- user.label.userfanye=User
- user.label.username=User Name
- user.tip.adduser=Create User
- user.tip.dropuser=Delete Current User
- user.tip.forbiduser=Deactivate Current User Account
- user.tip.quitedropuser=Completely Delete Current User
- user.tip.refresh=Refresh
- user.tip.reguser=Activate Current User Account
- user.tip.restore=Restore Current User
- user.tip.setright=Set Permissions to Current User, shortcut keys: N
- user_add_to_site=Add User to Site Page
- user_bonus_stat.null=None
- user_datatable.total.null=None
- user_doc_stat.audio=Audio
- user_doc_stat.back=Redo
- user_doc_stat.check=Auditing
- user_doc_stat.copy=Copy
- user_doc_stat.department=Department
- user_doc_stat.edited=Edited
- user_doc_stat.fgl=Filen volum
- user_doc_stat.image=Picture
- user_doc_stat.newdoc=New manuscript
- user_doc_stat.no=None
- user_doc_stat.num=Sequence number
- user_doc_stat.origin=Original manuscript
- user_doc_stat.quote=Quote
- user_doc_stat.sent=Published
- user_doc_stat.signed=Signed
- user_doc_stat.user=User name
- user_doc_stat.user.fgl=Statistics list of filen volume
- user_doc_stat.video=Video
- user_doc_stat.word=Character
- user_group_include.org=of group[<span class=\"detail-hostname\">{0}</span>]
- user_group_include.user=User[<span class=\"detail-hostname\">{0}</span>]
- user_piechartdata.jsp.have_no_data=(None)
- user_remove_fail=Failed to get the user collection.
- user_remove_from_site=Reload the Configuration of the current page.
- user_select_list.jsp.getrecord=Get the first ["{0}"] records failed!
- user_select_list.jsp.getrecordattr=Failed to obtain record ["{0}"] property !
- user_trendchartdata_include.start=Start to inquire search and statistics of user or departmrnt
- userlogininfo_stat.null=None
- validate_dir_file.label.noValidRoot=The specified directory is invalid.
- video.label.crtime=Creation Time
- video.label.cruser=Creator
- view_oper_set.auth.label.noviewperssion=The new mode is not allowed to view/set members can visit and operate!Type:[{0}] Id:[{1}]
- view_oper_set.jsp.objnotfound=your specified object is invalid![ObjType={0}, ObjId={1}]
- view_oper_set.jsp.objnotfound_a=The object type [ObjType={0}] is not supported!
- view_oper_set_dowith.auth.label.noviewperssion=the new mod is not allowed to view/set enterable and operable member!Type:[{0}] Id:[{1}]
- view_to_html.form.getFailed=Failed to obtain customized list ID [{0}]!
- view_to_html.view.getFailed=For ID [{0}] custom form view failed!
- viewclassinfo.jsp.stitle=Name: {0} \ n creator: {1} \ n create time: {2}
- viewclassinfo.label.crtime=Created
- viewclassinfo.label.cruser=Creator
- viewclassinfo.label.desc=Name
- viewclassinfo.label.objId=ID
- viewdata_detail.jsp.channelnotfound=Did not find the specified channel! [ID = {0}}]
- viewdata_detail.jsp.label.involve_doc_noexists=related documents is invalid!
- viewdata_detail.jsp.label.runtimeexception=metaviewdata_query.jsp runtime exception!
- viewdata_detail.jsp.label.usernotlogin=User not logged in or logged out?
- viewdata_detail.jsp.viewdatanotfound=View of the specified data object specified is not found! [ID = {0}]
- viewDocument.label.crtime=Creation Time
- viewDocument.label.cruser=Creator
- viewDocument.label.docId=Document ID
- ViewDocument.label.DocId=Document ID
- viewfield_position_set.jsp.adjust_order=Adjust order of field <font color='blue'>[{0}]</font>
- viewfield_position_set.jsp.field_not_found=Not found with ID [{0}] of the field!
- viewfield_position_set.jsp.view_not_found=cannot find view ID [{0}]!
- 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.
- watermark.label.crtime=Creation Time
- watermark.label.cruser=Creator
- watermark_addedit.jsp.watermark_notfound=Cannot find watermark ID [{0}]!
- watermark_findbyid.jsp.jsp.service=Services (com.trs.ajaxservice.WatermarkServiceProvider.findbyid) returns the object type is not Watermark, and for [{0}], make sure!
- watermark_findbyid.jsp.jsp.website_notfound=No site ID [{0}] is found
- watermark_findbyid.jsp.label.runtimeexception=watermark_findbyid.jspruntime exception!
- watermark_query.jsp.found=service(com.trs.ajaxservice.WatermarkServiceProvider.queryThe return collection is not Watermarks, but [{0}], please confirm.
- watermark_query.jsp.label.runtimeexception=watermark_query.jspruntime exception!
- watermark_query.jsp.service=The collection type of return object to service(com.trs.ajaxservice.WatermarkServiceProvider.query) is not Watermarks, but [{0}]. Please conirm.
- watermark_thumb_query.jsp.found=service(com.trs.ajaxservice.WatermarkServiceProvider.query)The return object is not MetaDBFields, but {0}, please confirm.!
- watermark_thumb_query.jsp.label.runtimeexception=watermark_query.jspRuntime exception!
- 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.
- wcm.auth.group.tree.errorinfo=Cannot find the specified group [
- wcm.auth.group.tree.errorinfo1=] not found.
- wcm.auth.group.tree.gouzaouser=Construct User Group [
- wcm.auth.group.tree.gouzaousermisecond=] millisecond.
- wcm.auth.group.tree.gouzaousertime=] Group tree takes time [
- wcm.auth.group.tree.userlist=User
- wcm.auth.group.tree.userorglist=User Group
- wcm.auth.group.tree.userzu=User Group [
- wcm.group.select.index.lable.title=User Select Page
- wcm.group.select.list.desc=Description
- wcm.group.select.list.huoqudi=Get the [
- wcm.group.select.list.label.nofoundorg=].
- wcm.group.select.list.label.nofoundorgid=Fail to find User Group by ID= [
- wcm.group.select.list.label.reloadouttime=Loading page times out, please refresh.
- wcm.group.select.list.name=Name
- wcm.group.select.list.search=Search
- wcm.group.select.list.selectall=Select All
- wcm.group.select.list.zuzhi=Group
- wcm.group.select.list.zuzhige=
- wcm.group.select.list.zuzhishibai=] error.
- wcm.select.index.label.framenameerro=Wrong Frame.
- wcm.select.index.label.selectjuese=Select Role
- wcm.select.index.label.selectorg=Select User Group
- wcm.select.index.label.selectuser=Select User
- wcm.select.index.label.title=Invalid type
- wcm.select.index.label.userororg=Select User/Group
- wcm.select.index.label.wuxiaoobj=Invalid object type.
- wcm.selected.list.label.selecteduser=Selected
- wcm.selected.list.label.title=Selected List
- wcm.user.select.index.label.title=User Select Page
- wcm.user.select.left.label.title=User Select Tree
- wcm.user.select.list.label.huoqudi=Error to get [
- wcm.user.select.list.label.jiluarrterro=] record properties.
- wcm.user.select.list.label.nofoundorg=].
- wcm.user.select.list.label.nofoundorgid=Fail to find User Group by ID= [
- wcm.user.select.list.label.reloadouttime=Loading page times out, please refresh.
- wcm.user.select.list.label.selectall=All
- wcm.user.select.list.label.tiaojiluerro=] Error.
- wcm.user.select.list.label.title=User Select Page
- wcm.user.select.list.label.truename=True Name
- wcm.user.select.list.label.unitge=Number
- wcm.user.select.list.label.user=User
- wcm.user.select.list.label.username=User Name
- wcm.user.select.noleft.label.title=User Select Page
- website.button.addchannel=Create Channel
- website.button.allpublish=Completely Publish
- website.button.contentlink=Hot Words
- website.button.drop=Delete
- website.button.editionconfig=Version Config
- website.button.export=Export Site
- website.button.extendfield=Extended Field
- website.button.ftpmanage=FTP Management
- website.button.groupadd=Add
- website.button.groupdrop=Delete
- website.button.groupmanage=Site Group Admin
- website.button.increasepublish=Increased Publish
- website.button.info=Info
- website.button.manage=Site Maintenance
- website.button.modify=Modify
- website.button.modify_of_config=Modify
- website.button.preview=Preview
- website.button.publishdistribution=Publish Distribution
- website.button.publishoption=Advanced Publish
- website.button.publishproperty=Publish Properties
- website.button.quickpublish=Fast Publish
- website.button.quitedrop=Completely Delete
- website.button.recycle=Recycler
- website.button.restore=Restore
- website.button.roleadd=Add
- website.button.roledrop=Delete
- website.button.setright=Set Permissions
- website.button.similar=Analogous Create
- website.button.useradd=Add
- website.button.userdrop=Delete
- website.button.usergroupmanage=User Group Admin
- website.button.usermanage=Manage Site Users
- website.label.addedit=Create/Modify Site
- website.label.applytime=Activating Time
- website.label.autobakconfig=Auto save Document Version Config
- website.label.autosave=Auto Save
- website.label.baseinfo=Base Info
- website.label.belongchannel_of_recycle=Channel
- website.label.canpublish=Published Document Status
- website.label.channelname_of_recycle=Template Name
- website.label.channelrecycle=Channel Recycler
- website.label.createfrom=Site Analogously Create
- website.label.creator=Creator
- website.label.crtime=Created
- website.label.cruser=Creator
- website.label.datapath=Save Path
- website.label.desc=Site Description
- website.label.detailpage=Detail Page
- website.label.editionconfigure=Version Config
- website.label.email=Email
- website.label.explain=Tips: Click to enter Create/Modify template page
- website.label.export=Export Site
- website.label.extendname=Extended Name
- website.label.filename=File Name
- website.label.folder=Folder
- website.label.groupcrtime=Creation Time
- website.label.groupdesc=Group Description
- website.label.groupemail=Group Email
- website.label.grouplist=Site Group Admin
- website.label.groupname=Group Name
- website.label.http=Site HTTP
- website.label.id=Site ID
- website.label.import=Import Site
- website.label.importchild=Do you want to import child node(s)?
- website.label.importrelated=Do you want to export related objects?
- website.label.indexpage=Homepage
- website.label.indextemplate=Homepage Template
- website.label.name=Site Name
- website.label.name_of_createfrom=Create Site Name
- website.label.number=Order Number
- website.label.outlinepage=Outline Page
- website.label.password=Password
- website.label.publishfilename=Publish File Name
- website.label.publishplan=Arranged Publish
- website.label.publishproperty=Publish Properties
- website.label.realname=Real Name
- website.label.recycle=Site Recycler
- website.label.recyclebelongchannel=Owner Channel
- website.label.recylesitename=Site Name
- website.label.related_of_createfrom=Do you also want to create templates and extended fields of site?
- website.label.rolecrtime=Creation Time
- website.label.roledesc=Role Description
- website.label.rolelist=Site Role Admin
- website.label.rolename=Role Name
- website.label.server=Server
- website.label.showname=Show Name
- website.label.siteid=Site ID
- webSite.label.siteid=Site ID
- website.label.sitename=Unique Name
- website.label.statusedited=Published Document Status after Editing
- website.label.statusnow=Current Status
- website.label.userlist=Manage Site User
- website.label.username=User Name
- website.label.websiteId=ID
- website.lable.set_of_publish=Set Channel Publish Properties
- website.message.allowsave=Please select allowed document saved status
- website.message.autobakconfig=Document Version Auto Save Config
- website.message.autocreate=auto create by program
- website.message.autosave=Save Option
- website.message.changestatussave=Auto save Document to Document Lib after Edit
- website.message.createfromwait=Executing Analogously Creation, please wait........
- website.message.editsave=Auto Save Document to Document Version Lib after Modification
- website.message.export=Exporting Site, please wait........
- website.message.import=Support XML,ZIP files
- website.message.importwait=Importing Site, please wait......
- website.message.needupload=File need to upload
- website.message.pubsave=Auto save document to version library after publishing
- website.object.not.found=Find no ID for {0} site
- website.tip.addchannel=Add Channel in Current Site
- website.tip.allpublish=Completely Publish Site
- website.tip.drop=Delete Current Site
- website.tip.export=Export Site
- website.tip.groupadd=Add User to Current Site
- website.tip.groupdrop=Delete User Group from Current Site
- website.tip.increasepublish=Increased Publish
- website.tip.info=Show Site Properties
- website.tip.modify=Edit Site Properties
- website.tip.modify_of_config=Edit Site Version Config
- website.tip.preview=Preview Site Published Effect
- website.tip.propublish=Publish Advanced Option
- website.tip.quitedrop=Completely Delete Selected Site(s)
- website.tip.refresh=Refresh Current Page
- website.tip.restore=Restore Selected Site
- website.tip.roleadd=Add Role to Current Site
- website.tip.roledrop=Delete Role from Current Site
- website.tip.setright=Set Current Channel Permissions
- website.tip.similar=Create Site from exist Site
- website.tip.useradd=Add User to Current Site
- website.tip.userdrop=Delete User from Current Site
- website_add_edit_init.jsp.fail2build_right_info=Structure [{0}] permissions information!
- website_addedit.label.lock=] you can't edit.
- website_addedit.label.none=None
- website_addedit.label.user=] is locked by user [
- website_addedit.label.website=website [
- website_addedit_init.label.none=None
- website_create.jsp.label.sys_no_prew_website=System without any pre-site!
- website_create.jsp.obj_notfound=No preinstall style in site [{0}]!!
- website_findbyid.jsp.service=service(com.trs.ajaxservice.WebSiteServiceProvider.findbyid)The return type is not WebSite,but [{0}],please confirm.
- website_findbyid.label.none=None
- website_findbyid.runtime.error=website_findbyid.jspAn exception occurs while running.
- website_query.jsp.service=Failed to construct [{0}]permission!
- website_thumb_query.jsp.fail2create_right_info=Structure [{0}] permissions information!
- websiteroot_findbyid.label.imgsitetype=Picture Library
- websiteroot_findbyid.label.msg=Message
- websiteroot_findbyid.label.resource=Resource Library
- websiteroot_findbyid.label.videositetype=Video Library
- websiteroot_findbyid.label.wordsitetype=Library
- websiteroot_findbyid.label.worklist=My worklist
- websiteroot_findbyid.label.xiezuo=Collaboration Services
- websiteroot_findbyid.label.xiezuoservice=Collaboration services
- widget.label.chnlname=Resources style name
- widget.label.crtime=Creation time
- widget.label.cruser=Creator
- widget.label.masterId=Numbers
- widget.label.mname=Motherboard name
- widget.label.websiteId=Numbers
- widget_addedit.build.noRight=You do not have the right to create resource.
- widget_addedit.modify.noRight=You do not have the right to modify resource.
- widget_addedit.widget.label.chnlname=resource style name
- widget_query.widget.label.chnlname=resource name
- widget_select_query.jsp.widget.label.chnlname=resource name
- widgetparameter_addedit.create.noRight=You do not have the right to create resource variable.
- widgetparameter_addedit.modify.noRight=You do not have the right to modify resource variable.
- widgetparameter_query.no=No
- widgetparameter_query.null=Variable type object is null.
- widgetparameter_query.yes=Yes
- widgetparameter_set..id.zero=The Widget object [Id={0}] is not found
- widgetparameter_set.noeffect=No valid widgetInstanceId is imported
- widgetparameter_set.null=Resource sample object is null.
- widgetparameter_set.widget.label.chnlname=resource style name
- workflow.button.requestback=Redo required
- workflow.employment.info.none=None.
- workflow.employment.info.site=Site [
- workflow.label.addedit_of_conditionbean=Create/Edit Workflow Condition Settings
- workflow.label.clickselectuser=Click to select handle person
- workflow.label.condition=Flowing Situation
- workflow.label.conditionshow=Flowing Situation View
- workflow.label.conditype_of_conditionbean=Condition Type
- workflow.label.crtime=Created
- workflow.label.cruser=Creator
- workflow.label.definenotice=Customize Notify Way
- workflow.label.defineuser=Customize Handler
- workflow.label.desc=Workflow Description
- workflow.label.desc_of_conditionbean=Condition Description
- workflow.label.desc_of_operationbean=Operation Description
- workflow.label.editor=Workflow Editor
- workflow.label.email=Email
- workflow.label.ename=End Node Name
- workflow.label.flowcondition=Flowing Condition
- workflow.label.flowstatus=Flowing Status
- workflow.label.import=Import Workflow
- workflow.label.list=Workflow List
- workflow.label.message=Message
- workflow.label.mobile=Mobile
- workflow.label.moniter_of_conditionbean=Monitor Trigger
- workflow.label.myworklist=Work List
- workflow.label.name=Workflow Name
- workflow.label.name_of_conditionbean=Condition Name
- workflow.label.name_of_operationbean=Operation Name
- workflow.label.nextnode=Next Node
- workflow.label.opinion=Opinion
- workflow.label.path_of_conditionbean=Component Path
- workflow.label.path_of_operationbean=Component Path
- workflow.label.postagain=Post Again
- workflow.label.postdesc=Post Description
- workflow.label.postdoc=Post Document
- workflow.label.posttime=Post Time
- workflow.label.postuser=Post User
- workflow.label.realtime_of_conditionbean=RealTime Trigger
- workflow.label.requestback=Redo Required
- workflow.label.returndoc=Redo Document
- workflow.label.seturl_of_conditionbean=Condition Setting Page
- workflow.label.seturl_of_operationbean=Operate Setting Page
- workflow.label.sname=Start Node Name
- workflow.label.submitdoc=Document Submitted
- workflow.label.title=Title
- workflow.message.import=Only support XML file
- 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:
- workflow.process.init.label.erroinfo=Failure. Cannot find [FlowId=
- workflow.process.init.label.flow=] Workflow.
- workflow.process.reflow.label.docinfo=]
- workflow.process.reflow.label.firstnode=]
- workflow.process.reflow.label.getfirstnodeerr=Cannot find the first node of the flowing document.
- workflow.process.reflow.label.huoquid=Cannot find any transfer information of the document with the ID of [
- workflow.process.reflow.label.huoquid2=Cannot find the object with the ID [
- workflow.process.reflow.label.nofind=]
- workflow.process.reflow.label.noflow=The channel that the document belongs to is not configured with the workflow.
- workflow.process.reflow.label.typewei=],Type [
- workflow.process.reflow.label.zhidingid=Cannot find the content with the ID [
- workflow.process.reflow.label.zhidingid2=Cannot find the first node of the flowing document with the ID [
- workflow.process.render.4wcm52.label.errordealinfo=Failure. Cannot find [FlowDocId=
- workflow.process.render.4wcm52.label.errorflowprocess=] workflow trace.
- workflow.process.render.4wcm52.label.errorinfo=Failure. Cannot find [FlowDocId=
- workflow.process.render.4wcm52.label.errorprocessinfo=] workflow trace property.
- workflow.process.render.label.deletedinfo=The content may be deleted by other user. ObjectIds=
- workflow.process.render.label.errodealinfo=Failure. Cannot find [FlowDocId=
- workflow.process.render.label.erroinfo=Failure. Cannot find [FlowId=
- workflow.process.render.label.flowdoc=] Workflow Trace.
- workflow.process.render.label.flowprocess=] workflow trace property.
- workflow.tip.add=Create Workflow
- workflow.tip.drop=Delete Selected Workflow
- workflow.tip.export=Export Workflow
- workflow.tip.import=Import Workflow
- workflow.tip.requestback=Redo Workflow
- workflow_process_render.jsp.getidofdocfailed=Failed to obtain file ID[{0}]!
- workflow_process_render.jsp.specialcontentnotfind=The content[Type= {0} , Id= {1} ]is not found
- workflow_process_render_4wcm52.jsp=Failed to obtain the file ID[{0}]!
- workflow_process_render_4wcm52.jsp.nocontentfond=the specified content[Type= {0} , Id= {1}]cannot find
- workflow_process_render_for_doc.jsp.contentnotfond=the specified content[Type={0}, Id={1}]cannot find[
- workflow_process_render_for_doc.jsp.getdocidfailure=For ID [{0}] of the document to fail!
- workflow_setting.form.getFailed=For ID [{0}] custom infoview failed!
- XDocAppendixesHandler.failed=failed to convert the Appendixs collection object as an XML character string!
- XDocAppendixesHandler.jsp.label.collectionconvert2xmlfail=Conversion appendixs collection object as an XML string failed!
- XRelatedDocHandler.jsp.label.requiredparamsisnull=No incoming parameters [ObjectIds] or [ObjectId]
- XRelatedDocHandler.noPara=Do not import parameters [ObjectIds] or [ObjectId]
- xsl_file_upload4docimport_dowith.jsp.forbid_upload_file=The system prohibit uploading[{0}] format file!
- xsl_file_upload4docimport_dowith.jsp.found=Systems prohibit the uploading of [{0}] format!!
- xsl_file_upload4docimport_dowith.jsp.label.notFound=Local file cannot be found.
- file_upload_dowith.filesize.toolarge=The size of file is greater than the maximum value {0}K. Please re-select!
- metaviewfieldgroup_addedit_dowith.jsp.rightValid=You are not an administrator, has no permission to do this operation!
- metaviewdata_addedit.jsp.label100=You have no right to create document in channel employer MetaView[0].
- advisor_option_order.jsp.notfindadvisorgroupid=No advisor option group ID {0} is found!
- filter_option_order.jsp.notfindoptiongroupid=No option group ID{0} is found!
- filter_addedit_dowith.jsp.notfindfilterid=No filter ID [{0}] is found!
- systemright_view.jsp.haverightare=The permission of <font color='red'>[{0}]</font>
- filter_addedit.jsp.cannotfindchannelid=No channel ID [{0}]is found!
- filter_addedit.jsp.parameterchnlidvaluemustlargethanzero=The value of ChannelId must be greater then 0!
- advisor_addedit_dowith.jsp.notfindadvisorid=No advisor ID [{0}] is found!
- advisor_delete.jsp.cannotfindchannelid=No channel ID [{0}] is found!
- advisor_detail_info.jsp.notfindadvisorid=No advisor ID [{0}] is found!
- option_pictrue_set.jsp.option_pictrue_set.jsp.notfindoptionid=No option ID{0} is found!
- filter_list.jsp.ge=
- filter_addedit.jsp.getfilteridfail=Failed to obtain Filter ID[{0}].
- advisor_delete.jsp.youhavenotchannlidoperatefilterinfo=You do not have the right to operate the filter information under channel [id={0}].
- filter_list.jsp.getnofilterattrfail=Failed to obtain the[{0}] filter!
- advisor_addedit.jsp.parameterchannelidmustlargethanzaero=The value of ChannelId must be greater than 0!
- filter_list.jsp.getnofilterfail=Failed to obtain the [{0}] filter.
- advisor_list.jsp.getnodocadvisorfail=Failed to obtain the[{0}] advisor!
- advisor_addedit_dowith.jsp.advisorislockedbyuser=The advisor is locked by user [{0}]!
- advisor_addedit.jsp.youhavenorightidchannlnewadvisor=You do not have the right to create and modify advisor under channel [ID={0}]!
- filter_detail_info.jsp.notfindfilterid=The filter ID{0} is not found!
- advisor_step_order.jsp.notfindadvisorid=No advisor ID{0} is found!
- advisor_addedit.jsp.notfindidischnl=No channel ID [{0}] is found!
- filter_delete.jsp.notfindchnlid=No channel ID [{0}] is found!
- filter_list.jsp.filter=Filter
- advisor_addedit.jsp.getadvisoridfail=Failed to obtain advisor ID [{0}]!
- advisor_list.jsp.notfindnoadvisor=The[{0}] advisor is not found!
- filter_group_order.jsp.notfindfilterid=No filter ID[{0}] is found!
- advisor_list.jsp.ge=
- filter_addedit_dowith.jsp.savefiltercauseattrvaluenotrightandstop=Failed to save the filter for the attribute value is incorrect!
- metaview_document_relation.jsp.relationdatamgr=Related data
- advisor_addedit_dowith.jsp.saveadvisorcauseattrivaluenotrightandfail=Failed to save the advisor for the attribute value is incorrect!
- option_pictrue_set.jsp.notfindoptionid=No option ID{0} is found!
- advisor_list.jsp.getnoadvisorattrfail=Failed to obtain the {0} advisor!
- filter_addedit_dowith.jsp.filterislockedbyuser=The filter is locked by user {0}!
- filter_addedit.jsp.youhavenorightchnnlidnewmodifyfilter=You do not have the right to create and modify the filter under channel [ID={0}]
- advisor_list.jsp.advisor=Advisor
- filter_list.jsp.notfindnofilter=The [{0}] filter is not found!
- filter_delete.jsp.youhavenorightchnlidoperatefilterinfo=You do not have the right to operate the filter information under channel [id={0}]!
- advisor_optiongroup_order.jsp.notfindadvisoridstep=No advisor step ID{0} is found!
- video.addedit.jsp.notExsit=The video ID[{0}] does not exist!
- applyMASConfig.jsp.setupfail=Failed to set!
- video_findbyid.jsp.videoStream=<Strong>Video flow
- video_batch_add.jsp.noDocID=No document ID is specified!
- video.addedit.jsp.changefail1=Failed to convert Relations group object to XML!
- video_thumb_query.jsp.yifa=Published
- live_add.jsp.noRight=You have no right to create live video!
- player.jsp.notExit=The video does not exist!qryStr=[{0}]
- videorecycle_findbyid.jsp.runError=videorecycle_findbyid.jsp Runtime error!
- key=Setup
- videorecycle_thumb_query.jsp.unkown=Unknown
- video_batch_add.jsp.noRigthNew=You have no right ro create document!
- video_list_editor.jsp.yifa=Published
- video.addedit.jsp.notsetuplanmu=No channel is specified to create video in!
- video_batch_add.jsp.notsetuplanmu=No channel is specified to create video!
- video_batch_add.jsp.modify=Modify
- videorecycle_thumb_query.jsp.runError=watermark_query.jsp Runtime error!
- applyMASConfig.jsp.setupsuccess=Succeed to set!
- video_list_editor.jsp.runEorro=watermark_query.jsp Runtime error!
- video_batch_add.jsp.notOperate=The document ID[{0}]is in the Recycle Bin. It cannot be operated now!
- video_thumb_query.jsp=Unknown
- videorecycle_findbyid.jsp.videoStream=<Strong>Video flow
- video_record.jsp.reqFail=Failed to obtain channel ID[{0}]!
- video_record.jsp.refreshLanmu=Deleted! Please refresh the channel tree!
- video.addedit.jsp.changefail=Failed to convert Relations group object to XML!
- video_record.jsp.undefnNewLm=No channel is specified to create document in!
- videorecycle_thumb_query.jsp.yifa=Published
- video_thumb_query.jsp.noID=No chnldoc ID[{0}] is found!
- video_findbyid.jsp.error=video_findbyid.jsp Runtime error!
- video_thumb_query.jsp.runError=watermark_query.jsp Runtime error!
- delete.jsp.video=Totally [{0}]videos fail to transcode.
- 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.
- videorecycle_thumb_query.jsp.confirm=The target group type returned form service(com.trs.ajaxservice.PhotoServiceProvider.query)is not VideoDocs,but [{0}].Please confirm.
- video.addedit.jsp.docfail==Failed to obtain ChnlDoc ID[{0}]!
- video_batch_add.jsp.lanmufail=Failed to obtain channel ID[{0}]!
- video_list_editor.jsp.unkown=Unknown
- video.addedit.jsp.refreshlanmu=Deleted!Please refresh your channel tree.
- video_thumb_query.jsp.confirm=The target group type returned form service(com.trs.ajaxservice.PhotoServiceProvider.query)is not VideoDocs,but [{0}].Please confirm.
- video_batch_add.jsp.refreshlanmu=Deleted!Please refresh the channel tree.
- video.addedit.jsp.lanmufail=Failed to obtain channel ID[{0}]!
- nowebinfo=Not configured!
- video_findbyid.jsp.confirm=The target group type returned form service(com.trs.ajaxservice.VideoDocumentServiceProvider.findbyid)is not ViewDocument,but [{0}].Please confirm.
- delete.jsp.clear=Succeed in clearing [{0}]videos.
- videorecycle_findbyid.jsp.confirm=The target group type returned form service(com.trs.ajaxservice.VideoDocumentServiceProvider.findbyid)is not ViewDocument,but [{0}].Please confirm.
- group.label.viewoper=Access Control
- role.label.info=Role Info
- role.label.belonggroup=Group
- role.label.specialrole=Specific Role
- role.label.tip=(The type cannot be modified once confirmed)
- auth.button.allGroups=All Group
- system.button.showspecialrole=Show Specific Role
- sysconfig.label.value=Content
- eventtype.tasklist=Task List
- eventtype.workingconference=Working Conference
- eventtype.privateappointment=Private Appointment
- eventtype.dinner=Dinner
- eventtype.sports=Sports
- eventtype.entertainment=Entertainment
- eventtype.reminder=Reminder
- eventtype.othermatters=Other Matters
- eventtype.othermatters.more=Other Matters...
- eventtype.reporting=Reporting
- eventtype.travelonbusiness=Travel on Business
- systemsource.People=People
- systemsource.r.people=R--People
- systemsource.CCTV=CCTV
- systemsource.z.CCTV=Z--CCTV
- systemsource.PeopleDaily=People's Daily
- systemsource.r.PeopleDaily=R--People's Daily
- systemsource.Xinhua.News.Agency=Xinhua News Agency
- systemsource.x.Xinhua.News.Agency=X--Xinhua News Agency
- systemsource.southcn=Southcn
- systemsource.n.southcn=N--Southcn
- systemsource.sina=Sina
- systemsource.x.Sina=X--Sina
- systemsource.Xinhua=Xinhua
- systemsource.x.Xinhua=X--Xinhua
- systemsource.trs=TRS
- systemsource.beijing.trs=TRS
- role.everyone=Each member in the system
- role.rolemanage=Role maintainance
- role.sitemanage=Site administrator
- role.sitemanage.desc=Manage the specific site and its subobjects.
- role.channelmanage=Channel administrator
- role.channelmanage.desc=Manage the visible channel and its documents in the specific site.
- role.templatemanage=Template administrator
- role.templatemanage.desc=Manage the template in the specific site.
- role.dataenter=Data entry staff
- role.dataenter.desc=Create document in the visible channel of the specific site.
- role.dataaudit=Data audit staff
- role.dataaudit.desc=You can audit the document in the visible channel of the specific site, including edit document, delete document and modify status.
- role.datapublish=Data publish staff
- role.datapublish.desc=Publish the visible channel and its related documents in the specific site.
- role.subjectmanage=Subject maintainance staff
- role.stylemanage=Style maintainance staff
- role.widgetmanage=Resource maintainance staff
- role.inonegroup.subjectmanage=Subject maintainance staff of the same group.
- role.inonegroup.subjectmanage.desc=Maintain the user subject in group or subgroup.
- role.inonegroup.stylemanage=Subject style staff of the same group
- role.inonegroup.stylemanage.desc=Maintain the user style in group or subgroup.
- role.inonegroup.widgetmanage= Resource maintainance staff of the same group
- role.inonegroup.widgetmanage.desc=Maintain the user resource in group or subgroup.
- filter_option_group_properties.jsp.found=The specified Option group ID={0} cannot be found.
- option.select.jsp.removebtn=<< Remove
- option.select.jsp.addbtn=Add >>
- metaviewdata_addedit.jsp.ReviewRight=You are not the current auditor, and have no right to modify the current record.
|