tribe-common-zh_TW.po 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319
  1. # Translation of Tribe Common in Chinese (Taiwan)
  2. # This file is distributed under the same license as the Tribe Common package.
  3. msgid ""
  4. msgstr ""
  5. "PO-Revision-Date: 2015-12-02 19:08:14+0000\n"
  6. "MIME-Version: 1.0\n"
  7. "Content-Type: text/plain; charset=UTF-8\n"
  8. "Content-Transfer-Encoding: 8bit\n"
  9. "Plural-Forms: nplurals=1; plural=0;\n"
  10. "X-Generator: GlotPress/2.3.1\n"
  11. "Language: zh_TW\n"
  12. "Project-Id-Version: Tribe Common\n"
  13. #: vendor/a5hleyrich/wp-background-processing/classes/wp-background-process.php:425
  14. msgid "Every %d Minutes"
  15. msgstr ""
  16. #: src/admin-views/tribe-options-help.php:33
  17. msgid "Search our support help desk"
  18. msgstr ""
  19. #: src/Tribe/Plugins_API.php:71
  20. 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."
  21. msgstr ""
  22. #: src/Tribe/Validate.php:184
  23. msgid "%s must not be empty"
  24. msgstr ""
  25. #: src/Tribe/Validate.php:545
  26. msgid "%s must be an email address."
  27. msgstr ""
  28. #: src/Tribe/Languages/Locations.php:252
  29. msgid "Sint Maarten"
  30. msgstr ""
  31. #: src/Tribe/Languages/Locations.php:245
  32. msgid "São Tomé and Príncipe"
  33. msgstr ""
  34. #: src/Tribe/Languages/Locations.php:238
  35. msgid "Saint Helena"
  36. msgstr ""
  37. #: src/Tribe/Languages/Locations.php:237
  38. msgid "Saint Barthélemy"
  39. msgstr ""
  40. #: src/Tribe/Languages/Locations.php:113
  41. msgid "Curaçao"
  42. msgstr ""
  43. #: src/Tribe/Languages/Locations.php:103
  44. msgid "Collectivity of Saint Martin"
  45. msgstr ""
  46. #: src/Tribe/Languages/Locations.php:57
  47. msgid "Åland Islands"
  48. msgstr ""
  49. #: src/admin-views/tribe-options-help.php:20
  50. msgid "Check out our %s for developers."
  51. msgstr ""
  52. #: src/admin-views/tribe-options-help.php:18
  53. msgid "Want to dive deeper?"
  54. msgstr ""
  55. #: src/admin-views/tribe-options-display.php:28
  56. 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>."
  57. msgstr ""
  58. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:57
  59. msgid "A list of links to the term own, archive and parent REST URL"
  60. msgstr ""
  61. #: src/Tribe/Main.php:250
  62. msgid "Clear Selection."
  63. msgstr ""
  64. #: src/Tribe/Main.php:249
  65. msgid "Select all pages"
  66. msgstr ""
  67. #: src/Tribe/Main.php:248
  68. msgid "All items on this page were selected. "
  69. msgstr ""
  70. #: src/Tribe/Plugins_API.php:94
  71. 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."
  72. msgstr ""
  73. #: src/Tribe/Plugins_API.php:37
  74. 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."
  75. msgstr ""
  76. #: src/Tribe/Ajax/Dropdown.php:243
  77. msgid "The \"%s\" source is invalid and cannot be reached on \"%s\" instance."
  78. msgstr ""
  79. #: src/Tribe/Ajax/Dropdown.php:193
  80. msgid "Empty data set for this dropdown"
  81. msgstr ""
  82. #: src/Tribe/Ajax/Dropdown.php:180
  83. msgid "Missing data source for this dropdown"
  84. msgstr ""
  85. #: src/Tribe/Ajax/Dropdown.php:38
  86. msgid "Cannot look for Terms without a taxonomy"
  87. msgstr ""
  88. #: src/Tribe/Plugins_API.php:60
  89. 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."
  90. msgstr ""
  91. #: src/Tribe/Plugins_API.php:28
  92. 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."
  93. msgstr ""
  94. #: src/Tribe/PUE/Checker.php:1095
  95. msgid "There is a new version of %1$s available. %2$s"
  96. msgstr ""
  97. #: src/Tribe/PUE/Checker.php:1084
  98. msgid "Update now to version %s."
  99. msgstr ""
  100. #: src/Tribe/PUE/Notices.php:340
  101. msgid "You can always check the status of your licenses by logging in to %1$syour account on theeventscalendar.com%2$s."
  102. msgstr ""
  103. #: src/Tribe/PUE/Notices.php:225
  104. 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."
  105. 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."
  106. msgstr[0] ""
  107. #: src/Tribe/PUE/Checker.php:976
  108. msgid "Please refresh the page and try your request again."
  109. msgstr ""
  110. #: src/Tribe/Plugins_API.php:129
  111. 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."
  112. msgstr ""
  113. #: src/Tribe/Plugins_API.php:125
  114. msgid "Image Widget Plus"
  115. msgstr ""
  116. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:52
  117. msgid "The URL to the term archive page"
  118. msgstr ""
  119. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:48
  120. msgid "The number of posts associated with the term"
  121. msgstr ""
  122. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:44
  123. msgid "The term parent term if any"
  124. msgstr ""
  125. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:40
  126. msgid "The term description"
  127. msgstr ""
  128. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:36
  129. msgid "The taxonomy the term belongs to"
  130. msgstr ""
  131. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:32
  132. msgid "The term slug"
  133. msgstr ""
  134. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:28
  135. msgid "The term name"
  136. msgstr ""
  137. #: src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:24
  138. msgid "The WordPress term ID"
  139. msgstr ""
  140. #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
  141. msgid "The link to the image in the specified size on the site"
  142. msgstr ""
  143. #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:32
  144. msgid "The image mime-type"
  145. msgstr ""
  146. #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:28
  147. msgid "The image height in pixels in the specified size"
  148. msgstr ""
  149. #: src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:24
  150. msgid "The image width in pixels in the specified size"
  151. msgstr ""
  152. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
  153. msgid "The details about each size available for the image"
  154. msgstr ""
  155. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
  156. msgid "The image natural height in pixels"
  157. msgstr ""
  158. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
  159. msgid "The image natural width in pixels"
  160. msgstr ""
  161. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
  162. msgid "The image file extension"
  163. msgstr ""
  164. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
  165. msgid "The image WordPress post ID"
  166. msgstr ""
  167. #: src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
  168. msgid "The URL to the full size version of the image"
  169. msgstr ""
  170. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:44
  171. msgid "The date seconds"
  172. msgstr ""
  173. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:40
  174. msgid "The date minutes"
  175. msgstr ""
  176. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:36
  177. msgid "The date hour"
  178. msgstr ""
  179. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:32
  180. msgid "The date day"
  181. msgstr ""
  182. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:28
  183. msgid "The date month"
  184. msgstr ""
  185. #: src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:24
  186. msgid "The date year"
  187. msgstr ""
  188. #: src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:34
  189. msgid "A sorted array of all the numeric values for the cost"
  190. msgstr ""
  191. #: src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:28
  192. msgid "The position of the currency symbol in the cost string"
  193. msgstr ""
  194. #: src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:24
  195. msgid "The cost currency symbol"
  196. msgstr ""
  197. #: src/Tribe/PUE/Checker.php:497
  198. msgid "%1$sBuy a license%2$s for the Event Aggregator service to access additional import features."
  199. msgstr ""
  200. #: src/Tribe/Validate.php:248
  201. msgid "%s must be a whole number."
  202. msgstr ""
  203. #: src/Tribe/Settings.php:281 src/Tribe/Settings.php:282
  204. msgid "Events Help"
  205. msgstr ""
  206. #: src/Tribe/PUE/Checker.php:1670
  207. msgid "Expired license. Consult your network administrator."
  208. msgstr ""
  209. #: src/Tribe/PUE/Checker.php:1669
  210. msgid "No license entered. Consult your network administrator."
  211. msgstr ""
  212. #: src/Tribe/PUE/Checker.php:1668
  213. msgid "A valid license has been entered by your network administrator."
  214. msgstr ""
  215. #: src/Tribe/PUE/Checker.php:550
  216. msgid "Site License Key"
  217. msgstr ""
  218. #: src/Tribe/PUE/Checker.php:539
  219. msgid "Check this box if you wish to override the network license key with your own"
  220. msgstr ""
  221. #: src/Tribe/PUE/Checker.php:538
  222. msgid "Override network license key"
  223. msgstr ""
  224. #: src/Tribe/PUE/Checker.php:529 src/Tribe/PUE/Checker.php:563
  225. msgid "License Key Status:"
  226. msgstr ""
  227. #: src/Tribe/Customizer.php:570
  228. msgid "Use the following panel of your customizer to change the styling of your Calendar and Event pages."
  229. msgstr ""
  230. #: src/Tribe/Extension.php:368
  231. 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."
  232. msgstr ""
  233. #: src/Tribe/Extension.php:144
  234. msgid "Tutorial"
  235. msgstr ""
  236. #: src/admin-views/app-shop.php:31
  237. msgid "Installed"
  238. msgstr ""
  239. #: src/admin-views/app-shop.php:29
  240. msgid "Installed Add-Ons"
  241. msgstr ""
  242. #: src/Tribe/Admin/Notice/Plugin_Download.php:92
  243. msgctxt "the final separator in a list of two or more items"
  244. msgid " and "
  245. msgstr ""
  246. #: src/Tribe/Admin/Notice/Plugin_Download.php:91
  247. msgctxt "separator used in a list of items"
  248. msgid ", "
  249. msgstr ""
  250. #: src/admin-views/tribe-options-help.php:55
  251. msgid "Event Log"
  252. msgstr ""
  253. #: src/admin-views/tribe-options-help.php:42
  254. 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."
  255. msgstr ""
  256. #: src/admin-views/app-shop.php:26
  257. msgid "Buy This Add-On"
  258. msgstr ""
  259. #: src/admin-views/app-shop.php:5
  260. msgid "Browse All Add-Ons"
  261. msgstr ""
  262. #: src/admin-views/app-shop.php:4
  263. msgid "Events Add-Ons"
  264. msgstr ""
  265. #: src/Tribe/PUE/Notices.php:383
  266. msgctxt "formatted plugin list"
  267. msgid "%1$s and %2$s"
  268. msgstr ""
  269. #: src/Tribe/PUE/Notices.php:302
  270. 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."
  271. 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."
  272. msgstr[0] ""
  273. #: src/Tribe/PUE/Notices.php:270
  274. 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"
  275. 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"
  276. msgstr[0] ""
  277. #: src/Tribe/PUE/Checker.php:1054
  278. msgid "There is an update for %s. %sRenew your license%s to get access to bug fixes, security updates, and new features."
  279. msgstr ""
  280. #: src/Tribe/PUE/Checker.php:997
  281. msgid "There is an update for %s. You'll need to %scheck your license%s to have access to updates, downloads, and support."
  282. msgstr ""
  283. #: src/Tribe/Admin/Help_Page.php:219 src/Tribe/Plugins_API.php:34
  284. msgid "Event Aggregator"
  285. msgstr ""
  286. #: src/Tribe/Admin/Notice/Plugin_Download.php:75
  287. msgid "To begin using %1$s, please install and activate the latest version of %2$s."
  288. msgstr ""
  289. #: src/admin-views/tribe-options-licenses.php:30
  290. msgid "Not seeing an update but expecting one? In WordPress, go to %1$sDashboard > Updates%2$s and click \"Check Again\"."
  291. msgstr ""
  292. #: src/admin-views/tribe-options-licenses.php:25
  293. 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."
  294. msgstr ""
  295. #: src/admin-views/tribe-options-licenses.php:22
  296. 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."
  297. msgstr ""
  298. #: src/admin-views/tribe-options-licenses.php:15
  299. 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."
  300. msgstr ""
  301. #: src/admin-views/tribe-options-licenses.php:11
  302. #: src/admin-views/tribe-options-licenses.php:16
  303. msgid " (opens in new window)"
  304. msgstr ""
  305. #: src/Tribe/Languages/Locations.php:110
  306. msgid "C&ocirc;te d'Ivoire"
  307. msgstr ""
  308. #: src/Tribe/Support.php:372
  309. msgid "Unique System Info Key Generated"
  310. msgstr ""
  311. #: src/Tribe/Support.php:358 src/Tribe/Support.php:384
  312. msgid "Permission Error"
  313. msgstr ""
  314. #: src/Tribe/Support.php:325 src/Tribe/Support.php:330
  315. msgid "Invalid Key"
  316. msgstr ""
  317. #: src/Tribe/Support.php:306
  318. 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."
  319. msgstr ""
  320. #: src/Tribe/Support.php:305
  321. msgid "Yes, automatically share my system information with the Modern Tribe support team"
  322. msgstr ""
  323. #: src/Tribe/Support.php:171
  324. msgid "English"
  325. msgstr ""
  326. #: src/Tribe/PUE/Checker.php:961 src/Tribe/PUE/Notices.php:285
  327. msgid " (opens in a new window)"
  328. msgstr ""
  329. #: src/Tribe/PUE/Checker.php:959 src/Tribe/PUE/Notices.php:283
  330. msgid "Renew Your License Now"
  331. msgstr ""
  332. #: src/Tribe/Main.php:260
  333. msgid ": Selected 1 row"
  334. msgstr ""
  335. #: src/Tribe/Main.php:259
  336. msgid ": Selected %d rows"
  337. msgstr ""
  338. #: src/Tribe/Main.php:254
  339. msgid "Previous"
  340. msgstr ""
  341. #: src/Tribe/Main.php:252
  342. msgid "All"
  343. msgstr ""
  344. #: src/Tribe/Main.php:246
  345. msgid "No matching records found"
  346. msgstr ""
  347. #: src/Tribe/Main.php:245
  348. msgid "(filtered from _MAX_ total entries)"
  349. msgstr ""
  350. #: src/Tribe/Main.php:244
  351. msgid "Showing 0 to 0 of 0 entries"
  352. msgstr ""
  353. #: src/Tribe/Main.php:243
  354. msgid "Showing _START_ to _END_ of _TOTAL_ entries"
  355. msgstr ""
  356. #: src/Tribe/Main.php:242
  357. msgid "No data available in table"
  358. msgstr ""
  359. #: src/Tribe/Main.php:241
  360. msgid "Show _MENU_ entries"
  361. msgstr ""
  362. #: src/Tribe/Main.php:239
  363. msgid ": activate to sort column descending"
  364. msgstr ""
  365. #: src/Tribe/Main.php:238
  366. msgid ": activate to sort column ascending"
  367. msgstr ""
  368. #: src/Tribe/Main.php:280
  369. msgid "Press \"Cmd + C\" to copy"
  370. msgstr ""
  371. #: src/Tribe/Main.php:279
  372. msgid "System info copied"
  373. msgstr ""
  374. #: src/Tribe/Main.php:278 src/admin-views/tribe-options-help.php:50
  375. msgid "Copy to clipboard"
  376. msgstr ""
  377. #: src/Tribe/Error.php:38
  378. msgid "An Unknown error occurred"
  379. msgstr ""
  380. #: src/Tribe/Plugins_API.php:116
  381. 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."
  382. msgstr ""
  383. #: src/Tribe/Plugins_API.php:105
  384. msgctxt "Names of required plugins for Community Tickets"
  385. msgid "Event Tickets Plus and Community Events"
  386. msgstr ""
  387. #: src/Tribe/Plugins_API.php:104
  388. 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"
  389. msgstr ""
  390. #: src/Tribe/Plugins_API.php:48
  391. 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."
  392. msgstr ""
  393. #: src/Tribe/Plugins_API.php:84
  394. 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."
  395. msgstr ""
  396. #: src/Tribe/Admin/Help_Page.php:227 src/Tribe/Plugins_API.php:80
  397. msgid "Filter Bar"
  398. msgstr ""
  399. #: src/Tribe/Credits.php:64
  400. msgid "Rate %1$sEvent Tickets%2$s %3$s"
  401. msgstr ""
  402. #: src/Tribe/Credits.php:55
  403. msgid "Rate %1$sThe Events Calendar%2$s %3$s"
  404. msgstr ""
  405. #: src/Tribe/Log/Null_Logger.php:26
  406. msgid "Null logger (will log nothing)"
  407. msgstr ""
  408. #: src/admin-views/event-log.php:117
  409. msgid "Download log"
  410. msgstr ""
  411. #: src/admin-views/event-log.php:100
  412. msgid "The selected log file is empty or has not been generated yet."
  413. msgstr ""
  414. #: src/admin-views/event-log.php:43
  415. msgid "Method"
  416. msgstr ""
  417. #: src/admin-views/event-log.php:21
  418. msgid "Logging level"
  419. msgstr ""
  420. #: src/Tribe/Validate.php:168
  421. msgid "%s must contain numbers, letters, dashes and undescores only"
  422. msgstr ""
  423. #: src/Tribe/Log.php:376
  424. msgid "Full debug (all events)"
  425. msgstr ""
  426. #: src/Tribe/Log.php:375
  427. msgid "Warnings and errors"
  428. msgstr ""
  429. #: src/Tribe/Log.php:374
  430. msgid "Only errors"
  431. msgstr ""
  432. #: src/Tribe/Log.php:373
  433. msgid "Disabled"
  434. msgstr ""
  435. #: src/Tribe/Log.php:274
  436. msgid "Cannot set %s as the current logging engine"
  437. msgstr ""
  438. #: src/Tribe/Log/File_Logger.php:128
  439. msgid "Default (uses temporary files)"
  440. msgstr ""
  441. #: src/Tribe/Log/Admin.php:148
  442. msgctxt "log engines"
  443. msgid "None currently available"
  444. msgstr ""
  445. #: src/Tribe/Log/Admin.php:133
  446. msgctxt "log selector"
  447. msgid "None currently available"
  448. msgstr ""
  449. #: src/admin-views/tribe-options-help.php:52
  450. msgid "Recent Template Changes"
  451. msgstr ""
  452. #: src/Tribe/Support/Template_Checker_Report.php:115
  453. msgid "Information about recent template changes and potentially impacted template overrides is provided below."
  454. msgstr ""
  455. #: src/Tribe/Support/Template_Checker_Report.php:113
  456. msgid "No notable template changes detected."
  457. msgstr ""
  458. #: src/Tribe/Support/Template_Checker_Report.php:97
  459. msgid "based on %s version"
  460. msgstr ""
  461. #: src/Tribe/Support/Template_Checker_Report.php:96
  462. msgid "version data missing from override"
  463. msgstr ""
  464. #: src/Tribe/Support/Template_Checker_Report.php:92
  465. msgid "Existing theme overrides that may need revision:"
  466. msgstr ""
  467. #: src/Tribe/Support/Template_Checker_Report.php:82
  468. msgid "Templates introduced or updated with this release (%s):"
  469. msgstr ""
  470. #: src/Tribe/Support/Template_Checker_Report.php:78
  471. msgid "No notable changes detected"
  472. msgstr ""
  473. #. Description of the plugin/theme
  474. msgid "An event settings framework for managing shared options"
  475. msgstr ""
  476. #. Plugin Name of the plugin/theme
  477. msgid "Tribe Common"
  478. msgstr ""
  479. #: src/admin-views/tribe-options-licenses.php:47
  480. msgid "Only license fields for %1$snetwork activated%2$s plugins will be listed on this screen. "
  481. msgstr ""
  482. #: src/admin-views/tribe-options-help.php:38
  483. msgid "Read more about our support policy"
  484. msgstr ""
  485. #: src/admin-views/tribe-options-help.php:30
  486. 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 "
  487. msgstr ""
  488. #: src/admin-views/tribe-options-help.php:33
  489. 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."
  490. msgstr ""
  491. #: src/admin-views/tribe-options-help.php:32
  492. msgid "Test for a theme or plugin conflict"
  493. msgstr ""
  494. #: src/admin-views/tribe-options-help.php:32
  495. 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."
  496. msgstr ""
  497. #: src/admin-views/tribe-options-help.php:31
  498. msgid "Check our Knowledgebase"
  499. msgstr ""
  500. #: src/admin-views/tribe-options-help.php:31
  501. 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!"
  502. msgstr ""
  503. #: src/admin-views/tribe-options-help.php:27
  504. 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:"
  505. msgstr ""
  506. #: src/admin-views/tribe-options-help.php:26
  507. msgid "Getting More Help"
  508. msgstr ""
  509. #: src/admin-views/tribe-options-help.php:21
  510. msgid "list of available functions"
  511. msgstr ""
  512. #: src/admin-views/tribe-options-help.php:15
  513. msgid "Knowledgebase"
  514. msgstr ""
  515. #: src/admin-views/tribe-options-help.php:15
  516. msgid "Our website’s %s is a great place to find tips and tricks for using and customizing our plugins."
  517. msgstr ""
  518. #: src/admin-views/tribe-options-help.php:14
  519. msgid "Getting Support"
  520. msgstr ""
  521. #: src/admin-views/tribe-options-help.php:11
  522. 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."
  523. msgstr ""
  524. #: src/admin-views/tribe-options-general.php:15
  525. 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."
  526. msgstr ""
  527. #: src/admin-views/tribe-options-general.php:10
  528. 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."
  529. msgstr ""
  530. #: src/Tribe/Validate.php:214
  531. msgid "%s must be a positive number or percent."
  532. msgstr ""
  533. #: src/Tribe/PUE/Checker.php:932
  534. msgid "Thanks for setting up a valid key. It will expire on %s"
  535. msgstr ""
  536. #: src/Tribe/Admin/Help_Page.php:860
  537. msgid "Visit the Add-on Page"
  538. msgstr ""
  539. #: src/Tribe/Admin/Help_Page.php:855
  540. msgid "Plugin Inactive"
  541. msgstr ""
  542. #: src/Tribe/Admin/Help_Page.php:853
  543. msgid "Plugin Active"
  544. msgstr ""
  545. #: src/Tribe/Admin/Help_Page.php:828
  546. msgid "Rating:"
  547. msgstr ""
  548. #: src/Tribe/Admin/Help_Page.php:825
  549. msgid "Active Users:"
  550. msgstr ""
  551. #: src/Tribe/Admin/Help_Page.php:802
  552. msgid "Install Plugin"
  553. msgstr ""
  554. #: src/Tribe/Admin/Help_Page.php:802
  555. msgid "Install %s"
  556. msgstr ""
  557. #: src/Tribe/Admin/Help_Page.php:786
  558. msgid "Upgrade Plugin"
  559. msgstr ""
  560. #: src/Tribe/Admin/Help_Page.php:778
  561. msgid "Activate Plugin"
  562. msgstr ""
  563. #: src/Tribe/Admin/Help_Page.php:778
  564. msgid "Activate %s"
  565. msgstr ""
  566. #: src/Tribe/Admin/Help_Page.php:244 src/Tribe/Plugins_API.php:100
  567. msgid "Community Tickets"
  568. msgstr ""
  569. #: src/Tribe/Admin/Help_Page.php:235 src/Tribe/Plugins_API.php:66
  570. msgid "Event Tickets Plus"
  571. msgstr ""
  572. #: src/Tribe/Admin/Help_Page.php:203 src/Tribe/Plugins_API.php:111
  573. msgid "Eventbrite Tickets"
  574. msgstr ""
  575. #: src/Tribe/Admin/Help_Page.php:170
  576. msgid " and "
  577. msgstr "和"
  578. #: src/Tribe/Admin/Help_Page.php:95
  579. msgid "Turbo charge your posts admin for any custom post type with sortable filters and columns, and auto-registration of metaboxes."
  580. msgstr ""
  581. #: src/Tribe/Admin/Help_Page.php:91
  582. msgid "Advanced Post Manager"
  583. msgstr ""
  584. #: src/Tribe/Admin/Help_Page.php:79
  585. msgid "Events Tickets is a carefully crafted, extensible plugin that lets you easily sell tickets for your events."
  586. msgstr ""
  587. #: src/Tribe/Admin/Help_Page.php:75 src/Tribe/Plugins_API.php:57
  588. msgid "Event Tickets"
  589. msgstr ""
  590. #: src/Tribe/Admin/Help_Page.php:63
  591. msgid "The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events."
  592. msgstr ""
  593. #. Author URI of the plugin/theme
  594. msgid "http://m.tri.be/1x"
  595. msgstr "http://m.tri.be/1x"
  596. #. Author of the plugin/theme
  597. msgid "Modern Tribe, Inc."
  598. msgstr "Modern Tribe, Inc."
  599. #: src/Tribe/Settings.php:371
  600. msgid "Save Changes"
  601. msgstr "保存更改"
  602. #: src/admin-views/tribe-options-licenses.php:38
  603. 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."
  604. msgstr ""
  605. #: src/Tribe/Support.php:199
  606. 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!"
  607. msgstr ""
  608. #: src/Tribe/PUE/Checker.php:901
  609. msgid "unknown date"
  610. msgstr "未知的日期"
  611. #: src/Tribe/Admin/Activation_Page.php:92
  612. msgid "Return to WordPress Updates"
  613. msgstr "返回WordPress更新"
  614. #: src/Tribe/Admin/Activation_Page.php:92
  615. msgid "Go to WordPress Updates page"
  616. msgstr "轉到WordPress的更新頁面"
  617. #: src/Tribe/Admin/Activation_Page.php:84
  618. msgid "Return to Plugins page"
  619. msgstr "返回插件頁面"
  620. #: src/Tribe/Admin/Activation_Page.php:84
  621. msgid "Go to plugins page"
  622. msgstr "進入插件頁面"
  623. #: src/Tribe/Cost_Utils.php:114
  624. msgid "Free"
  625. msgstr "免費"
  626. #: src/admin-views/tribe-options-network.php:27
  627. msgid "Hide the following settings tabs on every site:"
  628. msgstr "隱藏以下設定工具列標籤於每個網站:"
  629. #: src/admin-views/tribe-options-network.php:19
  630. msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
  631. msgstr "這裡是 Modern Tribe 的 The Events Calendar 所有整體網路設定可以被修改的位置。"
  632. #: src/admin-views/tribe-options-network.php:15
  633. msgid "Network Settings"
  634. msgstr "網路設定"
  635. #: src/admin-views/tribe-options-help.php:74
  636. msgid "News and Tutorials"
  637. msgstr "消息和導覽"
  638. #: src/Tribe/Admin/Help_Page.php:847
  639. msgid "Premium Add-Ons"
  640. msgstr "超值附加元件"
  641. #: src/Tribe/Admin/Help_Page.php:823
  642. msgid "WordPress "
  643. msgstr "WordPress "
  644. #: src/Tribe/Admin/Help_Page.php:822 src/admin-views/app-shop.php:77
  645. msgid "Requires:"
  646. msgstr "需求:"
  647. #: src/Tribe/Admin/Help_Page.php:819
  648. msgid "Latest Version:"
  649. msgstr "最新版本:"
  650. #: src/admin-views/tribe-options-help.php:80
  651. msgid "More..."
  652. msgstr "更多..."
  653. #: src/Tribe/Admin/Help_Page.php:194 src/Tribe/Plugins_API.php:43
  654. msgid "Events Calendar PRO"
  655. msgstr ""
  656. #: src/Tribe/Admin/Help_Page.php:413 src/Tribe/Admin/Help_Page.php:788
  657. msgid "You are up to date!"
  658. msgstr "你的版本是最新的!"
  659. #: src/Tribe/Admin/Help_Page.php:413
  660. msgid "You need to upgrade!"
  661. msgstr "你需要升級!"
  662. #: src/Tribe/Admin/Help_Page.php:405
  663. msgctxt "not available"
  664. msgid "n/a"
  665. msgstr "n/a"
  666. #: src/admin-views/tribe-options-general.php:59
  667. msgid "Debug Bar Plugin"
  668. msgstr "Debug Bar Plugin"
  669. #: src/admin-views/tribe-options-general.php:59
  670. 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."
  671. msgstr "啟用此選項以記錄除錯報告,預設將記錄你的伺服器 PHP 錯誤報告,如果你想於你的瀏覽器閱讀紀錄的訊息,我們推薦安裝 %s 並於除錯輸出中搜尋 \"Tribe\" 工具列標籤。"
  672. #: src/admin-views/tribe-options-general.php:53
  673. msgid "Debug mode"
  674. msgstr "除錯模式"
  675. #: src/admin-views/tribe-options-general.php:35
  676. msgid "Show The Events Calendar link"
  677. msgstr "顯示 The Events Calendar 連結"
  678. #: src/admin-views/tribe-options-general.php:30
  679. msgid "See an example of the link"
  680. msgstr "請參考連結的範例"
  681. #: src/admin-views/tribe-options-general.php:30
  682. 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."
  683. msgstr "是否你正想著 \"哇,這個外掛產品太棒了!我們應該感謝 Modern Tribe 他們所有的努力。\" 而你可以給我們的最大回報,就是僅需於你的行事曆底下加入簡短的文字連結到 The Events Calendar 計畫。"
  684. #: src/admin-views/tribe-options-general.php:25
  685. msgid "We hope our plugin is helping you out."
  686. msgstr "我們期望我們的外掛產品能夠幫助你。"
  687. #: src/admin-views/tribe-options-general.php:20
  688. msgid "Check out the available add-ons"
  689. msgstr "查看可買到的附加元件"
  690. #: src/admin-views/tribe-options-general.php:20
  691. msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
  692. msgstr "尋找額外的功能,包含循環活動、自訂元規則、社群活動、售票及更多?"
  693. #: src/admin-views/tribe-options-display.php:37
  694. msgid "Select the date format to use in datepickers"
  695. msgstr "選擇用於日期選擇器中的日期格式"
  696. #: src/admin-views/tribe-options-display.php:36
  697. msgid "Datepicker Date Format"
  698. msgstr "日期選擇器的日期格式"
  699. #: src/admin-views/tribe-options-display.php:22
  700. msgid "Date Format Settings"
  701. msgstr "日期格式設定"
  702. #: src/admin-views/event-log.php:65
  703. msgid "View"
  704. msgstr "檢視"
  705. #: src/Tribe/Admin/Help_Page.php:211 src/Tribe/Plugins_API.php:90
  706. msgid "Community Events"
  707. msgstr ""
  708. #: src/Tribe/Languages/Locations.php:374
  709. msgid "Wyoming"
  710. msgstr "懷俄明州"
  711. #: src/Tribe/Languages/Locations.php:373
  712. msgid "Wisconsin"
  713. msgstr "威斯康辛州"
  714. #: src/Tribe/Languages/Locations.php:372
  715. msgid "West Virginia"
  716. msgstr "西佛吉尼亞州"
  717. #: src/Tribe/Languages/Locations.php:371
  718. msgid "Washington"
  719. msgstr "華盛頓州"
  720. #: src/Tribe/Languages/Locations.php:370
  721. msgid "Virginia"
  722. msgstr "維吉尼亞州"
  723. #: src/Tribe/Languages/Locations.php:369
  724. msgid "Vermont"
  725. msgstr "佛蒙特州"
  726. #: src/Tribe/Languages/Locations.php:368
  727. msgid "Utah"
  728. msgstr "猶他州"
  729. #: src/Tribe/Languages/Locations.php:367
  730. msgid "Texas"
  731. msgstr "德州"
  732. #: src/Tribe/Languages/Locations.php:366
  733. msgid "Tennessee"
  734. msgstr "田納西州"
  735. #: src/Tribe/Languages/Locations.php:365
  736. msgid "South Dakota"
  737. msgstr "南達科他州"
  738. #: src/Tribe/Languages/Locations.php:364
  739. msgid "South Carolina"
  740. msgstr "南卡羅來納州"
  741. #: src/Tribe/Languages/Locations.php:363
  742. msgid "Rhode Island"
  743. msgstr "羅德島州"
  744. #: src/Tribe/Languages/Locations.php:362
  745. msgid "Pennsylvania"
  746. msgstr "賓夕法尼亞州"
  747. #: src/Tribe/Languages/Locations.php:361
  748. msgid "Oregon"
  749. msgstr "奧勒崗州"
  750. #: src/Tribe/Languages/Locations.php:360
  751. msgid "Oklahoma"
  752. msgstr "俄克拉荷馬州"
  753. #: src/Tribe/Languages/Locations.php:359
  754. msgid "Ohio"
  755. msgstr "俄亥俄州"
  756. #: src/Tribe/Languages/Locations.php:358
  757. msgid "North Dakota"
  758. msgstr "北達科他州"
  759. #: src/Tribe/Languages/Locations.php:357
  760. msgid "North Carolina"
  761. msgstr "北卡羅來納州"
  762. #: src/Tribe/Languages/Locations.php:356
  763. msgid "New York"
  764. msgstr "紐約"
  765. #: src/Tribe/Languages/Locations.php:355
  766. msgid "New Mexico"
  767. msgstr "新墨西哥州"
  768. #: src/Tribe/Languages/Locations.php:354
  769. msgid "New Jersey"
  770. msgstr "新澤西州"
  771. #: src/Tribe/Languages/Locations.php:353
  772. msgid "New Hampshire"
  773. msgstr "新罕布夏州"
  774. #: src/Tribe/Languages/Locations.php:352
  775. msgid "Nevada"
  776. msgstr "內華達州"
  777. #: src/Tribe/Languages/Locations.php:351
  778. msgid "Nebraska"
  779. msgstr "內布拉斯加州"
  780. #: src/Tribe/Languages/Locations.php:350
  781. msgid "Montana"
  782. msgstr "蒙大拿州"
  783. #: src/Tribe/Languages/Locations.php:349
  784. msgid "Missouri"
  785. msgstr "密蘇里州"
  786. #: src/Tribe/Languages/Locations.php:348
  787. msgid "Mississippi"
  788. msgstr "密西西比州"
  789. #: src/Tribe/Languages/Locations.php:347
  790. msgid "Minnesota"
  791. msgstr "明尼蘇達州"
  792. #: src/Tribe/Languages/Locations.php:346
  793. msgid "Michigan"
  794. msgstr "密西根州"
  795. #: src/Tribe/Languages/Locations.php:345
  796. msgid "Massachusetts"
  797. msgstr "麻薩諸塞州"
  798. #: src/Tribe/Languages/Locations.php:344
  799. msgid "Maryland"
  800. msgstr "馬里蘭州"
  801. #: src/Tribe/Languages/Locations.php:343
  802. msgid "Maine"
  803. msgstr "緬因州"
  804. #: src/Tribe/Languages/Locations.php:342
  805. msgid "Louisiana"
  806. msgstr "路易斯安那州"
  807. #: src/Tribe/Languages/Locations.php:341
  808. msgid "Kentucky"
  809. msgstr "肯塔基州"
  810. #: src/Tribe/Languages/Locations.php:340
  811. msgid "Kansas"
  812. msgstr "堪薩斯州"
  813. #: src/Tribe/Languages/Locations.php:339
  814. msgid "Iowa"
  815. msgstr "愛荷華州"
  816. #: src/Tribe/Languages/Locations.php:338
  817. msgid "Indiana"
  818. msgstr "印第安納州"
  819. #: src/Tribe/Languages/Locations.php:337
  820. msgid "Illinois"
  821. msgstr "伊利諾州"
  822. #: src/Tribe/Languages/Locations.php:336
  823. msgid "Idaho"
  824. msgstr "愛達荷州"
  825. #: src/Tribe/Languages/Locations.php:335
  826. msgid "Hawaii"
  827. msgstr "夏威夷州"
  828. #: src/Tribe/Languages/Locations.php:333
  829. msgid "Florida"
  830. msgstr "佛羅里達州"
  831. #: src/Tribe/Languages/Locations.php:332
  832. msgid "District of Columbia"
  833. msgstr "哥倫比亞特區"
  834. #: src/Tribe/Languages/Locations.php:331
  835. msgid "Delaware"
  836. msgstr "德拉威州"
  837. #: src/Tribe/Languages/Locations.php:330
  838. msgid "Connecticut"
  839. msgstr "康乃迪克州"
  840. #: src/Tribe/Languages/Locations.php:329
  841. msgid "Colorado"
  842. msgstr "科羅拉多州"
  843. #: src/Tribe/Languages/Locations.php:328
  844. msgid "California"
  845. msgstr "加州"
  846. #: src/Tribe/Languages/Locations.php:327
  847. msgid "Arkansas"
  848. msgstr "阿肯色州"
  849. #: src/Tribe/Languages/Locations.php:326
  850. msgid "Arizona"
  851. msgstr "亞利桑那州"
  852. #: src/Tribe/Languages/Locations.php:325
  853. msgid "Alaska"
  854. msgstr "阿拉斯加州"
  855. #: src/Tribe/Languages/Locations.php:324
  856. msgid "Alabama"
  857. msgstr "阿拉巴馬州"
  858. #: src/Tribe/Languages/Locations.php:297
  859. msgid "Zimbabwe"
  860. msgstr "辛巴威"
  861. #: src/Tribe/Languages/Locations.php:296
  862. msgid "Zambia"
  863. msgstr "尚比亞"
  864. #: src/Tribe/Languages/Locations.php:295
  865. msgid "Yemen"
  866. msgstr "葉門"
  867. #: src/Tribe/Languages/Locations.php:294
  868. msgid "Western Sahara"
  869. msgstr "西撒哈拉"
  870. #: src/Tribe/Languages/Locations.php:293
  871. msgid "Wallis and Futuna Islands"
  872. msgstr ""
  873. #: src/Tribe/Languages/Locations.php:292
  874. msgid "Virgin Islands (U.S.)"
  875. msgstr "美屬維京群島"
  876. #: src/Tribe/Languages/Locations.php:291
  877. msgid "Virgin Islands (British)"
  878. msgstr "英屬維京群島"
  879. #: src/Tribe/Languages/Locations.php:290
  880. msgid "Viet Nam"
  881. msgstr "越南"
  882. #: src/Tribe/Languages/Locations.php:289
  883. msgid "Venezuela"
  884. msgstr "委內瑞拉"
  885. #: src/Tribe/Languages/Locations.php:288
  886. msgid "Vanuatu"
  887. msgstr "萬那杜"
  888. #: src/Tribe/Languages/Locations.php:287
  889. msgid "Uzbekistan"
  890. msgstr "烏茲別克斯坦"
  891. #: src/Tribe/Languages/Locations.php:286
  892. msgid "Uruguay"
  893. msgstr "烏拉圭"
  894. #: src/Tribe/Languages/Locations.php:285
  895. msgid "United States Minor Outlying Islands"
  896. msgstr "美國本土外小島嶼"
  897. #: src/Tribe/Languages/Locations.php:284
  898. msgid "United Kingdom"
  899. msgstr "英國"
  900. #: src/Tribe/Languages/Locations.php:283
  901. msgid "United Arab Emirates"
  902. msgstr "阿拉伯聯合大公國"
  903. #: src/Tribe/Languages/Locations.php:282
  904. msgid "Ukraine"
  905. msgstr "烏克蘭"
  906. #: src/Tribe/Languages/Locations.php:281
  907. msgid "Uganda"
  908. msgstr "烏干達"
  909. #: src/Tribe/Languages/Locations.php:280
  910. msgid "Tuvalu"
  911. msgstr "吐瓦魯"
  912. #: src/Tribe/Languages/Locations.php:279
  913. msgid "Turks and Caicos Islands"
  914. msgstr ""
  915. #: src/Tribe/Languages/Locations.php:278
  916. msgid "Turkmenistan"
  917. msgstr "土庫曼"
  918. #: src/Tribe/Languages/Locations.php:277
  919. msgid "Turkey"
  920. msgstr "土耳其"
  921. #: src/Tribe/Languages/Locations.php:276
  922. msgid "Tunisia"
  923. msgstr "突尼西亞"
  924. #: src/Tribe/Languages/Locations.php:275
  925. msgid "Trinidad and Tobago"
  926. msgstr ""
  927. #: src/Tribe/Languages/Locations.php:274
  928. msgid "Tonga"
  929. msgstr "東加"
  930. #: src/Tribe/Languages/Locations.php:273
  931. msgid "Tokelau"
  932. msgstr "托克勞群島"
  933. #: src/Tribe/Languages/Locations.php:272
  934. msgid "Togo"
  935. msgstr "多哥"
  936. #: src/Tribe/Languages/Locations.php:271
  937. msgid "Thailand"
  938. msgstr "泰國"
  939. #: src/Tribe/Languages/Locations.php:270
  940. msgid "Tanzania, United Republic of"
  941. msgstr ""
  942. #: src/Tribe/Languages/Locations.php:269
  943. msgid "Tajikistan"
  944. msgstr "塔吉克斯坦"
  945. #: src/Tribe/Languages/Locations.php:268
  946. msgid "Taiwan"
  947. msgstr "台灣"
  948. #: src/Tribe/Languages/Locations.php:267
  949. msgid "Syrian Arab Republic"
  950. msgstr "敘利亞"
  951. #: src/Tribe/Languages/Locations.php:266
  952. msgid "Switzerland"
  953. msgstr "瑞士"
  954. #: src/Tribe/Languages/Locations.php:265
  955. msgid "Sweden"
  956. msgstr "瑞典"
  957. #: src/Tribe/Languages/Locations.php:264
  958. msgid "Swaziland"
  959. msgstr "史瓦濟蘭"
  960. #: src/Tribe/Languages/Locations.php:263
  961. msgid "Svalbard and Jan Mayen Islands"
  962. msgstr ""
  963. #: src/Tribe/Languages/Locations.php:262
  964. msgid "Suriname"
  965. msgstr "蘇利南莫河"
  966. #: src/Tribe/Languages/Locations.php:261
  967. msgid "Sudan"
  968. msgstr "蘇丹"
  969. #: src/Tribe/Languages/Locations.php:241
  970. msgid "Saint Pierre and Miquelon"
  971. msgstr ""
  972. #: src/Tribe/Languages/Locations.php:260
  973. msgid "Sri Lanka"
  974. msgstr "斯里蘭卡"
  975. #: src/Tribe/Languages/Locations.php:259
  976. msgid "Spain"
  977. msgstr "西班牙"
  978. #: src/Tribe/Languages/Locations.php:258
  979. msgid "South Georgia, South Sandwich Islands"
  980. msgstr "南喬治亞與南三明治群島"
  981. #: src/Tribe/Languages/Locations.php:257
  982. msgid "South Africa"
  983. msgstr "南非"
  984. #: src/Tribe/Languages/Locations.php:256
  985. msgid "Somalia"
  986. msgstr "索馬利亞"
  987. #: src/Tribe/Languages/Locations.php:255
  988. msgid "Solomon Islands"
  989. msgstr "所羅門群島"
  990. #: src/Tribe/Languages/Locations.php:254
  991. msgid "Slovenia"
  992. msgstr "斯洛維尼亞"
  993. #: src/Tribe/Languages/Locations.php:253
  994. msgid "Slovakia (Slovak Republic)"
  995. msgstr "斯洛伐克"
  996. #: src/Tribe/Languages/Locations.php:251
  997. msgid "Singapore"
  998. msgstr "新加坡"
  999. #: src/Tribe/Languages/Locations.php:250
  1000. msgid "Sierra Leone"
  1001. msgstr "獅子山共和國"
  1002. #: src/Tribe/Languages/Locations.php:249
  1003. msgid "Seychelles"
  1004. msgstr "塞席爾群島"
  1005. #: src/Tribe/Languages/Locations.php:248
  1006. msgid "Serbia"
  1007. msgstr "塞爾維亞"
  1008. #: src/Tribe/Languages/Locations.php:247
  1009. msgid "Senegal"
  1010. msgstr "塞內加爾"
  1011. #: src/Tribe/Languages/Locations.php:246
  1012. msgid "Saudi Arabia"
  1013. msgstr "沙烏地阿拉伯"
  1014. #: src/Tribe/Languages/Locations.php:244
  1015. msgid "San Marino"
  1016. msgstr "聖馬利諾"
  1017. #: src/Tribe/Languages/Locations.php:243
  1018. msgid "Samoa"
  1019. msgstr "薩摩亞"
  1020. #: src/Tribe/Languages/Locations.php:242
  1021. msgid "Saint Vincent and The Grenadines"
  1022. msgstr ""
  1023. #: src/Tribe/Languages/Locations.php:240
  1024. msgid "Saint Lucia"
  1025. msgstr "聖盧西亞"
  1026. #: src/Tribe/Languages/Locations.php:239
  1027. msgid "Saint Kitts and Nevis"
  1028. msgstr ""
  1029. #: src/Tribe/Languages/Locations.php:236
  1030. msgid "Rwanda"
  1031. msgstr "盧安達"
  1032. #: src/Tribe/Languages/Locations.php:235
  1033. msgid "Russian Federation"
  1034. msgstr "俄羅斯聯邦"
  1035. #: src/Tribe/Languages/Locations.php:234
  1036. msgid "Romania"
  1037. msgstr "羅馬尼亞"
  1038. #: src/Tribe/Languages/Locations.php:233
  1039. msgid "Reunion"
  1040. msgstr "留尼旺"
  1041. #: src/Tribe/Languages/Locations.php:232
  1042. msgid "Qatar"
  1043. msgstr "卡達"
  1044. #: src/Tribe/Languages/Locations.php:231
  1045. msgid "Puerto Rico"
  1046. msgstr "波多黎各"
  1047. #: src/Tribe/Languages/Locations.php:230
  1048. msgid "Portugal"
  1049. msgstr "葡萄牙"
  1050. #: src/Tribe/Languages/Locations.php:229
  1051. msgid "Poland"
  1052. msgstr "波蘭"
  1053. #: src/Tribe/Languages/Locations.php:228
  1054. msgid "Pitcairn"
  1055. msgstr "皮特肯群島"
  1056. #: src/Tribe/Languages/Locations.php:227
  1057. msgid "Philippines"
  1058. msgstr "菲律賓"
  1059. #: src/Tribe/Languages/Locations.php:226
  1060. msgid "Peru"
  1061. msgstr "祕魯"
  1062. #: src/Tribe/Languages/Locations.php:225
  1063. msgid "Paraguay"
  1064. msgstr "巴拉圭"
  1065. #: src/Tribe/Languages/Locations.php:224
  1066. msgid "Papua New Guinea"
  1067. msgstr "巴布新幾內亞"
  1068. #: src/Tribe/Languages/Locations.php:223
  1069. msgid "Panama"
  1070. msgstr "巴拿馬"
  1071. #: src/Tribe/Languages/Locations.php:222
  1072. msgid "Palau"
  1073. msgstr "帛琉"
  1074. #: src/Tribe/Languages/Locations.php:221
  1075. msgid "Pakistan"
  1076. msgstr "巴基斯坦"
  1077. #: src/Tribe/Languages/Locations.php:220
  1078. msgid "Oman"
  1079. msgstr "阿曼"
  1080. #: src/Tribe/Languages/Locations.php:219
  1081. msgid "Norway"
  1082. msgstr "挪威"
  1083. #: src/Tribe/Languages/Locations.php:218
  1084. msgid "Northern Mariana Islands"
  1085. msgstr "北馬里亞納群島"
  1086. #: src/Tribe/Languages/Locations.php:217
  1087. msgid "Norfolk Island"
  1088. msgstr "諾福克島"
  1089. #: src/Tribe/Languages/Locations.php:216
  1090. msgid "Niue"
  1091. msgstr "紐埃"
  1092. #: src/Tribe/Languages/Locations.php:215
  1093. msgid "Nigeria"
  1094. msgstr "奈及利亞"
  1095. #: src/Tribe/Languages/Locations.php:214
  1096. msgid "Niger"
  1097. msgstr "尼日"
  1098. #: src/Tribe/Languages/Locations.php:213
  1099. msgid "Nicaragua"
  1100. msgstr "尼加拉瓜"
  1101. #: src/Tribe/Languages/Locations.php:212
  1102. msgid "New Zealand"
  1103. msgstr "紐西蘭"
  1104. #: src/Tribe/Languages/Locations.php:211
  1105. msgid "New Caledonia"
  1106. msgstr "新喀里多尼亞"
  1107. #: src/Tribe/Languages/Locations.php:210
  1108. msgid "Netherlands"
  1109. msgstr "荷蘭"
  1110. #: src/Tribe/Languages/Locations.php:209
  1111. msgid "Nepal"
  1112. msgstr "尼泊爾"
  1113. #: src/Tribe/Languages/Locations.php:208
  1114. msgid "Nauru"
  1115. msgstr "諾魯"
  1116. #: src/Tribe/Languages/Locations.php:207
  1117. msgid "Namibia"
  1118. msgstr "那米比亞"
  1119. #: src/Tribe/Languages/Locations.php:206
  1120. msgid "Myanmar"
  1121. msgstr "緬甸"
  1122. #: src/Tribe/Languages/Locations.php:205
  1123. msgid "Mozambique"
  1124. msgstr "莫三比克"
  1125. #: src/Tribe/Languages/Locations.php:204
  1126. msgid "Morocco"
  1127. msgstr "摩洛哥"
  1128. #: src/Tribe/Languages/Locations.php:203
  1129. msgid "Montserrat"
  1130. msgstr "蒙塞拉特島"
  1131. #: src/Tribe/Languages/Locations.php:202
  1132. msgid "Montenegro"
  1133. msgstr "蒙特內哥羅"
  1134. #: src/Tribe/Languages/Locations.php:201
  1135. msgid "Mongolia"
  1136. msgstr "蒙古"
  1137. #: src/Tribe/Languages/Locations.php:200
  1138. msgid "Monaco"
  1139. msgstr "摩納哥"
  1140. #: src/Tribe/Languages/Locations.php:199
  1141. msgid "Moldova, Republic of"
  1142. msgstr ""
  1143. #: src/Tribe/Languages/Locations.php:198
  1144. msgid "Micronesia, Federated States of"
  1145. msgstr ""
  1146. #: src/Tribe/Languages/Locations.php:197
  1147. msgid "Mexico"
  1148. msgstr "墨西哥"
  1149. #: src/Tribe/Languages/Locations.php:196
  1150. msgid "Mayotte"
  1151. msgstr "馬約特"
  1152. #: src/Tribe/Languages/Locations.php:195
  1153. msgid "Mauritius"
  1154. msgstr "模里西斯"
  1155. #: src/Tribe/Languages/Locations.php:194
  1156. msgid "Mauritania"
  1157. msgstr "茅利塔尼亞"
  1158. #: src/Tribe/Languages/Locations.php:193
  1159. msgid "Martinique"
  1160. msgstr "馬丁尼克"
  1161. #: src/Tribe/Languages/Locations.php:192
  1162. msgid "Marshall Islands"
  1163. msgstr "馬紹爾群島"
  1164. #: src/Tribe/Languages/Locations.php:191
  1165. msgid "Malta"
  1166. msgstr "馬爾他"
  1167. #: src/Tribe/Languages/Locations.php:190
  1168. msgid "Mali"
  1169. msgstr "馬利"
  1170. #: src/Tribe/Languages/Locations.php:189
  1171. msgid "Maldives"
  1172. msgstr "馬爾地夫"
  1173. #: src/Tribe/Languages/Locations.php:188
  1174. msgid "Malaysia"
  1175. msgstr "馬來西亞"
  1176. #: src/Tribe/Languages/Locations.php:187
  1177. msgid "Malawi"
  1178. msgstr "馬拉威"
  1179. #: src/Tribe/Languages/Locations.php:186
  1180. msgid "Madagascar"
  1181. msgstr "馬達加斯加"
  1182. #: src/Tribe/Languages/Locations.php:185
  1183. msgid "Macedonia"
  1184. msgstr "馬其頓"
  1185. #: src/Tribe/Languages/Locations.php:184
  1186. msgid "Macau"
  1187. msgstr "澳門"
  1188. #: src/Tribe/Languages/Locations.php:183
  1189. msgid "Luxembourg"
  1190. msgstr "盧森堡"
  1191. #: src/Tribe/Languages/Locations.php:182
  1192. msgid "Lithuania"
  1193. msgstr "立陶宛"
  1194. #: src/Tribe/Languages/Locations.php:181
  1195. msgid "Liechtenstein"
  1196. msgstr "列支敦斯登"
  1197. #: src/Tribe/Languages/Locations.php:180
  1198. msgid "Libya"
  1199. msgstr "利比亞"
  1200. #: src/Tribe/Languages/Locations.php:179
  1201. msgid "Liberia"
  1202. msgstr "賴比瑞亞"
  1203. #: src/Tribe/Languages/Locations.php:178
  1204. msgid "Lesotho"
  1205. msgstr "賴索托"
  1206. #: src/Tribe/Languages/Locations.php:177
  1207. msgid "Lebanon"
  1208. msgstr "黎巴嫩"
  1209. #: src/Tribe/Languages/Locations.php:176
  1210. msgid "Latvia"
  1211. msgstr "拉脫維亞"
  1212. #: src/Tribe/Languages/Locations.php:175
  1213. msgid "Lao People's Democratic Republic"
  1214. msgstr "寮國"
  1215. #: src/Tribe/Languages/Locations.php:174
  1216. msgid "Kyrgyzstan"
  1217. msgstr "吉爾吉斯斯坦"
  1218. #: src/Tribe/Languages/Locations.php:173
  1219. msgid "Kuwait"
  1220. msgstr "科威特"
  1221. #: src/Tribe/Languages/Locations.php:172
  1222. msgid "Korea, Republic of"
  1223. msgstr ""
  1224. #: src/Tribe/Languages/Locations.php:171
  1225. msgid "Korea, Democratic People's Republic of"
  1226. msgstr ""
  1227. #: src/Tribe/Languages/Locations.php:170
  1228. msgid "Kiribati"
  1229. msgstr "吉里巴斯共和國"
  1230. #: src/Tribe/Languages/Locations.php:169
  1231. msgid "Kenya"
  1232. msgstr "肯亞"
  1233. #: src/Tribe/Languages/Locations.php:168
  1234. msgid "Kazakhstan"
  1235. msgstr "哈薩克"
  1236. #: src/Tribe/Languages/Locations.php:167
  1237. msgid "Jordan"
  1238. msgstr "約旦"
  1239. #: src/Tribe/Languages/Locations.php:166
  1240. msgid "Japan"
  1241. msgstr "日本"
  1242. #: src/Tribe/Languages/Locations.php:165
  1243. msgid "Jamaica"
  1244. msgstr "牙買加"
  1245. #: src/Tribe/Languages/Locations.php:164
  1246. msgid "Italy"
  1247. msgstr "義大利"
  1248. #: src/Tribe/Languages/Locations.php:163
  1249. msgid "Israel"
  1250. msgstr "以色列"
  1251. #: src/Tribe/Languages/Locations.php:162
  1252. msgid "Ireland"
  1253. msgstr "愛爾蘭"
  1254. #: src/Tribe/Languages/Locations.php:161
  1255. msgid "Iraq"
  1256. msgstr "伊拉克"
  1257. #: src/Tribe/Languages/Locations.php:160
  1258. msgid "Iran, Islamic Republic of"
  1259. msgstr ""
  1260. #: src/Tribe/Languages/Locations.php:159
  1261. msgid "Indonesia"
  1262. msgstr "印尼"
  1263. #: src/Tribe/Languages/Locations.php:158
  1264. msgid "India"
  1265. msgstr "印度"
  1266. #: src/Tribe/Languages/Locations.php:157
  1267. msgid "Iceland"
  1268. msgstr "冰島"
  1269. #: src/Tribe/Languages/Locations.php:156
  1270. msgid "Hungary"
  1271. msgstr "匈牙利"
  1272. #: src/Tribe/Languages/Locations.php:155
  1273. msgid "Hong Kong"
  1274. msgstr "香港"
  1275. #: src/Tribe/Languages/Locations.php:154
  1276. msgid "Honduras"
  1277. msgstr "洪都拉斯"
  1278. #: src/Tribe/Languages/Locations.php:153
  1279. msgid "Holy See (Vatican City State)"
  1280. msgstr "梵蒂岡"
  1281. #: src/Tribe/Languages/Locations.php:152
  1282. msgid "Heard and McDonald Islands"
  1283. msgstr ""
  1284. #: src/Tribe/Languages/Locations.php:151
  1285. msgid "Haiti"
  1286. msgstr "海地"
  1287. #: src/Tribe/Languages/Locations.php:150
  1288. msgid "Guyana"
  1289. msgstr "蓋亞那"
  1290. #: src/Tribe/Languages/Locations.php:149
  1291. msgid "Guinea-Bissau"
  1292. msgstr "幾內亞比索"
  1293. #: src/Tribe/Languages/Locations.php:148
  1294. msgid "Guinea"
  1295. msgstr "幾內亞"
  1296. #: src/Tribe/Languages/Locations.php:147
  1297. msgid "Guatemala"
  1298. msgstr "瓜地馬拉"
  1299. #: src/Tribe/Languages/Locations.php:146
  1300. msgid "Guam"
  1301. msgstr "關島"
  1302. #: src/Tribe/Languages/Locations.php:145
  1303. msgid "Guadeloupe"
  1304. msgstr "瓜德羅普"
  1305. #: src/Tribe/Languages/Locations.php:144
  1306. msgid "Grenada"
  1307. msgstr "格瑞納達"
  1308. #: src/Tribe/Languages/Locations.php:143
  1309. msgid "Greenland"
  1310. msgstr "格林蘭島"
  1311. #: src/Tribe/Languages/Locations.php:142
  1312. msgid "Greece"
  1313. msgstr "希臘"
  1314. #: src/Tribe/Languages/Locations.php:141
  1315. msgid "Gibraltar"
  1316. msgstr "直布羅陀"
  1317. #: src/Tribe/Languages/Locations.php:140
  1318. msgid "Ghana"
  1319. msgstr "迦納"
  1320. #: src/Tribe/Languages/Locations.php:139
  1321. msgid "Germany"
  1322. msgstr "德國"
  1323. #: src/Tribe/Languages/Locations.php:138 src/Tribe/Languages/Locations.php:334
  1324. msgid "Georgia"
  1325. msgstr "喬治亞"
  1326. #: src/Tribe/Languages/Locations.php:137
  1327. msgid "Gambia"
  1328. msgstr "甘比亞"
  1329. #: src/Tribe/Languages/Locations.php:136
  1330. msgid "Gabon"
  1331. msgstr "加彭"
  1332. #: src/Tribe/Languages/Locations.php:135
  1333. msgid "French Southern Territories"
  1334. msgstr "法國南方領地"
  1335. #: src/Tribe/Languages/Locations.php:134
  1336. msgid "French Polynesia"
  1337. msgstr "法屬玻里尼西亞"
  1338. #: src/Tribe/Languages/Locations.php:133
  1339. msgid "French Guiana"
  1340. msgstr "法屬圭亞那"
  1341. #: src/Tribe/Languages/Locations.php:132
  1342. msgid "France"
  1343. msgstr "法國"
  1344. #: src/Tribe/Languages/Locations.php:131
  1345. msgid "Finland"
  1346. msgstr "芬蘭"
  1347. #: src/Tribe/Languages/Locations.php:130
  1348. msgid "Fiji"
  1349. msgstr "斐濟"
  1350. #: src/Tribe/Languages/Locations.php:129
  1351. msgid "Faroe Islands"
  1352. msgstr "法羅群島"
  1353. #: src/Tribe/Languages/Locations.php:128
  1354. msgid "Falkland Islands (Malvinas)"
  1355. msgstr "福克蘭群島"
  1356. #: src/Tribe/Languages/Locations.php:127
  1357. msgid "Ethiopia"
  1358. msgstr "埃塞俄比亞"
  1359. #: src/Tribe/Languages/Locations.php:126
  1360. msgid "Estonia"
  1361. msgstr "愛沙尼亞"
  1362. #: src/Tribe/Languages/Locations.php:125
  1363. msgid "Eritrea"
  1364. msgstr "厄立特里亞"
  1365. #: src/Tribe/Languages/Locations.php:124
  1366. msgid "Equatorial Guinea"
  1367. msgstr "赤道幾內亞"
  1368. #: src/Tribe/Languages/Locations.php:123
  1369. msgid "El Salvador"
  1370. msgstr "薩爾瓦多"
  1371. #: src/Tribe/Languages/Locations.php:122
  1372. msgid "Egypt"
  1373. msgstr "埃及"
  1374. #: src/Tribe/Languages/Locations.php:121
  1375. msgid "Ecuador"
  1376. msgstr "厄瓜多"
  1377. #: src/Tribe/Languages/Locations.php:120
  1378. msgid "East Timor"
  1379. msgstr "東帝汶"
  1380. #: src/Tribe/Languages/Locations.php:119
  1381. msgid "Dominican Republic"
  1382. msgstr "多明尼加"
  1383. #: src/Tribe/Languages/Locations.php:118
  1384. msgid "Dominica"
  1385. msgstr "多米尼克"
  1386. #: src/Tribe/Languages/Locations.php:117
  1387. msgid "Djibouti"
  1388. msgstr "吉布提"
  1389. #: src/Tribe/Languages/Locations.php:116
  1390. msgid "Denmark"
  1391. msgstr "丹麥"
  1392. #: src/Tribe/Languages/Locations.php:115
  1393. msgid "Czech Republic"
  1394. msgstr "捷克"
  1395. #: src/Tribe/Languages/Locations.php:114
  1396. msgid "Cyprus"
  1397. msgstr "賽普勒斯"
  1398. #: src/Tribe/Languages/Locations.php:112
  1399. msgid "Cuba"
  1400. msgstr "古巴"
  1401. #: src/Tribe/Languages/Locations.php:111
  1402. msgid "Croatia (Local Name: Hrvatska)"
  1403. msgstr "克羅埃西亞"
  1404. #: src/Tribe/Languages/Locations.php:109
  1405. msgid "Costa Rica"
  1406. msgstr "哥斯大黎加"
  1407. #: src/Tribe/Languages/Locations.php:108
  1408. msgid "Cook Islands"
  1409. msgstr "庫克群島"
  1410. #: src/Tribe/Languages/Locations.php:107
  1411. msgid "Congo, Democratic Republic of the"
  1412. msgstr ""
  1413. #: src/Tribe/Languages/Locations.php:106
  1414. msgid "Congo"
  1415. msgstr "剛果"
  1416. #: src/Tribe/Languages/Locations.php:105
  1417. msgid "Comoros"
  1418. msgstr "科摩洛"
  1419. #: src/Tribe/Languages/Locations.php:104
  1420. msgid "Colombia"
  1421. msgstr "哥倫比亞"
  1422. #: src/Tribe/Languages/Locations.php:102
  1423. msgid "Cocos (Keeling) Islands"
  1424. msgstr "科科斯(基林)群島"
  1425. #: src/Tribe/Languages/Locations.php:101
  1426. msgid "Christmas Island"
  1427. msgstr "聖誕島"
  1428. #: src/Tribe/Languages/Locations.php:100
  1429. msgid "China"
  1430. msgstr "中國"
  1431. #: src/Tribe/Languages/Locations.php:99
  1432. msgid "Chile"
  1433. msgstr "智利"
  1434. #: src/Tribe/Languages/Locations.php:98
  1435. msgid "Chad"
  1436. msgstr "查德"
  1437. #: src/Tribe/Languages/Locations.php:97
  1438. msgid "Central African Republic"
  1439. msgstr "中非共和國"
  1440. #: src/Tribe/Languages/Locations.php:96
  1441. msgid "Cayman Islands"
  1442. msgstr "開曼群島"
  1443. #: src/Tribe/Languages/Locations.php:95
  1444. msgid "Cape Verde"
  1445. msgstr "維德角"
  1446. #: src/Tribe/Languages/Locations.php:94
  1447. msgid "Canada"
  1448. msgstr "加拿大"
  1449. #: src/Tribe/Languages/Locations.php:93
  1450. msgid "Cameroon"
  1451. msgstr "喀麥隆"
  1452. #: src/Tribe/Languages/Locations.php:92
  1453. msgid "Cambodia"
  1454. msgstr "柬埔寨"
  1455. #: src/Tribe/Languages/Locations.php:91
  1456. msgid "Burundi"
  1457. msgstr "蒲隆地"
  1458. #: src/Tribe/Languages/Locations.php:90
  1459. msgid "Burkina Faso"
  1460. msgstr "布基那法索"
  1461. #: src/Tribe/Languages/Locations.php:89
  1462. msgid "Bulgaria"
  1463. msgstr "保加利亞"
  1464. #: src/Tribe/Languages/Locations.php:88
  1465. msgid "Brunei Darussalam"
  1466. msgstr "汶萊"
  1467. #: src/Tribe/Languages/Locations.php:87
  1468. msgid "British Indian Ocean Territory"
  1469. msgstr "英屬印度洋領地"
  1470. #: src/Tribe/Languages/Locations.php:86
  1471. msgid "Brazil"
  1472. msgstr "巴西"
  1473. #: src/Tribe/Languages/Locations.php:85
  1474. msgid "Bouvet Island"
  1475. msgstr "布韋群島"
  1476. #: src/Tribe/Languages/Locations.php:84
  1477. msgid "Botswana"
  1478. msgstr "波札那"
  1479. #: src/Tribe/Languages/Locations.php:83
  1480. msgid "Bosnia and Herzegowina"
  1481. msgstr ""
  1482. #: src/Tribe/Languages/Locations.php:82
  1483. msgid "Bolivia"
  1484. msgstr "玻利維亞"
  1485. #: src/Tribe/Languages/Locations.php:81
  1486. msgid "Bhutan"
  1487. msgstr "不丹"
  1488. #: src/Tribe/Languages/Locations.php:80
  1489. msgid "Bermuda"
  1490. msgstr "百慕達"
  1491. #: src/Tribe/Languages/Locations.php:79
  1492. msgid "Benin"
  1493. msgstr "貝南"
  1494. #: src/Tribe/Languages/Locations.php:78
  1495. msgid "Belize"
  1496. msgstr "貝里斯"
  1497. #: src/Tribe/Languages/Locations.php:77
  1498. msgid "Belgium"
  1499. msgstr "比利時"
  1500. #: src/Tribe/Languages/Locations.php:76
  1501. msgid "Belarus"
  1502. msgstr "白俄羅斯"
  1503. #: src/Tribe/Languages/Locations.php:75
  1504. msgid "Barbados"
  1505. msgstr "巴貝多"
  1506. #: src/Tribe/Languages/Locations.php:74
  1507. msgid "Bangladesh"
  1508. msgstr "孟加拉"
  1509. #: src/Tribe/Languages/Locations.php:73
  1510. msgid "Bahrain"
  1511. msgstr "巴林"
  1512. #: src/Tribe/Languages/Locations.php:72
  1513. msgid "Bahamas"
  1514. msgstr "巴哈馬"
  1515. #: src/Tribe/Languages/Locations.php:71
  1516. msgid "Azerbaijan"
  1517. msgstr "亞塞拜然"
  1518. #: src/Tribe/Languages/Locations.php:70
  1519. msgid "Austria"
  1520. msgstr "奧地利"
  1521. #: src/Tribe/Languages/Locations.php:69
  1522. msgid "Australia"
  1523. msgstr "澳大利亞"
  1524. #: src/Tribe/Languages/Locations.php:68
  1525. msgid "Aruba"
  1526. msgstr "阿魯巴"
  1527. #: src/Tribe/Languages/Locations.php:67
  1528. msgid "Armenia"
  1529. msgstr "亞美尼亞"
  1530. #: src/Tribe/Languages/Locations.php:66
  1531. msgid "Argentina"
  1532. msgstr "阿根廷"
  1533. #: src/Tribe/Languages/Locations.php:65
  1534. msgid "Antigua and Barbuda"
  1535. msgstr ""
  1536. #: src/Tribe/Languages/Locations.php:64
  1537. msgid "Antarctica"
  1538. msgstr "南極洲"
  1539. #: src/Tribe/Languages/Locations.php:63
  1540. msgid "Anguilla"
  1541. msgstr "安圭拉"
  1542. #: src/Tribe/Languages/Locations.php:62
  1543. msgid "Angola"
  1544. msgstr "安哥拉共和國"
  1545. #: src/Tribe/Languages/Locations.php:61
  1546. msgid "Andorra"
  1547. msgstr "安道爾公國"
  1548. #: src/Tribe/Languages/Locations.php:60
  1549. msgid "American Samoa"
  1550. msgstr "美屬薩摩亞"
  1551. #: src/Tribe/Languages/Locations.php:59
  1552. msgid "Algeria"
  1553. msgstr "阿爾及利亞"
  1554. #: src/Tribe/Languages/Locations.php:58
  1555. msgid "Albania"
  1556. msgstr "阿爾巴尼亞"
  1557. #: src/Tribe/Languages/Locations.php:56
  1558. msgid "Afghanistan"
  1559. msgstr "阿富汗"
  1560. #: src/Tribe/View_Helpers.php:50
  1561. msgid "Select a Country:"
  1562. msgstr "請選擇國家"
  1563. #: src/Tribe/Validate.php:514
  1564. msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
  1565. msgstr "國家列表必須以每行一個國家的格式表列於以下的格式中:<br>US, United States <br> UK, United Kingdom."
  1566. #: src/Tribe/Validate.php:498
  1567. msgid "%s must be a phone number."
  1568. msgstr "%s 必須是電話號碼數字。"
  1569. #: src/Tribe/Validate.php:484
  1570. msgid "%s must consist of 5 numbers."
  1571. msgstr "%s 必須由 5 個數字所組成。"
  1572. #: src/Tribe/Validate.php:470
  1573. msgid "%s must consist of letters, spaces, apostrophes, and dashes."
  1574. msgstr "%s 必須由字元、數字、空格、撇號及點所組成。"
  1575. #: src/Tribe/Validate.php:454
  1576. msgid "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
  1577. msgstr "%s 必須只由字元、數字、點、撇號及空格所組成。"
  1578. #: src/Tribe/Validate.php:438
  1579. msgid "%s must be a number between 0 and 21."
  1580. msgstr "%s 必須是介於 0 到 21之間的數字。"
  1581. #: src/Tribe/Validate.php:384
  1582. msgid "%s must be a number or percentage."
  1583. msgstr "%s 必須是數字或百分比符號。"
  1584. #: src/Tribe/Validate.php:368
  1585. msgid "%s cannot be a duplicate"
  1586. msgstr "%s 不能是複製的"
  1587. #: src/Tribe/Validate.php:366
  1588. msgid "%s cannot be the same as %s."
  1589. msgstr "%s 不能和 %s 完全一樣。"
  1590. #: src/Tribe/Validate.php:359
  1591. msgid "Comparison validation failed because no comparison value was provided, for field %s"
  1592. msgstr "比較確認失敗的原因是由於沒有提供比較數值給欄位 %s。"
  1593. #: src/Tribe/Validate.php:298 src/Tribe/Validate.php:310
  1594. #: src/Tribe/Validate.php:323 src/Tribe/Validate.php:345
  1595. msgid "%s must have a value that's part of its options."
  1596. msgstr "%s 必須有一個數值是選項中的一部份。"
  1597. #: src/Tribe/Validate.php:282
  1598. msgid "%s must be a valid absolute URL."
  1599. msgstr "%s 必須是有效完整的網址。"
  1600. #: src/Tribe/Validate.php:267
  1601. msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
  1602. msgstr "%s 必須是有效的代稱 (數字、字元、破折號及底線)。"
  1603. #: src/Tribe/Validate.php:200 src/Tribe/Validate.php:228
  1604. msgid "%s must be a positive number."
  1605. msgstr "%s 必須為正數。"
  1606. #: src/Tribe/Validate.php:152
  1607. msgid "%s must contain numbers, letters and dots only"
  1608. msgstr "%s 必須只包含數字、字元和點。"
  1609. #: src/Tribe/Validate.php:120 src/Tribe/Validate.php:136
  1610. msgid "%s must contain numbers and letters only"
  1611. msgstr "%s 必須只包含數字與字元"
  1612. #: src/Tribe/Validate.php:105
  1613. msgctxt "non-existant function name passed for field validation"
  1614. msgid "with function name:"
  1615. msgstr "含有功能名稱:"
  1616. #: src/Tribe/Validate.php:104
  1617. msgid "Non-existant field validation function passed"
  1618. msgstr "不存在欄位確認功能已過期"
  1619. #: src/Tribe/Validate.php:73 src/Tribe/Validate.php:85
  1620. #: src/Tribe/Validate.php:105
  1621. msgid "Field ID:"
  1622. msgstr "欄位 ID:"
  1623. #: src/Tribe/Validate.php:72 src/Tribe/Validate.php:84
  1624. msgid "Invalid or incomplete field passed"
  1625. msgstr "無效或不完全欄位已過期"
  1626. #: src/Tribe/Support.php:188 src/Tribe/Support.php:189
  1627. msgid "Unknown or not set"
  1628. msgstr ""
  1629. #: src/admin-views/tribe-options-help.php:41
  1630. msgid "System Information"
  1631. msgstr "系統資訊"
  1632. #: src/Tribe/Settings_Tab.php:222
  1633. msgid "There are no fields setup for this tab yet."
  1634. msgstr "此工具列標籤尚未設置欄位。"
  1635. #: src/Tribe/Settings.php:621
  1636. msgid "The above setting was not saved. Other settings were successfully saved."
  1637. msgid_plural "The above settings were not saved. Other settings were successfully saved."
  1638. msgstr[0] "以上設定未儲存,其餘設定已成功儲存。"
  1639. #: src/Tribe/Settings.php:620
  1640. msgid "None of your settings were saved. Please try again."
  1641. msgstr "你的設定未儲存,請稍後重試。"
  1642. #: src/Tribe/Settings.php:610
  1643. msgid "Your form had the following errors:"
  1644. msgstr "你的表格含有下列錯誤:"
  1645. #: src/Tribe/Settings.php:431
  1646. msgid "The request wasn't sent from this tab."
  1647. msgstr "請求未從此工具列標籤傳送。"
  1648. #: src/Tribe/Settings.php:425
  1649. msgid "The request was sent insecurely."
  1650. msgstr "以不安全的方式傳送要求。"
  1651. #: src/Tribe/Settings.php:419
  1652. msgid "You don't have permission to do that."
  1653. msgstr "你的操作不被允許。"
  1654. #: src/Tribe/Settings.php:363
  1655. msgid "You've requested a non-existent tab."
  1656. msgstr "你要求的工具列標籤不存在。"
  1657. #: src/Tribe/Settings.php:349
  1658. msgid "%s Settings"
  1659. msgstr "%s 設定"
  1660. #: src/Tribe/Settings.php:253 src/Tribe/Settings.php:273
  1661. msgid "Events Settings"
  1662. msgstr "活動設定"
  1663. #: src/Tribe/PUE/Checker.php:888
  1664. msgid "Hmmm... something's wrong with this validator. Please contact %ssupport%s."
  1665. msgstr ""
  1666. #: src/Tribe/PUE/Checker.php:927
  1667. msgid "Valid Key! Expires on %s"
  1668. msgstr "有效密鑰!到期日為 %s"
  1669. #: src/Tribe/PUE/Checker.php:907
  1670. msgid "Sorry, key validation server is not available."
  1671. msgstr "抱歉,密鑰認證伺服器忙碌中。"
  1672. #: src/Tribe/PUE/Checker.php:650
  1673. msgid "License key(s) updated."
  1674. msgstr "授權密鑰已更新。"
  1675. #: src/Tribe/PUE/Checker.php:494
  1676. msgid "A valid license key is required for support and updates"
  1677. msgstr "支援與更新時,授權密鑰必須有效。"
  1678. #: src/Tribe/PUE/Checker.php:509 src/Tribe/PUE/Checker.php:520
  1679. msgid "License Key"
  1680. msgstr "授權密鑰"
  1681. #: src/Tribe/Main.php:247
  1682. msgid "Search:"
  1683. msgstr ""
  1684. #: src/Tribe/Settings.php:254
  1685. msgid "Settings"
  1686. msgstr "設定"
  1687. #: src/Tribe/Settings_Manager.php:219
  1688. msgid "Network"
  1689. msgstr "網路"
  1690. #: src/Tribe/Main.php:272
  1691. msgid "Done"
  1692. msgstr "已完成"
  1693. #: src/Tribe/Main.php:271
  1694. msgid "Today"
  1695. msgstr "今天"
  1696. #: src/Tribe/Main.php:270
  1697. msgid "Prev"
  1698. msgstr "上一頁"
  1699. #: src/Tribe/Main.php:253 src/Tribe/Main.php:269
  1700. msgid "Next"
  1701. msgstr "下一頁"
  1702. #: src/Tribe/Settings_Manager.php:279
  1703. msgid "Help"
  1704. msgstr "幫助"
  1705. #: src/Tribe/Settings_Manager.php:55
  1706. msgid "Display"
  1707. msgstr "顯示"
  1708. #: src/Tribe/Settings_Manager.php:253
  1709. #: src/admin-views/tribe-options-licenses.php:66
  1710. msgid "Licenses"
  1711. msgstr "授權憑證"
  1712. #: src/Tribe/Admin/Help_Page.php:59 src/Tribe/Customizer.php:569
  1713. #: src/Tribe/Plugins_API.php:25
  1714. msgid "The Events Calendar"
  1715. msgstr "The Events Calendar"
  1716. #: src/Tribe/Settings.php:177 src/Tribe/Settings.php:241
  1717. #: src/Tribe/Settings.php:242
  1718. msgid "Events"
  1719. msgstr "活動"
  1720. #: src/Tribe/Settings.php:643
  1721. msgid "Settings saved."
  1722. msgstr "設定已儲存。"
  1723. #: src/Tribe/Settings_Manager.php:54
  1724. msgid "General"
  1725. msgstr "一般"
  1726. #: src/Tribe/Field.php:626
  1727. msgid "No select options specified"
  1728. msgstr "未指定下拉選單選項"
  1729. #: src/Tribe/Field.php:568
  1730. msgid "No checkbox options specified"
  1731. msgstr "未指定多選選項"
  1732. #: src/Tribe/Field.php:532
  1733. msgid "No radio options specified"
  1734. msgstr "未指定單選選項"
  1735. #: src/Tribe/Field.php:231
  1736. msgid "Invalid field type specified"
  1737. msgstr "指定欄位類型無效"
  1738. #: src/Tribe/Credits.php:31
  1739. msgid "This calendar is powered by The Events Calendar."
  1740. msgstr ""
  1741. #: src/Tribe/App_Shop.php:50 src/Tribe/App_Shop.php:51
  1742. #: src/Tribe/App_Shop.php:72
  1743. msgid "Event Add-Ons"
  1744. msgstr "活動附加元件"
  1745. #: src/Tribe/Languages/Locations.php:55
  1746. msgid "United States"
  1747. msgstr "美國"