123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394 |
- <?xml version="1.0" encoding="utf-8"?>
- <xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
- <file datatype="xml" source-language="en-US" target-language="ko-KR" original="KDANSTRINGS_WPF/STRINGS/RESOURCES.RESX" tool-id="MultilingualAppToolkit" product-name="n/a" product-version="n/a" build-num="n/a">
- <header>
- <tool tool-id="MultilingualAppToolkit" tool-name="Multilingual App Toolkit" tool-version="4.1.12.0" tool-company="Microsoft" />
- </header>
- <body>
- <group id="KDANSTRINGS_WPF/STRINGS/RESOURCES.RESX" datatype="resx">
- <trans-unit id="AccountExistedError" translate="yes" xml:space="preserve">
- <source>This email address is already in use. Please try a different one!</source>
- <target state="new">This email address is already in use. Please try a different one!</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[會員註冊] 註冊失敗,帳號已存在</note>
- </trans-unit>
- <trans-unit id="AccountHelpButton.Content" translate="yes" xml:space="preserve">
- <source>Account help</source>
- <target state="new">Account help</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[帳戶資訊] 帳戶協助連結文字</note>
- </trans-unit>
- <trans-unit id="AccountIsNotExistedError" translate="yes" xml:space="preserve">
- <source>This email account does not exist.</source>
- <target state="new">This email account does not exist.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">重設密碼失敗,使用者所填的信箱帳號不存在</note>
- </trans-unit>
- <trans-unit id="AccountNameError" translate="yes" xml:space="preserve">
- <source>Please enter your name.</source>
- <target state="new">Please enter your name.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[會員註冊] 註冊未填寫名字</note>
- </trans-unit>
- <trans-unit id="CancelDownloadMessage" translate="yes" xml:space="preserve">
- <source>You just cancelled the download. Resume the download by tapping download button.</source>
- <target state="new">You just cancelled the download. Resume the download by tapping download button.</target>
- </trans-unit>
- <trans-unit id="CancelUploadMessage" translate="yes" xml:space="preserve">
- <source>You just cancelled the upload. Resume the upload by tapping upload button.</source>
- <target state="new">You just cancelled the upload. Resume the upload by tapping upload button.</target>
- </trans-unit>
- <trans-unit id="CloudDeviceString" translate="yes" xml:space="preserve">
- <source>Cloud & Device</source>
- <target state="new">Cloud & Device</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[檔案管理]檔案同時存放於雲端與裝置的狀態</note>
- </trans-unit>
- <trans-unit id="CloudString" translate="yes" xml:space="preserve">
- <source>Cloud</source>
- <target state="new">Cloud</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[檔案管理]檔案只存放於雲端的狀態</note>
- </trans-unit>
- <trans-unit id="CreditBalanceLabel.Text" translate="yes" xml:space="preserve">
- <source>Account Balance:</source>
- <target state="new">Account Balance:</target>
- </trans-unit>
- <trans-unit id="State.Deleting" translate="yes" xml:space="preserve">
- <source>Deleting...</source>
- <target state="new">Deleting...</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[雲端檔案傳輸狀態] 刪除中文字訊息</note>
- </trans-unit>
- <trans-unit id="DeviceString" translate="yes" xml:space="preserve">
- <source>Device</source>
- <target state="new">Device</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[檔案管理]檔案只存放於裝置的狀態</note>
- </trans-unit>
- <trans-unit id="DownloadCompleteMessage" translate="yes" xml:space="preserve">
- <source>Download successfully!</source>
- <target state="new">Download successfully!</target>
- </trans-unit>
- <trans-unit id="DownloadFailedMessage" translate="yes" xml:space="preserve">
- <source>Download failed, try again later.</source>
- <target state="new">Download failed, try again later.</target>
- </trans-unit>
- <trans-unit id="State.Downloading" translate="yes" xml:space="preserve">
- <source>Downloading...</source>
- <target state="new">Downloading...</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[雲端檔案傳輸狀態] 下載中文字訊息</note>
- </trans-unit>
- <trans-unit id="FacebookAccountExistedError" translate="yes" xml:space="preserve">
- <source>This Facebook account is already in use!</source>
- <target state="new">This Facebook account is already in use!</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[Facebook] 註冊Facebook失敗,帳號已存在的提示訊息</note>
- </trans-unit>
- <trans-unit id="FacebookConnectFailed" translate="yes" xml:space="preserve">
- <source>Failed to connect to Facebook account.</source>
- <target state="new">Failed to connect to Facebook account.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[Facebook] 連結Facebook帳號失敗</note>
- </trans-unit>
- <trans-unit id="FacebookLoginError" translate="yes" xml:space="preserve">
- <source>The Facebook account has not been registered</source>
- <target state="new">The Facebook account has not been registered</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[Facebook] 以Facebook帳號登入失敗後,提示Facebook帳號未註冊為Kdan會員</note>
- </trans-unit>
- <trans-unit id="InvalidEmailAddress" translate="yes" xml:space="preserve">
- <source>The email is invalid. Please enter a valid email address.</source>
- <target state="new">The email is invalid. Please enter a valid email address.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">Email格式錯誤</note>
- </trans-unit>
- <trans-unit id="InvalidPassword" translate="yes" xml:space="preserve">
- <source>This password is too short. Passwords must be at least 8 characters long.</source>
- <target state="new">This password is too short. Passwords must be at least 8 characters long.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">密碼太短,至少8個字元</note>
- </trans-unit>
- <trans-unit id="KdanCloudSignUpDescription" translate="yes" xml:space="preserve">
- <source>Sign up now and get {0} of Free Space on Kdan Cloud.</source>
- <target state="new">Sign up now and get {0} of Free Space on Kdan Cloud.</target>
- </trans-unit>
- <trans-unit id="LoginFailed" translate="yes" xml:space="preserve">
- <source>Invalid username or password. Please try again.</source>
- <target state="new">Invalid username or password. Please try again.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">登入失敗,跳出的訊息,要求使用者檢查信箱與密碼</note>
- </trans-unit>
- <trans-unit id="MemberFormEmail.PlaceholderText" translate="yes" xml:space="preserve">
- <source>Email address</source>
- <target state="new">Email address</target>
- </trans-unit>
- <trans-unit id="MemberFormName.PlaceholderText" translate="yes" xml:space="preserve">
- <source>First and last names</source>
- <target state="new">First and last names</target>
- </trans-unit>
- <trans-unit id="MemberFormPassword.PlaceholderText" translate="yes" xml:space="preserve">
- <source>Password</source>
- <target state="new">Password</target>
- </trans-unit>
- <trans-unit id="MemberFormPasswordTip.Content" translate="yes" xml:space="preserve">
- <source>(Minimum of 8 characters)</source>
- <target state="new">(Minimum of 8 characters)</target>
- </trans-unit>
- <trans-unit id="MemberFormSubmit.Content" translate="yes" xml:space="preserve">
- <source>Submit</source>
- <target state="new">Submit</target>
- </trans-unit>
- <trans-unit id="NextTimeButton.Content" translate="yes" xml:space="preserve">
- <source>Next time</source>
- <target state="new">Next time</target>
- </trans-unit>
- <trans-unit id="PasswordError" translate="yes" xml:space="preserve">
- <source>Incorrect password format</source>
- <target state="new">Incorrect password format</target>
- <note from="MultilingualBuild" annotates="source" priority="2">密碼格式錯誤</note>
- </trans-unit>
- <trans-unit id="PasswordHelp.Title" translate="yes" xml:space="preserve">
- <source>Reset Password</source>
- <target state="new">Reset Password</target>
- </trans-unit>
- <trans-unit id="PasswordHelpButton.Content" translate="yes" xml:space="preserve">
- <source>Password Help</source>
- <target state="new">Password Help</target>
- </trans-unit>
- <trans-unit id="PrivacyPolicyButton.Content" translate="yes" xml:space="preserve">
- <source>Privacy Policy</source>
- <target state="new">Privacy Policy</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[註冊] 隱私權原則(服務條款)</note>
- </trans-unit>
- <trans-unit id="RegisterFailed" translate="yes" xml:space="preserve">
- <source>Registration failed.</source>
- <target state="new">Registration failed.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">註冊失敗後跳出的訊息標題</note>
- </trans-unit>
- <trans-unit id="RegisterSuccessTitle" translate="yes" xml:space="preserve">
- <source>Registration successful.</source>
- <target state="new">Registration successful.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">註冊成功後跳出的訊息標題</note>
- </trans-unit>
- <trans-unit id="RemainDaysDescription" translate="yes" xml:space="preserve">
- <source>{0} days left before the subscription expires</source>
- <target state="new">{0} days left before the subscription expires</target>
- </trans-unit>
- <trans-unit id="ResetPasswordFailed" translate="yes" xml:space="preserve">
- <source>Password reset failed</source>
- <target state="new">Password reset failed</target>
- <note from="MultilingualBuild" annotates="source" priority="2">重設密碼失敗後跳出的訊息標題</note>
- </trans-unit>
- <trans-unit id="ResetPasswordSuccessMessage" translate="yes" xml:space="preserve">
- <source>A confirmation message has been sent to your email account.</source>
- <target state="new">A confirmation message has been sent to your email account.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">重設密碼成功後跳出的訊息內容,告知使用者如何重設密碼</note>
- </trans-unit>
- <trans-unit id="ResetPasswordTip.Header" translate="yes" xml:space="preserve">
- <source>Enter your email to receive the password instructions</source>
- <target state="new">Enter your email to receive the password instructions</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[登入] 重設密碼說明</note>
- </trans-unit>
- <trans-unit id="RetypePassword" translate="yes" xml:space="preserve">
- <source>Please retype password!</source>
- <target state="new">Please retype password!</target>
- <note from="MultilingualBuild" annotates="source" priority="2">註冊時,確認密碼欄位與設定密碼不相符,要求使用者檢查</note>
- </trans-unit>
- <trans-unit id="SignInButton.Content" translate="yes" xml:space="preserve">
- <source>Sign in</source>
- <target state="new">Sign in</target>
- </trans-unit>
- <trans-unit id="SignInFacebookButton.Content" translate="yes" xml:space="preserve">
- <source>Sign in with Facebook</source>
- <target state="new">Sign in with Facebook</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[登入]Facebook登入按鈕文字</note>
- </trans-unit>
- <trans-unit id="SignOutButton.Content" translate="yes" xml:space="preserve">
- <source>Logout</source>
- <target state="new">Logout</target>
- </trans-unit>
- <trans-unit id="SignUpButton.Content" translate="yes" xml:space="preserve">
- <source>Sign up</source>
- <target state="new">Sign up</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[會員註冊] 一般註冊按鈕文字</note>
- </trans-unit>
- <trans-unit id="SignUpTitle.Text" translate="yes" xml:space="preserve">
- <source>Join Kdan for Free</source>
- <target state="new">Join Kdan for Free</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[會員註冊] 標題</note>
- </trans-unit>
- <trans-unit id="SignUpTitleDetail.Text" translate="yes" xml:space="preserve">
- <source>Sign up now to get FREE Kdan Cloud storage and premium services.</source>
- <target state="new">Sign up now to get FREE Kdan Cloud storage and premium services.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[會員註冊] 標題說明</note>
- </trans-unit>
- <trans-unit id="SubmitReportButton.Content" translate="yes" xml:space="preserve">
- <source>Submit a report</source>
- <target state="new">Submit a report</target>
- </trans-unit>
- <trans-unit id="SubscriptionExpiredMessage" translate="yes" xml:space="preserve">
- <source>Before uploading files, please verify your email to activate the account and receive 2GB of free space.</source>
- <target state="new">Before uploading files, please verify your email to activate the account and receive 2GB of free space.</target>
- </trans-unit>
- <trans-unit id="SubscriptionLabel.Text" translate="yes" xml:space="preserve">
- <source>Subscription</source>
- <target state="new">Subscription</target>
- </trans-unit>
- <trans-unit id="SyncingString" translate="yes" xml:space="preserve">
- <source>Syncing...</source>
- <target state="new">Syncing...</target>
- </trans-unit>
- <trans-unit id="TermsofServiceButton.Content" translate="yes" xml:space="preserve">
- <source>Terms of Service</source>
- <target state="new">Terms of Service</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[會員註冊] 服務條款</note>
- </trans-unit>
- <trans-unit id="State.Updating" translate="yes" xml:space="preserve">
- <source>Updating...</source>
- <target state="new">Updating...</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[雲端檔案傳輸狀態] 更新中文字訊息</note>
- </trans-unit>
- <trans-unit id="UploadCompleteMessage" translate="yes" xml:space="preserve">
- <source>Upload successfully!</source>
- <target state="new">Upload successfully!</target>
- </trans-unit>
- <trans-unit id="UploadFailedMessage" translate="yes" xml:space="preserve">
- <source>Upload failed, try again later.</source>
- <target state="new">Upload failed, try again later.</target>
- </trans-unit>
- <trans-unit id="State.Uploading" translate="yes" xml:space="preserve">
- <source>Uploading...</source>
- <target state="new">Uploading...</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[雲端檔案傳輸狀態] 上傳中文字訊息</note>
- </trans-unit>
- <trans-unit id="UploadNoEnoughStorageMessage" translate="yes" xml:space="preserve">
- <source>Not enough cloud storage. Please subscribe to Kdan Cloud services to get more space and upload your files.</source>
- <target state="new">Not enough cloud storage. Please subscribe to Kdan Cloud services to get more space and upload your files.</target>
- </trans-unit>
- <trans-unit id="State.Waiting" translate="yes" xml:space="preserve">
- <source>Waiting...</source>
- <target state="new">Waiting...</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[雲端檔案傳輸狀態] 等待中文字訊息</note>
- </trans-unit>
- <trans-unit id="NoAnyCloudFiles" translate="yes" xml:space="preserve">
- <source>There are no files uploaded yet.</source>
- <target state="new">There are no files uploaded yet.</target>
- </trans-unit>
- <trans-unit id="FailedShareLinkMessage" translate="yes" xml:space="preserve">
- <source>Failed to generate a sharable link.</source>
- <target state="new">Failed to generate a sharable link.</target>
- </trans-unit>
- <trans-unit id="AccountString" translate="yes" xml:space="preserve">
- <source>Account</source>
- <target state="new">Account</target>
- </trans-unit>
- <trans-unit id="CheckInvalidEmailMessage" translate="yes" xml:space="preserve">
- <source>This is an invalid email address. Your Kdan Cloud account will be deactivated on {0}. Please change and verify your email address.</source>
- <target state="new">This is an invalid email address. Your Kdan Cloud account will be deactivated on {0}. Please change and verify your email address.</target>
- </trans-unit>
- <trans-unit id="EnterNewEmail" translate="yes" xml:space="preserve">
- <source>Enter a new email address</source>
- <target state="new">Enter a new email address</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[Email驗證][變更Email對話框] 內文</note>
- </trans-unit>
- <trans-unit id="NoInternetCloudWarning" translate="yes" xml:space="preserve">
- <source>Please stay connected to the Internet to use Kdan Cloud services.</source>
- <target state="new">Please stay connected to the Internet to use Kdan Cloud services.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[雲端服務]偵測到無任何網路連線的提示訊息</note>
- </trans-unit>
- <trans-unit id="AccountHelpMessage" translate="yes" xml:space="preserve">
- <source>If you no longer have access to the email you registered, please replace it with a new one.</source>
- <target state="new">If you no longer have access to the email you registered, please replace it with a new one.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[帳戶資訊] [帳戶協助] 說明訊息</note>
- </trans-unit>
- <trans-unit id="ChangeEmailString" translate="yes" xml:space="preserve">
- <source>Change my email</source>
- <target state="new">Change my email</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[Email驗證] 變更Email的顯示文字</note>
- </trans-unit>
- <trans-unit id="DeactiveEmailVerification" translate="yes" xml:space="preserve">
- <source>Please provide us with a valid email address in order to continue using our service.</source>
- <target state="new">Please provide us with a valid email address in order to continue using our service.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[會員驗證] Email無效,且已過期</note>
- </trans-unit>
- <trans-unit id="EmailVerification" translate="yes" xml:space="preserve">
- <source>Please check your mailbox to complete the verification process.</source>
- <target state="new">Please check your mailbox to complete the verification process.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[會員驗證] Email有效,但還未點擊驗證連結</note>
- </trans-unit>
- <trans-unit id="GotItString" translate="yes" xml:space="preserve">
- <source>Got it</source>
- <target state="new">Got it</target>
- </trans-unit>
- <trans-unit id="InvalidEmailVerificationRun1" translate="yes" xml:space="preserve">
- <source>Invalid email address. Your Kdan Cloud Account will be deactivated on</source>
- <target state="new">Invalid email address. Your Kdan Cloud Account will be deactivated on</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[會員驗證] Email無效,將在指定日期取消會員資格(置於日期前)</note>
- </trans-unit>
- <trans-unit id="RemindMeLaterString" translate="yes" xml:space="preserve">
- <source>Remind me later</source>
- <target state="new">Remind me later</target>
- </trans-unit>
- <trans-unit id="AccountInfoString" translate="yes" xml:space="preserve">
- <source>Account Info</source>
- <target state="new">Account Info</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[帳戶資訊] 標題</note>
- </trans-unit>
- <trans-unit id="EmailVerificationPopupTitle.Text" translate="yes" xml:space="preserve">
- <source>One More Step to Complete Your Registration</source>
- <target state="new">One More Step to Complete Your Registration</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[Email驗證][未驗證說明對話框] 標題</note>
- </trans-unit>
- <trans-unit id="EmailVerificationPopupParagraph1.Text" translate="yes" xml:space="preserve">
- <source>A verification email has been sent to</source>
- <target state="new">A verification email has been sent to</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[Email驗證][未驗證說明對話框] 內文第一段</note>
- </trans-unit>
- <trans-unit id="EmailVerificationPopupParagraph2.Text" translate="yes" xml:space="preserve">
- <source>Please check the verification link to complete your registration.</source>
- <target state="new">Please check the verification link to complete your registration.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[Email驗證][未驗證說明對話框] 內文第二段</note>
- </trans-unit>
- <trans-unit id="EmailVerificationPopupResendButton.Content" translate="yes" xml:space="preserve">
- <source>Resend a new link</source>
- <target state="new">Resend a new link</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[Email驗證][未驗證說明對話框] 重新寄送驗證連結</note>
- </trans-unit>
- <trans-unit id="EmailVerificationPopupVerifiedButton.Content" translate="yes" xml:space="preserve">
- <source>I have verified my account</source>
- <target state="new">I have verified my account</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[Email驗證][未驗證說明對話框] 已驗證要求確認</note>
- </trans-unit>
- <trans-unit id="ConfirmString" translate="yes" xml:space="preserve">
- <source>Confirm</source>
- <target state="new">Confirm</target>
- </trans-unit>
- <trans-unit id="EmailSentSucessfully" translate="yes" xml:space="preserve">
- <source>Email sent successfully</source>
- <target state="new">Email sent successfully</target>
- </trans-unit>
- <trans-unit id="EmailVerificationPopupGotItButton.Content" translate="yes" xml:space="preserve">
- <source>OK, I got it</source>
- <target state="new">OK, I got it</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[Email驗證]</note>
- </trans-unit>
- <trans-unit id="FailedEmailVerification" translate="yes" xml:space="preserve">
- <source>You haven’t confirmed your registration yet. Please check your mailbox or the spams for the verification link</source>
- <target state="new">You haven’t confirmed your registration yet. Please check your mailbox or the spams for the verification link</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[Email驗證]</note>
- </trans-unit>
- <trans-unit id="KdanCloudString" translate="yes" xml:space="preserve">
- <source>Kdan Cloud</source>
- <target state="new">Kdan Cloud</target>
- </trans-unit>
- <trans-unit id="PrivacyPolicyParagraph1.Text" translate="yes" xml:space="preserve">
- <source>and that you have read our</source>
- <target state="new">and that you have read our</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[註冊] 註冊注意事項第二段(隱私權原則)</note>
- </trans-unit>
- <trans-unit id="PrivacyPolicyParagraph2.Text" translate="yes" xml:space="preserve">
- <source>.</source>
- <target state="new">.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[註冊] 註冊注意事項第二段延伸第三段區域(多國語言)</note>
- </trans-unit>
- <trans-unit id="ShareLinkWarringMessage" translate="yes" xml:space="preserve">
- <source>Please upload the document to Kdan Cloud before sharing the file link.</source>
- <target state="new">Please upload the document to Kdan Cloud before sharing the file link.</target>
- </trans-unit>
- <trans-unit id="TermsOfServiceParagraph1.Text" translate="yes" xml:space="preserve">
- <source>By signing up, you agree to our</source>
- <target state="new">By signing up, you agree to our</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[會員註冊] 服務條款說明第一段 (後面接terms of service)</note>
- </trans-unit>
- <trans-unit id="TermsOfServiceParagraph2.Text" translate="yes" xml:space="preserve">
- <source>,</source>
- <target state="new">,</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[會員註冊] 服務條款說明第二段 (前面接terms of service)</note>
- </trans-unit>
- <trans-unit id="Description[1]" translate="yes" xml:space="preserve">
- <source>500GB of space on Kdan Cloud</source>
- <target state="new">500GB of space on Kdan Cloud</target>
- </trans-unit>
- <trans-unit id="Description[2]" translate="yes" xml:space="preserve">
- <source>Keep everything in sync</source>
- <target state="new">Keep everything in sync</target>
- </trans-unit>
- <trans-unit id="Description[3]" translate="yes" xml:space="preserve">
- <source>Access your works anytime, anywhere</source>
- <target state="new">Access your works anytime, anywhere</target>
- </trans-unit>
- <trans-unit id="Description[4]" translate="yes" xml:space="preserve">
- <source>Create links to files and share them with others</source>
- <target state="new">Create links to files and share them with others</target>
- </trans-unit>
- <trans-unit id="Description[5]" translate="yes" xml:space="preserve">
- <source>Read PDF documents right in your browser</source>
- <target state="new">Read PDF documents right in your browser</target>
- </trans-unit>
- <trans-unit id="Description[6]" translate="yes" xml:space="preserve">
- <source>Never lose your precious works, we keep them in our vault</source>
- <target state="new">Never lose your precious works, we keep them in our vault</target>
- </trans-unit>
- <trans-unit id="GetMoreSpace.Text" translate="yes" xml:space="preserve">
- <source>Get More Storage</source>
- <target state="new">Get More Storage</target>
- </trans-unit>
- <trans-unit id="SubscribeButton.Content" translate="yes" xml:space="preserve">
- <source>Subscribe</source>
- <target state="new">Subscribe</target>
- </trans-unit>
- <trans-unit id="CreateAccountButton.Content" translate="yes" xml:space="preserve">
- <source>Create a Kdan ID</source>
- <target state="new">Create a Kdan ID</target>
- </trans-unit>
- <trans-unit id="HaveAccountButton.Content" translate="yes" xml:space="preserve">
- <source>I already have a Kdan ID</source>
- <target state="new">I already have a Kdan ID</target>
- </trans-unit>
- <trans-unit id="AlreadySubscribed" translate="yes" xml:space="preserve">
- <source>You already have this subsciption.</source>
- <target state="new">You already have this subsciption.</target>
- </trans-unit>
- <trans-unit id="SubscribeSuccessfully" translate="yes" xml:space="preserve">
- <source>Subscription succeeded.</source>
- <target state="new">Subscription succeeded.</target>
- </trans-unit>
- <trans-unit id="SubscriptionFailed" translate="yes" xml:space="preserve">
- <source>Subscription failed. Please try again later.</source>
- <target state="new">Subscription failed. Please try again later.</target>
- </trans-unit>
- <trans-unit id="ZendeskComment.PlaceholderText" translate="yes" xml:space="preserve">
- <source>Comment</source>
- <target state="new">Comment</target>
- </trans-unit>
- <trans-unit id="ZendeskContactUs.Text" translate="yes" xml:space="preserve">
- <source>Contact Us</source>
- <target state="new">Contact Us</target>
- </trans-unit>
- <trans-unit id="ZendeskDescriptionCannotBeBlank.Text" translate="yes" xml:space="preserve">
- <source>Description cannot be blank.</source>
- <target state="new">Description cannot be blank.</target>
- </trans-unit>
- <trans-unit id="CommonUI.Discard" translate="yes" xml:space="preserve">
- <source>Discard</source>
- <target state="new">Discard</target>
- </trans-unit>
- <trans-unit id="KdanCreditDiscription.Text" translate="yes" xml:space="preserve">
- <source>1 fax page costs 10 credits
- 1 file convertion costs 1 credit</source>
- <target state="new">1 fax page costs 10 credits
- 1 file convertion costs 1 credit</target>
- </trans-unit>
- <trans-unit id="ZendeskDiscardDraft" translate="yes" xml:space="preserve">
- <source>Discard draft</source>
- <target state="new">Discard draft</target>
- </trans-unit>
- <trans-unit id="ZendeskDoNotClose.Text" translate="yes" xml:space="preserve">
- <source>Do not close the app before sending is complete.</source>
- <target state="new">Do not close the app before sending is complete.</target>
- </trans-unit>
- <trans-unit id="ZendeskDoYouWantToDiscardThisDraft" translate="yes" xml:space="preserve">
- <source>You haven't finished your message yet. Do you want to discard this draft?</source>
- <target state="new">You haven't finished your message yet. Do you want to discard this draft?</target>
- </trans-unit>
- <trans-unit id="ZendeskFailToSendMessage" translate="yes" xml:space="preserve">
- <source>Fail to send message.</source>
- <target state="new">Fail to send message.</target>
- </trans-unit>
- <trans-unit id="ZendeskKnowledgeBase.Text" translate="yes" xml:space="preserve">
- <source>Knowledge Base</source>
- <target state="new">Knowledge Base</target>
- </trans-unit>
- <trans-unit id="ZendeskLess.Text" translate="yes" xml:space="preserve">
- <source>Less</source>
- <target state="new">Less</target>
- </trans-unit>
- <trans-unit id="ZendeskMessageSent" translate="yes" xml:space="preserve">
- <source>Message sent!</source>
- <target state="new">Message sent!</target>
- </trans-unit>
- <trans-unit id="ZendeskMyTickets.Text" translate="yes" xml:space="preserve">
- <source>My Tickets</source>
- <target state="new">My Tickets</target>
- </trans-unit>
- <trans-unit id="ZendeskPleaseCheakYourAttachmentSize.Text" translate="yes" xml:space="preserve">
- <source>You can send up to 20MB in attachments. Please check your attachment size.</source>
- <target state="new">You can send up to 20MB in attachments. Please check your attachment size.</target>
- </trans-unit>
- <trans-unit id="ZendeskYourMessageHasBeenSent" translate="yes" xml:space="preserve">
- <source>Your message has been sent to Kdan Mobile successfully.</source>
- <target state="new">Your message has been sent to Kdan Mobile successfully.</target>
- </trans-unit>
- <trans-unit id="ZendeskPleaseTryAgainLater" translate="yes" xml:space="preserve">
- <source>Please try again later.</source>
- <target state="new">Please try again later.</target>
- </trans-unit>
- <trans-unit id="CommonUI.FileLink" translate="yes" xml:space="preserve">
- <source>File link</source>
- <target state="new">File link</target>
- </trans-unit>
- <trans-unit id="Credits" translate="yes" xml:space="preserve">
- <source>Credits</source>
- <target state="new">Credits</target>
- </trans-unit>
- <trans-unit id="Required.Text" translate="yes" xml:space="preserve">
- <source>Required:</source>
- <target state="new">Required:</target>
- </trans-unit>
- <trans-unit id="Converter.Completed" translate="yes" xml:space="preserve">
- <source>Completed</source>
- <target state="new">Completed</target>
- </trans-unit>
- <trans-unit id="State.Converting" translate="yes" xml:space="preserve">
- <source>Converting...</source>
- <target state="new">Converting...</target>
- </trans-unit>
- <trans-unit id="Fax.Sent" translate="yes" xml:space="preserve">
- <source>Sent</source>
- <target state="new">Sent</target>
- </trans-unit>
- <trans-unit id="C365SubscribeBenefits" translate="yes" xml:space="preserve">
- <source>to send faxes or convert files</source>
- <target state="new">to send faxes or convert files</target>
- </trans-unit>
- <trans-unit id="SubscribeTo" translate="yes" xml:space="preserve">
- <source>Subscribe to</source>
- <target state="new">Subscribe to</target>
- </trans-unit>
- <trans-unit id="AskReviewTitle" translate="yes" xml:space="preserve">
- <source>Love {0}?</source>
- <target state="new">Love {0}?</target>
- </trans-unit>
- <trans-unit id="AskReviewCaption" translate="yes" xml:space="preserve">
- <source>Rating takes less than a minute.</source>
- <target state="new">Rating takes less than a minute.</target>
- </trans-unit>
- <trans-unit id="AskReviewContent" translate="yes" xml:space="preserve">
- <source>Please leave us a great rating and reviews! Thank for your support!</source>
- <target state="new">Please leave us a great rating and reviews! Thank for your support!</target>
- </trans-unit>
- <trans-unit id="AskReviewPrimaryOption" translate="yes" xml:space="preserve">
- <source>Love it! I want to give it 5 stars!</source>
- <target state="new">Love it! I want to give it 5 stars!</target>
- </trans-unit>
- <trans-unit id="AskReviewSecondaryOption" translate="yes" xml:space="preserve">
- <source>I'd like to give some feedback.</source>
- <target state="new">I'd like to give some feedback.</target>
- </trans-unit>
- <trans-unit id="Fax.SendedDialogContent0" translate="yes" xml:space="preserve">
- <source>{0} credits charged, remaining 1 credit.</source>
- <target state="new">{0} credits charged, remaining 1 credit.</target>
- </trans-unit>
- <trans-unit id="Fax.SendedDialogContent1" translate="yes" xml:space="preserve">
- <source>You can check the delivery status in Task Manager.</source>
- <target state="new">You can check the delivery status in Task Manager.</target>
- </trans-unit>
- <trans-unit id="Fax.SendedDialogTitle" translate="yes" xml:space="preserve">
- <source>Your fax has been delivered</source>
- <target state="new">Your fax has been delivered</target>
- </trans-unit>
- <trans-unit id="ConverterFailed.Title" translate="yes" xml:space="preserve">
- <source>Conversion Failed</source>
- <target state="new">Conversion Failed</target>
- </trans-unit>
- <trans-unit id="ConvertDialogTitle" translate="yes" xml:space="preserve">
- <source>Your file is converting</source>
- <target state="new">Your file is converting</target>
- </trans-unit>
- <trans-unit id="ConverterFailed.Content" translate="yes" xml:space="preserve">
- <source>An error occurred while accessing the converting service. Your credit(s) will be refund to your account.</source>
- <target state="new">An error occurred while accessing the converting service. Your credit(s) will be refund to your account.</target>
- </trans-unit>
- <trans-unit id="CommonUI.SelectCountry" translate="yes" xml:space="preserve">
- <source>Select a country</source>
- <target state="new">Select a country</target>
- </trans-unit>
- <trans-unit id="Fax.CreditTextBlock.Text" translate="yes" xml:space="preserve">
- <source>Credit</source>
- <target state="new">Credit</target>
- </trans-unit>
- <trans-unit id="Fax.Number" translate="yes" xml:space="preserve">
- <source>Fax number</source>
- <target state="new">Fax number</target>
- </trans-unit>
- <trans-unit id="CommonUI.Pages" translate="yes" xml:space="preserve">
- <source>Pages</source>
- <target state="new">Pages</target>
- </trans-unit>
- <trans-unit id="CommonUI.Page" translate="yes" xml:space="preserve">
- <source>Page</source>
- <target state="new">Page</target>
- </trans-unit>
- <trans-unit id="CommonUI/Recharge" translate="yes" xml:space="preserve">
- <source>Recharge</source>
- <target state="new">Recharge</target>
- </trans-unit>
- <trans-unit id="Fax.SendedDialogContent0s" translate="yes" xml:space="preserve">
- <source>{0} credits charged, remaining {1} credits.</source>
- <target state="new">{0} credits charged, remaining {1} credits.</target>
- </trans-unit>
- <trans-unit id="Fax.StatusDialogNoAnswer.Content" translate="yes" xml:space="preserve">
- <source>The call has no response.</source>
- <target state="new">The call has no response.</target>
- </trans-unit>
- <trans-unit id="Fax.StatusDialogNoAnswer.Title" translate="yes" xml:space="preserve">
- <source>No Answer</source>
- <target state="new">No Answer</target>
- </trans-unit>
- <trans-unit id="Fax.StatusDialogCallRejected.Content" translate="yes" xml:space="preserve">
- <source>The call is rejected. Please try agin.</source>
- <target state="new">The call is rejected. Please try agin.</target>
- </trans-unit>
- <trans-unit id="Fax.StatusDialogCallRejected.Title" translate="yes" xml:space="preserve">
- <source>Call Rejected</source>
- <target state="new">Call Rejected</target>
- </trans-unit>
- <trans-unit id="Fax.StatusDialogConnectionFailed.Content" translate="yes" xml:space="preserve">
- <source>An unexpected error has occurred due to a bad line or other communication problems.</source>
- <target state="new">An unexpected error has occurred due to a bad line or other communication problems.</target>
- </trans-unit>
- <trans-unit id="Fax.StatusDialogConnectionFailed.Title" translate="yes" xml:space="preserve">
- <source>Fax Connection Failed</source>
- <target state="new">Fax Connection Failed</target>
- </trans-unit>
- <trans-unit id="Fax.StatusDialogInvalidFaxNumber.Content" translate="yes" xml:space="preserve">
- <source>The fax number you entered is invalid. Please correct it and retry.</source>
- <target state="new">The fax number you entered is invalid. Please correct it and retry.</target>
- </trans-unit>
- <trans-unit id="Fax.StatusDialogInvalidFaxNumber.Title" translate="yes" xml:space="preserve">
- <source>Invalid Fax Number</source>
- <target state="new">Invalid Fax Number</target>
- </trans-unit>
- <trans-unit id="Fax.StatusDialogSystemBusy.Content" translate="yes" xml:space="preserve">
- <source>The line is busy. Please try again.</source>
- <target state="new">The line is busy. Please try again.</target>
- </trans-unit>
- <trans-unit id="Fax.StatusDialogSystemBusy.Title" translate="yes" xml:space="preserve">
- <source>System Busy</source>
- <target state="new">System Busy</target>
- </trans-unit>
- <trans-unit id="SubscribedButton.Content" translate="yes" xml:space="preserve">
- <source>Subscribed</source>
- <target state="new">Subscribed</target>
- </trans-unit>
- <trans-unit id="Converter.ConvertingDialog.Content" translate="yes" xml:space="preserve">
- <source>You can check the converting process in Task Manager.</source>
- <target state="new">You can check the converting process in Task Manager.</target>
- </trans-unit>
- <trans-unit id="InsufficientCreditsDialog.Title" translate="yes" xml:space="preserve">
- <source>Insufficient Credits</source>
- <target state="new">Insufficient Credits</target>
- </trans-unit>
- <trans-unit id="CommonUI.Output" translate="yes" xml:space="preserve">
- <source>Output</source>
- <target state="new">Output</target>
- </trans-unit>
- <trans-unit id="CommonUI.Start" translate="yes" xml:space="preserve">
- <source>Start</source>
- <target state="new">Start</target>
- </trans-unit>
- <trans-unit id="Converter.UploadToConvertDialog" translate="yes" xml:space="preserve">
- <source>Please upload the file to Kdan Cloud for file conversion. Would you like to upload the file now?</source>
- <target state="new">Please upload the file to Kdan Cloud for file conversion. Would you like to upload the file now?</target>
- </trans-unit>
- <trans-unit id="InsufficientCreditsDialog.Content" translate="yes" xml:space="preserve">
- <source>Please recharge your account to continue using the service.</source>
- <target state="new">Please recharge your account to continue using the service.</target>
- </trans-unit>
- <trans-unit id="InsufficientCreditsDialog.Recharge" translate="yes" xml:space="preserve">
- <source>Recharge credit</source>
- <target state="new">Recharge credit</target>
- </trans-unit>
- <trans-unit id="Fax.NoNumberDialog.Content" translate="yes" xml:space="preserve">
- <source>Please enter the correct fax number.</source>
- <target state="new">Please enter the correct fax number.</target>
- </trans-unit>
- <trans-unit id="Fax.PageRangeErrorDialog.Content" translate="yes" xml:space="preserve">
- <source>Invalid page range. Please input a valid page range, e.g. 1-3,5,10-12.</source>
- <target state="new">Invalid page range. Please input a valid page range, e.g. 1-3,5,10-12.</target>
- </trans-unit>
- <trans-unit id="Creativity365" translate="yes" xml:space="preserve">
- <source>Creativity 365</source>
- <target state="new">Creativity 365</target>
- </trans-unit>
- <trans-unit id="Fax.ComboNumberStringTextBlock.Text" translate="yes" xml:space="preserve">
- <source>+(Country code)(Fax number)</source>
- <target state="new">+(Country code)(Fax number)</target>
- </trans-unit>
- <trans-unit id="Fax.FormatExampleTextBlock.Text" translate="yes" xml:space="preserve">
- <source>Format example</source>
- <target state="new">Format example</target>
- </trans-unit>
- <trans-unit id="Description[0]" translate="yes" xml:space="preserve">
- <source>Remove all sponsored ads</source>
- <target state="new">Remove all sponsored ads</target>
- </trans-unit>
- <trans-unit id="CreditsRecharge.Purchase.Content" translate="yes" xml:space="preserve">
- <source>Purchase</source>
- <target state="new">Purchase</target>
- </trans-unit>
- <trans-unit id="Fax.PageRangeTextBox.PlaceholderText" translate="yes" xml:space="preserve">
- <source>e.g. 1-3,5,10-12</source>
- <target state="new">e.g. 1-3,5,10-12</target>
- </trans-unit>
- <trans-unit id="Converter.ConnectionError.Content" translate="yes" xml:space="preserve">
- <source>Please make sure your internet connection is available.</source>
- <target state="new">Please make sure your internet connection is available.</target>
- </trans-unit>
- <trans-unit id="Converter.ConnectionError.Title" translate="yes" xml:space="preserve">
- <source>Connection Error</source>
- <target state="new">Connection Error</target>
- </trans-unit>
- <trans-unit id="KdanCreditLabel.Text" translate="yes" xml:space="preserve">
- <source>Kdan Credit</source>
- <target state="new">Kdan Credit</target>
- </trans-unit>
- <trans-unit id="CreditsPurchasedMessageContent" translate="yes" xml:space="preserve">
- <source>Credits may take a few minutes to show up in your account.</source>
- <target state="new">Credits may take a few minutes to show up in your account.</target>
- </trans-unit>
- <trans-unit id="CreditsPurchasedMessageTitle" translate="yes" xml:space="preserve">
- <source>Credits purchased</source>
- <target state="new">Credits purchased</target>
- </trans-unit>
- <trans-unit id="CommonUI.Cancel" translate="yes" xml:space="preserve">
- <source>Cancel</source>
- <target state="new">Cancel</target>
- </trans-unit>
- <trans-unit id="CommonUI.OK" translate="yes" xml:space="preserve">
- <source>OK</source>
- <target state="new">OK</target>
- </trans-unit>
- <trans-unit id="CommonUI.Rename" translate="yes" xml:space="preserve">
- <source>Rename</source>
- <target state="new">Rename</target>
- </trans-unit>
- <trans-unit id="ConflictNameMessage" translate="yes" xml:space="preserve">
- <source>The name already exists.</source>
- <target state="new">The name already exists.</target>
- </trans-unit>
- <trans-unit id="DeleteItemCheckDialog.Content" translate="yes" xml:space="preserve">
- <source>Are you sure you want to delete {0}?</source>
- <target state="new">Are you sure you want to delete {0}?</target>
- </trans-unit>
- <trans-unit id="DeleteItemsCheckDialog.Content" translate="yes" xml:space="preserve">
- <source>You have selected {0} {1}. Are you sure you want to delete them</source>
- <target state="new">You have selected {0} {1}. Are you sure you want to delete them</target>
- </trans-unit>
- <trans-unit id="InvalidNameMessage" translate="yes" xml:space="preserve">
- <source>Invalid name</source>
- <target state="new">Invalid name</target>
- </trans-unit>
- <trans-unit id="RenameDialog.Title" translate="yes" xml:space="preserve">
- <source>Rename {0}</source>
- <target state="new">Rename {0}</target>
- </trans-unit>
- <trans-unit id="CommonUI/Convert" translate="yes" xml:space="preserve">
- <source>Convert</source>
- <target state="new">Convert</target>
- </trans-unit>
- <trans-unit id="CommonUI/Delete" translate="yes" xml:space="preserve">
- <source>Delete</source>
- <target state="new">Delete</target>
- </trans-unit>
- <trans-unit id="CommonUI/Download" translate="yes" xml:space="preserve">
- <source>Download</source>
- <target state="new">Download</target>
- </trans-unit>
- <trans-unit id="CommonUI/Duplicate" translate="yes" xml:space="preserve">
- <source>Duplicate</source>
- <target state="new">Duplicate</target>
- </trans-unit>
- <trans-unit id="CommonUI/Export" translate="yes" xml:space="preserve">
- <source>Export</source>
- <target state="new">Export</target>
- </trans-unit>
- <trans-unit id="CommonUI/Share" translate="yes" xml:space="preserve">
- <source>Share</source>
- <target state="new">Share</target>
- </trans-unit>
- <trans-unit id="CommonUI/Upload" translate="yes" xml:space="preserve">
- <source>Upload</source>
- <target state="new">Upload</target>
- </trans-unit>
- <trans-unit id="CommonUI/DeselectAll" translate="yes" xml:space="preserve">
- <source>Deselect all</source>
- <target state="new">Deselect all</target>
- </trans-unit>
- <trans-unit id="CommonUI/SelectAll" translate="yes" xml:space="preserve">
- <source>Select all</source>
- <target state="new">Select all</target>
- </trans-unit>
- <trans-unit id="CommonUI/Select" translate="yes" xml:space="preserve">
- <source>Select</source>
- <target state="new">Select</target>
- </trans-unit>
- <trans-unit id="CommonUI/Sort" translate="yes" xml:space="preserve">
- <source>Sort by</source>
- <target state="new">Sort by</target>
- </trans-unit>
- <trans-unit id="SortMenu/Ascending" translate="yes" xml:space="preserve">
- <source>Ascending</source>
- <target state="new">Ascending</target>
- </trans-unit>
- <trans-unit id="SortMenu/CloudState" translate="yes" xml:space="preserve">
- <source>Cloud status</source>
- <target state="new">Cloud status</target>
- </trans-unit>
- <trans-unit id="SortMenu/Created" translate="yes" xml:space="preserve">
- <source>Date created</source>
- <target state="new">Date created</target>
- </trans-unit>
- <trans-unit id="SortMenu/Descending" translate="yes" xml:space="preserve">
- <source>Descending</source>
- <target state="new">Descending</target>
- </trans-unit>
- <trans-unit id="SortMenu/Name" translate="yes" xml:space="preserve">
- <source>Name</source>
- <target state="new">Name</target>
- </trans-unit>
- <trans-unit id="SortMenu/Updated" translate="yes" xml:space="preserve">
- <source>Date modified</source>
- <target state="new">Date modified</target>
- </trans-unit>
- <trans-unit id="CommonUI/Done" translate="yes" xml:space="preserve">
- <source>Done</source>
- <target state="new">Done</target>
- </trans-unit>
- <trans-unit id="CommonUI/ShareLink" translate="yes" xml:space="preserve">
- <source>Share file link</source>
- <target state="new">Share file link</target>
- </trans-unit>
- <trans-unit id="Cards.AnimationDeskCardDescription" translate="yes" xml:space="preserve">
- <source>Create your own animation frame by frame and bring your stories to life.</source>
- <target state="new">Create your own animation frame by frame and bring your stories to life.</target>
- </trans-unit>
- <trans-unit id="Cards.AnimationDeskCardName" translate="yes" xml:space="preserve">
- <source>Animation Desk</source>
- <target state="new">Animation Desk</target>
- </trans-unit>
- <trans-unit id="Cards.CreativeStoreCardDescription" translate="yes" xml:space="preserve">
- <source>Search Kdan Creative Store for related accessories and services to upgrade your mobile experience.</source>
- <target state="new">Search Kdan Creative Store for related accessories and services to upgrade your mobile experience.</target>
- </trans-unit>
- <trans-unit id="Cards.CreativeStoreCardName" translate="yes" xml:space="preserve">
- <source>Creative Store</source>
- <target state="new">Creative Store</target>
- </trans-unit>
- <trans-unit id="Cards.NoteLedgeCardDescription" translate="yes" xml:space="preserve">
- <source>Stay organized and make beautiful notes with the world's most multifaceted notebook app.</source>
- <target state="new">Stay organized and make beautiful notes with the world's most multifaceted notebook app.</target>
- </trans-unit>
- <trans-unit id="Cards.NoteLedgeCardName" translate="yes" xml:space="preserve">
- <source>NoteLedge</source>
- <target state="new">NoteLedge</target>
- </trans-unit>
- <trans-unit id="Cards.PDFReaderCardDescription" translate="yes" xml:space="preserve">
- <source>One of the world’s most popular PDF apps for viewing, annotating and managing PDFs.</source>
- <target state="new">One of the world’s most popular PDF apps for viewing, annotating and managing PDFs.</target>
- </trans-unit>
- <trans-unit id="Cards.PDFReaderCardName" translate="yes" xml:space="preserve">
- <source>PDF Reader</source>
- <target state="new">PDF Reader</target>
- </trans-unit>
- <trans-unit id="LatestString" translate="yes" xml:space="preserve">
- <source>Latest:</source>
- <target state="new">Latest:</target>
- </trans-unit>
- <trans-unit id="NoSearchResultMessage" translate="yes" xml:space="preserve">
- <source>No results found. Please enter a new one.</source>
- <target state="new">No results found. Please enter a new one.</target>
- </trans-unit>
- <trans-unit id="SearchResultTitle" translate="yes" xml:space="preserve">
- <source>Search results for "{0}"</source>
- <target state="new">Search results for "{0}"</target>
- </trans-unit>
- <trans-unit id="CommonUI.Copy" translate="yes" xml:space="preserve">
- <source>Copy</source>
- <target state="new">Copy</target>
- </trans-unit>
- <trans-unit id="CommonUI.Repeat" translate="yes" xml:space="preserve">
- <source>Repeat</source>
- <target state="new">Repeat</target>
- </trans-unit>
- <trans-unit id="CommonUI/Add" translate="yes" xml:space="preserve">
- <source>Add</source>
- <target state="new">Add</target>
- </trans-unit>
- <trans-unit id="C365Comparison.AnnualPlanTip" translate="yes" xml:space="preserve">
- <source>Save 25% with the Annual Plan!</source>
- <target state="new">Save 25% with the Annual Plan!</target>
- </trans-unit>
- <trans-unit id="CommonUI.Month" translate="yes" xml:space="preserve">
- <source>Month</source>
- <target state="new">Month</target>
- </trans-unit>
- <trans-unit id="CommonUI.Year" translate="yes" xml:space="preserve">
- <source>Year</source>
- <target state="new">Year</target>
- </trans-unit>
- <trans-unit id="State.Exporting" translate="yes" xml:space="preserve">
- <source>Exporting...</source>
- <target state="new">Exporting...</target>
- </trans-unit>
- <trans-unit id="Share.LinkDescription" translate="yes" xml:space="preserve">
- <source>1 file link</source>
- <target state="new">1 file link</target>
- </trans-unit>
- <trans-unit id="Share.LinksDescription" translate="yes" xml:space="preserve">
- <source>{0} file links</source>
- <target state="new">{0} file links</target>
- </trans-unit>
- <trans-unit id="Share.Title" translate="yes" xml:space="preserve">
- <source>Shared from {0}</source>
- <target state="new">Shared from {0}</target>
- </trans-unit>
- <trans-unit id="CommonUI/Description" translate="yes" xml:space="preserve">
- <source>Description</source>
- <target state="new">Description</target>
- </trans-unit>
- <trans-unit id="CommonUI/Title" translate="yes" xml:space="preserve">
- <source>Title</source>
- <target state="new">Title</target>
- </trans-unit>
- <trans-unit id="CommonUI.ServerError.Content" translate="yes" xml:space="preserve">
- <source>Sorry, we are experiencing temporary server issues. Please wait a few minutes before reconnecting.</source>
- <target state="new">Sorry, we are experiencing temporary server issues. Please wait a few minutes before reconnecting.</target>
- </trans-unit>
- <trans-unit id="Document365" translate="yes" xml:space="preserve">
- <source>Document 365</source>
- <target state="new">Document 365</target>
- </trans-unit>
- <trans-unit id="Bluetooth.EnableBluetooth.Content" translate="yes" xml:space="preserve">
- <source>Please enable the Bluetooth in the Settings and try again.</source>
- <target state="new">Please enable the Bluetooth in the Settings and try again.</target>
- </trans-unit>
- <trans-unit id="Bluetooth.NoBluetooth.Content" translate="yes" xml:space="preserve">
- <source>Your device is not equipped with Bluetooth.</source>
- <target state="new">Your device is not equipped with Bluetooth.</target>
- </trans-unit>
- <trans-unit id="Bluetooth.CheckBluetoothDevice" translate="yes" xml:space="preserve">
- <source>Please improve the Bluetooth connection range of your devices, and make sure batteries are not running low.</source>
- <target state="new">Please improve the Bluetooth connection range of your devices, and make sure batteries are not running low.</target>
- </trans-unit>
- <trans-unit id="UnableConnectDevice" translate="yes" xml:space="preserve">
- <source>Unable to connect to {0}</source>
- <target state="new">Unable to connect to {0}</target>
- </trans-unit>
- <trans-unit id="DeviceConnected" translate="yes" xml:space="preserve">
- <source>{0} is connected.</source>
- <target state="new">{0} is connected.</target>
- </trans-unit>
- <trans-unit id="DeviceDisconnected" translate="yes" xml:space="preserve">
- <source>{0} is disconnected.</source>
- <target state="new">{0} is disconnected.</target>
- </trans-unit>
- <trans-unit id="State.Connecting" translate="yes" xml:space="preserve">
- <source>Connecting...</source>
- <target state="new">Connecting...</target>
- </trans-unit>
- <trans-unit id="C365Comparison/Description" translate="yes" xml:space="preserve">
- <source>Subscribe to {0} to enjoy advanced features in {1} across all your devices.</source>
- <target state="new">Subscribe to {0} to enjoy advanced features in {1} across all your devices.</target>
- </trans-unit>
- <trans-unit id="CommonUI.Converter" translate="yes" xml:space="preserve">
- <source>Converter</source>
- <target state="new">Converter</target>
- </trans-unit>
- <trans-unit id="CommonUI.Fax" translate="yes" xml:space="preserve">
- <source>Fax</source>
- <target state="new">Fax</target>
- </trans-unit>
- <trans-unit id="CommonUI.No" translate="yes" xml:space="preserve">
- <source>No</source>
- <target state="new">No</target>
- </trans-unit>
- <trans-unit id="CommonUI.PageRange" translate="yes" xml:space="preserve">
- <source>Page range</source>
- <target state="new">Page range</target>
- </trans-unit>
- <trans-unit id="CommonUI.Quarter" translate="yes" xml:space="preserve">
- <source>Quarter</source>
- <target state="new">Quarter</target>
- </trans-unit>
- <trans-unit id="CommonUI.Redo" translate="yes" xml:space="preserve">
- <source>Redo</source>
- <target state="new">Redo</target>
- </trans-unit>
- <trans-unit id="CommonUI.Refresh" translate="yes" xml:space="preserve">
- <source>Refresh</source>
- <target state="new">Refresh</target>
- </trans-unit>
- <trans-unit id="CommonUI.Report" translate="yes" xml:space="preserve">
- <source>Report</source>
- <target state="new">Report</target>
- </trans-unit>
- <trans-unit id="CommonUI.TaskManger" translate="yes" xml:space="preserve">
- <source>Task Manager</source>
- <target state="new">Task Manager</target>
- </trans-unit>
- <trans-unit id="CommonUI.Yes" translate="yes" xml:space="preserve">
- <source>Yes</source>
- <target state="new">Yes</target>
- </trans-unit>
- <trans-unit id="CommonUI.SaveAs" translate="yes" xml:space="preserve">
- <source>Save as</source>
- <target state="new">Save as</target>
- </trans-unit>
- <trans-unit id="CommonUI.Create" translate="yes" xml:space="preserve">
- <source>Create</source>
- <target state="new">Create</target>
- </trans-unit>
- <trans-unit id="CommonUI.File" translate="yes" xml:space="preserve">
- <source>File</source>
- <target state="new">File</target>
- </trans-unit>
- <trans-unit id="CommonUI.Folder" translate="yes" xml:space="preserve">
- <source>Folder</source>
- <target state="new">Folder</target>
- </trans-unit>
- <trans-unit id="CommonUI.Files" translate="yes" xml:space="preserve">
- <source>Files</source>
- <target state="new">Files</target>
- </trans-unit>
- <trans-unit id="CommonUI.Folders" translate="yes" xml:space="preserve">
- <source>Folders</source>
- <target state="new">Folders</target>
- </trans-unit>
- <trans-unit id="CommonUI.Items" translate="yes" xml:space="preserve">
- <source>Items</source>
- <target state="new">Items</target>
- </trans-unit>
- <trans-unit id="NeverShowCheckBox.Content" translate="yes" xml:space="preserve">
- <source>Don't show this message again</source>
- <target state="new">Don't show this message again</target>
- </trans-unit>
- <trans-unit id="Onboarding.GetStartedButton.Content" translate="yes" xml:space="preserve">
- <source>Get Started</source>
- <target state="new">Get Started</target>
- </trans-unit>
- <trans-unit id="Onboarding.JoinButton.Content" translate="yes" xml:space="preserve">
- <source>JOIN NOW</source>
- <target state="new">JOIN NOW</target>
- </trans-unit>
- <trans-unit id="CommonUI.Send" translate="yes" xml:space="preserve">
- <source>Send</source>
- <target state="new">Send</target>
- </trans-unit>
- <trans-unit id="CreditsWithFaxPagesDiscountTip" translate="yes" xml:space="preserve">
- <source>Send {0} fax pages or convert {1} files ({2}% off).</source>
- <target state="new">Send {0} fax pages or convert {1} files ({2}% off).</target>
- </trans-unit>
- <trans-unit id="CreditsWithFaxPagesTip" translate="yes" xml:space="preserve">
- <source>Send {0} fax pages or convert {1} files.</source>
- <target state="new">Send {0} fax pages or convert {1} files.</target>
- </trans-unit>
- <trans-unit id="CreditsWithFaxPageTip" translate="yes" xml:space="preserve">
- <source>Send 1 fax page or convert {0} files.</source>
- <target state="new">Send 1 fax page or convert {0} files.</target>
- </trans-unit>
- <trans-unit id="CommonUI.Close" translate="yes" xml:space="preserve">
- <source>Close</source>
- <target state="new">Close</target>
- </trans-unit>
- <trans-unit id="CommonUI.Failed" translate="yes" xml:space="preserve">
- <source>Failed</source>
- <target state="new">Failed</target>
- </trans-unit>
- <trans-unit id="State.Sending" translate="yes" xml:space="preserve">
- <source>Sending...</source>
- <target state="new">Sending...</target>
- </trans-unit>
- <trans-unit id="CommonUI.Exit" translate="yes" xml:space="preserve">
- <source>Exit</source>
- <target state="new">Exit</target>
- </trans-unit>
- <trans-unit id="CommonUI.Print" translate="yes" xml:space="preserve">
- <source>Print</source>
- <target state="new">Print</target>
- </trans-unit>
- <trans-unit id="CommonUI.Save" translate="yes" xml:space="preserve">
- <source>Save</source>
- <target state="new">Save</target>
- </trans-unit>
- <trans-unit id="CommonUI.Search" translate="yes" xml:space="preserve">
- <source>Search</source>
- <target state="new">Search</target>
- </trans-unit>
- <trans-unit id="CommonUI.Thumbnail" translate="yes" xml:space="preserve">
- <source>Thumbnail</source>
- <target state="new">Thumbnail</target>
- </trans-unit>
- <trans-unit id="CommonUI.Undo" translate="yes" xml:space="preserve">
- <source>Undo</source>
- <target state="new">Undo</target>
- </trans-unit>
- <trans-unit id="CommonUI.Color" translate="yes" xml:space="preserve">
- <source>Color</source>
- <target state="new">Color</target>
- </trans-unit>
- <trans-unit id="CommonUI.Guide" translate="yes" xml:space="preserve">
- <source>Guide</source>
- <target state="new">Guide</target>
- </trans-unit>
- <trans-unit id="CommonUI.Opacity" translate="yes" xml:space="preserve">
- <source>Opacity</source>
- <target state="new">Opacity</target>
- </trans-unit>
- <trans-unit id="CommonUI.Open" translate="yes" xml:space="preserve">
- <source>Open</source>
- <target state="new">Open</target>
- </trans-unit>
- <trans-unit id="CommonUI.Overwrite" translate="yes" xml:space="preserve">
- <source>Overwrite</source>
- <target state="new">Overwrite</target>
- </trans-unit>
- <trans-unit id="CommonUI.Paste" translate="yes" xml:space="preserve">
- <source>Paste</source>
- <target state="new">Paste</target>
- </trans-unit>
- <trans-unit id="CommonUI.Size" translate="yes" xml:space="preserve">
- <source>Size</source>
- <target state="new">Size</target>
- </trans-unit>
- <trans-unit id="CommonUI.Skip" translate="yes" xml:space="preserve">
- <source>Skip</source>
- <target state="new">Skip</target>
- </trans-unit>
- <trans-unit id="CommonUI.About" translate="yes" xml:space="preserve">
- <source>About</source>
- <target state="new">About</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[設定] About標籤</note>
- </trans-unit>
- <trans-unit id="CommonUI.Abstract" translate="yes" xml:space="preserve">
- <source>Abstract</source>
- <target state="new">Abstract</target>
- </trans-unit>
- <trans-unit id="CommonUI.Access" translate="yes" xml:space="preserve">
- <source>Access</source>
- <target state="new">Access</target>
- </trans-unit>
- <trans-unit id="CommonUI.Author" translate="yes" xml:space="preserve">
- <source>Author</source>
- <target state="new">Author</target>
- </trans-unit>
- <trans-unit id="CommonUI.Creation" translate="yes" xml:space="preserve">
- <source>Creation</source>
- <target state="new">Creation</target>
- </trans-unit>
- <trans-unit id="CommonUI.Creator" translate="yes" xml:space="preserve">
- <source>Creator</source>
- <target state="new">Creator</target>
- </trans-unit>
- <trans-unit id="CommonUI.Encrypted" translate="yes" xml:space="preserve">
- <source>Encrypted</source>
- <target state="new">Encrypted</target>
- </trans-unit>
- <trans-unit id="CommonUI.FileInfo" translate="yes" xml:space="preserve">
- <source>File Info</source>
- <target state="new">File Info</target>
- </trans-unit>
- <trans-unit id="CommonUI.General" translate="yes" xml:space="preserve">
- <source>General</source>
- <target state="new">General</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[設定] General標籤</note>
- </trans-unit>
- <trans-unit id="CommonUI.or" translate="yes" xml:space="preserve">
- <source>or</source>
- <target state="new">or</target>
- </trans-unit>
- <trans-unit id="CommonUI.Producer" translate="yes" xml:space="preserve">
- <source>Producer</source>
- <target state="new">Producer</target>
- </trans-unit>
- <trans-unit id="CommonUI.Support" translate="yes" xml:space="preserve">
- <source>Support</source>
- <target state="new">Support</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[設定]客戶協助標籤</note>
- </trans-unit>
- <trans-unit id="CommonUI.Themes" translate="yes" xml:space="preserve">
- <source>Themes</source>
- <target state="new">Themes</target>
- </trans-unit>
- <trans-unit id="CommonUI.Unlocked" translate="yes" xml:space="preserve">
- <source>Unlocked</source>
- <target state="new">Unlocked</target>
- </trans-unit>
- <trans-unit id="CommonUI.Version" translate="yes" xml:space="preserve">
- <source>Version</source>
- <target state="new">Version</target>
- </trans-unit>
- <trans-unit id="FollowTwitterButton.Content" translate="yes" xml:space="preserve">
- <source>Follow Us on Twitter</source>
- <target state="new">Follow Us on Twitter</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[設定][About] Twitter</note>
- </trans-unit>
- <trans-unit id="LikeFacebookButton.Content" translate="yes" xml:space="preserve">
- <source>Like Us on Facebook</source>
- <target state="new">Like Us on Facebook</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[設定][About] Facebook</note>
- </trans-unit>
- <trans-unit id="RateUsButton.Content" translate="yes" xml:space="preserve">
- <source>Rate Us</source>
- <target state="new">Rate Us</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[設定][General] 評分</note>
- </trans-unit>
- <trans-unit id="ReportBugButton.Content" translate="yes" xml:space="preserve">
- <source>Report a bug</source>
- <target state="new">Report a bug</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[設定][General] 回報錯誤</note>
- </trans-unit>
- <trans-unit id="SubscribeNewsletterButton.Content" translate="yes" xml:space="preserve">
- <source>Subscribe to Our Newsletter</source>
- <target state="new">Subscribe to Our Newsletter</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[設定][About] 訂閱電子報</note>
- </trans-unit>
- <trans-unit id="MoreOptionsButton.Content" translate="yes" xml:space="preserve">
- <source>More options</source>
- <target state="new">More options</target>
- </trans-unit>
- <trans-unit id="CommonUI.Range" translate="yes" xml:space="preserve">
- <source>Range</source>
- <target state="new">Range</target>
- </trans-unit>
- <trans-unit id="InvalidPageRange" translate="yes" xml:space="preserve">
- <source>Invalid page range</source>
- <target state="new">Invalid page range</target>
- </trans-unit>
- <trans-unit id="PageRange.All" translate="yes" xml:space="preserve">
- <source>All pages</source>
- <target state="new">All pages</target>
- </trans-unit>
- <trans-unit id="PageRange.Current" translate="yes" xml:space="preserve">
- <source>Current page</source>
- <target state="new">Current page</target>
- </trans-unit>
- <trans-unit id="PageRangeExample" translate="yes" xml:space="preserve">
- <source>(eg: 1-3, 5)</source>
- <target state="new">(eg: 1-3, 5)</target>
- </trans-unit>
- <trans-unit id="ClickToViewMessage" translate="yes" xml:space="preserve">
- <source>(Click to view)</source>
- <target state="new">(Click to view)</target>
- </trans-unit>
- <trans-unit id="ExportSuccessMessage" translate="yes" xml:space="preserve">
- <source>Export successfully!</source>
- <target state="new">Export successfully!</target>
- </trans-unit>
- <trans-unit id="CommonUI.Cut" translate="yes" xml:space="preserve">
- <source>Cut</source>
- <target state="new">Cut</target>
- </trans-unit>
- <trans-unit id="CommonUI.Font" translate="yes" xml:space="preserve">
- <source>Font</source>
- <target state="new">Font</target>
- </trans-unit>
- <trans-unit id="CommonUI/EmailAddress" translate="yes" xml:space="preserve">
- <source>Email address</source>
- <target state="new">Email address</target>
- </trans-unit>
- <trans-unit id="Cards.Title" translate="yes" xml:space="preserve">
- <source>Also by Kdan</source>
- <target state="new">Also by Kdan</target>
- </trans-unit>
- <trans-unit id="CommonUI.Email" translate="yes" xml:space="preserve">
- <source>E-mail</source>
- <target state="new">E-mail</target>
- </trans-unit>
- <trans-unit id="CommonUI.Hyperlink" translate="yes" xml:space="preserve">
- <source>Hyperlink</source>
- <target state="new">Hyperlink</target>
- </trans-unit>
- <trans-unit id="CommonUI.Insert" translate="yes" xml:space="preserve">
- <source>Insert</source>
- <target state="new">Insert</target>
- </trans-unit>
- <trans-unit id="CommonUI.LocalPage" translate="yes" xml:space="preserve">
- <source>Local page</source>
- <target state="new">Local page</target>
- </trans-unit>
- <trans-unit id="CommonUI.PageNumber" translate="yes" xml:space="preserve">
- <source>Page Number</source>
- <target state="new">Page Number</target>
- </trans-unit>
- <trans-unit id="CommonUI.SendTo" translate="yes" xml:space="preserve">
- <source>Send to</source>
- <target state="new">Send to</target>
- </trans-unit>
- <trans-unit id="CommonUI.Text" translate="yes" xml:space="preserve">
- <source>Text</source>
- <target state="new">Text</target>
- </trans-unit>
- <trans-unit id="CommonUI.URL" translate="yes" xml:space="preserve">
- <source>URL</source>
- <target state="new">URL</target>
- </trans-unit>
- <trans-unit id="CommonUI.Web" translate="yes" xml:space="preserve">
- <source>Web</source>
- <target state="new">Web</target>
- </trans-unit>
- <trans-unit id="TotalItems" translate="yes" xml:space="preserve">
- <source>Total {0} {1}</source>
- <target state="new">Total {0} {1}</target>
- <note from="MultilingualBuild" annotates="source" priority="2">"{0}為數量。
- {1}為單位(notes, projects or files...)"</note>
- </trans-unit>
- <trans-unit id="CommonUI/Zoom" translate="yes" xml:space="preserve">
- <source>Zoom</source>
- <target state="new">Zoom</target>
- </trans-unit>
- <trans-unit id="CommonUI.Info" translate="yes" xml:space="preserve">
- <source>Info</source>
- <target state="new">Info</target>
- </trans-unit>
- <trans-unit id="CommonUI.Length" translate="yes" xml:space="preserve">
- <source>Untitled</source>
- <target state="new">Untitled</target>
- </trans-unit>
- <trans-unit id="CommonUI.Source" translate="yes" xml:space="preserve">
- <source>Source</source>
- <target state="new">Source</target>
- </trans-unit>
- <trans-unit id="CommonUI.Untitled" translate="yes" xml:space="preserve">
- <source>Length</source>
- <target state="new">Length</target>
- </trans-unit>
- <trans-unit id="CommonUI.Sources" translate="yes" xml:space="preserve">
- <source>Sources</source>
- <target state="new">Sources</target>
- </trans-unit>
- <trans-unit id="CommonUI.Replace" translate="yes" xml:space="preserve">
- <source>Replace</source>
- <target state="new">Replace</target>
- </trans-unit>
- <trans-unit id="PurchaseFromStore" translate="yes" xml:space="preserve">
- <source>Purchase from the Store</source>
- <target state="new">Purchase from the Store</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[標題] 試用到期按鈕</note>
- </trans-unit>
- <trans-unit id="TrialExpiredContent1" translate="yes" xml:space="preserve">
- <source>Your trial has ended!</source>
- <target state="new">Your trial has ended!</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[標題] 試用到期內容1</note>
- </trans-unit>
- <trans-unit id="TrialExpiredContent2" translate="yes" xml:space="preserve">
- <source>Purchase now to keep using all available features of PDF Reader. You may need to restart the device after the payment is completed.</source>
- <target state="new">Purchase now to keep using all available features of PDF Reader. You may need to restart the device after the payment is completed.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[標題] 試用到期內容2</note>
- </trans-unit>
- <trans-unit id="TrialExpiredTitle" translate="yes" xml:space="preserve">
- <source>Trial Expired</source>
- <target state="new">Trial Expired</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[標題] 試用到期對話框</note>
- </trans-unit>
- <trans-unit id="AnnualPlanDescription" translate="yes" xml:space="preserve">
- <source>Bill yearly at {0} after 7-days trial ends.</source>
- <target state="new">Bill yearly at {0} after 7-days trial ends.</target>
- </trans-unit>
- <trans-unit id="C365Comparison.QuarterPlanTip" translate="yes" xml:space="preserve">
- <source>Most popular and flexible.</source>
- <target state="new">Most popular and flexible.</target>
- </trans-unit>
- <trans-unit id="CommonUI.AnnualPlan" translate="yes" xml:space="preserve">
- <source>Annual Plan</source>
- <target state="new">Annual Plan</target>
- </trans-unit>
- <trans-unit id="CommonUI.QuarterlyPlan" translate="yes" xml:space="preserve">
- <source>Quarterly Plan</source>
- <target state="new">Quarterly Plan</target>
- </trans-unit>
- <trans-unit id="CommonUI/StartTrial" translate="yes" xml:space="preserve">
- <source>Start Trial</source>
- <target state="new">Start Trial</target>
- </trans-unit>
- <trans-unit id="QuarterlyPlanDescription" translate="yes" xml:space="preserve">
- <source>Bill quarterly at {0} after 7-days trial ends.</source>
- <target state="new">Bill quarterly at {0} after 7-days trial ends.</target>
- </trans-unit>
- <trans-unit id="CommonUI.Menu" translate="yes" xml:space="preserve">
- <source>Menu</source>
- <target state="new">Menu</target>
- </trans-unit>
- <trans-unit id="PrintCompleted" translate="yes" xml:space="preserve">
- <source>Print completed!</source>
- <target state="new">Print completed!</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[列印] 列印完成訊息</note>
- </trans-unit>
- <trans-unit id="PrintProgressing" translate="yes" xml:space="preserve">
- <source>Printing...({0}/{1})</source>
- <target state="new">Printing...({0}/{1})</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[列印] 列印進度訊息</note>
- </trans-unit>
- <trans-unit id="PrintStart" translate="yes" xml:space="preserve">
- <source>Print is in progress. You can continue viewing and editing the document. Edits made after the print has started will not show on the printed document.</source>
- <target state="new">Print is in progress. You can continue viewing and editing the document. Edits made after the print has started will not show on the printed document.</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[列印] 開始列印訊息</note>
- </trans-unit>
- <trans-unit id="CommonUI.ZoomIn" translate="yes" xml:space="preserve">
- <source>Zoom in</source>
- <target state="new">Zoom in</target>
- </trans-unit>
- <trans-unit id="CommonUI.ZoomOut" translate="yes" xml:space="preserve">
- <source>Zoom out</source>
- <target state="new">Zoom out</target>
- </trans-unit>
- <trans-unit id="WindowsInk.Ballpointpen" translate="yes" xml:space="preserve">
- <source>Ballpoint pen</source>
- <target state="new">Ballpoint pen</target>
- </trans-unit>
- <trans-unit id="WindowsInk.Eraser" translate="yes" xml:space="preserve">
- <source>Eraser</source>
- <target state="new">Eraser</target>
- </trans-unit>
- <trans-unit id="CommonUI.Recent" translate="yes" xml:space="preserve">
- <source>Recently Open</source>
- <target state="new">Recently Open</target>
- </trans-unit>
- <trans-unit id="LanguageSettings.Text" translate="yes" xml:space="preserve">
- <source>Language Settings</source>
- <target state="new">Language Settings</target>
- <note from="MultilingualBuild" annotates="source" priority="2">[設定]語言設定</note>
- </trans-unit>
- <trans-unit id="LanguageSettingsDialog" translate="yes" xml:space="preserve">
- <source>You must reopen the app to switch to {0}. Do you want to reopen the app now?
- Select "Next Time" will keep the original language settings.</source>
- <target state="new">You must reopen the app to switch to {0}. Do you want to reopen the app now?
- Select "Next Time" will keep the original language settings.</target>
- </trans-unit>
- <trans-unit id="WindowsInk.Protractor" translate="yes" xml:space="preserve">
- <source>Protractor</source>
- <target state="new">Protractor</target>
- </trans-unit>
- <trans-unit id="WindowsInk.Ruler" translate="yes" xml:space="preserve">
- <source>Ruler</source>
- <target state="new">Ruler</target>
- </trans-unit>
- <trans-unit id="CommonUI.Audio" translate="yes" xml:space="preserve">
- <source>Audio</source>
- <target state="new">Audio</target>
- </trans-unit>
- <trans-unit id="CommonUI.Home" translate="yes" xml:space="preserve">
- <source>Home</source>
- <target state="new">Home</target>
- </trans-unit>
- <trans-unit id="CommonUI/KB" translate="yes" xml:space="preserve">
- <source>KB</source>
- <target state="new">KB</target>
- </trans-unit>
- <trans-unit id="CommonUI.ReplaceAll" translate="yes" xml:space="preserve">
- <source>Replace all</source>
- <target state="new">Replace all</target>
- </trans-unit>
- <trans-unit id="CommonUI.Upgrade" translate="yes" xml:space="preserve">
- <source>Upgrade</source>
- <target state="new">Upgrade</target>
- </trans-unit>
- <trans-unit id="CommonUI.CheckFile" translate="yes" xml:space="preserve">
- <source>Check File</source>
- <target state="new">Check File</target>
- </trans-unit>
- <trans-unit id="CommonUI.Merge" translate="yes" xml:space="preserve">
- <source>Merge</source>
- <target state="new">Merge</target>
- </trans-unit>
- <trans-unit id="SelectAFile" translate="yes" xml:space="preserve">
- <source>Select a file</source>
- <target state="new">Select a file</target>
- </trans-unit>
- <trans-unit id="SelectFiles" translate="yes" xml:space="preserve">
- <source>Select files</source>
- <target state="new">Select files</target>
- </trans-unit>
- <trans-unit id="TryAgainLater" translate="yes" xml:space="preserve">
- <source>Please try again later.</source>
- <target state="new">Please try again later.</target>
- </trans-unit>
- <trans-unit id="CommonUI.Crop" translate="yes" xml:space="preserve">
- <source>Crop</source>
- <target state="new">Crop</target>
- </trans-unit>
- <trans-unit id="CommonUI.CropImage" translate="yes" xml:space="preserve">
- <source>Crop Image</source>
- <target state="new">Crop Image</target>
- </trans-unit>
- <trans-unit id="CDN.CNLogInMessage" translate="yes" xml:space="preserve">
- <source>To optimize the overall performance, you can choose the region where you access Kdan Cloud.</source>
- <target state="new">To optimize the overall performance, you can choose the region where you access Kdan Cloud.</target>
- </trans-unit>
- <trans-unit id="CDN.FromCN" translate="yes" xml:space="preserve">
- <source>China</source>
- <target state="new">China</target>
- </trans-unit>
- <trans-unit id="CDN.FromInternational" translate="yes" xml:space="preserve">
- <source>International</source>
- <target state="new">International</target>
- </trans-unit>
- <trans-unit id="CDN.HelpParagraph1" translate="yes" xml:space="preserve">
- <source>This option aims at optimizing the overall performance when using Kdan Cloud services in China. Your data will remain protected in accordance with our</source>
- <target state="new">This option aims at optimizing the overall performance when using Kdan Cloud services in China. Your data will remain protected in accordance with our</target>
- </trans-unit>
- <trans-unit id="CDN.HelpParagraph2" translate="yes" xml:space="preserve">
- <source>Privacy Policy</source>
- <target state="new">Privacy Policy</target>
- </trans-unit>
- <trans-unit id="CDN.HelpParagraph3" translate="yes" xml:space="preserve">
- <source>.</source>
- <target state="new">.</target>
- </trans-unit>
- <trans-unit id="CDN.KCFromCN" translate="yes" xml:space="preserve">
- <source>Access Kdan Cloud in China</source>
- <target state="new">Access Kdan Cloud in China</target>
- </trans-unit>
- <trans-unit id="CDN.KCFromWhere" translate="yes" xml:space="preserve">
- <source>Use Kdan Cloud from?</source>
- <target state="new">Use Kdan Cloud from?</target>
- </trans-unit>
- <trans-unit id="OneTimePurchase" translate="yes" xml:space="preserve">
- <source>One-time purchase</source>
- <target state="new">One-time purchase</target>
- </trans-unit>
- <trans-unit id="CommonUI.Purchased" translate="yes" xml:space="preserve">
- <source>Purchased</source>
- <target state="new">Purchased</target>
- </trans-unit>
- <trans-unit id="C365Comparison/RestoreLicense" translate="yes" xml:space="preserve">
- <source>Restore license purchase</source>
- <target state="new">Restore license purchase</target>
- </trans-unit>
- <trans-unit id="C365Comparison/RestoreLicenseFailed" translate="yes" xml:space="preserve">
- <source>Failed to restore previous purchases. Please check your settings and try again.</source>
- <target state="new">Failed to restore previous purchases. Please check your settings and try again.</target>
- </trans-unit>
- <trans-unit id="C365Comparison/RestoreLicenseSucceed" translate="yes" xml:space="preserve">
- <source>Purchases restored. You can start using the advanced tools.</source>
- <target state="new">Purchases restored. You can start using the advanced tools.</target>
- </trans-unit>
- <trans-unit id="C365Comparison/RestorePreviousPurchase" translate="yes" xml:space="preserve">
- <source>Restore previous purchases</source>
- <target state="new">Restore previous purchases</target>
- </trans-unit>
- <trans-unit id="C365Comparison/RestoreSubscription" translate="yes" xml:space="preserve">
- <source>Restore Document 365 subscription</source>
- <target state="new">Restore Document 365 subscription</target>
- </trans-unit>
- <trans-unit id="C365Comparison/RestoreSubscriptionFailed" translate="yes" xml:space="preserve">
- <source>Purchase is not restored. You are not subscribed to Document 365. Subscribe to access to advanced tools.</source>
- <target state="new">Purchase is not restored. You are not subscribed to Document 365. Subscribe to access to advanced tools.</target>
- </trans-unit>
- <trans-unit id="C365Comparison/RestoreSubscriptionSucceed" translate="yes" xml:space="preserve">
- <source>Purchase successfully restored.</source>
- <target state="new">Purchase successfully restored.</target>
- </trans-unit>
- <trans-unit id="C365Comparison/PermanentLicence" translate="yes" xml:space="preserve">
- <source>Permanent Licence</source>
- <target state="new">Permanent Licence</target>
- </trans-unit>
- <trans-unit id="C365Comparison/Free" translate="yes" xml:space="preserve">
- <source>Free</source>
- <target state="new">Free</target>
- </trans-unit>
- <trans-unit id="InvalidRangeMessage" translate="yes" xml:space="preserve">
- <source>Invalid page range.</source>
- <target state="new">Invalid page range.</target>
- </trans-unit>
- <trans-unit id="CommonUI.Next" translate="yes" xml:space="preserve">
- <source>Next</source>
- <target state="new">Next</target>
- </trans-unit>
- <trans-unit id="MoreOptions" translate="yes" xml:space="preserve">
- <source>More options</source>
- <target state="new">More options</target>
- </trans-unit>
- <trans-unit id="AlreadyPurchased" translate="yes" xml:space="preserve">
- <source>You have already purchased this plan.</source>
- <target state="new">You have already purchased this plan.</target>
- </trans-unit>
- <trans-unit id="C365Comparison/PurchaseDescription" translate="yes" xml:space="preserve">
- <source>Purchase {0} to unlock all features.</source>
- <target state="new">Purchase {0} to unlock all features.</target>
- </trans-unit>
- <trans-unit id="C365Comparison/TrialExpired" translate="yes" xml:space="preserve">
- <source>Free trial has expired.</source>
- <target state="new">Free trial has expired.</target>
- </trans-unit>
- <trans-unit id="C365Comparison/TrialExpiredInDays" translate="yes" xml:space="preserve">
- <source>Free trial expires in {0}day(s).</source>
- <target state="new">Free trial expires in {0}day(s).</target>
- </trans-unit>
- <trans-unit id="PurchaseFailed" translate="yes" xml:space="preserve">
- <source>Puchase failed. Please try again later.</source>
- <target state="new">Puchase failed. Please try again later.</target>
- </trans-unit>
- <trans-unit id="PurchaseSuccessfully" translate="yes" xml:space="preserve">
- <source>Purchase succeeded.</source>
- <target state="new">Purchase succeeded.</target>
- </trans-unit>
- <trans-unit id="CommonUI.UnmatchPwd" translate="yes" xml:space="preserve">
- <source>Confirm password does not match password.</source>
- <target state="new">Confirm password does not match password.</target>
- </trans-unit>
- <trans-unit id="CommonUI.ConfirmPwd" translate="yes" xml:space="preserve">
- <source>Confirm Password</source>
- <target state="new">Confirm Password</target>
- </trans-unit>
- <trans-unit id="CommonUI.LocalFolder" translate="yes" xml:space="preserve">
- <source>Local Folder</source>
- <target state="new">Local Folder</target>
- </trans-unit>
- <trans-unit id="CommonUI.Document" translate="yes" xml:space="preserve">
- <source>Document</source>
- <target state="new">Document</target>
- </trans-unit>
- <trans-unit id="CommonUI.Continue" translate="yes" xml:space="preserve">
- <source>Continue</source>
- <target state="new">Continue</target>
- </trans-unit>
- <trans-unit id="CommonUI.AppDocument" translate="yes" xml:space="preserve">
- <source>Document</source>
- <target state="new">Document</target>
- </trans-unit>
- <trans-unit id="UpgradeOptions" translate="yes" xml:space="preserve">
- <source>View Upgrade Options</source>
- <target state="new">View Upgrade Options</target>
- </trans-unit>
- <trans-unit id="CommonUI.Unzip" translate="yes" xml:space="preserve">
- <source>Unzip</source>
- <target state="new">Unzip</target>
- </trans-unit>
- <trans-unit id="CommonUI.Zip" translate="yes" xml:space="preserve">
- <source>Zip</source>
- <target state="new">Zip</target>
- </trans-unit>
- <trans-unit id="SortMenu/Type" translate="yes" xml:space="preserve">
- <source>Type</source>
- <target state="new">Type</target>
- </trans-unit>
- <trans-unit id="DefaultAppTitle" translate="yes" xml:space="preserve">
- <source>{0} is not currently set as your default app for {1} format. Would you like to make it your default application?</source>
- <target state="new">{0} is not currently set as your default app for {1} format. Would you like to make it your default application?</target>
- </trans-unit>
- <trans-unit id="DefaultAppTitlePrimary" translate="yes" xml:space="preserve">
- <source>Use "{0}"</source>
- <target state="new">Use "{0}"</target>
- </trans-unit>
- <trans-unit id="DefaultAppTitleSecondary" translate="yes" xml:space="preserve">
- <source>Not Now</source>
- <target state="new">Not Now</target>
- </trans-unit>
- <trans-unit id="ItemsSelected" translate="yes" xml:space="preserve">
- <source>Selected: {0}</source>
- <target state="new">Selected: {0}</target>
- </trans-unit>
- <trans-unit id="CommonUI.Black" translate="yes" xml:space="preserve">
- <source>Black</source>
- <target state="new">Black</target>
- </trans-unit>
- <trans-unit id="CommonUI.Blue" translate="yes" xml:space="preserve">
- <source>Blue</source>
- <target state="new">Blue</target>
- </trans-unit>
- <trans-unit id="CommonUI.BlueGrey" translate="yes" xml:space="preserve">
- <source>Blue Grey</source>
- <target state="new">Blue Grey</target>
- </trans-unit>
- <trans-unit id="CommonUI.Grey" translate="yes" xml:space="preserve">
- <source>Grey</source>
- <target state="new">Grey</target>
- </trans-unit>
- <trans-unit id="CommonUI.White" translate="yes" xml:space="preserve">
- <source>White</source>
- <target state="new">White</target>
- </trans-unit>
- <trans-unit id="C365Comparison/C365Description" translate="yes" xml:space="preserve">
- <source>Access Creativity 365 Suite Across All Devices</source>
- <target state="new">Access Creativity 365 Suite Across All Devices</target>
- </trans-unit>
- <trans-unit id="WrongPassword" translate="yes" xml:space="preserve">
- <source>Invalid password. Please try again.</source>
- <target state="new">Invalid password. Please try again.</target>
- </trans-unit>
- <trans-unit id="CommonUI.Camera" translate="yes" xml:space="preserve">
- <source>Camera</source>
- <target state="new">Camera</target>
- </trans-unit>
- <trans-unit id="CommonUI.Image" translate="yes" xml:space="preserve">
- <source>Image</source>
- <target state="new">Image</target>
- </trans-unit>
- <trans-unit id="CommonUI.Recording" translate="yes" xml:space="preserve">
- <source>Recording</source>
- <target state="new">Recording</target>
- </trans-unit>
- <trans-unit id="CommonUI.Video" translate="yes" xml:space="preserve">
- <source>Video</source>
- <target state="new">Video</target>
- </trans-unit>
- <trans-unit id="CommonUI.Draw" translate="yes" xml:space="preserve">
- <source>Draw</source>
- <target state="new">Draw</target>
- </trans-unit>
- <trans-unit id="CommonUI.Edit" translate="yes" xml:space="preserve">
- <source>Edit</source>
- <target state="new">Edit</target>
- </trans-unit>
- <trans-unit id="CommonUI.Layer" translate="yes" xml:space="preserve">
- <source>Layer</source>
- <target state="new">Layer</target>
- </trans-unit>
- <trans-unit id="CommonUI.Stickers" translate="yes" xml:space="preserve">
- <source>Stickers</source>
- <target state="new">Stickers</target>
- </trans-unit>
- <trans-unit id="CommonUI.Style" translate="yes" xml:space="preserve">
- <source>Style</source>
- <target state="new">Style</target>
- </trans-unit>
- <trans-unit id="AccessMicDialog.Content" translate="yes" xml:space="preserve">
- <source>Please allow access in the Windows Settings.</source>
- <target state="new">Please allow access in the Windows Settings.</target>
- </trans-unit>
- <trans-unit id="AccessMicDialog.Title" translate="yes" xml:space="preserve">
- <source>{0} can’t access your microphone.</source>
- <target state="new">{0} can’t access your microphone.</target>
- </trans-unit>
- <trans-unit id="NoMicDialog.Content" translate="yes" xml:space="preserve">
- <source>Please check microphone connections.</source>
- <target state="new">Please check microphone connections.</target>
- </trans-unit>
- <trans-unit id="NoMicDialog.Title" translate="yes" xml:space="preserve">
- <source>No microphone found.</source>
- <target state="new">No microphone found.</target>
- </trans-unit>
- <trans-unit id="NoSpeakerDialog.Content" translate="yes" xml:space="preserve">
- <source>Please check speaker or headphone connections.</source>
- <target state="new">Please check speaker or headphone connections.</target>
- </trans-unit>
- <trans-unit id="NoSpeakerDialog.Title" translate="yes" xml:space="preserve">
- <source>Audio device not detected</source>
- <target state="new">Audio device not detected</target>
- </trans-unit>
- <trans-unit id="TermsOfServiceWebview.Source" translate="yes" xml:space="preserve">
- <source>https://www.kdanmobile.com/en/terms_of_service</source>
- <target state="new">https://www.kdanmobile.com/en/terms_of_service</target>
- </trans-unit>
- <trans-unit id="PrivacyPolicyWebView.Source" translate="yes" xml:space="preserve">
- <source>https://www.kdanmobile.com/en/privacy_policy</source>
- <target state="new">https://www.kdanmobile.com/en/privacy_policy</target>
- </trans-unit>
- <trans-unit id="TooLongNameMessage" translate="yes" xml:space="preserve">
- <source>The new name is too long!</source>
- <target state="new">The new name is too long!</target>
- </trans-unit>
- <trans-unit id="CommonUI.Border" translate="yes" xml:space="preserve">
- <source>Border</source>
- <target state="new">Border</target>
- </trans-unit>
- <trans-unit id="CommonUI.Fill" translate="yes" xml:space="preserve">
- <source>Fill</source>
- <target state="new">Fill</target>
- </trans-unit>
- <trans-unit id="CommonUI.Thickness" translate="yes" xml:space="preserve">
- <source>Thickness</source>
- <target state="new">Thickness</target>
- </trans-unit>
- <trans-unit id="ViewTutorialArticle" translate="yes" xml:space="preserve">
- <source>View tutorial article</source>
- <target state="new">View tutorial article</target>
- </trans-unit>
- <trans-unit id="CommonUI.BrokenImage" translate="yes" xml:space="preserve">
- <source>The image is broken. Please choose a new one.</source>
- <target state="new">The image is broken. Please choose a new one.</target>
- </trans-unit>
- <trans-unit id="CommonUI.Later" translate="yes" xml:space="preserve">
- <source>Later</source>
- <target state="new">Later</target>
- </trans-unit>
- <trans-unit id="NotShowAgain" translate="yes" xml:space="preserve">
- <source>Do not show again</source>
- <target state="new">Do not show again</target>
- </trans-unit>
- <trans-unit id="PDFMobileContent" translate="yes" xml:space="preserve">
- <source>Edit PDFs directly on your iOS and Android devices. Enjoy the all-in-one document expert for workplace mobility.</source>
- <target state="new">Edit PDFs directly on your iOS and Android devices. Enjoy the all-in-one document expert for workplace mobility.</target>
- </trans-unit>
- <trans-unit id="PDFMobileTip" translate="yes" xml:space="preserve">
- <source>Bring the Power of PDF Reader to Mobile</source>
- <target state="new">Bring the Power of PDF Reader to Mobile</target>
- </trans-unit>
- <trans-unit id="CommonUI.ItemsAttached" translate="yes" xml:space="preserve">
- <source>Add other attachments</source>
- <target state="new">Add other attachments</target>
- </trans-unit>
- <trans-unit id="CommonUI.SelectFile" translate="yes" xml:space="preserve">
- <source>Choose File</source>
- <target state="new">Choose File</target>
- </trans-unit>
- <trans-unit id="CommonUI.Guest" translate="yes" xml:space="preserve">
- <source>Continue as Guest</source>
- <target state="new">Continue as Guest</target>
- </trans-unit>
- <trans-unit id="CommonUI.ZendeskLoginTip" translate="yes" xml:space="preserve">
- <source>To keep track of your support requests and receive emails from our customer support team, please sign in with your Kdan ID.</source>
- <target state="new">To keep track of your support requests and receive emails from our customer support team, please sign in with your Kdan ID.</target>
- </trans-unit>
- <trans-unit id="KdanOfficalWeb" translate="yes" xml:space="preserve">
- <source>Visit Official Website</source>
- <target state="new">Visit Official Website</target>
- </trans-unit>
- <trans-unit id="CommonUI.ConvertStart" translate="yes" xml:space="preserve">
- <source>Start</source>
- <target state="new">Start</target>
- </trans-unit>
- <trans-unit id="PrivacyPolicyButton2.Content" translate="yes" xml:space="preserve">
- <source></source>
- <target state="new"></target>
- </trans-unit>
- <trans-unit id="SubscribeTo3" translate="yes" xml:space="preserve">
- <source></source>
- <target state="new"></target>
- </trans-unit>
- <trans-unit id="D365GetStarted" translate="yes" xml:space="preserve">
- <source>Get Started</source>
- <target state="new">Get Started</target>
- </trans-unit>
- <trans-unit id="FreeGetStarted" translate="yes" xml:space="preserve">
- <source>Get Started</source>
- <target state="new">Get Started</target>
- </trans-unit>
- <trans-unit id="PrivacyPolicy" translate="yes" xml:space="preserve">
- <source>Privacy Policy</source>
- <target state="new">Privacy Policy</target>
- </trans-unit>
- <trans-unit id="CommonUI.BuiltInCvt" translate="yes" xml:space="preserve">
- <source>Built-in Converter</source>
- <target state="new">Built-in Converter</target>
- </trans-unit>
- <trans-unit id="CommonUI.Clear" translate="yes" xml:space="preserve">
- <source>Clear</source>
- <target state="new">Clear</target>
- </trans-unit>
- <trans-unit id="PrivacyPolicyButton.NavigateUri" translate="yes" xml:space="preserve">
- <source>https://www.kdanmobile.com/privacy_policy</source>
- <target state="new">https://www.kdanmobile.com/privacy_policy</target>
- </trans-unit>
- <trans-unit id="TermsofServiceButton.NavigateUri" translate="yes" xml:space="preserve">
- <source>https://www.kdanmobile.com/terms_of_service</source>
- <target state="new">https://www.kdanmobile.com/terms_of_service</target>
- </trans-unit>
- <trans-unit id="AnnuallySubscriptionSavingTip" translate="yes" xml:space="preserve">
- <source>Save {0}. Billed annually at {1}</source>
- <target state="new">Save {0}. Billed annually at {1}</target>
- </trans-unit>
- <trans-unit id="CommonUI.MonthlyPlan" translate="yes" xml:space="preserve">
- <source>Monthly Plan</source>
- <target state="new">Monthly Plan</target>
- </trans-unit>
- <trans-unit id="QuarterlySubscriptionSavingTip" translate="yes" xml:space="preserve">
- <source>Save {0}. Billed quarterly at {1}</source>
- <target state="new">Save {0}. Billed quarterly at {1}</target>
- </trans-unit>
- <trans-unit id="SeeAllFeatures" translate="yes" xml:space="preserve">
- <source>See All Features</source>
- <target state="new">See All Features</target>
- </trans-unit>
- <trans-unit id="SubscribedPlanTip" translate="yes" xml:space="preserve">
- <source>You're subscribed to {0}</source>
- <target state="new">You're subscribed to {0}</target>
- </trans-unit>
- <trans-unit id="SubscriptionTip" translate="yes" xml:space="preserve">
- <source>Subscription auto-renews. Cancel anytime.</source>
- <target state="new">Subscription auto-renews. Cancel anytime.</target>
- </trans-unit>
- <trans-unit id="AutoRenewTip" translate="yes" xml:space="preserve">
- <source>Auto-renew subscription at {0} after a {1}-day trial.</source>
- <target state="new">Auto-renew subscription at {0} after a {1}-day trial.</target>
- </trans-unit>
- <trans-unit id="C365Guide.ADIntro" translate="yes" xml:space="preserve">
- <source>Create beautiful hand-drawn animations</source>
- <target state="new">Create beautiful hand-drawn animations</target>
- </trans-unit>
- <trans-unit id="C365Guide.AllPlatform" translate="yes" xml:space="preserve">
- <source>All Access Pass to Creativity 365 Suite Across All Platforms</source>
- <target state="new">All Access Pass to Creativity 365 Suite Across All Platforms</target>
- </trans-unit>
- <trans-unit id="C365Guide.Backup" translate="yes" xml:space="preserve">
- <source>Backup and share projects with 1TB cloud storage.</source>
- <target state="new">Backup and share projects with 1TB cloud storage.</target>
- </trans-unit>
- <trans-unit id="C365Guide.Credit" translate="yes" xml:space="preserve">
- <source>Bonus Kdan Credits for faxes and online converting services</source>
- <target state="new">Bonus Kdan Credits for faxes and online converting services</target>
- </trans-unit>
- <trans-unit id="C365Guide.Customer" translate="yes" xml:space="preserve">
- <source>Priority customer support</source>
- <target state="new">Priority customer support</target>
- </trans-unit>
- <trans-unit id="C365Guide.Description1" translate="yes" xml:space="preserve">
- <source>Access Creativity 365 Suite Across Devices</source>
- <target state="new">Access Creativity 365 Suite Across Devices</target>
- </trans-unit>
- <trans-unit id="C365Guide.Description2" translate="yes" xml:space="preserve">
- <source>Free Trial Availabe</source>
- <target state="new">Free Trial Availabe</target>
- </trans-unit>
- <trans-unit id="C365Guide.Intro1" translate="yes" xml:space="preserve">
- <source>Get creative with a holistic content creation suite.</source>
- <target state="new">Get creative with a holistic content creation suite.</target>
- </trans-unit>
- <trans-unit id="C365Guide.Intro2" translate="yes" xml:space="preserve">
- <source>Backup and share projects with 1TB cloud storage.</source>
- <target state="new">Backup and share projects with 1TB cloud storage.</target>
- </trans-unit>
- <trans-unit id="C365Guide.Intro3" translate="yes" xml:space="preserve">
- <source>Sync and work seamlessly across all devices.</source>
- <target state="new">Sync and work seamlessly across all devices.</target>
- </trans-unit>
- <trans-unit id="C365Guide.MUIntro" translate="yes" xml:space="preserve">
- <source>Annotate, edit, and share documents with one of the most popular PDF reader apps.</source>
- <target state="new">Annotate, edit, and share documents with one of the most popular PDF reader apps.</target>
- </trans-unit>
- <trans-unit id="C365Guide.NLIntro" translate="yes" xml:space="preserve">
- <source>Collect graphics, clips, and sound. Capture every idea and inspiration.</source>
- <target state="new">Collect graphics, clips, and sound. Capture every idea and inspiration.</target>
- </trans-unit>
- <trans-unit id="C365Guide.Service" translate="yes" xml:space="preserve">
- <source>Services</source>
- <target state="new">Services</target>
- </trans-unit>
- <trans-unit id="C365Guide.WVIntro" translate="yes" xml:space="preserve">
- <source>Make Your Best Story Sparkles</source>
- <target state="new">Make Your Best Story Sparkles</target>
- </trans-unit>
- <trans-unit id="CloudGuide.Feature1" translate="yes" xml:space="preserve">
- <source>500 GB Kdan Cloud Storage to back up your projects</source>
- <target state="new">500 GB Kdan Cloud Storage to back up your projects</target>
- </trans-unit>
- <trans-unit id="CloudGuide.Feature2" translate="yes" xml:space="preserve">
- <source>Sync your project is across devices</source>
- <target state="new">Sync your project is across devices</target>
- </trans-unit>
- <trans-unit id="CloudGuide.Feature3" translate="yes" xml:space="preserve">
- <source>Manage and view your files online</source>
- <target state="new">Manage and view your files online</target>
- </trans-unit>
- <trans-unit id="CloudGuide.Feature4" translate="yes" xml:space="preserve">
- <source>Share links with password protection</source>
- <target state="new">Share links with password protection</target>
- </trans-unit>
- <trans-unit id="CommonUI.RememberMe" translate="yes" xml:space="preserve">
- <source>Remember Me</source>
- <target state="new">Remember Me</target>
- </trans-unit>
- <trans-unit id="GetMoreWithPlan" translate="yes" xml:space="preserve">
- <source>Get more with {0} 🡢</source>
- <target state="new">Get more with {0} 🡢</target>
- </trans-unit>
- <trans-unit id="CommonUI.Format" translate="yes" xml:space="preserve">
- <source>Format</source>
- <target state="new">Format</target>
- </trans-unit>
- <trans-unit id="CommonUI.Trim" translate="yes" xml:space="preserve">
- <source>Trim</source>
- <target state="new">Trim</target>
- </trans-unit>
- <trans-unit id="StorageStatus" translate="yes" xml:space="preserve">
- <source>{0} MB used out of {1} GB</source>
- <target state="new">{0} MB used out of {1} GB</target>
- </trans-unit>
- <trans-unit id="GetMore" translate="yes" xml:space="preserve">
- <source>Get More</source>
- <target state="new">Get More</target>
- </trans-unit>
- <trans-unit id="NoSubscriptionHint" translate="yes" xml:space="preserve">
- <source>You are using the basic plan.</source>
- <target state="new">You are using the basic plan.</target>
- </trans-unit>
- <trans-unit id="SubscriptionStatus" translate="yes" xml:space="preserve">
- <source>{0} / Expiration date: {1}</source>
- <target state="new">{0} / Expiration date: {1}</target>
- </trans-unit>
- <trans-unit id="EditProfile" translate="yes" xml:space="preserve">
- <source>Edit Profile</source>
- <target state="new">Edit Profile</target>
- </trans-unit>
- <trans-unit id="ProfilePicture" translate="yes" xml:space="preserve">
- <source>Profile Picture</source>
- <target state="new">Profile Picture</target>
- </trans-unit>
- <trans-unit id="CommonUI.NickName" translate="yes" xml:space="preserve">
- <source>Nickname</source>
- <target state="new">Nickname</target>
- </trans-unit>
- <trans-unit id="BTSTitle" translate="yes" xml:space="preserve">
- <source>Back to School Special Offer</source>
- <target state="new">Back to School Special Offer</target>
- </trans-unit>
- <trans-unit id="GetOffer" translate="yes" xml:space="preserve">
- <source>Get the Offer</source>
- <target state="new">Get the Offer</target>
- </trans-unit>
- <trans-unit id="LifetimePromoDescription" translate="yes" xml:space="preserve">
- <source>No more billing cycles. Get the lifetime access deal for {0} and access all features on {1}. This offer expires on {2}.</source>
- <target state="new">No more billing cycles. Get the lifetime access deal for {0} and access all features on {1}. This offer expires on {2}.</target>
- </trans-unit>
- <trans-unit id="LifetimePromoTips" translate="yes" xml:space="preserve">
- <source>This offer does not include Kdan Cloud storage or Kdan credits. This offer overlaps with the {0} subscription plans.</source>
- <target state="new">This offer does not include Kdan Cloud storage or Kdan credits. This offer overlaps with the {0} subscription plans.</target>
- </trans-unit>
- <trans-unit id="ViewSubscriptionPlans" translate="yes" xml:space="preserve">
- <source>View subscription plans.</source>
- <target state="new">View subscription plans.</target>
- </trans-unit>
- <trans-unit id="OnetimePurchaseDescription" translate="yes" xml:space="preserve">
- <source>Access all premium features in {0} with a one-time purchase.</source>
- <target state="new">Access all premium features in {0} with a one-time purchase.</target>
- </trans-unit>
- <trans-unit id="LanguageSettingsDialog2" translate="yes" xml:space="preserve">
- <source>To change the app language to {0}, please restart {1} for the changes to take effect.</source>
- <target state="new">To change the app language to {0}, please restart {1} for the changes to take effect.</target>
- </trans-unit>
- <trans-unit id="Cards.DottedSignCardDescription" translate="yes" xml:space="preserve">
- <source>Digitize your signature process and enjoy the freedom of workplace mobility.</source>
- <target state="new">Digitize your signature process and enjoy the freedom of workplace mobility.</target>
- </trans-unit>
- <trans-unit id="Cards.DottedSignCardName" translate="yes" xml:space="preserve">
- <source>Say Hello to DottedSign</source>
- <target state="new">Say Hello to DottedSign</target>
- </trans-unit>
- <trans-unit id="CommonUI.Brush" translate="yes" xml:space="preserve">
- <source>Brush</source>
- <target state="new">Brush</target>
- </trans-unit>
- <trans-unit id="CommonUI.MergeAll" translate="yes" xml:space="preserve">
- <source>Merge all</source>
- <target state="new">Merge all</target>
- </trans-unit>
- <trans-unit id="CommonUI.Play" translate="yes" xml:space="preserve">
- <source>Play</source>
- <target state="new">Play</target>
- </trans-unit>
- <trans-unit id="CommonUI.Stop" translate="yes" xml:space="preserve">
- <source>Stop</source>
- <target state="new">Stop</target>
- </trans-unit>
- <trans-unit id="CommonUI.Buy" translate="yes" xml:space="preserve">
- <source>Buy</source>
- <target state="new">Buy</target>
- </trans-unit>
- <trans-unit id="CommonUI.Cover" translate="yes" xml:space="preserve">
- <source>Cover</source>
- <target state="new">Cover</target>
- </trans-unit>
- <trans-unit id="CommonUI.Covers" translate="yes" xml:space="preserve">
- <source>Covers</source>
- <target state="new">Covers</target>
- </trans-unit>
- <trans-unit id="CommonUI.Custom" translate="yes" xml:space="preserve">
- <source>Custom</source>
- <target state="new">Custom</target>
- </trans-unit>
- <trans-unit id="CommonUI.Downloading" translate="yes" xml:space="preserve">
- <source>Downloading</source>
- <target state="new">Downloading</target>
- </trans-unit>
- <trans-unit id="CommonUI.FileName" translate="yes" xml:space="preserve">
- <source>File name</source>
- <target state="new">File name</target>
- </trans-unit>
- <trans-unit id="CommonUI.Free" translate="yes" xml:space="preserve">
- <source>Free</source>
- <target state="new">Free</target>
- </trans-unit>
- <trans-unit id="CommonUI.Group" translate="yes" xml:space="preserve">
- <source>Group</source>
- <target state="new">Group</target>
- </trans-unit>
- <trans-unit id="CommonUI.Location" translate="yes" xml:space="preserve">
- <source>Location</source>
- <target state="new">Location</target>
- </trans-unit>
- <trans-unit id="CommonUI.Owned" translate="yes" xml:space="preserve">
- <source>Owned</source>
- <target state="new">Owned</target>
- </trans-unit>
- <trans-unit id="CommonUI.PasswordLock" translate="yes" xml:space="preserve">
- <source>Password Lock</source>
- <target state="new">Password Lock</target>
- </trans-unit>
- <trans-unit id="CommonUI.Published" translate="yes" xml:space="preserve">
- <source>Published</source>
- <target state="new">Published</target>
- </trans-unit>
- <trans-unit id="CommonUI.SelectLocation" translate="yes" xml:space="preserve">
- <source>Select where you want to save the file</source>
- <target state="new">Select where you want to save the file</target>
- </trans-unit>
- <trans-unit id="CommonUI.Unlock" translate="yes" xml:space="preserve">
- <source>Unlock</source>
- <target state="new">Unlock</target>
- </trans-unit>
- <trans-unit id="CommonUI/Downloaded" translate="yes" xml:space="preserve">
- <source>Downloaded</source>
- <target state="new">Downloaded</target>
- </trans-unit>
- <trans-unit id="RestorePurchase" translate="yes" xml:space="preserve">
- <source>Restore purchase</source>
- <target state="new">Restore purchase</target>
- </trans-unit>
- <trans-unit id="FollowInstagramButton.Content" translate="yes" xml:space="preserve">
- <source>Follow Us on Instagram</source>
- <target state="new">Follow Us on Instagram</target>
- </trans-unit>
- <trans-unit id="GetItNow" translate="yes" xml:space="preserve">
- <source>Get It Now</source>
- <target state="new">Get It Now</target>
- </trans-unit>
- <trans-unit id="SetUpAccountDescription" translate="yes" xml:space="preserve">
- <source>Carry your masterpiece with you with your Kdan ID.</source>
- <target state="new">Carry your masterpiece with you with your Kdan ID.</target>
- </trans-unit>
- <trans-unit id="SetUpAccountTitle" translate="yes" xml:space="preserve">
- <source>Set up Your Account to Get Start</source>
- <target state="new">Set up Your Account to Get Start</target>
- </trans-unit>
- <trans-unit id="Cards.D365Name" translate="yes" xml:space="preserve">
- <source>Get Document 365</source>
- <target state="new">Get Document 365</target>
- </trans-unit>
- <trans-unit id="PDFCardDescription" translate="yes" xml:space="preserve">
- <source>Work seamlessly with PDF Reader on your desktop and phones!</source>
- <target state="new">Work seamlessly with PDF Reader on your desktop and phones!</target>
- </trans-unit>
- <trans-unit id="Fax.ExtractError" translate="yes" xml:space="preserve">
- <source>Page extraction failed.</source>
- <target state="new">Page extraction failed.</target>
- </trans-unit>
- <trans-unit id="CloseSearchButton.Label" translate="yes" xml:space="preserve">
- <source>Close search</source>
- <target state="new">Close search</target>
- </trans-unit>
- <trans-unit id="CommonUI.GB" translate="yes" xml:space="preserve">
- <source>GB</source>
- <target state="new">GB</target>
- </trans-unit>
- <trans-unit id="CommonUI.MB" translate="yes" xml:space="preserve">
- <source>MB</source>
- <target state="new">MB</target>
- </trans-unit>
- <trans-unit id="CommonUI.TB" translate="yes" xml:space="preserve">
- <source>TB</source>
- <target state="new">TB</target>
- </trans-unit>
- <trans-unit id="CommonUI.Category" translate="yes" xml:space="preserve">
- <source>Category</source>
- <target state="new">Category</target>
- </trans-unit>
- <trans-unit id="CommonUI.Tag" translate="yes" xml:space="preserve">
- <source>Tag</source>
- <target state="new">Tag</target>
- </trans-unit>
- <trans-unit id="CommonUI.Tags" translate="yes" xml:space="preserve">
- <source>Tags</source>
- <target state="new">Tags</target>
- </trans-unit>
- <trans-unit id="CommonUI.Country" translate="yes" xml:space="preserve">
- <source>Country</source>
- <target state="new">Country</target>
- </trans-unit>
- <trans-unit id="CommonUI.Month2" translate="yes" xml:space="preserve">
- <source>/month</source>
- <target state="new">/month</target>
- </trans-unit>
- <trans-unit id="CommonUI/Move" translate="yes" xml:space="preserve">
- <source>Move</source>
- <target state="new">Move</target>
- </trans-unit>
- <trans-unit id="CommonUI.Settings" translate="yes" xml:space="preserve">
- <source>Settings</source>
- <target state="new">Settings</target>
- </trans-unit>
- <trans-unit id="CommonUI.Selected" translate="yes" xml:space="preserve">
- <source>selected</source>
- <target state="new">selected</target>
- </trans-unit>
- <trans-unit id="CommonUI.Audios" translate="yes" xml:space="preserve">
- <source>Audios</source>
- <target state="new">Audios</target>
- </trans-unit>
- <trans-unit id="SortMenu/FrameCount" translate="yes" xml:space="preserve">
- <source>Frame counts</source>
- <target state="new">Frame counts</target>
- </trans-unit>
- <trans-unit id="MoreProductString" translate="yes" xml:space="preserve">
- <source>More Product</source>
- <target state="new">More Product</target>
- </trans-unit>
- <trans-unit id="D365FlashSaleCardTitle" translate="yes" xml:space="preserve">
- <source>It's Crazy!</source>
- <target state="new">It's Crazy!</target>
- </trans-unit>
- <trans-unit id="D365FlashSaleCardDescription" translate="yes" xml:space="preserve">
- <source>Be productive with Document 365, now 50% off plus a free stylus!</source>
- <target state="new">Be productive with Document 365, now 50% off plus a free stylus!</target>
- </trans-unit>
- <trans-unit id="Cards.D365Description" translate="yes" xml:space="preserve">
- <source>Start your free trial today and work with PDFs from your smart devices to Mac and PC.</source>
- <target state="new">Start your free trial today and work with PDFs from your smart devices to Mac and PC.</target>
- </trans-unit>
- <trans-unit id="CommonUI.Pin" translate="yes" xml:space="preserve">
- <source>Pin</source>
- <target state="new">Pin</target>
- </trans-unit>
- <trans-unit id="CommonUI.FontSetting" translate="yes" xml:space="preserve">
- <source>Font Settings</source>
- <target state="new">Font Settings</target>
- </trans-unit>
- <trans-unit id="CommonUI.NextPage" translate="yes" xml:space="preserve">
- <source>Next Page</source>
- <target state="new">Next Page</target>
- </trans-unit>
- <trans-unit id="CommonUI.PreviousPage" translate="yes" xml:space="preserve">
- <source>Previous Page</source>
- <target state="new">Previous Page</target>
- </trans-unit>
- <trans-unit id="BuyLicense" translate="yes" xml:space="preserve">
- <source>Buy License</source>
- <target state="new">Buy License</target>
- </trans-unit>
- <trans-unit id="SubscribeD365Now" translate="yes" xml:space="preserve">
- <source>Subscribe Now</source>
- <target state="new">Subscribe Now</target>
- </trans-unit>
- <trans-unit id="C365Comparison.DescriptionV2" translate="yes" xml:space="preserve">
- <source>Unleash the full potential of your document productivity with Document 365</source>
- <target state="new">Unleash the full potential of your document productivity with Document 365</target>
- </trans-unit>
- <trans-unit id="C365Comparison.AnnualPlanDescriptionV2" translate="yes" xml:space="preserve">
- <source>Billed annually at {0} after 7-day trial ends.</source>
- <target state="new">Billed annually at {0} after 7-day trial ends.</target>
- </trans-unit>
- <trans-unit id="C365Comparison.AnnualPlanTipV2" translate="yes" xml:space="preserve">
- <source>Get Annual Plan and save up to 25%.</source>
- <target state="new">Get Annual Plan and save up to 25%.</target>
- </trans-unit>
- <trans-unit id="C365Comparison.QuarterlyPlanDescriptionV2" translate="yes" xml:space="preserve">
- <source>Billed quarterly at {0} after 7-day trial ends.</source>
- <target state="new">Billed quarterly at {0} after 7-day trial ends.</target>
- </trans-unit>
- <trans-unit id="C365Comparison.QuarterPlanTipV2" translate="yes" xml:space="preserve">
- <source>Pay every 3 months and enjoy flexible upgrades.</source>
- <target state="new">Pay every 3 months and enjoy flexible upgrades.</target>
- </trans-unit>
- <trans-unit id="LangDE" translate="yes" xml:space="preserve">
- <source>Deutsch</source>
- <target state="new">Deutsch</target>
- </trans-unit>
- <trans-unit id="LangEN" translate="yes" xml:space="preserve">
- <source>English</source>
- <target state="new">English</target>
- </trans-unit>
- <trans-unit id="LangES" translate="yes" xml:space="preserve">
- <source>Español</source>
- <target state="new">Español</target>
- </trans-unit>
- <trans-unit id="LangFR" translate="yes" xml:space="preserve">
- <source>Français</source>
- <target state="new">Français</target>
- </trans-unit>
- <trans-unit id="LangIT" translate="yes" xml:space="preserve">
- <source>Italiano</source>
- <target state="new">Italiano</target>
- </trans-unit>
- <trans-unit id="LangJA" translate="yes" xml:space="preserve">
- <source>日本語</source>
- <target state="new">日本語</target>
- </trans-unit>
- <trans-unit id="LangKO" translate="yes" xml:space="preserve">
- <source>한국어</source>
- <target state="new">한국어</target>
- </trans-unit>
- <trans-unit id="LangPT" translate="yes" xml:space="preserve">
- <source>Português</source>
- <target state="new">Português</target>
- </trans-unit>
- <trans-unit id="LangRU" translate="yes" xml:space="preserve">
- <source>русский</source>
- <target state="new">русский</target>
- </trans-unit>
- <trans-unit id="LangZHCN" translate="yes" xml:space="preserve">
- <source>简体中文</source>
- <target state="new">简体中文</target>
- </trans-unit>
- <trans-unit id="LangZHTW" translate="yes" xml:space="preserve">
- <source>繁體中文</source>
- <target state="new">繁體中文</target>
- </trans-unit>
- <trans-unit id="CommonUI.ClearAll" translate="yes" xml:space="preserve">
- <source>Clear all</source>
- <target state="new">Clear all</target>
- </trans-unit>
- <trans-unit id="CommonUI/CustomRange" translate="yes" xml:space="preserve">
- <source>Custom range</source>
- <target state="new">Custom range</target>
- </trans-unit>
- <trans-unit id="CommonUI/DeleteAll" translate="yes" xml:space="preserve">
- <source>Delete all</source>
- <target state="new">Delete all</target>
- </trans-unit>
- <trans-unit id="CommonUI/EvenPages" translate="yes" xml:space="preserve">
- <source>Even pages</source>
- <target state="new">Even pages</target>
- </trans-unit>
- <trans-unit id="CommonUI/Interrupt" translate="yes" xml:space="preserve">
- <source>Interrupt</source>
- <target state="new">Interrupt</target>
- </trans-unit>
- <trans-unit id="CommonUI/OddPages" translate="yes" xml:space="preserve">
- <source>Odd pages</source>
- <target state="new">Odd pages</target>
- </trans-unit>
- <trans-unit id="CommonUI/Preview" translate="yes" xml:space="preserve">
- <source>Preview</source>
- <target state="new">Preview</target>
- </trans-unit>
- <trans-unit id="CommonUI/Progress" translate="yes" xml:space="preserve">
- <source>Progress</source>
- <target state="new">Progress</target>
- </trans-unit>
- <trans-unit id="CommonUI/Remove" translate="yes" xml:space="preserve">
- <source>Remove</source>
- <target state="new">Remove</target>
- </trans-unit>
- <trans-unit id="CommonUI/RemoveAll" translate="yes" xml:space="preserve">
- <source>Remove all</source>
- <target state="new">Remove all</target>
- </trans-unit>
- <trans-unit id="PrinterName" translate="yes" xml:space="preserve">
- <source>Printer</source>
- <target state="new">Printer</target>
- </trans-unit>
- <trans-unit id="Print_Copies" translate="yes" xml:space="preserve">
- <source>Copies</source>
- <target state="new">Copies</target>
- </trans-unit>
- <trans-unit id="Print_DuplexPrint" translate="yes" xml:space="preserve">
- <source>Duplex printing</source>
- <target state="new">Duplex printing</target>
- </trans-unit>
- <trans-unit id="Print_PaperSize" translate="yes" xml:space="preserve">
- <source>Paper size</source>
- <target state="new">Paper size</target>
- </trans-unit>
- <trans-unit id="CommonUI.Bold" translate="yes" xml:space="preserve">
- <source>Bold</source>
- <target state="new">Bold</target>
- </trans-unit>
- <trans-unit id="CommonUI.BoldItalic" translate="yes" xml:space="preserve">
- <source>Bold Italic</source>
- <target state="new">Bold Italic</target>
- </trans-unit>
- <trans-unit id="CommonUI.Italic" translate="yes" xml:space="preserve">
- <source>Italic</source>
- <target state="new">Italic</target>
- </trans-unit>
- <trans-unit id="CommonUI.Regular" translate="yes" xml:space="preserve">
- <source>Regular</source>
- <target state="new">Regular</target>
- </trans-unit>
- <trans-unit id="CommonUI.Apply" translate="yes" xml:space="preserve">
- <source>Apply</source>
- <target state="new">Apply</target>
- </trans-unit>
- </group>
- </body>
- </file>
- </xliff>
|