django.po 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  3. # This file is distributed under the same license as the PACKAGE package.
  4. #
  5. # Translators:
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Mezzanine\n"
  9. "Report-Msgid-Bugs-To: \n"
  10. "POT-Creation-Date: 2013-10-05 07:20-0430\n"
  11. "PO-Revision-Date: 2013-03-30 11:59+0000\n"
  12. "Last-Translator: Sebastián Ramírez Magrí <sebasmagri@gmail.com>\n"
  13. "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/"
  14. "mezzanine/language/id_ID/)\n"
  15. "Language: id_ID\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=1; plural=0;\n"
  20. #: admin.py:27
  21. msgid "This field is required if status is set to published."
  22. msgstr ""
  23. #: admin.py:47
  24. msgid "Meta data"
  25. msgstr ""
  26. #: defaults.py:21
  27. msgid "Controls the ordering and grouping of the admin menu."
  28. msgstr ""
  29. #: defaults.py:24 models.py:275
  30. msgid "Content"
  31. msgstr ""
  32. #: defaults.py:25
  33. msgid "Media Library"
  34. msgstr ""
  35. #: defaults.py:26 templates/admin/login.html:43
  36. msgid "Site"
  37. msgstr ""
  38. #: defaults.py:27
  39. msgid "Users"
  40. msgstr ""
  41. #: defaults.py:33
  42. msgid "Unregister these models from the admin."
  43. msgstr ""
  44. #: defaults.py:40
  45. msgid "Size of thumbnail previews for image fields in the admin interface."
  46. msgstr ""
  47. #: defaults.py:48
  48. msgid "Akismet API Key"
  49. msgstr ""
  50. #: defaults.py:49
  51. msgid ""
  52. "Key for http://akismet.com spam filtering service. Used for filtering "
  53. "comments and forms."
  54. msgstr ""
  55. #: defaults.py:57
  56. msgid "bit.ly access token"
  57. msgstr ""
  58. #: defaults.py:58
  59. msgid "Access token for http://bit.ly URL shortening service."
  60. msgstr ""
  61. #: defaults.py:65
  62. msgid ""
  63. "Mezzanine's caching uses a technique know as mint caching. This is where the "
  64. "requested expiry for a cache entry is stored with the cache entry in cache, "
  65. "and the real expiry used has the ``CACHE_SET_DELAY`` added to it. Then on a "
  66. "cache get, the store expiry is checked, and if it has past, the cache entry "
  67. "is set again, and no entry is returned. This tries to ensure that cache "
  68. "misses never occur, and if many clients were to get a cache miss at once, "
  69. "only one would actually need to re-generated the cache entry."
  70. msgstr ""
  71. #: defaults.py:93
  72. msgid ""
  73. "A three item sequence, each containing a sequence of template tags used to "
  74. "render the admin dashboard."
  75. msgstr ""
  76. #: defaults.py:101
  77. msgid "Device specific template sub-directory to use as the default device."
  78. msgstr ""
  79. #: defaults.py:109
  80. msgid ""
  81. "Mapping of device specific template sub-directory names to the sequence of "
  82. "strings that may be found in their user agents."
  83. msgstr ""
  84. #: defaults.py:131
  85. msgid "If ``True``, website forms will use HTML5 features."
  86. msgstr ""
  87. #: defaults.py:138
  88. msgid ""
  89. "A sequence of fields that will be injected into Mezzanine's (or any "
  90. "library's) models. Each item in the sequence is a four item sequence. The "
  91. "first two items are the dotted path to the model and its field name to be "
  92. "added, and the dotted path to the field class to use for the field. The "
  93. "third and fourth items are a sequence of positional args and a dictionary of "
  94. "keyword args, to use when creating the field instance. When specifying the "
  95. "field class, the path ``django.models.db.`` can be omitted for regular "
  96. "Django model fields."
  97. msgstr ""
  98. #: defaults.py:153
  99. msgid "Google Analytics ID"
  100. msgstr ""
  101. #: defaults.py:155
  102. msgid "Google Analytics ID (http://www.google.com/analytics/)"
  103. msgstr ""
  104. #: defaults.py:161
  105. msgid ""
  106. "A sequence mapping host names to themes, allowing different templates to be "
  107. "served per HTTP hosts Each item in the sequence is a two item sequence, "
  108. "containing a host such as ``othersite.example.com``, and the name of an "
  109. "importable Python package for the theme. If the host is matched for a "
  110. "request, the templates directory inside the theme package will be first "
  111. "searched when loading templates."
  112. msgstr ""
  113. #: defaults.py:175
  114. msgid "Name of the jQuery file."
  115. msgstr ""
  116. #: defaults.py:176
  117. msgid "Name of the jQuery file found in mezzanine/core/static/mezzanine/js/"
  118. msgstr ""
  119. #: defaults.py:184
  120. msgid "Name of the jQuery UI file."
  121. msgstr ""
  122. #: defaults.py:185
  123. msgid "Name of the jQuery UI file found in mezzanine/core/static/mezzanine/js/"
  124. msgstr ""
  125. #: defaults.py:193
  126. msgid "Max paging links"
  127. msgstr ""
  128. #: defaults.py:194
  129. msgid "Max number of paging links to display when paginating."
  130. msgstr ""
  131. #: defaults.py:201
  132. msgid "Media library per site"
  133. msgstr ""
  134. #: defaults.py:202
  135. msgid ""
  136. "If ``True``, each site will use its own directory within the filebrowser "
  137. "media library."
  138. msgstr ""
  139. #: defaults.py:210
  140. msgid ""
  141. "Models that subclass ``Ownable`` and use the ``OwnableAdmin`` have their "
  142. "admin change-list records filtered down to records owned by the current "
  143. "user. This setting contains a sequence of models in the format ``app_label."
  144. "object_name``, that when subclassing ``Ownable``, will still show all "
  145. "records in the admin change-list interface, regardless of the current user."
  146. msgstr ""
  147. #: defaults.py:222
  148. msgid ""
  149. "Dotted package path and class name of the widget to use for the "
  150. "``RichTextField``."
  151. msgstr ""
  152. #: defaults.py:230
  153. msgid ""
  154. "List of HTML tags that won't be stripped from ``RichTextField`` instances."
  155. msgstr ""
  156. #: defaults.py:246
  157. msgid ""
  158. "List of HTML attributes that won't be stripped from ``RichTextField`` "
  159. "instances."
  160. msgstr ""
  161. #: defaults.py:264
  162. msgid ""
  163. "List of inline CSS styles that won't be stripped from ``RichTextField`` "
  164. "instances."
  165. msgstr ""
  166. #: defaults.py:272
  167. msgid ""
  168. "Dotted path to the function to call on a ``RichTextField`` value before it "
  169. "is rendered to the template."
  170. msgstr ""
  171. #: defaults.py:282
  172. msgid "High"
  173. msgstr ""
  174. #: defaults.py:283
  175. msgid "Low (allows video, iframe, Flash, etc)"
  176. msgstr ""
  177. #: defaults.py:284
  178. msgid "No filtering"
  179. msgstr ""
  180. #: defaults.py:289
  181. msgid "Rich Text filter level"
  182. msgstr ""
  183. #: defaults.py:290
  184. msgid ""
  185. "*Do not change this setting unless you know what you're doing.*\n"
  186. "\n"
  187. "When content is saved in a Rich Text (WYSIWYG) field, unsafe HTML tags and "
  188. "attributes are stripped from the content to protect against staff members "
  189. "intentionally adding code that could be used to cause problems, such as "
  190. "changing their account to a super-user with full access to the system.\n"
  191. "\n"
  192. "This setting allows you to change the level of filtering that occurs. "
  193. "Setting it to low will allow certain extra tags to be permitted, such as "
  194. "those required for embedding video. While these tags are not the main "
  195. "candidates for users adding malicious code, they are still considered "
  196. "dangerous and could potentially be mis-used by a particularly technical "
  197. "user, and so are filtered out when the filtering level is set to high.\n"
  198. "\n"
  199. "Setting the filtering level to no filtering, will disable all filtering, and "
  200. "allow any code to be entered by staff members, including script tags."
  201. msgstr ""
  202. #: defaults.py:313
  203. msgid ""
  204. "Sequence of models that will be provided by default as choices in the search "
  205. "form. Each model should be in the format ``app_label.model_name``. Only "
  206. "models that subclass ``mezzanine.core.models.Displayable`` should be used."
  207. msgstr ""
  208. #: defaults.py:323
  209. msgid "Search results per page"
  210. msgstr ""
  211. #: defaults.py:324
  212. msgid "Number of results shown in the search results page."
  213. msgstr ""
  214. #: defaults.py:331
  215. msgid ""
  216. "A URL prefix for mounting all of Mezzanine's urlpatterns under. When using "
  217. "this, you'll also need to manually apply it to your project's root ``urls."
  218. "py`` module. The root ``urls.py`` module provided by Mezzanine's ``mezzanine-"
  219. "project`` command contains an example of this towards its end."
  220. msgstr ""
  221. #: defaults.py:342
  222. msgid "Site Title"
  223. msgstr ""
  224. #: defaults.py:343
  225. msgid ""
  226. "Title that will display at the top of the site, and be appended to the "
  227. "content of the HTML title tags on every page."
  228. msgstr ""
  229. #: defaults.py:351
  230. msgid "Tagline"
  231. msgstr ""
  232. #: defaults.py:352
  233. msgid "A tag line that will appear at the top of all pages."
  234. msgstr ""
  235. #: defaults.py:354
  236. msgid "An open source content management platform."
  237. msgstr ""
  238. #: defaults.py:359
  239. msgid ""
  240. "Dotted Python path to the callable for converting strings into URL slugs. "
  241. "Defaults to ``mezzanine.utils.urls.slugify_unicode`` which allows for non-"
  242. "ascii URLS. Change to ``django.template.defaultfilters.slugify`` to use "
  243. "Django's slugify function, or something of your own if required."
  244. msgstr ""
  245. #: defaults.py:370
  246. msgid ""
  247. "Sequence of dotted Python paths to callable functions used for checking "
  248. "posted content (such as forms or comments) is spam. Each function should "
  249. "accept three arguments: the request object, the form object, and the URL "
  250. "that was posted from. Defaults to ``mezzanine.utils.views.is_spam_akismet`` "
  251. "which will use the http://akismet.com spam filtering service when the "
  252. "``AKISMET_API_KEY`` setting is configured."
  253. msgstr ""
  254. #: defaults.py:383
  255. msgid "Enable SSL"
  256. msgstr ""
  257. #: defaults.py:384
  258. msgid ""
  259. "If ``True``, users will be automatically redirected to HTTPS for the URLs "
  260. "specified by the ``SSL_FORCE_URL_PREFIXES`` setting."
  261. msgstr ""
  262. #: defaults.py:393
  263. msgid "Force Host"
  264. msgstr ""
  265. #: defaults.py:394
  266. msgid ""
  267. "Host name that the site should always be accessed via that matches the SSL "
  268. "certificate."
  269. msgstr ""
  270. #: defaults.py:412
  271. msgid ""
  272. "If ``True``, only URLs specified by the ``SSL_FORCE_URL_PREFIXES`` setting "
  273. "will be accessible over SSL, and all other URLs will be redirected back to "
  274. "HTTP if accessed over HTTPS."
  275. msgstr ""
  276. #: defaults.py:422
  277. msgid "List of words which will be stripped from search queries."
  278. msgstr ""
  279. #: defaults.py:479
  280. msgid "Tag Cloud Sizes"
  281. msgstr ""
  282. #: defaults.py:480
  283. msgid "Number of different sizes for tags when shown as a cloud."
  284. msgstr ""
  285. #: defaults.py:487
  286. msgid "Sequence of setting names available within templates."
  287. msgstr ""
  288. #: defaults.py:502
  289. msgid ""
  290. "Directory name to store thumbnails in, that will be created relative to the "
  291. "original image's directory."
  292. msgstr ""
  293. #: defaults.py:510
  294. msgid ""
  295. "URL for the JavaScript file (relative to ``STATIC_URL``) that handles "
  296. "configuring TinyMCE when the default ``RICHTEXT_WIDGET_CLASS`` is used."
  297. msgstr ""
  298. #: defaults.py:519
  299. msgid ""
  300. "Dict mapping file field names in the format ``app_label.model_name."
  301. "field_name`` to the Python dotted path to function names that will be used "
  302. "for the file field's ``upload_to`` argument."
  303. msgstr ""
  304. #: defaults.py:535
  305. msgid ""
  306. "If ``True``, the south application will be automatically added to the "
  307. "``INSTALLED_APPS`` setting."
  308. msgstr ""
  309. #: fields.py:37
  310. #, python-format
  311. msgid "Could not import the value of settings.RICHTEXT_WIDGET_CLASS: %s"
  312. msgstr ""
  313. #: forms.py:84 models.py:317
  314. msgid "Order"
  315. msgstr ""
  316. #: models.py:56 models.py:110
  317. msgid "Title"
  318. msgstr ""
  319. #: models.py:57
  320. msgid "URL"
  321. msgstr ""
  322. #: models.py:58
  323. msgid "Leave blank to have the URL auto-generated from the title."
  324. msgstr ""
  325. #: models.py:100
  326. msgid "View on site"
  327. msgstr ""
  328. #: models.py:112
  329. msgid ""
  330. "Optional title to be used in the HTML title tag. If left blank, the main "
  331. "title field will be used."
  332. msgstr ""
  333. #: models.py:114
  334. msgid "Description"
  335. msgstr ""
  336. #: models.py:115
  337. msgid "Generate description"
  338. msgstr ""
  339. #: models.py:116
  340. msgid ""
  341. "If checked, the description will be automatically generated from content. "
  342. "Uncheck if you want to manually set a custom description."
  343. msgstr ""
  344. #: models.py:119
  345. msgid "Keywords"
  346. msgstr ""
  347. #: models.py:176
  348. msgid "Draft"
  349. msgstr ""
  350. #: models.py:177
  351. msgid "Published"
  352. msgstr ""
  353. #: models.py:188
  354. msgid "Status"
  355. msgstr ""
  356. #: models.py:190
  357. msgid "With Draft chosen, will only be shown for admin users on the site."
  358. msgstr ""
  359. #: models.py:192 models.py:225
  360. msgid "Published from"
  361. msgstr ""
  362. #: models.py:193
  363. msgid "With Published chosen, won't be shown until this time"
  364. msgstr ""
  365. #: models.py:195
  366. msgid "Expires on"
  367. msgstr ""
  368. #: models.py:196
  369. msgid "With Published chosen, won't be shown after this time"
  370. msgstr ""
  371. #: models.py:199
  372. msgid "Show in sitemap"
  373. msgstr ""
  374. #: models.py:402 models.py:422
  375. msgid "Author"
  376. msgstr ""
  377. #: models.py:425
  378. msgid "Sites"
  379. msgstr ""
  380. #: models.py:428
  381. msgid "Site permission"
  382. msgstr ""
  383. #: models.py:429
  384. msgid "Site permissions"
  385. msgstr ""
  386. #: views.py:87
  387. msgid "Permission denied"
  388. msgstr ""
  389. #: views.py:115 templates/includes/search_form.html:11
  390. msgid "Everything"
  391. msgstr ""
  392. #: templates/base.html:121
  393. msgid "Powered by"
  394. msgstr ""
  395. #: templates/base.html:124
  396. msgid "and"
  397. msgstr ""
  398. #: templates/base.html:127
  399. msgid "Theme by"
  400. msgstr ""
  401. #: templates/base.html:130
  402. msgid "View Mobile Site"
  403. msgstr ""
  404. #: templates/index.html:4 templates/index.html.py:5 templates/index.html:8
  405. #: templates/search_results.html:10 templates/admin/index.html:15
  406. msgid "Home"
  407. msgstr ""
  408. #: templates/index.html:12
  409. msgid ""
  410. "\n"
  411. "<h2>Congratulations!</h2>\n"
  412. "<p>\n"
  413. " Welcome to your new Mezzanine powered website.\n"
  414. " Here are some quick links to get you started:\n"
  415. "</p>\n"
  416. "<ul>\n"
  417. " <li><a href=\"/admin/\">Log in to the admin interface</a></li>\n"
  418. " <li><a href=\"http://mezzanine.jupo.org/docs/content-architecture.html"
  419. "\">Creating custom page types</a></li>\n"
  420. " <li><a href=\"http://mezzanine.jupo.org/docs/frequently-asked-questions."
  421. "html#templates\">Modifying HTML templates</a></li>\n"
  422. " <li><a href=\"http://mezzanine.jupo.org/docs/frequently-asked-questions."
  423. "html#why-isn-t-the-homepage-a-page-object-i-can-edit-via-the-admin"
  424. "\">Changing this homepage</a></li>\n"
  425. " <li><a href=\"http://mezzanine.jupo.org/docs/frequently-asked-questions."
  426. "html\">Other frequently asked questions</a></li>\n"
  427. " <li><a href=\"http://mezzanine.jupo.org/docs/configuration.html#default-"
  428. "settings\">Full list of settings</a></li>\n"
  429. " <li><a href=\"http://mezzanine.jupo.org/docs/deployment.html\">Deploying "
  430. "to a production server</a></li>\n"
  431. "</ul>\n"
  432. msgstr ""
  433. #: templates/search_results.html:5 templates/search_results.html.py:6
  434. #: templates/search_results.html:13
  435. msgid "Search Results"
  436. msgstr ""
  437. #: templates/search_results.html:20
  438. #, python-format
  439. msgid ""
  440. "\n"
  441. "No results were found in %(search_type)s matching your query: %(query)s\n"
  442. msgstr ""
  443. #: templates/search_results.html:24
  444. #, python-format
  445. msgid ""
  446. "\n"
  447. "Showing %(start)s to %(end)s of %(total)s results in %(search_type)s "
  448. "matching your query: %(query)s\n"
  449. msgstr ""
  450. #: templates/search_results.html:35
  451. msgid "read more"
  452. msgstr ""
  453. #: templates/admin/base_site.html:34
  454. msgid "View site"
  455. msgstr ""
  456. #: templates/admin/index.html:17 templates/admin/includes/dropdown_menu.html:4
  457. msgid "Dashboard"
  458. msgstr ""
  459. #: templates/admin/login.html:21
  460. msgid "You don't have permission to access the admin for this site."
  461. msgstr ""
  462. #: templates/admin/login.html:28
  463. msgid "Username or email:"
  464. msgstr ""
  465. #: templates/admin/login.html:32
  466. msgid "Password:"
  467. msgstr ""
  468. #: templates/admin/login.html:37
  469. msgid "Interface:"
  470. msgstr ""
  471. #: templates/admin/login.html:40 templates/includes/editable_toolbar.html:7
  472. #: templates/includes/editable_toolbar.html:9
  473. msgid "Admin"
  474. msgstr ""
  475. #: templates/admin/login.html:47
  476. msgid "Log in"
  477. msgstr ""
  478. #: templates/admin/login.html:50
  479. msgid "Forgot password?"
  480. msgstr ""
  481. #: templates/admin/includes/app_list.html:20
  482. msgid "Add"
  483. msgstr ""
  484. #: templates/admin/includes/app_list.html:27
  485. msgid "Change"
  486. msgstr ""
  487. #: templates/admin/includes/dynamic_inline_stacked.html:6
  488. #: templates/admin/includes/dynamic_inline_tabular.html:6
  489. msgid "Add another"
  490. msgstr ""
  491. #: templates/admin/includes/recent_actions.html:4
  492. msgid "Recent Actions"
  493. msgstr ""
  494. #: templates/admin/includes/recent_actions.html:5
  495. msgid "My Actions"
  496. msgstr ""
  497. #: templates/admin/includes/recent_actions.html:9
  498. msgid "None available"
  499. msgstr ""
  500. #: templates/errors/404.html:6
  501. msgid "Page not found"
  502. msgstr ""
  503. #: templates/errors/404.html:10
  504. msgid "The page you requested does not exist."
  505. msgstr ""
  506. #: templates/errors/500.html:6
  507. msgid "Error"
  508. msgstr ""
  509. #: templates/errors/500.html:10
  510. msgid "Sorry, an error occurred."
  511. msgstr ""
  512. #: templates/includes/editable_form.html:16
  513. msgid "Save"
  514. msgstr ""
  515. #: templates/includes/editable_form.html:17
  516. msgid "Cancel"
  517. msgstr ""
  518. #: templates/includes/editable_form.html:25
  519. msgid "Edit"
  520. msgstr ""
  521. #: templates/includes/editable_toolbar.html:11
  522. msgid "Log out"
  523. msgstr ""
  524. #: templates/includes/pagination.html:8
  525. msgid "Page"
  526. msgstr ""
  527. #: templates/includes/pagination.html:8
  528. msgid "of"
  529. msgstr ""
  530. #: templates/includes/search_form.html:4
  531. msgid "Search"
  532. msgstr ""
  533. #: templates/includes/search_form.html:22
  534. msgid "Go"
  535. msgstr ""