| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319 |
- # Translation of Tribe Common in Chinese (China)
- # This file is distributed under the same license as the Tribe Common package.
- msgid ""
- msgstr ""
- "PO-Revision-Date: 2016-08-31 22:56:25+0000\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "Plural-Forms: nplurals=1; plural=0;\n"
- "X-Generator: GlotPress/2.3.1\n"
- "Language: zh_CN\n"
- "Project-Id-Version: Tribe Common\n"
- #: vendor/a5hleyrich/wp-background-processing/classes/wp-background-process.php:425
- msgid "Every %d Minutes"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:33
- msgid "Search our support help desk"
- msgstr ""
- #: src/Tribe/Plugins_API.php:71
- msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Tickets have QR codes for easy check in at the door."
- msgstr ""
- #: src/Tribe/Validate.php:184
- msgid "%s must not be empty"
- msgstr ""
- #: src/Tribe/Validate.php:545
- msgid "%s must be an email address."
- msgstr ""
- #: src/Tribe/Languages/Locations.php:252
- msgid "Sint Maarten"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:245
- msgid "São Tomé and Príncipe"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:238
- msgid "Saint Helena"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:237
- msgid "Saint Barthélemy"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:113
- msgid "Curaçao"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:103
- msgid "Collectivity of Saint Martin"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:57
- msgid "Åland Islands"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:20
- msgid "Check out our %s for developers."
- msgstr ""
- #: src/admin-views/tribe-options-help.php:18
- msgid "Want to dive deeper?"
- msgstr ""
- #: src/admin-views/tribe-options-display.php:28
- msgid "The following three fields accept the date format options available to the PHP %1$s function. <a href=\"%2$s\" target=\"_blank\">Learn how to make your own date format here</a>."
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:57
- msgid "A list of links to the term own, archive and parent REST URL"
- msgstr ""
- #: src/Tribe/Main.php:250
- msgid "Clear Selection."
- msgstr ""
- #: src/Tribe/Main.php:249
- msgid "Select all pages"
- msgstr ""
- #: src/Tribe/Main.php:248
- msgid "All items on this page were selected. "
- msgstr ""
- #: src/Tribe/Plugins_API.php:94
- msgid "Accept user-submitted events on your site! With Community Events, you can accept public submissions or require account sign-on. Settings give you the options to save as a draft or publish automatically, enable categories and tags, and choose whether users can edit/manage their own events or simply submit. Best of all - setup is easy! Just activate, configure the options, and off you go."
- msgstr ""
- #: src/Tribe/Plugins_API.php:37
- msgid "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
- msgstr ""
- #: src/Tribe/Ajax/Dropdown.php:243
- msgid "The \"%s\" source is invalid and cannot be reached on \"%s\" instance."
- msgstr ""
- #: src/Tribe/Ajax/Dropdown.php:193
- msgid "Empty data set for this dropdown"
- msgstr ""
- #: src/Tribe/Ajax/Dropdown.php:180
- msgid "Missing data source for this dropdown"
- msgstr ""
- #: src/Tribe/Ajax/Dropdown.php:38
- msgid "Cannot look for Terms without a taxonomy"
- msgstr ""
- #: src/Tribe/Plugins_API.php:60
- msgid "Event Tickets provides a simple way for visitors to RSVP to your events. As a standalone plugin, it enables you to add RSVP functionality to posts or pages. When paired with The Events Calendar, you can add that same RSVP functionality directly to your event listings."
- msgstr ""
- #: src/Tribe/Plugins_API.php:28
- msgid "Create an events calendar and manage it with ease. The Events Calendar plugin provides professional-level quality and features backed by a team you can trust."
- msgstr ""
- #: src/Tribe/PUE/Checker.php:1095
- msgid "There is a new version of %1$s available. %2$s"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:1084
- msgid "Update now to version %s."
- msgstr ""
- #: src/Tribe/PUE/Notices.php:340
- msgid "You can always check the status of your licenses by logging in to %1$syour account on theeventscalendar.com%2$s."
- msgstr ""
- #: src/Tribe/PUE/Notices.php:225
- msgid "It looks like you're using %1$s, but the license key is invalid. Please download the latest version %2$sfrom your account%3$s."
- msgid_plural "It looks like you're using %1$s, but the license keys are invalid. Please download the latest versions %2$sfrom your account%3$s."
- msgstr[0] ""
- #: src/Tribe/PUE/Checker.php:976
- msgid "Please refresh the page and try your request again."
- msgstr ""
- #: src/Tribe/Plugins_API.php:129
- msgid "Take your image widgets to the next level with Image Widget Plus! We've taken the simple functionality of our basic Image Widget and amped it up with several popular feature requests - multiple image support, slideshow, lightbox, and random image - all backed by a full year of premium support."
- msgstr ""
- #: src/Tribe/Plugins_API.php:125
- msgid "Image Widget Plus"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:52
- msgid "The URL to the term archive page"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:48
- msgid "The number of posts associated with the term"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:44
- msgid "The term parent term if any"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:40
- msgid "The term description"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:36
- msgid "The taxonomy the term belongs to"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:32
- msgid "The term slug"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:28
- msgid "The term name"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:24
- msgid "The WordPress term ID"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
- msgid "The link to the image in the specified size on the site"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:32
- msgid "The image mime-type"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:28
- msgid "The image height in pixels in the specified size"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:24
- msgid "The image width in pixels in the specified size"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
- msgid "The details about each size available for the image"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
- msgid "The image natural height in pixels"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
- msgid "The image natural width in pixels"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
- msgid "The image file extension"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
- msgid "The image WordPress post ID"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
- msgid "The URL to the full size version of the image"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:44
- msgid "The date seconds"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:40
- msgid "The date minutes"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:36
- msgid "The date hour"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:32
- msgid "The date day"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:28
- msgid "The date month"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:24
- msgid "The date year"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:34
- msgid "A sorted array of all the numeric values for the cost"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:28
- msgid "The position of the currency symbol in the cost string"
- msgstr ""
- #: src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:24
- msgid "The cost currency symbol"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:497
- msgid "%1$sBuy a license%2$s for the Event Aggregator service to access additional import features."
- msgstr ""
- #: src/Tribe/Validate.php:248
- msgid "%s must be a whole number."
- msgstr ""
- #: src/Tribe/Settings.php:281 src/Tribe/Settings.php:282
- msgid "Events Help"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:1670
- msgid "Expired license. Consult your network administrator."
- msgstr ""
- #: src/Tribe/PUE/Checker.php:1669
- msgid "No license entered. Consult your network administrator."
- msgstr ""
- #: src/Tribe/PUE/Checker.php:1668
- msgid "A valid license has been entered by your network administrator."
- msgstr ""
- #: src/Tribe/PUE/Checker.php:550
- msgid "Site License Key"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:539
- msgid "Check this box if you wish to override the network license key with your own"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:538
- msgid "Override network license key"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:529 src/Tribe/PUE/Checker.php:563
- msgid "License Key Status:"
- msgstr ""
- #: src/Tribe/Customizer.php:570
- msgid "Use the following panel of your customizer to change the styling of your Calendar and Event pages."
- msgstr ""
- #: src/Tribe/Extension.php:368
- msgid "Unable to run Tribe Extensions. Your website host is running PHP 5.2 or older, and has likely disabled or misconfigured debug_backtrace(). You, or your website host, will need to upgrade PHP or properly configure debug_backtrace() for Tribe Extensions to work."
- msgstr ""
- #: src/Tribe/Extension.php:144
- msgid "Tutorial"
- msgstr ""
- #: src/admin-views/app-shop.php:31
- msgid "Installed"
- msgstr ""
- #: src/admin-views/app-shop.php:29
- msgid "Installed Add-Ons"
- msgstr ""
- #: src/Tribe/Admin/Notice/Plugin_Download.php:92
- msgctxt "the final separator in a list of two or more items"
- msgid " and "
- msgstr ""
- #: src/Tribe/Admin/Notice/Plugin_Download.php:91
- msgctxt "separator used in a list of items"
- msgid ", "
- msgstr ""
- #: src/admin-views/tribe-options-help.php:55
- msgid "Event Log"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:42
- msgid "The details of your calendar plugin and settings is often needed for you or our staff to help troubleshoot an issue. Please opt-in below to automatically share your system information with our support team. This will allow us to assist you faster if you post in our help desk."
- msgstr ""
- #: src/admin-views/app-shop.php:26
- msgid "Buy This Add-On"
- msgstr ""
- #: src/admin-views/app-shop.php:5
- msgid "Browse All Add-Ons"
- msgstr ""
- #: src/admin-views/app-shop.php:4
- msgid "Events Add-Ons"
- msgstr ""
- #: src/Tribe/PUE/Notices.php:383
- msgctxt "formatted plugin list"
- msgid "%1$s and %2$s"
- msgstr ""
- #: src/Tribe/PUE/Notices.php:302
- msgid "You have a license key for %1$s but the key is out of installs. %2$sVisit the Events Calendar website%3$s to manage your installs, upgrade your license, or purchase a new one."
- msgid_plural "You have license keys for %1$s but your keys are out of installs. %2$sVisit the Events Calendar website%3$s to manage your installs, upgrade your licenses, or purchase new ones."
- msgstr[0] ""
- #: src/Tribe/PUE/Notices.php:270
- msgid "There is an update available for %1$s but your license has expired. %2$sVisit the Events Calendar website to renew your license.%3$s"
- msgid_plural "Updates are available for %1$s but your license keys have expired. %2$sVisit the Events Calendar website to renew your licenses.%3$s"
- msgstr[0] ""
- #: src/Tribe/PUE/Checker.php:1054
- msgid "There is an update for %s. %sRenew your license%s to get access to bug fixes, security updates, and new features."
- msgstr ""
- #: src/Tribe/PUE/Checker.php:997
- msgid "There is an update for %s. You'll need to %scheck your license%s to have access to updates, downloads, and support."
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:219 src/Tribe/Plugins_API.php:34
- msgid "Event Aggregator"
- msgstr ""
- #: src/Tribe/Admin/Notice/Plugin_Download.php:75
- msgid "To begin using %1$s, please install and activate the latest version of %2$s."
- msgstr ""
- #: src/admin-views/tribe-options-licenses.php:30
- msgid "Not seeing an update but expecting one? In WordPress, go to %1$sDashboard > Updates%2$s and click \"Check Again\"."
- msgstr ""
- #: src/admin-views/tribe-options-licenses.php:25
- msgid "If you're seeing a red message telling you that your key isn't valid or is out of installs, visit %1$s to manage your installs or renew / upgrade your license."
- msgstr ""
- #: src/admin-views/tribe-options-licenses.php:22
- msgid "Each paid add-on has its own unique license key. Simply paste the key into its appropriate field below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message."
- msgstr ""
- #: src/admin-views/tribe-options-licenses.php:15
- msgid "The license key you received when completing your purchase from %1$s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. %3$sFind your license keys at %2$s%4$s."
- msgstr ""
- #: src/admin-views/tribe-options-licenses.php:11
- #: src/admin-views/tribe-options-licenses.php:16
- msgid " (opens in new window)"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:110
- msgid "Côte d'Ivoire"
- msgstr ""
- #: src/Tribe/Support.php:372
- msgid "Unique System Info Key Generated"
- msgstr ""
- #: src/Tribe/Support.php:358 src/Tribe/Support.php:384
- msgid "Permission Error"
- msgstr ""
- #: src/Tribe/Support.php:325 src/Tribe/Support.php:330
- msgid "Invalid Key"
- msgstr ""
- #: src/Tribe/Support.php:306
- msgid "Your system information will only be used by the Modern Tribe support team. All information is stored securely. We do not share this information with any third parties."
- msgstr ""
- #: src/Tribe/Support.php:305
- msgid "Yes, automatically share my system information with the Modern Tribe support team"
- msgstr ""
- #: src/Tribe/Support.php:171
- msgid "English"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:961 src/Tribe/PUE/Notices.php:285
- msgid " (opens in a new window)"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:959 src/Tribe/PUE/Notices.php:283
- msgid "Renew Your License Now"
- msgstr ""
- #: src/Tribe/Main.php:260
- msgid ": Selected 1 row"
- msgstr ""
- #: src/Tribe/Main.php:259
- msgid ": Selected %d rows"
- msgstr ""
- #: src/Tribe/Main.php:254
- msgid "Previous"
- msgstr ""
- #: src/Tribe/Main.php:252
- msgid "All"
- msgstr ""
- #: src/Tribe/Main.php:246
- msgid "No matching records found"
- msgstr ""
- #: src/Tribe/Main.php:245
- msgid "(filtered from _MAX_ total entries)"
- msgstr ""
- #: src/Tribe/Main.php:244
- msgid "Showing 0 to 0 of 0 entries"
- msgstr ""
- #: src/Tribe/Main.php:243
- msgid "Showing _START_ to _END_ of _TOTAL_ entries"
- msgstr ""
- #: src/Tribe/Main.php:242
- msgid "No data available in table"
- msgstr ""
- #: src/Tribe/Main.php:241
- msgid "Show _MENU_ entries"
- msgstr ""
- #: src/Tribe/Main.php:239
- msgid ": activate to sort column descending"
- msgstr ""
- #: src/Tribe/Main.php:238
- msgid ": activate to sort column ascending"
- msgstr ""
- #: src/Tribe/Main.php:280
- msgid "Press \"Cmd + C\" to copy"
- msgstr ""
- #: src/Tribe/Main.php:279
- msgid "System info copied"
- msgstr ""
- #: src/Tribe/Main.php:278 src/admin-views/tribe-options-help.php:50
- msgid "Copy to clipboard"
- msgstr ""
- #: src/Tribe/Error.php:38
- msgid "An Unknown error occurred"
- msgstr ""
- #: src/Tribe/Plugins_API.php:116
- msgid "The Eventbrite Tickets add-on allows you to create & sell tickets through The Events Calendar using the power of %1$sEventbrite%2$s. Whether you’re creating your ticket on the WordPress dashboard or importing the details of an already-existing event from %1$sEventbrite.com%2$s, this add-on brings the power of the Eventbrite API to your calendar."
- msgstr ""
- #: src/Tribe/Plugins_API.php:105
- msgctxt "Names of required plugins for Community Tickets"
- msgid "Event Tickets Plus and Community Events"
- msgstr ""
- #: src/Tribe/Plugins_API.php:104
- msgid "Enable Community Events organizers to offer tickets to their events. You can set flexible payment and fee options. They can even check-in attendees to their events! All of this managed from the front-end of your site without ever needing to grant access to your admin"
- msgstr ""
- #: src/Tribe/Plugins_API.php:48
- msgid "The Events Calendar PRO is a paid Add-On to our open source WordPress plugin %1$sThe Events Calendar%2$s. PRO offers a whole host of calendar features including recurring events, custom event attributes, saved venues and organizers, venue pages, advanced event admin and lots more."
- msgstr ""
- #: src/Tribe/Plugins_API.php:84
- msgid "It is awesome that your calendar is <em>THE PLACE</em> to get hooked up with prime choice ways to spend time. You have more events than Jabba the Hutt has rolls. Too bad visitors are hiring a personal assistant to go through all the choices. Ever wish you could just filter the calendar to only show events in walking distance, on a weekend, that are free? BOOM. Now you can. Introducing… the Filter Bar."
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:227 src/Tribe/Plugins_API.php:80
- msgid "Filter Bar"
- msgstr ""
- #: src/Tribe/Credits.php:64
- msgid "Rate %1$sEvent Tickets%2$s %3$s"
- msgstr ""
- #: src/Tribe/Credits.php:55
- msgid "Rate %1$sThe Events Calendar%2$s %3$s"
- msgstr ""
- #: src/Tribe/Log/Null_Logger.php:26
- msgid "Null logger (will log nothing)"
- msgstr ""
- #: src/admin-views/event-log.php:117
- msgid "Download log"
- msgstr ""
- #: src/admin-views/event-log.php:100
- msgid "The selected log file is empty or has not been generated yet."
- msgstr ""
- #: src/admin-views/event-log.php:43
- msgid "Method"
- msgstr ""
- #: src/admin-views/event-log.php:21
- msgid "Logging level"
- msgstr ""
- #: src/Tribe/Validate.php:168
- msgid "%s must contain numbers, letters, dashes and undescores only"
- msgstr ""
- #: src/Tribe/Log.php:376
- msgid "Full debug (all events)"
- msgstr ""
- #: src/Tribe/Log.php:375
- msgid "Warnings and errors"
- msgstr ""
- #: src/Tribe/Log.php:374
- msgid "Only errors"
- msgstr ""
- #: src/Tribe/Log.php:373
- msgid "Disabled"
- msgstr ""
- #: src/Tribe/Log.php:274
- msgid "Cannot set %s as the current logging engine"
- msgstr ""
- #: src/Tribe/Log/File_Logger.php:128
- msgid "Default (uses temporary files)"
- msgstr ""
- #: src/Tribe/Log/Admin.php:148
- msgctxt "log engines"
- msgid "None currently available"
- msgstr ""
- #: src/Tribe/Log/Admin.php:133
- msgctxt "log selector"
- msgid "None currently available"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:52
- msgid "Recent Template Changes"
- msgstr ""
- #: src/Tribe/Support/Template_Checker_Report.php:115
- msgid "Information about recent template changes and potentially impacted template overrides is provided below."
- msgstr ""
- #: src/Tribe/Support/Template_Checker_Report.php:113
- msgid "No notable template changes detected."
- msgstr ""
- #: src/Tribe/Support/Template_Checker_Report.php:97
- msgid "based on %s version"
- msgstr ""
- #: src/Tribe/Support/Template_Checker_Report.php:96
- msgid "version data missing from override"
- msgstr ""
- #: src/Tribe/Support/Template_Checker_Report.php:92
- msgid "Existing theme overrides that may need revision:"
- msgstr ""
- #: src/Tribe/Support/Template_Checker_Report.php:82
- msgid "Templates introduced or updated with this release (%s):"
- msgstr ""
- #: src/Tribe/Support/Template_Checker_Report.php:78
- msgid "No notable changes detected"
- msgstr ""
- #. Description of the plugin/theme
- msgid "An event settings framework for managing shared options"
- msgstr ""
- #. Plugin Name of the plugin/theme
- msgid "Tribe Common"
- msgstr ""
- #: src/admin-views/tribe-options-licenses.php:47
- msgid "Only license fields for %1$snetwork activated%2$s plugins will be listed on this screen. "
- msgstr ""
- #: src/admin-views/tribe-options-help.php:38
- msgid "Read more about our support policy"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:30
- msgid "Please note that all hands-on support is provided via the forums. You can email or tweet at us… but we will probably point you back to the forums "
- msgstr ""
- #: src/admin-views/tribe-options-help.php:33
- msgid "%s. There are very few issues we haven’t seen and it’s likely another user has already asked your question and gotten an answer from our support staff. While posting to the help desk is open only to paid customers, they are open for anyone to search and review."
- msgstr ""
- #: src/admin-views/tribe-options-help.php:32
- msgid "Test for a theme or plugin conflict"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:32
- msgid "%s. Testing for an existing conflict is the best start for in-depth troubleshooting. We will often ask you to follow these steps when opening a new thread, so doing this ahead of time will be super helpful."
- msgstr ""
- #: src/admin-views/tribe-options-help.php:31
- msgid "Check our Knowledgebase"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:31
- msgid "%s. All of the common (and not-so-common) answers to questions we see are here. It’s often the fastest path to finding an answer!"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:27
- msgid "While the resources above help solve a majority of the issues we see, there are times you might be looking for extra support. If you need assistance using our plugins and would like us to take a look, please follow these steps:"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:26
- msgid "Getting More Help"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:21
- msgid "list of available functions"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:15
- msgid "Knowledgebase"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:15
- msgid "Our website’s %s is a great place to find tips and tricks for using and customizing our plugins."
- msgstr ""
- #: src/admin-views/tribe-options-help.php:14
- msgid "Getting Support"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:11
- msgid "Thank you for using %s! All of us at Modern Tribe sincerely appreciate your support and we’re excited to see you using our plugins."
- msgstr ""
- #: src/admin-views/tribe-options-general.php:15
- msgid "Optimize your site's event listings with %1$sThe Events Calendar%2$s, our free calendar plugin. Looking for additional functionality including recurring events, user-submission, advanced ticket sales and more? Check out our %3$spremium add-ons%4$s."
- msgstr ""
- #: src/admin-views/tribe-options-general.php:10
- msgid "Thank you for using Event Tickets! All of us at Modern Tribe sincerely appreciate your support and we're excited to see you using our plugins. Check out our handy %1$sNew User Primer%2$s to get started."
- msgstr ""
- #: src/Tribe/Validate.php:214
- msgid "%s must be a positive number or percent."
- msgstr ""
- #: src/Tribe/PUE/Checker.php:932
- msgid "Thanks for setting up a valid key. It will expire on %s"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:860
- msgid "Visit the Add-on Page"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:855
- msgid "Plugin Inactive"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:853
- msgid "Plugin Active"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:828
- msgid "Rating:"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:825
- msgid "Active Users:"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:802
- msgid "Install Plugin"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:802
- msgid "Install %s"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:786
- msgid "Upgrade Plugin"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:778
- msgid "Activate Plugin"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:778
- msgid "Activate %s"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:244 src/Tribe/Plugins_API.php:100
- msgid "Community Tickets"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:235 src/Tribe/Plugins_API.php:66
- msgid "Event Tickets Plus"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:203 src/Tribe/Plugins_API.php:111
- msgid "Eventbrite Tickets"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:170
- msgid " and "
- msgstr "和"
- #: src/Tribe/Admin/Help_Page.php:95
- msgid "Turbo charge your posts admin for any custom post type with sortable filters and columns, and auto-registration of metaboxes."
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:91
- msgid "Advanced Post Manager"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:79
- msgid "Events Tickets is a carefully crafted, extensible plugin that lets you easily sell tickets for your events."
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:75 src/Tribe/Plugins_API.php:57
- msgid "Event Tickets"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:63
- msgid "The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events."
- msgstr ""
- #. Author URI of the plugin/theme
- msgid "http://m.tri.be/1x"
- msgstr "http://m.tri.be/1x"
- #. Author of the plugin/theme
- msgid "Modern Tribe, Inc."
- msgstr "Modern Tribe, Inc."
- #: src/Tribe/Settings.php:371
- msgid "Save Changes"
- msgstr ""
- #: src/admin-views/tribe-options-licenses.php:38
- msgid "%1$s Using our plugins in a multisite network? %2$s Please note that your license key will be applied to the entire network, not just this site."
- msgstr ""
- #: src/Tribe/Support.php:199
- msgid "Rewrite rules were purged on load of this help page. Chances are there is a rewrite rule flush occurring in a plugin or theme!"
- msgstr ""
- #: src/Tribe/PUE/Checker.php:901
- msgid "unknown date"
- msgstr "未知日期"
- #: src/Tribe/Admin/Activation_Page.php:92
- msgid "Return to WordPress Updates"
- msgstr "返回到WordPress的更新"
- #: src/Tribe/Admin/Activation_Page.php:92
- msgid "Go to WordPress Updates page"
- msgstr "转到WordPress的更新页面"
- #: src/Tribe/Admin/Activation_Page.php:84
- msgid "Return to Plugins page"
- msgstr "返回插件页面"
- #: src/Tribe/Admin/Activation_Page.php:84
- msgid "Go to plugins page"
- msgstr "转到插件页面"
- #: src/Tribe/Cost_Utils.php:114
- msgid "Free"
- msgstr "免费"
- #: src/admin-views/tribe-options-network.php:27
- msgid "Hide the following settings tabs on every site:"
- msgstr "隐藏以下设定工具列标籤于每个网站:"
- #: src/admin-views/tribe-options-network.php:19
- msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
- msgstr "这裡是 Modern Tribe 的 The Events Calendar 所有整体网路设定可以被修改的位置。"
- #: src/admin-views/tribe-options-network.php:15
- msgid "Network Settings"
- msgstr "网络设定"
- #: src/admin-views/tribe-options-help.php:74
- msgid "News and Tutorials"
- msgstr "消息和导览"
- #: src/Tribe/Admin/Help_Page.php:847
- msgid "Premium Add-Ons"
- msgstr "超值附加元件"
- #: src/Tribe/Admin/Help_Page.php:823
- msgid "WordPress "
- msgstr "WordPress "
- #: src/Tribe/Admin/Help_Page.php:822 src/admin-views/app-shop.php:77
- msgid "Requires:"
- msgstr "需求:"
- #: src/Tribe/Admin/Help_Page.php:819
- msgid "Latest Version:"
- msgstr "最新版本:"
- #: src/admin-views/tribe-options-help.php:80
- msgid "More..."
- msgstr "更多..."
- #: src/Tribe/Admin/Help_Page.php:194 src/Tribe/Plugins_API.php:43
- msgid "Events Calendar PRO"
- msgstr ""
- #: src/Tribe/Admin/Help_Page.php:413 src/Tribe/Admin/Help_Page.php:788
- msgid "You are up to date!"
- msgstr "你的版本是最新的!"
- #: src/Tribe/Admin/Help_Page.php:413
- msgid "You need to upgrade!"
- msgstr "你需要升级!"
- #: src/Tribe/Admin/Help_Page.php:405
- msgctxt "not available"
- msgid "n/a"
- msgstr "n/a"
- #: src/admin-views/tribe-options-general.php:59
- msgid "Debug Bar Plugin"
- msgstr "Debug Bar Plugin"
- #: src/admin-views/tribe-options-general.php:59
- msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
- msgstr "启用此选项以记录除错报告,预设将记录你的伺服器 PHP 错误报告,如果你想于你的浏览器阅读纪录的讯息,我们推荐安装 %s 并于除错输出中搜寻 \"Tribe\" 工具列标籤。"
- #: src/admin-views/tribe-options-general.php:53
- msgid "Debug mode"
- msgstr "除错模式"
- #: src/admin-views/tribe-options-general.php:35
- msgid "Show The Events Calendar link"
- msgstr "显示 The Events Calendar 连结"
- #: src/admin-views/tribe-options-general.php:30
- msgid "See an example of the link"
- msgstr "请参考连结的范例"
- #: src/admin-views/tribe-options-general.php:30
- msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
- msgstr "是否你正想着 \"哇,这个外挂产品太棒了!我们应该感谢 Modern Tribe 他们所有的努力。\" 而你可以给我们的最大回报,就是仅需于你的行事曆底下加入简短的文字连结到 The Events Calendar 计画。"
- #: src/admin-views/tribe-options-general.php:25
- msgid "We hope our plugin is helping you out."
- msgstr "我们期望我们的外挂产品能够帮助你。"
- #: src/admin-views/tribe-options-general.php:20
- msgid "Check out the available add-ons"
- msgstr "查看可买到的附加元件"
- #: src/admin-views/tribe-options-general.php:20
- msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
- msgstr "寻找额外的功能,包含循环活动、自订元规则、社群活动、售票及更多?"
- #: src/admin-views/tribe-options-display.php:37
- msgid "Select the date format to use in datepickers"
- msgstr "选择用于日期选择器中的日期格式"
- #: src/admin-views/tribe-options-display.php:36
- msgid "Datepicker Date Format"
- msgstr "日期选择器的日期格式"
- #: src/admin-views/tribe-options-display.php:22
- msgid "Date Format Settings"
- msgstr "日期格式设定"
- #: src/admin-views/event-log.php:65
- msgid "View"
- msgstr "检视"
- #: src/Tribe/Admin/Help_Page.php:211 src/Tribe/Plugins_API.php:90
- msgid "Community Events"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:374
- msgid "Wyoming"
- msgstr "怀俄明州"
- #: src/Tribe/Languages/Locations.php:373
- msgid "Wisconsin"
- msgstr "威斯康辛州"
- #: src/Tribe/Languages/Locations.php:372
- msgid "West Virginia"
- msgstr "西佛吉尼亚州"
- #: src/Tribe/Languages/Locations.php:371
- msgid "Washington"
- msgstr "华盛顿州"
- #: src/Tribe/Languages/Locations.php:370
- msgid "Virginia"
- msgstr "维吉尼亚州"
- #: src/Tribe/Languages/Locations.php:369
- msgid "Vermont"
- msgstr "佛蒙特州"
- #: src/Tribe/Languages/Locations.php:368
- msgid "Utah"
- msgstr "犹他州"
- #: src/Tribe/Languages/Locations.php:367
- msgid "Texas"
- msgstr "德州"
- #: src/Tribe/Languages/Locations.php:366
- msgid "Tennessee"
- msgstr "田纳西州"
- #: src/Tribe/Languages/Locations.php:365
- msgid "South Dakota"
- msgstr "南达科他州"
- #: src/Tribe/Languages/Locations.php:364
- msgid "South Carolina"
- msgstr "南卡罗来纳州"
- #: src/Tribe/Languages/Locations.php:363
- msgid "Rhode Island"
- msgstr "罗德岛州"
- #: src/Tribe/Languages/Locations.php:362
- msgid "Pennsylvania"
- msgstr "宾夕法尼亚州"
- #: src/Tribe/Languages/Locations.php:361
- msgid "Oregon"
- msgstr "奥勒岗州"
- #: src/Tribe/Languages/Locations.php:360
- msgid "Oklahoma"
- msgstr "俄克拉荷马州"
- #: src/Tribe/Languages/Locations.php:359
- msgid "Ohio"
- msgstr "俄亥俄州"
- #: src/Tribe/Languages/Locations.php:358
- msgid "North Dakota"
- msgstr "北达科他州"
- #: src/Tribe/Languages/Locations.php:357
- msgid "North Carolina"
- msgstr "北卡罗来纳州"
- #: src/Tribe/Languages/Locations.php:356
- msgid "New York"
- msgstr "纽约"
- #: src/Tribe/Languages/Locations.php:355
- msgid "New Mexico"
- msgstr "新墨西哥州"
- #: src/Tribe/Languages/Locations.php:354
- msgid "New Jersey"
- msgstr "新泽西州"
- #: src/Tribe/Languages/Locations.php:353
- msgid "New Hampshire"
- msgstr "新罕布夏州"
- #: src/Tribe/Languages/Locations.php:352
- msgid "Nevada"
- msgstr "内华达州"
- #: src/Tribe/Languages/Locations.php:351
- msgid "Nebraska"
- msgstr "内布拉斯加州"
- #: src/Tribe/Languages/Locations.php:350
- msgid "Montana"
- msgstr "蒙大拿州"
- #: src/Tribe/Languages/Locations.php:349
- msgid "Missouri"
- msgstr "密苏里州"
- #: src/Tribe/Languages/Locations.php:348
- msgid "Mississippi"
- msgstr "密西西比州"
- #: src/Tribe/Languages/Locations.php:347
- msgid "Minnesota"
- msgstr "明尼苏达州"
- #: src/Tribe/Languages/Locations.php:346
- msgid "Michigan"
- msgstr "密西根州"
- #: src/Tribe/Languages/Locations.php:345
- msgid "Massachusetts"
- msgstr "麻萨诸塞州"
- #: src/Tribe/Languages/Locations.php:344
- msgid "Maryland"
- msgstr "马里兰州"
- #: src/Tribe/Languages/Locations.php:343
- msgid "Maine"
- msgstr "缅因州"
- #: src/Tribe/Languages/Locations.php:342
- msgid "Louisiana"
- msgstr "路易斯安那州"
- #: src/Tribe/Languages/Locations.php:341
- msgid "Kentucky"
- msgstr "肯塔基州"
- #: src/Tribe/Languages/Locations.php:340
- msgid "Kansas"
- msgstr "堪萨斯州"
- #: src/Tribe/Languages/Locations.php:339
- msgid "Iowa"
- msgstr "爱荷华州"
- #: src/Tribe/Languages/Locations.php:338
- msgid "Indiana"
- msgstr "印第安纳州"
- #: src/Tribe/Languages/Locations.php:337
- msgid "Illinois"
- msgstr "伊利诺州"
- #: src/Tribe/Languages/Locations.php:336
- msgid "Idaho"
- msgstr "爱达荷州"
- #: src/Tribe/Languages/Locations.php:335
- msgid "Hawaii"
- msgstr "夏威夷州"
- #: src/Tribe/Languages/Locations.php:333
- msgid "Florida"
- msgstr "佛罗里达州"
- #: src/Tribe/Languages/Locations.php:332
- msgid "District of Columbia"
- msgstr "哥伦比亚特区"
- #: src/Tribe/Languages/Locations.php:331
- msgid "Delaware"
- msgstr "德拉威州"
- #: src/Tribe/Languages/Locations.php:330
- msgid "Connecticut"
- msgstr "康乃迪克州"
- #: src/Tribe/Languages/Locations.php:329
- msgid "Colorado"
- msgstr "科罗拉多州"
- #: src/Tribe/Languages/Locations.php:328
- msgid "California"
- msgstr "加州"
- #: src/Tribe/Languages/Locations.php:327
- msgid "Arkansas"
- msgstr "阿肯色州"
- #: src/Tribe/Languages/Locations.php:326
- msgid "Arizona"
- msgstr "亚利桑那州"
- #: src/Tribe/Languages/Locations.php:325
- msgid "Alaska"
- msgstr "阿拉斯加州"
- #: src/Tribe/Languages/Locations.php:324
- msgid "Alabama"
- msgstr "阿拉巴马州"
- #: src/Tribe/Languages/Locations.php:297
- msgid "Zimbabwe"
- msgstr "辛巴威"
- #: src/Tribe/Languages/Locations.php:296
- msgid "Zambia"
- msgstr "尚比亚"
- #: src/Tribe/Languages/Locations.php:295
- msgid "Yemen"
- msgstr "也门"
- #: src/Tribe/Languages/Locations.php:294
- msgid "Western Sahara"
- msgstr "西撒哈拉"
- #: src/Tribe/Languages/Locations.php:293
- msgid "Wallis and Futuna Islands"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:292
- msgid "Virgin Islands (U.S.)"
- msgstr "美属维京群岛"
- #: src/Tribe/Languages/Locations.php:291
- msgid "Virgin Islands (British)"
- msgstr "英属维京群岛"
- #: src/Tribe/Languages/Locations.php:290
- msgid "Viet Nam"
- msgstr "越南"
- #: src/Tribe/Languages/Locations.php:289
- msgid "Venezuela"
- msgstr "委内瑞拉"
- #: src/Tribe/Languages/Locations.php:288
- msgid "Vanuatu"
- msgstr "万那杜"
- #: src/Tribe/Languages/Locations.php:287
- msgid "Uzbekistan"
- msgstr "乌兹别克斯坦"
- #: src/Tribe/Languages/Locations.php:286
- msgid "Uruguay"
- msgstr "乌拉圭"
- #: src/Tribe/Languages/Locations.php:285
- msgid "United States Minor Outlying Islands"
- msgstr "美国本土外小岛屿"
- #: src/Tribe/Languages/Locations.php:284
- msgid "United Kingdom"
- msgstr "英国"
- #: src/Tribe/Languages/Locations.php:283
- msgid "United Arab Emirates"
- msgstr "阿拉伯联合大公国"
- #: src/Tribe/Languages/Locations.php:282
- msgid "Ukraine"
- msgstr "乌克兰"
- #: src/Tribe/Languages/Locations.php:281
- msgid "Uganda"
- msgstr "乌干达"
- #: src/Tribe/Languages/Locations.php:280
- msgid "Tuvalu"
- msgstr "吐瓦鲁"
- #: src/Tribe/Languages/Locations.php:279
- msgid "Turks and Caicos Islands"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:278
- msgid "Turkmenistan"
- msgstr "土库曼"
- #: src/Tribe/Languages/Locations.php:277
- msgid "Turkey"
- msgstr "土耳其"
- #: src/Tribe/Languages/Locations.php:276
- msgid "Tunisia"
- msgstr "突尼西亚"
- #: src/Tribe/Languages/Locations.php:275
- msgid "Trinidad and Tobago"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:274
- msgid "Tonga"
- msgstr "东加"
- #: src/Tribe/Languages/Locations.php:273
- msgid "Tokelau"
- msgstr "托克劳群岛"
- #: src/Tribe/Languages/Locations.php:272
- msgid "Togo"
- msgstr "多哥"
- #: src/Tribe/Languages/Locations.php:271
- msgid "Thailand"
- msgstr "泰国"
- #: src/Tribe/Languages/Locations.php:270
- msgid "Tanzania, United Republic of"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:269
- msgid "Tajikistan"
- msgstr "塔吉克斯坦"
- #: src/Tribe/Languages/Locations.php:268
- msgid "Taiwan"
- msgstr "台湾"
- #: src/Tribe/Languages/Locations.php:267
- msgid "Syrian Arab Republic"
- msgstr "叙利亚"
- #: src/Tribe/Languages/Locations.php:266
- msgid "Switzerland"
- msgstr "瑞士"
- #: src/Tribe/Languages/Locations.php:265
- msgid "Sweden"
- msgstr "瑞典"
- #: src/Tribe/Languages/Locations.php:264
- msgid "Swaziland"
- msgstr "史瓦济兰"
- #: src/Tribe/Languages/Locations.php:263
- msgid "Svalbard and Jan Mayen Islands"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:262
- msgid "Suriname"
- msgstr "苏利南莫河"
- #: src/Tribe/Languages/Locations.php:261
- msgid "Sudan"
- msgstr "苏丹"
- #: src/Tribe/Languages/Locations.php:241
- msgid "Saint Pierre and Miquelon"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:260
- msgid "Sri Lanka"
- msgstr "斯里兰卡"
- #: src/Tribe/Languages/Locations.php:259
- msgid "Spain"
- msgstr "西班牙"
- #: src/Tribe/Languages/Locations.php:258
- msgid "South Georgia, South Sandwich Islands"
- msgstr "南乔治亚与南三明治群岛"
- #: src/Tribe/Languages/Locations.php:257
- msgid "South Africa"
- msgstr "南非"
- #: src/Tribe/Languages/Locations.php:256
- msgid "Somalia"
- msgstr "索马利亚"
- #: src/Tribe/Languages/Locations.php:255
- msgid "Solomon Islands"
- msgstr "所罗门群岛"
- #: src/Tribe/Languages/Locations.php:254
- msgid "Slovenia"
- msgstr "斯洛维尼亚"
- #: src/Tribe/Languages/Locations.php:253
- msgid "Slovakia (Slovak Republic)"
- msgstr "斯洛伐克"
- #: src/Tribe/Languages/Locations.php:251
- msgid "Singapore"
- msgstr "新加坡"
- #: src/Tribe/Languages/Locations.php:250
- msgid "Sierra Leone"
- msgstr "狮子山共和国"
- #: src/Tribe/Languages/Locations.php:249
- msgid "Seychelles"
- msgstr "塞席尔群岛"
- #: src/Tribe/Languages/Locations.php:248
- msgid "Serbia"
- msgstr "塞尔维亚"
- #: src/Tribe/Languages/Locations.php:247
- msgid "Senegal"
- msgstr "塞内加尔"
- #: src/Tribe/Languages/Locations.php:246
- msgid "Saudi Arabia"
- msgstr "沙乌地阿拉伯"
- #: src/Tribe/Languages/Locations.php:244
- msgid "San Marino"
- msgstr "圣马利诺"
- #: src/Tribe/Languages/Locations.php:243
- msgid "Samoa"
- msgstr "萨摩亚"
- #: src/Tribe/Languages/Locations.php:242
- msgid "Saint Vincent and The Grenadines"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:240
- msgid "Saint Lucia"
- msgstr "圣卢西亚"
- #: src/Tribe/Languages/Locations.php:239
- msgid "Saint Kitts and Nevis"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:236
- msgid "Rwanda"
- msgstr "卢安达"
- #: src/Tribe/Languages/Locations.php:235
- msgid "Russian Federation"
- msgstr "俄罗斯联邦"
- #: src/Tribe/Languages/Locations.php:234
- msgid "Romania"
- msgstr "罗马尼亚"
- #: src/Tribe/Languages/Locations.php:233
- msgid "Reunion"
- msgstr "留尼旺"
- #: src/Tribe/Languages/Locations.php:232
- msgid "Qatar"
- msgstr "卡达"
- #: src/Tribe/Languages/Locations.php:231
- msgid "Puerto Rico"
- msgstr "波多黎各"
- #: src/Tribe/Languages/Locations.php:230
- msgid "Portugal"
- msgstr "葡萄牙"
- #: src/Tribe/Languages/Locations.php:229
- msgid "Poland"
- msgstr "波兰"
- #: src/Tribe/Languages/Locations.php:228
- msgid "Pitcairn"
- msgstr "皮特肯群岛"
- #: src/Tribe/Languages/Locations.php:227
- msgid "Philippines"
- msgstr "菲律宾"
- #: src/Tribe/Languages/Locations.php:226
- msgid "Peru"
- msgstr "祕鲁"
- #: src/Tribe/Languages/Locations.php:225
- msgid "Paraguay"
- msgstr "巴拉圭"
- #: src/Tribe/Languages/Locations.php:224
- msgid "Papua New Guinea"
- msgstr "巴布新几内亚"
- #: src/Tribe/Languages/Locations.php:223
- msgid "Panama"
- msgstr "巴拿马"
- #: src/Tribe/Languages/Locations.php:222
- msgid "Palau"
- msgstr "帛琉"
- #: src/Tribe/Languages/Locations.php:221
- msgid "Pakistan"
- msgstr "巴基斯坦"
- #: src/Tribe/Languages/Locations.php:220
- msgid "Oman"
- msgstr "阿曼"
- #: src/Tribe/Languages/Locations.php:219
- msgid "Norway"
- msgstr "挪威"
- #: src/Tribe/Languages/Locations.php:218
- msgid "Northern Mariana Islands"
- msgstr "北马里亚纳群岛"
- #: src/Tribe/Languages/Locations.php:217
- msgid "Norfolk Island"
- msgstr "诺福克岛"
- #: src/Tribe/Languages/Locations.php:216
- msgid "Niue"
- msgstr "纽埃"
- #: src/Tribe/Languages/Locations.php:215
- msgid "Nigeria"
- msgstr "奈及利亚"
- #: src/Tribe/Languages/Locations.php:214
- msgid "Niger"
- msgstr "尼日"
- #: src/Tribe/Languages/Locations.php:213
- msgid "Nicaragua"
- msgstr "尼加拉瓜"
- #: src/Tribe/Languages/Locations.php:212
- msgid "New Zealand"
- msgstr "纽西兰"
- #: src/Tribe/Languages/Locations.php:211
- msgid "New Caledonia"
- msgstr "新喀里多尼亚"
- #: src/Tribe/Languages/Locations.php:210
- msgid "Netherlands"
- msgstr "荷兰"
- #: src/Tribe/Languages/Locations.php:209
- msgid "Nepal"
- msgstr "尼泊尔"
- #: src/Tribe/Languages/Locations.php:208
- msgid "Nauru"
- msgstr "诺鲁"
- #: src/Tribe/Languages/Locations.php:207
- msgid "Namibia"
- msgstr "那米比亚"
- #: src/Tribe/Languages/Locations.php:206
- msgid "Myanmar"
- msgstr "缅甸"
- #: src/Tribe/Languages/Locations.php:205
- msgid "Mozambique"
- msgstr "莫三比克"
- #: src/Tribe/Languages/Locations.php:204
- msgid "Morocco"
- msgstr "摩洛哥"
- #: src/Tribe/Languages/Locations.php:203
- msgid "Montserrat"
- msgstr "蒙塞拉特岛"
- #: src/Tribe/Languages/Locations.php:202
- msgid "Montenegro"
- msgstr "蒙特内哥罗"
- #: src/Tribe/Languages/Locations.php:201
- msgid "Mongolia"
- msgstr "蒙古"
- #: src/Tribe/Languages/Locations.php:200
- msgid "Monaco"
- msgstr "摩纳哥"
- #: src/Tribe/Languages/Locations.php:199
- msgid "Moldova, Republic of"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:198
- msgid "Micronesia, Federated States of"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:197
- msgid "Mexico"
- msgstr "墨西哥"
- #: src/Tribe/Languages/Locations.php:196
- msgid "Mayotte"
- msgstr "马约特"
- #: src/Tribe/Languages/Locations.php:195
- msgid "Mauritius"
- msgstr "模里西斯"
- #: src/Tribe/Languages/Locations.php:194
- msgid "Mauritania"
- msgstr "茅利塔尼亚"
- #: src/Tribe/Languages/Locations.php:193
- msgid "Martinique"
- msgstr "马丁尼克"
- #: src/Tribe/Languages/Locations.php:192
- msgid "Marshall Islands"
- msgstr "马绍尔群岛"
- #: src/Tribe/Languages/Locations.php:191
- msgid "Malta"
- msgstr "马尔他"
- #: src/Tribe/Languages/Locations.php:190
- msgid "Mali"
- msgstr "马利"
- #: src/Tribe/Languages/Locations.php:189
- msgid "Maldives"
- msgstr "马尔地夫"
- #: src/Tribe/Languages/Locations.php:188
- msgid "Malaysia"
- msgstr "马来西亚"
- #: src/Tribe/Languages/Locations.php:187
- msgid "Malawi"
- msgstr "马拉威"
- #: src/Tribe/Languages/Locations.php:186
- msgid "Madagascar"
- msgstr "马达加斯加"
- #: src/Tribe/Languages/Locations.php:185
- msgid "Macedonia"
- msgstr "马其顿"
- #: src/Tribe/Languages/Locations.php:184
- msgid "Macau"
- msgstr "澳门"
- #: src/Tribe/Languages/Locations.php:183
- msgid "Luxembourg"
- msgstr "卢森堡"
- #: src/Tribe/Languages/Locations.php:182
- msgid "Lithuania"
- msgstr "立陶宛"
- #: src/Tribe/Languages/Locations.php:181
- msgid "Liechtenstein"
- msgstr "列支敦斯登"
- #: src/Tribe/Languages/Locations.php:180
- msgid "Libya"
- msgstr "利比亚"
- #: src/Tribe/Languages/Locations.php:179
- msgid "Liberia"
- msgstr "赖比瑞亚"
- #: src/Tribe/Languages/Locations.php:178
- msgid "Lesotho"
- msgstr "赖索托"
- #: src/Tribe/Languages/Locations.php:177
- msgid "Lebanon"
- msgstr "黎巴嫩"
- #: src/Tribe/Languages/Locations.php:176
- msgid "Latvia"
- msgstr "拉脱维亚"
- #: src/Tribe/Languages/Locations.php:175
- msgid "Lao People's Democratic Republic"
- msgstr "寮国"
- #: src/Tribe/Languages/Locations.php:174
- msgid "Kyrgyzstan"
- msgstr "吉尔吉斯斯坦"
- #: src/Tribe/Languages/Locations.php:173
- msgid "Kuwait"
- msgstr "科威特"
- #: src/Tribe/Languages/Locations.php:172
- msgid "Korea, Republic of"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:171
- msgid "Korea, Democratic People's Republic of"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:170
- msgid "Kiribati"
- msgstr "吉里巴斯共和国"
- #: src/Tribe/Languages/Locations.php:169
- msgid "Kenya"
- msgstr "肯亚"
- #: src/Tribe/Languages/Locations.php:168
- msgid "Kazakhstan"
- msgstr "哈萨克"
- #: src/Tribe/Languages/Locations.php:167
- msgid "Jordan"
- msgstr "约旦"
- #: src/Tribe/Languages/Locations.php:166
- msgid "Japan"
- msgstr "日本"
- #: src/Tribe/Languages/Locations.php:165
- msgid "Jamaica"
- msgstr "牙买加"
- #: src/Tribe/Languages/Locations.php:164
- msgid "Italy"
- msgstr "义大利"
- #: src/Tribe/Languages/Locations.php:163
- msgid "Israel"
- msgstr "以色列"
- #: src/Tribe/Languages/Locations.php:162
- msgid "Ireland"
- msgstr "爱尔兰"
- #: src/Tribe/Languages/Locations.php:161
- msgid "Iraq"
- msgstr "伊拉克"
- #: src/Tribe/Languages/Locations.php:160
- msgid "Iran, Islamic Republic of"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:159
- msgid "Indonesia"
- msgstr "印尼"
- #: src/Tribe/Languages/Locations.php:158
- msgid "India"
- msgstr "印度"
- #: src/Tribe/Languages/Locations.php:157
- msgid "Iceland"
- msgstr "冰岛"
- #: src/Tribe/Languages/Locations.php:156
- msgid "Hungary"
- msgstr "匈牙利"
- #: src/Tribe/Languages/Locations.php:155
- msgid "Hong Kong"
- msgstr "香港"
- #: src/Tribe/Languages/Locations.php:154
- msgid "Honduras"
- msgstr "洪都拉斯"
- #: src/Tribe/Languages/Locations.php:153
- msgid "Holy See (Vatican City State)"
- msgstr "梵蒂冈"
- #: src/Tribe/Languages/Locations.php:152
- msgid "Heard and McDonald Islands"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:151
- msgid "Haiti"
- msgstr "海地"
- #: src/Tribe/Languages/Locations.php:150
- msgid "Guyana"
- msgstr "盖亚那"
- #: src/Tribe/Languages/Locations.php:149
- msgid "Guinea-Bissau"
- msgstr "几内亚比索"
- #: src/Tribe/Languages/Locations.php:148
- msgid "Guinea"
- msgstr "几内亚"
- #: src/Tribe/Languages/Locations.php:147
- msgid "Guatemala"
- msgstr "瓜地马拉"
- #: src/Tribe/Languages/Locations.php:146
- msgid "Guam"
- msgstr "关岛"
- #: src/Tribe/Languages/Locations.php:145
- msgid "Guadeloupe"
- msgstr "瓜德罗普"
- #: src/Tribe/Languages/Locations.php:144
- msgid "Grenada"
- msgstr "格瑞纳达"
- #: src/Tribe/Languages/Locations.php:143
- msgid "Greenland"
- msgstr "格林兰岛"
- #: src/Tribe/Languages/Locations.php:142
- msgid "Greece"
- msgstr "希腊"
- #: src/Tribe/Languages/Locations.php:141
- msgid "Gibraltar"
- msgstr "直布罗陀"
- #: src/Tribe/Languages/Locations.php:140
- msgid "Ghana"
- msgstr "迦纳"
- #: src/Tribe/Languages/Locations.php:139
- msgid "Germany"
- msgstr "德国"
- #: src/Tribe/Languages/Locations.php:138 src/Tribe/Languages/Locations.php:334
- msgid "Georgia"
- msgstr "乔治亚"
- #: src/Tribe/Languages/Locations.php:137
- msgid "Gambia"
- msgstr "甘比亚"
- #: src/Tribe/Languages/Locations.php:136
- msgid "Gabon"
- msgstr "加彭"
- #: src/Tribe/Languages/Locations.php:135
- msgid "French Southern Territories"
- msgstr "法国南方领地"
- #: src/Tribe/Languages/Locations.php:134
- msgid "French Polynesia"
- msgstr "法属玻里尼西亚"
- #: src/Tribe/Languages/Locations.php:133
- msgid "French Guiana"
- msgstr "法属圭亚那"
- #: src/Tribe/Languages/Locations.php:132
- msgid "France"
- msgstr "法国"
- #: src/Tribe/Languages/Locations.php:131
- msgid "Finland"
- msgstr "芬兰"
- #: src/Tribe/Languages/Locations.php:130
- msgid "Fiji"
- msgstr "斐济"
- #: src/Tribe/Languages/Locations.php:129
- msgid "Faroe Islands"
- msgstr "法罗群岛"
- #: src/Tribe/Languages/Locations.php:128
- msgid "Falkland Islands (Malvinas)"
- msgstr "福克兰群岛"
- #: src/Tribe/Languages/Locations.php:127
- msgid "Ethiopia"
- msgstr "埃塞俄比亚"
- #: src/Tribe/Languages/Locations.php:126
- msgid "Estonia"
- msgstr "爱沙尼亚"
- #: src/Tribe/Languages/Locations.php:125
- msgid "Eritrea"
- msgstr "厄立特里亚"
- #: src/Tribe/Languages/Locations.php:124
- msgid "Equatorial Guinea"
- msgstr "赤道几内亚"
- #: src/Tribe/Languages/Locations.php:123
- msgid "El Salvador"
- msgstr "萨尔瓦多"
- #: src/Tribe/Languages/Locations.php:122
- msgid "Egypt"
- msgstr "埃及"
- #: src/Tribe/Languages/Locations.php:121
- msgid "Ecuador"
- msgstr "厄瓜多"
- #: src/Tribe/Languages/Locations.php:120
- msgid "East Timor"
- msgstr "东帝汶"
- #: src/Tribe/Languages/Locations.php:119
- msgid "Dominican Republic"
- msgstr "多明尼加"
- #: src/Tribe/Languages/Locations.php:118
- msgid "Dominica"
- msgstr "多米尼克"
- #: src/Tribe/Languages/Locations.php:117
- msgid "Djibouti"
- msgstr "吉布提"
- #: src/Tribe/Languages/Locations.php:116
- msgid "Denmark"
- msgstr "丹麦"
- #: src/Tribe/Languages/Locations.php:115
- msgid "Czech Republic"
- msgstr "捷克"
- #: src/Tribe/Languages/Locations.php:114
- msgid "Cyprus"
- msgstr "赛普勒斯"
- #: src/Tribe/Languages/Locations.php:112
- msgid "Cuba"
- msgstr "古巴"
- #: src/Tribe/Languages/Locations.php:111
- msgid "Croatia (Local Name: Hrvatska)"
- msgstr "克罗埃西亚"
- #: src/Tribe/Languages/Locations.php:109
- msgid "Costa Rica"
- msgstr "哥斯大黎加"
- #: src/Tribe/Languages/Locations.php:108
- msgid "Cook Islands"
- msgstr "库克群岛"
- #: src/Tribe/Languages/Locations.php:107
- msgid "Congo, Democratic Republic of the"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:106
- msgid "Congo"
- msgstr "刚果"
- #: src/Tribe/Languages/Locations.php:105
- msgid "Comoros"
- msgstr "科摩洛"
- #: src/Tribe/Languages/Locations.php:104
- msgid "Colombia"
- msgstr "哥伦比亚"
- #: src/Tribe/Languages/Locations.php:102
- msgid "Cocos (Keeling) Islands"
- msgstr "科科斯(基林)群岛"
- #: src/Tribe/Languages/Locations.php:101
- msgid "Christmas Island"
- msgstr "圣诞岛"
- #: src/Tribe/Languages/Locations.php:100
- msgid "China"
- msgstr "中国"
- #: src/Tribe/Languages/Locations.php:99
- msgid "Chile"
- msgstr "智利"
- #: src/Tribe/Languages/Locations.php:98
- msgid "Chad"
- msgstr "查德"
- #: src/Tribe/Languages/Locations.php:97
- msgid "Central African Republic"
- msgstr "中非共和国"
- #: src/Tribe/Languages/Locations.php:96
- msgid "Cayman Islands"
- msgstr "开曼群岛"
- #: src/Tribe/Languages/Locations.php:95
- msgid "Cape Verde"
- msgstr "维德角"
- #: src/Tribe/Languages/Locations.php:94
- msgid "Canada"
- msgstr "加拿大"
- #: src/Tribe/Languages/Locations.php:93
- msgid "Cameroon"
- msgstr "喀麦隆"
- #: src/Tribe/Languages/Locations.php:92
- msgid "Cambodia"
- msgstr "柬埔寨"
- #: src/Tribe/Languages/Locations.php:91
- msgid "Burundi"
- msgstr "蒲隆地"
- #: src/Tribe/Languages/Locations.php:90
- msgid "Burkina Faso"
- msgstr "布基那法索"
- #: src/Tribe/Languages/Locations.php:89
- msgid "Bulgaria"
- msgstr "保加利亚"
- #: src/Tribe/Languages/Locations.php:88
- msgid "Brunei Darussalam"
- msgstr "汶莱"
- #: src/Tribe/Languages/Locations.php:87
- msgid "British Indian Ocean Territory"
- msgstr "英属印度洋领地"
- #: src/Tribe/Languages/Locations.php:86
- msgid "Brazil"
- msgstr "巴西"
- #: src/Tribe/Languages/Locations.php:85
- msgid "Bouvet Island"
- msgstr "布韦群岛"
- #: src/Tribe/Languages/Locations.php:84
- msgid "Botswana"
- msgstr "波札那"
- #: src/Tribe/Languages/Locations.php:83
- msgid "Bosnia and Herzegowina"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:82
- msgid "Bolivia"
- msgstr "玻利维亚"
- #: src/Tribe/Languages/Locations.php:81
- msgid "Bhutan"
- msgstr "不丹"
- #: src/Tribe/Languages/Locations.php:80
- msgid "Bermuda"
- msgstr "百慕达"
- #: src/Tribe/Languages/Locations.php:79
- msgid "Benin"
- msgstr "贝南"
- #: src/Tribe/Languages/Locations.php:78
- msgid "Belize"
- msgstr "贝里斯"
- #: src/Tribe/Languages/Locations.php:77
- msgid "Belgium"
- msgstr "比利时"
- #: src/Tribe/Languages/Locations.php:76
- msgid "Belarus"
- msgstr "白俄罗斯"
- #: src/Tribe/Languages/Locations.php:75
- msgid "Barbados"
- msgstr "巴贝多"
- #: src/Tribe/Languages/Locations.php:74
- msgid "Bangladesh"
- msgstr "孟加拉"
- #: src/Tribe/Languages/Locations.php:73
- msgid "Bahrain"
- msgstr "巴林"
- #: src/Tribe/Languages/Locations.php:72
- msgid "Bahamas"
- msgstr "巴哈马"
- #: src/Tribe/Languages/Locations.php:71
- msgid "Azerbaijan"
- msgstr "亚塞拜然"
- #: src/Tribe/Languages/Locations.php:70
- msgid "Austria"
- msgstr "奥地利"
- #: src/Tribe/Languages/Locations.php:69
- msgid "Australia"
- msgstr "澳大利亚"
- #: src/Tribe/Languages/Locations.php:68
- msgid "Aruba"
- msgstr "阿鲁巴"
- #: src/Tribe/Languages/Locations.php:67
- msgid "Armenia"
- msgstr "亚美尼亚"
- #: src/Tribe/Languages/Locations.php:66
- msgid "Argentina"
- msgstr "阿根廷"
- #: src/Tribe/Languages/Locations.php:65
- msgid "Antigua and Barbuda"
- msgstr ""
- #: src/Tribe/Languages/Locations.php:64
- msgid "Antarctica"
- msgstr "南极洲"
- #: src/Tribe/Languages/Locations.php:63
- msgid "Anguilla"
- msgstr "安圭拉"
- #: src/Tribe/Languages/Locations.php:62
- msgid "Angola"
- msgstr "安哥拉共和国"
- #: src/Tribe/Languages/Locations.php:61
- msgid "Andorra"
- msgstr "安道尔公国"
- #: src/Tribe/Languages/Locations.php:60
- msgid "American Samoa"
- msgstr "美属萨摩亚"
- #: src/Tribe/Languages/Locations.php:59
- msgid "Algeria"
- msgstr "阿尔及利亚"
- #: src/Tribe/Languages/Locations.php:58
- msgid "Albania"
- msgstr "阿尔巴尼亚"
- #: src/Tribe/Languages/Locations.php:56
- msgid "Afghanistan"
- msgstr "阿富汗"
- #: src/Tribe/View_Helpers.php:50
- msgid "Select a Country:"
- msgstr "请选择国家"
- #: src/Tribe/Validate.php:514
- msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
- msgstr "国家列表必须以每行一个国家的格式表列于以下的格式中:<br>US, United States <br> UK, United Kingdom."
- #: src/Tribe/Validate.php:498
- msgid "%s must be a phone number."
- msgstr "%s 必须是电话号码数字。"
- #: src/Tribe/Validate.php:484
- msgid "%s must consist of 5 numbers."
- msgstr "%s 必须由 5 个数字所组成。"
- #: src/Tribe/Validate.php:470
- msgid "%s must consist of letters, spaces, apostrophes, and dashes."
- msgstr "%s 必须由字元、数字、空格、撇号及点所组成。"
- #: src/Tribe/Validate.php:454
- msgid "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
- msgstr "%s 必须只由字元、数字、点、撇号及空格所组成。"
- #: src/Tribe/Validate.php:438
- msgid "%s must be a number between 0 and 21."
- msgstr "%s 必须是介于 0 到 21之间的数字。"
- #: src/Tribe/Validate.php:384
- msgid "%s must be a number or percentage."
- msgstr "%s 必须是数字或百分比符号。"
- #: src/Tribe/Validate.php:368
- msgid "%s cannot be a duplicate"
- msgstr "%s 不能是複製的"
- #: src/Tribe/Validate.php:366
- msgid "%s cannot be the same as %s."
- msgstr "%s 不能和 %s 完全一样。"
- #: src/Tribe/Validate.php:359
- msgid "Comparison validation failed because no comparison value was provided, for field %s"
- msgstr "比较确认失败的原因是由于没有提供比较数值给栏位 %s。"
- #: src/Tribe/Validate.php:298 src/Tribe/Validate.php:310
- #: src/Tribe/Validate.php:323 src/Tribe/Validate.php:345
- msgid "%s must have a value that's part of its options."
- msgstr "%s 必须有一个数值是选项中的一部份。"
- #: src/Tribe/Validate.php:282
- msgid "%s must be a valid absolute URL."
- msgstr "%s 必须是有效完整的网址。"
- #: src/Tribe/Validate.php:267
- msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
- msgstr "%s 必须是有效的代称 (数字、字元、破折号及底线)。"
- #: src/Tribe/Validate.php:200 src/Tribe/Validate.php:228
- msgid "%s must be a positive number."
- msgstr "%s 必须为正数。"
- #: src/Tribe/Validate.php:152
- msgid "%s must contain numbers, letters and dots only"
- msgstr "%s 必须只包含数字、字元和点。"
- #: src/Tribe/Validate.php:120 src/Tribe/Validate.php:136
- msgid "%s must contain numbers and letters only"
- msgstr "%s 必须只包含数字与字元"
- #: src/Tribe/Validate.php:105
- msgctxt "non-existant function name passed for field validation"
- msgid "with function name:"
- msgstr "含有功能名称:"
- #: src/Tribe/Validate.php:104
- msgid "Non-existant field validation function passed"
- msgstr "不存在栏位确认功能已过期"
- #: src/Tribe/Validate.php:73 src/Tribe/Validate.php:85
- #: src/Tribe/Validate.php:105
- msgid "Field ID:"
- msgstr "栏位 ID:"
- #: src/Tribe/Validate.php:72 src/Tribe/Validate.php:84
- msgid "Invalid or incomplete field passed"
- msgstr "无效或不完全栏位已过期"
- #: src/Tribe/Support.php:188 src/Tribe/Support.php:189
- msgid "Unknown or not set"
- msgstr ""
- #: src/admin-views/tribe-options-help.php:41
- msgid "System Information"
- msgstr "系统资讯"
- #: src/Tribe/Settings_Tab.php:222
- msgid "There are no fields setup for this tab yet."
- msgstr "此工具列标籤尚未设置栏位。"
- #: src/Tribe/Settings.php:621
- msgid "The above setting was not saved. Other settings were successfully saved."
- msgid_plural "The above settings were not saved. Other settings were successfully saved."
- msgstr[0] "以上设定未储存,其馀设定已成功储存。"
- #: src/Tribe/Settings.php:620
- msgid "None of your settings were saved. Please try again."
- msgstr "你的设定未储存,请稍后重试。"
- #: src/Tribe/Settings.php:610
- msgid "Your form had the following errors:"
- msgstr "你的表格含有下列错误:"
- #: src/Tribe/Settings.php:431
- msgid "The request wasn't sent from this tab."
- msgstr "请求未从此工具列标籤传送。"
- #: src/Tribe/Settings.php:425
- msgid "The request was sent insecurely."
- msgstr "以不安全的方式传送要求。"
- #: src/Tribe/Settings.php:419
- msgid "You don't have permission to do that."
- msgstr "你的操作不被允许。"
- #: src/Tribe/Settings.php:363
- msgid "You've requested a non-existent tab."
- msgstr "你要求的工具列标籤不存在。"
- #: src/Tribe/Settings.php:349
- msgid "%s Settings"
- msgstr "%s 设定"
- #: src/Tribe/Settings.php:253 src/Tribe/Settings.php:273
- msgid "Events Settings"
- msgstr "活动设定"
- #: src/Tribe/PUE/Checker.php:888
- msgid "Hmmm... something's wrong with this validator. Please contact %ssupport%s."
- msgstr ""
- #: src/Tribe/PUE/Checker.php:927
- msgid "Valid Key! Expires on %s"
- msgstr "有效密钥!到期日为 %s"
- #: src/Tribe/PUE/Checker.php:907
- msgid "Sorry, key validation server is not available."
- msgstr "抱歉,密钥认证伺服器忙碌中。"
- #: src/Tribe/PUE/Checker.php:650
- msgid "License key(s) updated."
- msgstr "授权密钥已更新。"
- #: src/Tribe/PUE/Checker.php:494
- msgid "A valid license key is required for support and updates"
- msgstr "支援与更新时,授权密钥必须有效。"
- #: src/Tribe/PUE/Checker.php:509 src/Tribe/PUE/Checker.php:520
- msgid "License Key"
- msgstr "授权密钥"
- #: src/Tribe/Main.php:247
- msgid "Search:"
- msgstr "搜索"
- #: src/Tribe/Settings.php:254
- msgid "Settings"
- msgstr "设定"
- #: src/Tribe/Settings_Manager.php:219
- msgid "Network"
- msgstr "网路"
- #: src/Tribe/Main.php:272
- msgid "Done"
- msgstr "已完成"
- #: src/Tribe/Main.php:271
- msgid "Today"
- msgstr "今天"
- #: src/Tribe/Main.php:270
- msgid "Prev"
- msgstr "上一页"
- #: src/Tribe/Main.php:253 src/Tribe/Main.php:269
- msgid "Next"
- msgstr "下一页"
- #: src/Tribe/Settings_Manager.php:279
- msgid "Help"
- msgstr "帮助"
- #: src/Tribe/Settings_Manager.php:55
- msgid "Display"
- msgstr "显示"
- #: src/Tribe/Settings_Manager.php:253
- #: src/admin-views/tribe-options-licenses.php:66
- msgid "Licenses"
- msgstr "授权凭证"
- #: src/Tribe/Admin/Help_Page.php:59 src/Tribe/Customizer.php:569
- #: src/Tribe/Plugins_API.php:25
- msgid "The Events Calendar"
- msgstr "The Events Calendar"
- #: src/Tribe/Settings.php:177 src/Tribe/Settings.php:241
- #: src/Tribe/Settings.php:242
- msgid "Events"
- msgstr "活动"
- #: src/Tribe/Settings.php:643
- msgid "Settings saved."
- msgstr "设定已储存。"
- #: src/Tribe/Settings_Manager.php:54
- msgid "General"
- msgstr "一般"
- #: src/Tribe/Field.php:626
- msgid "No select options specified"
- msgstr "未指定下拉选单选项"
- #: src/Tribe/Field.php:568
- msgid "No checkbox options specified"
- msgstr "未指定多选选项"
- #: src/Tribe/Field.php:532
- msgid "No radio options specified"
- msgstr "未指定单选选项"
- #: src/Tribe/Field.php:231
- msgid "Invalid field type specified"
- msgstr "指定栏位类型无效"
- #: src/Tribe/Credits.php:31
- msgid "This calendar is powered by The Events Calendar."
- msgstr ""
- #: src/Tribe/App_Shop.php:50 src/Tribe/App_Shop.php:51
- #: src/Tribe/App_Shop.php:72
- msgid "Event Add-Ons"
- msgstr "活动附加元件"
- #: src/Tribe/Languages/Locations.php:55
- msgid "United States"
- msgstr "美国"
|