Poll.pot 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: PACKAGE VERSION\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2015-02-27 16:31+0100\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "Language: \n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=CHARSET\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. #. TRANS: Field label on the page to create a poll.
  20. #: forms/newpoll.php:107
  21. msgid "Question"
  22. msgstr ""
  23. #. TRANS: Field title on the page to create a poll.
  24. #: forms/newpoll.php:110
  25. msgid "What question are people answering?"
  26. msgstr ""
  27. #. TRANS: Field label for an answer option on the page to create a poll.
  28. #. TRANS: %d is the option number.
  29. #: forms/newpoll.php:130
  30. #, php-format
  31. msgid "Option %d"
  32. msgstr ""
  33. #. TRANS: Button text for saving a new poll.
  34. #: forms/newpoll.php:156
  35. msgctxt "BUTTON"
  36. msgid "Save"
  37. msgstr ""
  38. #. TRANS: Button text for submitting a poll response.
  39. #: forms/pollresponse.php:127
  40. msgctxt "BUTTON"
  41. msgid "Submit"
  42. msgstr ""
  43. #. TRANS: Page title.
  44. #: actions/pollsettings.php:44
  45. msgid "Poll settings"
  46. msgstr ""
  47. #. TRANS: Page instructions.
  48. #: actions/pollsettings.php:56
  49. msgid "Set your poll preferences"
  50. msgstr ""
  51. #. TRANS: Title for poll page.
  52. #: actions/newpoll.php:63
  53. msgid "New poll"
  54. msgstr ""
  55. #. TRANS: Client exception thrown trying to create a poll while not logged in.
  56. #: actions/newpoll.php:81
  57. msgid "You must be logged in to post a poll."
  58. msgstr ""
  59. #. TRANS: Client exception thrown trying to create a poll without a question.
  60. #: actions/newpoll.php:133
  61. msgid "Poll must have a question."
  62. msgstr ""
  63. #. TRANS: Client exception thrown trying to create a poll with fewer than two options.
  64. #: actions/newpoll.php:138
  65. msgid "Poll must have at least two options."
  66. msgstr ""
  67. #. TRANS: Page title after sending a notice.
  68. #: actions/newpoll.php:164
  69. msgid "Notice posted"
  70. msgstr ""
  71. #. TRANS: Page title for poll response.
  72. #: actions/respondpoll.php:63
  73. msgid "Poll response"
  74. msgstr ""
  75. #. TRANS: Client exception thrown trying to respond to a poll while not logged in.
  76. #: actions/respondpoll.php:84
  77. msgid "You must be logged in to respond to a poll."
  78. msgstr ""
  79. #. TRANS: Client exception thrown trying to respond to a non-existing poll.
  80. #: actions/respondpoll.php:96
  81. msgid "Invalid or missing poll."
  82. msgstr ""
  83. #. TRANS: Client exception thrown responding to a poll with an invalid answer.
  84. #. TRANS: Client exception thrown when responding to a poll with an invalid option.
  85. #: actions/respondpoll.php:102 classes/Poll_response.php:134
  86. msgid "Invalid poll selection."
  87. msgstr ""
  88. #. TRANS: Page title after sending a poll response.
  89. #: actions/respondpoll.php:150
  90. msgid "Poll results"
  91. msgstr ""
  92. #. TRANS: Client exception thrown trying to view a non-existing poll.
  93. #: actions/showpoll.php:59
  94. msgid "No such poll."
  95. msgstr ""
  96. #. TRANS: Client exception thrown trying to view a non-existing poll notice.
  97. #: actions/showpoll.php:67
  98. msgid "No such poll notice."
  99. msgstr ""
  100. #. TRANS: Page title for a poll.
  101. #. TRANS: %1$s is the nickname of the user that created the poll, %2$s is the poll question.
  102. #: actions/showpoll.php:84
  103. #, php-format
  104. msgid "%1$s's poll: %2$s"
  105. msgstr ""
  106. #. TRANS: Notice content creating a poll.
  107. #. TRANS: %1$s is the poll question, %2$s is a link to the poll.
  108. #: classes/Poll.php:201
  109. #, php-format
  110. msgid "Poll: %1$s %2$s"
  111. msgstr ""
  112. #. TRANS: Rendered version of the notice content creating a poll.
  113. #. TRANS: %s is a link to the poll with the question as link description.
  114. #: classes/Poll.php:207
  115. #, php-format
  116. msgid "Poll: %s"
  117. msgstr ""
  118. #. TRANS: Notice content voting for a poll.
  119. #. TRANS: %s is the chosen option in the poll.
  120. #. TRANS: Rendered version of the notice content voting for a poll.
  121. #. TRANS: %s a link to the poll with the chosen option as link description.
  122. #: classes/Poll_response.php:163 classes/Poll_response.php:168
  123. #, php-format
  124. msgid "voted for \"%s\""
  125. msgstr ""
  126. #. TRANS: Plugin description.
  127. #: PollPlugin.php:131
  128. msgid "Simple extension for supporting basic polls."
  129. msgstr ""
  130. #. TRANS: Exception thrown trying to respond to a poll without a poll reference.
  131. #: PollPlugin.php:204
  132. msgid "Invalid poll response: No poll reference."
  133. msgstr ""
  134. #. TRANS: Exception thrown trying to respond to a non-existing poll.
  135. #: PollPlugin.php:209
  136. msgid "Invalid poll response: Poll is unknown."
  137. msgstr ""
  138. #. TRANS: Exception thrown when performing an unexpected action on a poll.
  139. #. TRANS: %s is the unexpected object type.
  140. #: PollPlugin.php:236
  141. #, php-format
  142. msgid "Unexpected type for poll plugin: %s."
  143. msgstr ""
  144. #. TRANS: Application title.
  145. #: PollPlugin.php:392
  146. msgctxt "APPTITLE"
  147. msgid "Poll"
  148. msgstr ""
  149. #. TRANS: Poll plugin menu item on user settings page.
  150. #: PollPlugin.php:436
  151. msgctxt "MENU"
  152. msgid "Polls"
  153. msgstr ""
  154. #. TRANS: Poll plugin tooltip for user settings menu item.
  155. #: PollPlugin.php:438
  156. msgid "Configure poll behavior"
  157. msgstr ""
  158. #. TRANS: Error text displayed if no poll data could be found.
  159. #: PollPlugin.php:463
  160. msgid "Poll data is missing"
  161. msgstr ""